Skip to content

Commit

Permalink
Merge pull request #849 from aurianer/enable_valgrind_properties_module
Browse files Browse the repository at this point in the history
Enable valgrind testing for `properties` and `debugging` module
  • Loading branch information
msimberg authored Nov 8, 2023
2 parents c94c546 + 6f00cd7 commit f605e2c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/linux_valgrind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,13 @@ jobs:
tests.unit.modules.assertion \
tests.unit.modules.concurrency \
tests.unit.modules.datastructures \
tests.unit.modules.debugging \
tests.unit.modules.errors \
tests.{regressions,unit}.modules.execution \
tests.unit.modules.execution_base \
tests.{regressions,unit}.modules.functional \
tests.unit.modules.memory \
tests.unit.modules.properties \
tests.unit.modules.string_util \
tests.unit.modules.tag_invoke \
tests.unit.modules.threading \
Expand Down
2 changes: 1 addition & 1 deletion libs/pika/debugging/tests/unit/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ foreach(test ${tests})
DEPENDENCIES pika
)

pika_add_unit_test("modules.debugging" ${test} ${${test}_PARAMETERS})
pika_add_unit_test("modules.debugging" ${test} VALGRIND)
endforeach()
2 changes: 1 addition & 1 deletion libs/pika/properties/tests/unit/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ foreach(test ${tests})
FOLDER "Tests/Unit/Modules/Properties"
)

pika_add_unit_test("modules.properties" ${test} ${${test}_PARAMETERS})
pika_add_unit_test("modules.properties" ${test} VALGRIND)
endforeach()

0 comments on commit f605e2c

Please sign in to comment.