summaryrefslogtreecommitdiff
path: root/build_tools/valgrind_test.sh
blob: 8c7e52134570b72721458a041a5e19f3253c17fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/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=build_tools/VALGRIND_LOGS
make clean
make -j$(nproc) valgrind_check
NUM_FAILED_TESTS=$((`wc -l $VALGRIND_DIR/valgrind_failed_tests | awk '{print $1}'` - 1))
if [ $NUM_FAILED_TESTS -lt 1 ]; then
  echo No tests have valgrind errors
  exit 0
else
  cat $VALGRIND_DIR/valgrind_failed_tests
  exit 1
fi