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

Unified Diff: client/tools/buildbot_annotated_steps.py

Issue 8372083: Small fix to buildbot_annotated_steps.py to find correctly the latest version of (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
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: client/tools/buildbot_annotated_steps.py
diff --git a/client/tools/buildbot_annotated_steps.py b/client/tools/buildbot_annotated_steps.py
index b780a1a707bf8d9305e192d9366ceaa5633f8528..585c17efe6b4608c793780811926f060f927574e 100644
--- a/client/tools/buildbot_annotated_steps.py
+++ b/client/tools/buildbot_annotated_steps.py
@@ -26,7 +26,7 @@ BUILDER_NAME = 'BUILDBOT_BUILDERNAME'
REVISION = 'BUILDBOT_REVISION'
# latest dartium location
-DARTIUM_VERSION_FILE = 'tests/drt/LAST_VERSION'
+DARTIUM_VERSION_FILE = 'client/tests/drt/LAST_VERSION'
DARTIUM_V_MATCHER = (
'gs://dartium-archive/[^/]*/dartium-\w*-inc-([0-9]*).([0-9]*).zip')
@@ -133,7 +133,7 @@ def ProcessDartClientTests(component, mode, platform, name):
if component == 'dartium':
if os.path.exists(DARTIUM_VERSION_FILE):
- latest = open(version_file, 'r').read()
+ latest = open(DARTIUM_VERSION_FILE, 'r').read()
match = re.match(DARTIUM_V_MATCHER, latest)
if match:
print '@@@BUILD_STEP vm r%s (dartium r%s)@@@' % (
« 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