Skip to content

Commit 110cd96

Browse files
committed
Remove Valgrind suppression file and simplify command
Deleted `valgrind.supp` and updated the test script to remove its usage in the Valgrind command. Streamlined the memory check setup by eliminating the suppression file dependency.
1 parent 8c6e9ff commit 110cd96

2 files changed

Lines changed: 1 addition & 82 deletions

File tree

scripts/run_tests.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,7 @@ def __init__(self):
3131
self.__ppc_env = None
3232
self.work_dir = None
3333

34-
suppression_file = Path(self.__get_project_path()) / "valgrind.supp"
35-
self.valgrind_cmd = (f"valgrind --suppressions={suppression_file} "
36-
f"--error-exitcode=1 --leak-check=full --show-leak-kinds=all")
34+
self.valgrind_cmd = "valgrind --error-exitcode=1 --leak-check=full --show-leak-kinds=all"
3735

3836
if platform.system() == "Windows":
3937
self.mpi_exec = "mpiexec"

valgrind.supp

Lines changed: 0 additions & 79 deletions
This file was deleted.

0 commit comments

Comments
 (0)