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

Unified Diff: build/android/run_tests.py

Issue 10798009: Android: fix step name for test runners. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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: build/android/run_tests.py
diff --git a/build/android/run_tests.py b/build/android/run_tests.py
index 1513aa102f8a8ee3d5e2d03874734d4569838895..f1f1ab2faca461b39d317e3701a6edbb256b2ebd 100755
--- a/build/android/run_tests.py
+++ b/build/android/run_tests.py
@@ -272,7 +272,8 @@ def _RunATestSuite(options):
Returns:
0 if successful, number of failing tests otherwise.
"""
- buildbot_report.PrintNamedStep('Test suite %s' % options.test_suite)
+ step_name = os.path.basename(options.test_suite).replace('-debug.apk', '')
+ buildbot_report.PrintNamedStep('Test suite %s' % step_name)
attached_devices = []
buildbot_emulators = []
« 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