Skip to content
Snippets Groups Projects
Commit 62cd0026 authored by Eric Cano's avatar Eric Cano
Browse files

Fixed wrong excaping.

Make was interpreting the variable instead of the underlying shell
parent 221f5507
No related branches found
No related tags found
No related merge requests found
......@@ -3,51 +3,51 @@
all: baretests valgrind 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]})
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]})
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 2>&1 | ts "vg: %b %d %H:%M:%S"; (exit $${PIPESTATUS[0]})
valgrindMultiprocess: baretests
valgrind -q @VALGRIND_OPTS_STR@ --child-silent-after-fork=yes \
--suppressions=/usr/share/cta-@CTA_VERSION@/unittest/valgrind.suppr \
/usr/bin/cta-unitTests-multiProcess 2>&1 | ts "vgmp: %b %d %H:%M:%S"; (exit ${PIPESTATUS[0]})
/usr/bin/cta-unitTests-multiProcess 2>&1 | ts "vgmp: %b %d %H:%M:%S"; (exit $${PIPESTATUS[0]})
helgrindBase: valgrindMultiprocess helgrindMultiprocess baretests
valgrind -q --tool=helgrind @HELGRIND_OPTS_STR@ \
--suppressions=/usr/share/cta-@CTA_VERSION@/unittest/helgrind.suppr \
/usr/bin/cta-unitTests \
--gtest_filter=-OStoreDBPlusMockSchedulerTestVFS*:OStoreTestVFS*:OStoreDBPlusMockSchedulerTestVFS*:InMemory* \
2>&1 | ts "hgb: %b %d %H:%M:%S"; (exit ${PIPESTATUS[0]})
2>&1 | ts "hgb: %b %d %H:%M:%S"; (exit $${PIPESTATUS[0]})
helgrindScheduler: valgrindMultiprocess helgrindMultiprocess baretests
valgrind -q --tool=helgrind @HELGRIND_OPTS_STR@ \
--suppressions=/usr/share/cta-@CTA_VERSION@/unittest/helgrind.suppr \
/usr/bin/cta-unitTests \
--gtest_filter=OStoreDBPlusMockSchedulerTestVFS/Scheduler* 2>&1 | ts "hgs: %b %d %H:%M:%S"; (exit ${PIPESTATUS[0]})
--gtest_filter=OStoreDBPlusMockSchedulerTestVFS/Scheduler* 2>&1 | ts "hgs: %b %d %H:%M:%S"; (exit $${PIPESTATUS[0]})
helgrindOStoreDB: valgrindMultiprocess helgrindMultiprocess baretests
valgrind -q --tool=helgrind @HELGRIND_OPTS_STR@ \
--suppressions=/usr/share/cta-@CTA_VERSION@/unittest/helgrind.suppr \
/usr/bin/cta-unitTests \
--gtest_filter=OStoreTestVFS* 2>&1 | ts "hgosdb: %b %d %H:%M:%S"; (exit ${PIPESTATUS[0]})
--gtest_filter=OStoreTestVFS* 2>&1 | ts "hgosdb: %b %d %H:%M:%S"; (exit $${PIPESTATUS[0]})
helgrindDataTransfer: valgrindMultiprocess helgrindMultiprocess baretests
valgrind -q --tool=helgrind @HELGRIND_OPTS_STR@ \
--suppressions=/usr/share/cta-@CTA_VERSION@/unittest/helgrind.suppr \
/usr/bin/cta-unitTests \
--gtest_filter=OStoreDBPlusMockSchedulerTestVFS/DataTransferSessionTest* 2>&1 | ts "hgdt: %b %d %H:%M:%S"; (exit ${PIPESTATUS[0]})
--gtest_filter=OStoreDBPlusMockSchedulerTestVFS/DataTransferSessionTest* 2>&1 | ts "hgdt: %b %d %H:%M:%S"; (exit $${PIPESTATUS[0]})
helgrindInMemoryCatalogue: valgrindMultiprocess helgrindMultiprocess baretests
valgrind -q --tool=helgrind @HELGRIND_OPTS_STR@ \
--suppressions=/usr/share/cta-@CTA_VERSION@/unittest/helgrind.suppr \
/usr/bin/cta-unitTests \
--gtest_filter=InMemory/* 2>&1 | ts "hgimc: %b %d %H:%M:%S"; (exit ${PIPESTATUS[0]})
--gtest_filter=InMemory/* 2>&1 | ts "hgimc: %b %d %H:%M:%S"; (exit $${PIPESTATUS[0]})
helgrindMultiprocess: valgrindMultiprocess baretests
valgrind -q --tool=helgrind @HELGRIND_OPTS_STR@ \
--suppressions=/usr/share/cta-@CTA_VERSION@/unittest/helgrind.suppr \
/usr/bin/cta-unitTests-multiProcess 2>&1 | ts "hgmp: %b %d %H:%M:%S"; (exit ${PIPESTATUS[0]})
\ No newline at end of file
/usr/bin/cta-unitTests-multiProcess 2>&1 | ts "hgmp: %b %d %H:%M:%S"; (exit $${PIPESTATUS[0]})
\ No newline at end of file
.phony: all
all: baretests valgrind valgrindMultiprocess helgrindBase helgrindScheduler helgrindOStoreDB helgrindDataTransfer helgrindInMemoryCatalogue helgrindMultiprocess
baretests:
MALLOC_CHECK_=3 @CMAKE_CURRENT_BINARY_DIR@/cta-unitTests 2>&1 | ts "bt: %b %d %H:%M:%S"; (exit ${PIPESTATUS[0]})
MALLOC_CHECK_=3 @CMAKE_CURRENT_BINARY_DIR@/cta-unitTests-multiProcess 2>&1 | ts "btmp: %b %d %H:%M:%S"; (exit ${PIPESTATUS[0]})
MALLOC_CHECK_=3 @CMAKE_CURRENT_BINARY_DIR@/cta-unitTests 2>&1 | ts "bt: %b %d %H:%M:%S"; (exit $${PIPESTATUS[0]})
MALLOC_CHECK_=3 @CMAKE_CURRENT_BINARY_DIR@/cta-unitTests-multiProcess 2>&1 | ts "btmp: %b %d %H:%M:%S"; (exit $${PIPESTATUS[0]})
valgrind: valgrindMultiprocess helgrindMultiprocess
valgrind -q @VALGRIND_OPTS_STR@ \
--suppressions=@CMAKE_CURRENT_BINARY_DIR@/valgrind.suppr \
@CMAKE_CURRENT_BINARY_DIR@/cta-unitTests 2>&1 | ts "vg: %b %d %H:%M:%S"; (exit ${PIPESTATUS[0]})
@CMAKE_CURRENT_BINARY_DIR@/cta-unitTests 2>&1 | ts "vg: %b %d %H:%M:%S"; (exit $${PIPESTATUS[0]})
valgrindMultiprocess:
valgrind -q @VALGRIND_OPTS_STR@ --child-silent-after-fork=yes \
--suppressions=@CMAKE_CURRENT_BINARY_DIR@/valgrind.suppr \
@CMAKE_CURRENT_BINARY_DIR@/cta-unitTests-multiProcess 2>&1 | ts "vgmp: %b %d %H:%M:%S"; (exit ${PIPESTATUS[0]})
@CMAKE_CURRENT_BINARY_DIR@/cta-unitTests-multiProcess 2>&1 | ts "vgmp: %b %d %H:%M:%S"; (exit $${PIPESTATUS[0]})
helgrindBase: valgrindMultiprocess helgrindMultiprocess
valgrind -q --tool=helgrind @HELGRIND_OPTS_STR@ \
--suppressions=@CMAKE_CURRENT_BINARY_DIR@/helgrind.suppr \
@CMAKE_CURRENT_BINARY_DIR@/cta-unitTests \
--gtest_filter=-OStoreDBPlusMockSchedulerTestVFS*:OStoreTestVFS*:OStoreDBPlusMockSchedulerTestVFS*:InMemory* \
2>&1 | ts "hgb: %b %d %H:%M:%S"; (exit ${PIPESTATUS[0]})
2>&1 | ts "hgb: %b %d %H:%M:%S"; (exit $${PIPESTATUS[0]})
helgrindScheduler: valgrindMultiprocess helgrindMultiprocess
valgrind -q --tool=helgrind @HELGRIND_OPTS_STR@ \
--suppressions=@CMAKE_CURRENT_BINARY_DIR@/helgrind.suppr \
@CMAKE_CURRENT_BINARY_DIR@/cta-unitTests \
--gtest_filter=OStoreDBPlusMockSchedulerTestVFS/Scheduler* 2>&1 | ts "hgs: %b %d %H:%M:%S"; (exit ${PIPESTATUS[0]})
--gtest_filter=OStoreDBPlusMockSchedulerTestVFS/Scheduler* 2>&1 | ts "hgs: %b %d %H:%M:%S"; (exit $${PIPESTATUS[0]})
helgrindOStoreDB: valgrindMultiprocess helgrindMultiprocess
valgrind -q --tool=helgrind @HELGRIND_OPTS_STR@ \
--suppressions=@CMAKE_CURRENT_BINARY_DIR@/helgrind.suppr \
@CMAKE_CURRENT_BINARY_DIR@/cta-unitTests \
--gtest_filter=OStoreTestVFS* 2>&1 | ts "hgosdb: %b %d %H:%M:%S"; (exit ${PIPESTATUS[0]})
--gtest_filter=OStoreTestVFS* 2>&1 | ts "hgosdb: %b %d %H:%M:%S"; (exit $${PIPESTATUS[0]})
helgrindDataTransfer: valgrindMultiprocess helgrindMultiprocess
valgrind -q --tool=helgrind @HELGRIND_OPTS_STR@ \
--suppressions=@CMAKE_CURRENT_BINARY_DIR@/helgrind.suppr \
@CMAKE_CURRENT_BINARY_DIR@/cta-unitTests \
--gtest_filter=OStoreDBPlusMockSchedulerTestVFS/DataTransferSessionTest* 2>&1 | ts "hgdt: %b %d %H:%M:%S"; (exit ${PIPESTATUS[0]})
--gtest_filter=OStoreDBPlusMockSchedulerTestVFS/DataTransferSessionTest* 2>&1 | ts "hgdt: %b %d %H:%M:%S"; (exit $${PIPESTATUS[0]})
helgrindInMemoryCatalogue: valgrindMultiprocess helgrindMultiprocess
valgrind -q --tool=helgrind @HELGRIND_OPTS_STR@ \
--suppressions=@CMAKE_CURRENT_BINARY_DIR@/helgrind.suppr \
@CMAKE_CURRENT_BINARY_DIR@/cta-unitTests \
--gtest_filter=InMemory/* 2>&1 | ts "hgimc: %b %d %H:%M:%S"; (exit ${PIPESTATUS[0]})
--gtest_filter=InMemory/* 2>&1 | ts "hgimc: %b %d %H:%M:%S"; (exit $${PIPESTATUS[0]})
helgrindMultiprocess: valgrindMultiprocess
valgrind -q --tool=helgrind @HELGRIND_OPTS_STR@ \
--suppressions=@CMAKE_CURRENT_BINARY_DIR@/helgrind.suppr \
@CMAKE_CURRENT_BINARY_DIR@/cta-unitTests-multiProcess 2>&1 | ts "hgmp: %b %d %H:%M:%S"; (exit ${PIPESTATUS[0]})
@CMAKE_CURRENT_BINARY_DIR@/cta-unitTests-multiProcess 2>&1 | ts "hgmp: %b %d %H:%M:%S"; (exit $${PIPESTATUS[0]})
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