[cfe-commits] r48698 - /cfe/trunk/test/TestRunner.sh
Sam Bishop
sam at bishop.dhs.org
Sat Mar 22 20:42:19 PDT 2008
Author: sbishop
Date: Sat Mar 22 22:42:18 2008
New Revision: 48698
URL: http://llvm.org/viewvc/llvm-project?rev=48698&view=rev
Log:
The newest version of valgrind, 3.3.0, no longer appends PIDs to log filenames
by default. Adding a %p works with this new version and is backwards
compatible, though it looks a little funny.
Modified:
cfe/trunk/test/TestRunner.sh
Modified: cfe/trunk/test/TestRunner.sh
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/TestRunner.sh?rev=48698&r1=48697&r2=48698&view=diff
==============================================================================
--- cfe/trunk/test/TestRunner.sh (original)
+++ cfe/trunk/test/TestRunner.sh Sat Mar 22 22:42:18 2008
@@ -44,7 +44,7 @@
CLANG="clang"
if [ -n "$VG" ]; then
rm -f $OUTPUT.vg.*
- CLANG="valgrind --leak-check=full --quiet --log-file=$OUTPUT.vg $CLANG"
+ CLANG="valgrind --leak-check=full --quiet --log-file=$OUTPUT.vg.%p $CLANG"
fi
SCRIPT=$OUTPUT.script
More information about the cfe-commits
mailing list