Skip to content

Commit b5c0512

Browse files
committed
Skip testing umf_test-disjointPool under helgrind
Skip testing umf_test-disjointPool under helgrind, because of the assert in helgrind: Helgrind: hg_main.c:308 (lockN_acquire_reader): \ Assertion 'lk->kind == LK_rdwr' failed. Signed-off-by: Lukasz Dorau <[email protected]>
1 parent b516365 commit b5c0512

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

test/test_valgrind.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,14 @@ for test in $(ls -1 umf_test-*); do
8484
# skip tests incompatible with valgrind
8585
FILTER=""
8686
case $test in
87+
umf_test-disjointPool)
88+
if [ "$TOOL" = "helgrind" ]; then
89+
# skip because of the assert in helgrind:
90+
# Helgrind: hg_main.c:308 (lockN_acquire_reader): Assertion 'lk->kind == LK_rdwr' failed.
91+
echo "- SKIPPED (helgrind only)"
92+
continue;
93+
fi
94+
;;
8795
umf_test-ipc_os_prov_*)
8896
echo "- SKIPPED"
8997
continue; # skip testing helper binaries used by the ipc_os_prov_* tests

0 commit comments

Comments
 (0)