We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88dcec6 commit 33ad23cCopy full SHA for 33ad23c
2 files changed
modules/core/util/src/util.cpp
@@ -5,6 +5,7 @@
5
#include <cstdint>
6
#include <iostream>
7
#include <memory>
8
+#include <vector>
9
#endif
10
11
#include <filesystem>
scripts/run_tests.py
@@ -58,6 +58,9 @@ def __source_script(script_path):
58
print(f"Failed to source script: {script_path}")
59
return {}
60
61
+ def setup_env(self):
62
+ self.work_dir = Path(self.__get_project_path()) / "install/bin"
63
+
64
@staticmethod
65
def __run_exec(command):
66
result = subprocess.run(command, shell=True, env=os.environ)
@@ -130,6 +133,7 @@ def run_performance_list(self):
130
133
args_dict = init_cmd_args()
131
134
132
135
ppc_runner = PPCRunner()
136
+ ppc_runner.setup_env()
137
138
if args_dict["running_type"] in ["threads", "processes"]:
139
ppc_runner.run_core()
0 commit comments