5b278b53ae
Summary: Fix for memory leaks in rocksdb tests. Also modified the variable NUM_FAILED_TESTS to print the actual number of failed tests. Test Plan: make <test>; valgrind --leak-check=full ./<test> Reviewers: sheki, dhruba Reviewed By: sheki CC: leveldb Differential Revision: https://reviews.facebook.net/D9333
15 lines
417 B
Bash
Executable File
15 lines
417 B
Bash
Executable File
#!/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
|
|
make -j$(nproc) valgrind_check
|
|
NUM_FAILED_TESTS=$((`wc -l $VALGRIND_DIR/valgrind_failed_tests | awk '{print $1}'` - 1))
|
|
if [ $NUM_FAILED_TESTS -le 1 ]; then
|
|
echo No tests have valgrind errors
|
|
exit 0
|
|
else
|
|
cat $VALGRIND_DIR/valgrind_failed_tests
|
|
exit 1
|
|
fi
|