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

Unified Diff: tools/dartium/test.py

Issue 276563005: Fix tools/dartium/test.py path computation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 7 months 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/dartium/test.py
diff --git a/tools/dartium/test.py b/tools/dartium/test.py
index 75b85d511e2896e40afcdc6d78fde57790ba3214..86d97ebd84a5b3aba5495deda55479b53cc1b93e 100755
--- a/tools/dartium/test.py
+++ b/tools/dartium/test.py
@@ -144,7 +144,7 @@ def main():
pathname = os.path.dirname(sys.argv[0])
fullpath = os.path.abspath(pathname)
ricow1 2014/05/13 11:55:47 add a comment saying: # We are in src/dart/tools/d
- srcpath = os.path.normpath(os.path.join(fullpath, '..'))
+ srcpath = os.path.normpath(os.path.join(fullpath, '..', '..', '..'))
test_mode = ''
timeout = 30000
« 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