Skip to content

Commit 0267deb

Browse files
committed
Enable core run for threads and processes in test runner
Uncommented and restored the logic to invoke `run_core` when the running type is either "threads" or "processes". This ensures the test runner executes core functionality as intended for these cases.
1 parent a2e4f11 commit 0267deb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/run_tests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ def run_performance_list(self):
111111
ppc_runner = PPCRunner()
112112
ppc_runner.setup_env()
113113

114-
# if args_dict["running_type"] in ["threads", "processes"]:
115-
# ppc_runner.run_core()
114+
if args_dict["running_type"] in ["threads", "processes"]:
115+
ppc_runner.run_core()
116116

117117
if args_dict["running_type"] == "threads":
118118
ppc_runner.run_threads()

0 commit comments

Comments
 (0)