2013-02-25 19:17:26 +00:00
|
|
|
#!/bin/bash
|
|
|
|
#A shell script for Jenknis to run valgrind on rocksdb tests
|
|
|
|
#Returns 0 on success when there are no failed tests
|
|
|
|
|
|
|
|
VALGRIND_DIR=VALGRIND_LOGS
|
2013-04-23 21:16:56 +00:00
|
|
|
make clean
|
2013-03-06 01:38:13 +00:00
|
|
|
make -j$(nproc) valgrind_check
|
2013-03-08 20:29:19 +00:00
|
|
|
NUM_FAILED_TESTS=$((`wc -l $VALGRIND_DIR/valgrind_failed_tests | awk '{print $1}'` - 1))
|
2013-04-11 21:34:01 +00:00
|
|
|
if [ $NUM_FAILED_TESTS -lt 1 ]; then
|
2013-03-06 00:49:38 +00:00
|
|
|
echo No tests have valgrind errors
|
|
|
|
exit 0
|
2013-02-25 19:17:26 +00:00
|
|
|
else
|
2013-03-06 00:49:38 +00:00
|
|
|
cat $VALGRIND_DIR/valgrind_failed_tests
|
|
|
|
exit 1
|
2013-02-25 19:17:26 +00:00
|
|
|
fi
|