From c60ebb48d63dcff4bc85c6fc137b78e381e1214e Mon Sep 17 00:00:00 2001 From: Matthias Krack Date: Tue, 13 Jun 2023 15:29:32 +0200 Subject: [PATCH] Fix default for workbasedir (match target testclean) --- tools/regtesting/do_regtest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/regtesting/do_regtest.py b/tools/regtesting/do_regtest.py index 9e219b714e..b7a5e0a08e 100755 --- a/tools/regtesting/do_regtest.py +++ b/tools/regtesting/do_regtest.py @@ -257,7 +257,7 @@ class Config: self.work_base_dir = ( args.workbasedir / leaf_dir if args.workbasedir - else self.cp2k_root / "regtesting" / leaf_dir + else self.cp2k_root / "regtesting" / args.arch / args.version / leaf_dir ) self.error_summary = self.work_base_dir / "error_summary"