Torture test script.

This commit is contained in:
Ian Gulliver
2015-06-20 05:48:45 +00:00
parent 0603c2c601
commit e382392170

8
clients/c/torture.sh Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/bash
while :; do
valgrind --leak-check=full --show-reachable=yes --num-callers=20 --suppressions=suppressions ./test 2>&1 | tee torture.log
if test $? != 0; then
exit 1
fi
done