summaryrefslogtreecommitdiffstats
path: root/tools/valgrind/build-valgrind-for-chromium.sh
diff options
context:
space:
mode:
authordkegel@google.com <dkegel@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-03 19:54:28 +0000
committerdkegel@google.com <dkegel@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-03 19:54:28 +0000
commit0df8cc233dadf5c91442bd9273e2975838bbc0ea (patch)
tree6d511c34a5d4c75bdc7ad3a1ddaa97598929d5e1 /tools/valgrind/build-valgrind-for-chromium.sh
parentfd636146de8b34abae84089902d9c72eaeae3e31 (diff)
downloadchromium_src-0df8cc233dadf5c91442bd9273e2975838bbc0ea.zip
chromium_src-0df8cc233dadf5c91442bd9273e2975838bbc0ea.tar.gz
chromium_src-0df8cc233dadf5c91442bd9273e2975838bbc0ea.tar.bz2
Update to valgrind-3.5.0. From timur, http://codereview.chromium.org/190008
Also use it if present. Especially use its new xml suppression record if present, which is more correct than the one we synthesize. Also fix a warning about global use before declare in memcheck_analyze.py. Review URL: http://codereview.chromium.org/191006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25353 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/valgrind/build-valgrind-for-chromium.sh')
-rwxr-xr-xtools/valgrind/build-valgrind-for-chromium.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/valgrind/build-valgrind-for-chromium.sh b/tools/valgrind/build-valgrind-for-chromium.sh
index 32f600e..3437222 100755
--- a/tools/valgrind/build-valgrind-for-chromium.sh
+++ b/tools/valgrind/build-valgrind-for-chromium.sh
@@ -12,11 +12,11 @@
# fetch valgrind source via svn. Most users won't need those options.
# Checkout by date doesn't work unless you specify the friggin' timezone
-VALGRIND_SVN_REV=10771
+VALGRIND_SVN_REV=10880
# And svn isn't smart enough to figure out what rev of the linked tree to get
-VEX_SVN_REV=1913
+VEX_SVN_REV=1914
# and TSAN may be out of sync, so you have to check that out by rev anyway
-TSAN_SVN_REV=1111
+TSAN_SVN_REV=1129
THISDIR=$(dirname "${0}")
THISDIR=$(cd "${THISDIR}" && /bin/pwd)
@@ -75,8 +75,8 @@ then
# ThreadSanitizer is an experimental dynamic data race detector.
# See http://code.google.com/p/data-race-test/wiki/ThreadSanitizer
svn checkout -r "${TSAN_SVN_REV}" http://data-race-test.googlecode.com/svn/trunk/tsan tsan
- mkdir tsan/{docs,tests}
- touch tsan/{docs,tests}/Makefile.am
+ mkdir tsan/tests
+ touch tsan/tests/Makefile.am
patch -p 0 < tsan/valgrind.patch
fi