diff options
Diffstat (limited to 'tools/valgrind/chrome_tests.sh')
-rwxr-xr-x | tools/valgrind/chrome_tests.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/valgrind/chrome_tests.sh b/tools/valgrind/chrome_tests.sh index 3371fcd..6fe4bc5 100755 --- a/tools/valgrind/chrome_tests.sh +++ b/tools/valgrind/chrome_tests.sh @@ -12,10 +12,9 @@ if test x"$CHROME_VALGRIND_BIN" = x then # Figure out which valgrind is installed. Use most recent one. # See build-valgrind-for-chromium.sh and its history for these constants. - for SVNREV in '10880-redzone' '10880' '10771' '{2009-07-15}' + for SVNREV in '10880-redzone' '10880' '10771' '20090715' do - SHORTSVNREV=`echo $SVNREV | tr -d '{\-}'` - CHROME_VALGRIND_BIN=/usr/local/valgrind-$SHORTSVNREV/bin + CHROME_VALGRIND_BIN=/usr/local/valgrind-$SVNREV/bin test -x $CHROME_VALGRIND_BIN/valgrind && break done fi @@ -26,6 +25,7 @@ then echo "Please run build-valgrind-for-chromium.sh or set CHROME_VALGRIND_BIN." exit 1 fi +echo "Using ${CHROME_VALGRIND_BIN}/valgrind" PATH="${CHROME_VALGRIND_BIN}:$PATH" export THISDIR=`dirname $0` |