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

Unified Diff: tools/testing/perf_testing/create_graph.py

Issue 9317060: Fixing Windows buildbot exception. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 11 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 | « frog/scripts/buildbot_annotated_steps.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/perf_testing/create_graph.py
===================================================================
--- tools/testing/perf_testing/create_graph.py (revision 3867)
+++ tools/testing/perf_testing/create_graph.py (working copy)
@@ -107,9 +107,10 @@
# have test statistics for what's passing on x64. Eliminate arch specification
# when we have tests running on x64, too.
shutil.rmtree(os.path.join(os.getcwd(),
- utils.GetBuildRoot(utils.GuessOS(), 'release', 'ia32')), onerror=on_rm_error)
+ utils.GetBuildRoot(utils.GuessOS(), 'release', 'ia32')),
+ onerror=on_rm_error)
lines = run_cmd([os.path.join('.', 'tools', 'build.py'), '-m', 'release',
- '--arch=ia32', 'create_sdk'])
+ '--arch=ia32', 'create_sdk'])
for line in lines:
if 'BUILD FAILED' in lines:
« no previous file with comments | « frog/scripts/buildbot_annotated_steps.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698