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

Unified Diff: tools/valgrind/valgrind_test.py

Issue 8699003: Fix ui_tests under Dr. Memory on the bot - use an absolute path for the browser wrapper (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 1 month 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 111576)
+++ tools/valgrind/valgrind_test.py (working copy)
@@ -880,8 +880,9 @@
if self._options.indirect:
# TODO(timurrrr): reuse for TSan on Windows
- self.CreateBrowserWrapper(" ".join(
- ["python", "tools/valgrind/browser_wrapper_win.py"] + proc))
+ wrapper_path = os.path.join(self._source_dir,
+ "tools", "valgrind", "browser_wrapper_win.py")
+ self.CreateBrowserWrapper(" ".join(["python", wrapper_path] + proc))
proc = []
# Note that self._args begins with the name of the exe to be run.
« 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