From 1c45d59118a6911dc4eef6455d6bf7c2db6a0c06 Mon Sep 17 00:00:00 2001 From: Arseniy Obolenskiy Date: Mon, 19 May 2025 16:29:59 +0200 Subject: [PATCH 1/2] Run TBB and OpenMP tests under valgrind --- scripts/run_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run_tests.py b/scripts/run_tests.py index 9d97795b..49a69687 100644 --- a/scripts/run_tests.py +++ b/scripts/run_tests.py @@ -86,7 +86,7 @@ def __get_gtest_settings(repeats_count, type_task): def run_threads(self): if platform.system() == "Linux" and not self.__ppc_env.get("PPC_ASAN_RUN"): - for task_type in ["seq", "stl"]: + for task_type in ["omp", "seq", "stl", "tbb"]: self.__run_exec( shlex.split(self.valgrind_cmd) + [str(self.work_dir / 'ppc_func_tests')] From 891a2db7a48fbccde1c8ce5814cda6ba0529af90 Mon Sep 17 00:00:00 2001 From: Arseniy Obolenskiy Date: Wed, 25 Jun 2025 16:13:05 +0200 Subject: [PATCH 2/2] tbb only --- scripts/run_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run_tests.py b/scripts/run_tests.py index 49a69687..1fe40bcd 100644 --- a/scripts/run_tests.py +++ b/scripts/run_tests.py @@ -86,7 +86,7 @@ def __get_gtest_settings(repeats_count, type_task): def run_threads(self): if platform.system() == "Linux" and not self.__ppc_env.get("PPC_ASAN_RUN"): - for task_type in ["omp", "seq", "stl", "tbb"]: + for task_type in ["seq", "stl", "tbb"]: self.__run_exec( shlex.split(self.valgrind_cmd) + [str(self.work_dir / 'ppc_func_tests')]