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

Unified Diff: scripts/master/factory/chromium_commands.py

Issue 5133001: Shuffle things on the GPU layout test bots so that we store results... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build/
Patch Set: '' Created 10 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: scripts/master/factory/chromium_commands.py
===================================================================
--- scripts/master/factory/chromium_commands.py (revision 66358)
+++ scripts/master/factory/chromium_commands.py (working copy)
@@ -607,11 +607,11 @@
platform = platform.replace('chromium', 'chromium-gpu')
else:
platform = 'chromium-gpu'
- result_dir_basename = 'layout-test-results-gpu'
+ builder_name = '%(buildername)s - GPU'
result_str = 'gpu results'
test_name = 'webkit_gpu_tests'
else:
- result_dir_basename = 'layout-test-results'
+ builder_name = '%(buildername)'
result_str = 'results'
test_name = 'webkit_tests'
@@ -619,7 +619,7 @@
if with_pageheap:
pageheap_description = ' (--enable-pageheap)'
- webkit_result_dir = '/'.join(['..', '..', result_dir_basename])
+ webkit_result_dir = '/'.join(['..', '..', 'layout-test-results'])
cmd = [self._python, self._layout_test_tool,
'--target', self._target,
@@ -627,7 +627,7 @@
'-o', webkit_result_dir,
'--build-dir', self._build_dir,
'--build-number', WithProperties("%(buildnumber)s"),
- '--builder-name', WithProperties("%(buildername)s"),]
+ '--builder-name', WithProperties(builder_name),]
if layout_part:
cmd.extend(['--run-part', layout_part])
@@ -653,7 +653,7 @@
'--results-dir', webkit_result_dir,
'--build-dir', self._build_dir,
'--build-number', WithProperties("%(buildnumber)s"),
- '--builder-name', WithProperties("%(buildername)s"),]
+ '--builder-name', WithProperties(buildername),]
self.AddArchiveStep(
data_description='webkit_tests ' + result_str,
« 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