Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1298)

Unified Diff: tools/valgrind/valgrind_test.py

Issue 8806005: Fix valgrind_test.py to use the current version of GCC. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/valgrind/valgrind_test.py
===================================================================
--- tools/valgrind/valgrind_test.py (revision 112961)
+++ tools/valgrind/valgrind_test.py (working copy)
@@ -1107,6 +1107,7 @@
if common.IsMac():
self._env["DYLD_NO_PIE"] = "1"
+
def ToolName(self):
return "asan"
@@ -1142,8 +1143,9 @@
return False
ld_library_paths = []
for tail in "lib32", "lib64":
- ld_library_paths.append(os.path.join(self._source_dir, "third_party",
- "compiler-tsan", "gcc-4.5.3", tail))
+ ld_library_paths.append(
+ os.path.join(self._source_dir, "third_party",
+ "compiler-tsan", "gcc-current", tail))
# LD_LIBRARY_PATH will be overriden.
self._env["LD_LIBRARY_PATH"] = ":".join(ld_library_paths)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698