This repository was archived by the owner on Sep 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 619
Testing
Marcel Kost edited this page Dec 5, 2017
·
17 revisions
By default, all the test cases are first built and then run under Valgrind. To build and run all the unit test cases :
make checkPARALLEL MAKE
If your machine has more than 8 GB DRAM and 4 physical cores, you can increase the concurrency settings of make.
make check -j4Here's the command to build an individual test:
make $TEST_NAMEEXAMPLE:
make sample_testTo run an individual test using ctest, list the test cases:
ctest -NThen run it thus:
ctest -I 26,26 -VRefer to the README in the test subfolder: https://github.com/cmu-db/peloton/blob/master/test/README.md
ADVANCED: Here's the valgrind command to run an individual test (once it has already been built) :
valgrind "--trace-children=yes" "--leak-check=full" "--track-origins=yes" "--soname-synonyms=somalloc=*jemalloc*" "--error-exitcode=1" "--suppressions=/$LOCATION_OF_PELOTON_SOURCE_DIR/third_party/valgrind/valgrind.supp /$LOCATION_OF_PELOTON_BUILD_DIR/test/$TEST_NAMEEXAMPLE:
valgrind "--trace-children=yes" "--leak-check=full" "--track-origins=yes" "--soname-synonyms=somalloc=*jemalloc*" "--error-exitcode=1" "--suppressions=/home/parallels/git/peloton/third_party/valgrind/valgrind.supp" ./test/sample_test