diff options
author | bulach@chromium.org <bulach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-18 14:59:10 +0000 |
---|---|---|
committer | bulach@chromium.org <bulach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-18 14:59:10 +0000 |
commit | 8c55055b94cd28d03469ad4872861b9e60313fc3 (patch) | |
tree | a6e101e83e15367c7dfc91ee2304388b73fd1208 /build | |
parent | 25892906023da25e82eede172fc7d958677fe810 (diff) | |
download | chromium_src-8c55055b94cd28d03469ad4872861b9e60313fc3.zip chromium_src-8c55055b94cd28d03469ad4872861b9e60313fc3.tar.gz chromium_src-8c55055b94cd28d03469ad4872861b9e60313fc3.tar.bz2 |
Android: fix step name for test runners.
Following http://codereview.chromium.org/10777017/, the step name
contained the fully qualified path, it needs to be just the basename.
BUG=
TEST=run tests, note the step name.
Review URL: https://chromiumcodereview.appspot.com/10798009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@147238 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rwxr-xr-x | build/android/run_tests.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build/android/run_tests.py b/build/android/run_tests.py index 1513aa1..f1f1ab2 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 = [] |