Skip to content
Snippets Groups Projects
Commit 1cb42297 authored by Jorge Camarero Vera's avatar Jorge Camarero Vera
Browse files

Suppress valgrind errors of the Xdr library.

parent 37f860c8
No related branches found
No related tags found
No related merge requests found
.phony: all
all: baretests valgrind valgrindMultiprocess helgrindBase helgrindScheduler helgrindOStoreDB helgrindDataTransfer helgrindInMemoryCatalogue helgrindMultiprocess
all: baretests valgrind valgrindOsmTape valgrindMultiprocess helgrindBase helgrindScheduler helgrindOStoreDB helgrindDataTransfer helgrindInMemoryCatalogue helgrindMultiprocess
baretests:
MALLOC_CHECK_=3 /usr/bin/cta-unitTests | ts "bt: %b %d %H:%M:%S"; (exit $${PIPESTATUS[0]})
MALLOC_CHECK_=3 /usr/bin/cta-unitTests-multiProcess | ts "btmp: %b %d %H:%M:%S"; (exit $${PIPESTATUS[0]})
......@@ -9,7 +9,15 @@ baretests:
valgrind: valgrindMultiprocess helgrindMultiprocess baretests
valgrind -q @VALGRIND_OPTS_STR@ \
--suppressions=/usr/share/cta-@CTA_VERSION@/unittest/valgrind.suppr \
/usr/bin/cta-unitTests 2>&1 | ts "vg: %b %d %H:%M:%S"; (exit $${PIPESTATUS[0]})
/usr/bin/cta-unitTests \
--gtest_filter="-OSMTapeFileTest.*" 2>&1 | ts "vg: %b %d %H:%M:%S"; (exit $${PIPESTATUS[0]})
valgrindOsmTape: valgrindMultiprocess helgrindMultiprocess baretests
valgrind -q @VALGRIND_OPTS_STR@ \
--show-mismatched-frees=no \
--suppressions=/usr/share/cta-@CTA_VERSION@/unittest/valgrind.suppr \
/usr/bin/cta-unitTests \
--gtest_filter="OSMTapeFileTest.*" 2>&1 | ts "vgot: %b %d %H:%M:%S"; (exit $${PIPESTATUS[0]})
valgrindMultiprocess: baretests
valgrind -q @VALGRIND_OPTS_STR@ --child-silent-after-fork=yes \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment