Skip to content

Commit 8d449d3

Browse files
authored
Set --gtest_repeat parameter to 1 for all tests (#611)
1 parent c16a360 commit 8d449d3

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,7 +111,7 @@ def run_threads(self):
111111
for task_type in ["omp", "seq", "stl", "tbb"]:
112112
self.__run_exec(
113113
[str(self.work_dir / "ppc_func_tests")]
114-
+ self.__get_gtest_settings(3, "_" + task_type + "_")
114+
+ self.__get_gtest_settings(1, "_" + task_type + "_")
115115
)
116116

117117
def run_core(self):
@@ -142,7 +142,7 @@ def run_processes(self, additional_mpi_args):
142142
self.__run_exec(
143143
mpi_running
144144
+ [str(self.work_dir / "ppc_func_tests")]
145-
+ self.__get_gtest_settings(10, "_" + task_type)
145+
+ self.__get_gtest_settings(1, "_" + task_type)
146146
)
147147

148148
def run_performance(self):

0 commit comments

Comments
 (0)