summaryrefslogtreecommitdiff
path: root/RunTest
diff options
context:
space:
mode:
authorchpe <chpe@2f5784b3-3f2a-0410-8824-cb99058d5e15>2012-10-24 18:14:10 +0000
committerchpe <chpe@2f5784b3-3f2a-0410-8824-cb99058d5e15>2012-10-24 18:14:10 +0000
commit5e6b5d819a2ef4b0c39d7169d88519836ba077df (patch)
tree11bf6f968cc0ced402381b300380c6287e14be1c /RunTest
parent3616bc24a2b9f59a9c2ec59232f1d964b20315bb (diff)
downloadpcre-5e6b5d819a2ef4b0c39d7169d88519836ba077df.tar.gz
tests: Revert change to how valgrind is run
Use -q and don't keep a log file. git-svn-id: svn://vcs.exim.org/pcre/code/trunk@1173 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'RunTest')
-rwxr-xr-xRunTest7
1 files changed, 4 insertions, 3 deletions
diff --git a/RunTest b/RunTest
index 33d542b..51b780d 100755
--- a/RunTest
+++ b/RunTest
@@ -22,8 +22,8 @@
# possible to select which to test by the arguments -8, -16 or -32.
#
# Other arguments for this script can be individual test numbers, or the word
-# "valgrind", or "sim" followed by an argument to run cross-compiled
-# executables under a simulator, for example:
+# "valgrind", "valgrind-log" or "sim" followed by an argument to run cross-
+# compiled executables under a simulator, for example:
#
# RunTest 3 sim "qemu-arm -s 8388608"
#
@@ -221,7 +221,8 @@ while [ $# -gt 0 ] ; do
-8) arg8=yes;;
-16) arg16=yes;;
-32) arg32=yes;;
- valgrind) valgrind="valgrind --tool=memcheck --num-callers=30 --leak-check=no --error-limit=no --smc-check=all --log-file=report.%p ";;
+ valgrind) valgrind="valgrind --tool=memcheck -q --smc-check=all";;
+ valgrind-log) valgrind="valgrind --tool=memcheck --num-callers=30 --leak-check=no --error-limit=no --smc-check=all --log-file=report.%p ";;
sim) shift; sim=$1;;
*) echo "Unknown test number '$1'"; exit 1;;
esac