swh:1:snp:5115096b921df712aeb2a08114fede57fb3331fb
Raw File
Tip revision: 37c6740c383bb9a6ee2747b04f08bc77fcfa10c5 authored by Lei Jin on 11 August 2014, 22:04:41 UTC
make statistics ToString function empty instead of pure virtual
Tip revision: 37c6740
valgrind_test.sh
#!/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
back to top