summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjamesr <jamesr@chromium.org>2014-10-23 20:50:19 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-24 03:50:42 +0000
commit7ec86e83523b60bab33f1739469ff0a0801c8eb4 (patch)
tree0f1e4af93a2c71c18d9923835b0e728f54589626
parentc2eec0d81f92df06e614e104eba8b3e12bbc6030 (diff)
downloadchromium_src-7ec86e83523b60bab33f1739469ff0a0801c8eb4.zip
chromium_src-7ec86e83523b60bab33f1739469ff0a0801c8eb4.tar.gz
chromium_src-7ec86e83523b60bab33f1739469ff0a0801c8eb4.tar.bz2
Remove mojo test step from bb_device_steps.py
This code is being developed and tested in the mojo repository. R=dpranke@chromium.org TBR=navabi@chromium.org Review URL: https://codereview.chromium.org/679553002 Cr-Commit-Position: refs/heads/master@{#301038}
-rwxr-xr-xbuild/android/buildbot/bb_device_steps.py17
1 files changed, 1 insertions, 16 deletions
diff --git a/build/android/buildbot/bb_device_steps.py b/build/android/buildbot/bb_device_steps.py
index 59dd94c..6a7c90b 100755
--- a/build/android/buildbot/bb_device_steps.py
+++ b/build/android/buildbot/bb_device_steps.py
@@ -75,7 +75,7 @@ INSTRUMENTATION_TESTS = dict((suite.name, suite) for suite in [
'webview:android_webview/test/data/device_files'),
])
-VALID_TESTS = set(['chromedriver', 'chrome_proxy', 'gpu', 'mojo', 'sync',
+VALID_TESTS = set(['chromedriver', 'chrome_proxy', 'gpu', 'sync',
'telemetry_perf_unittests', 'ui', 'unit', 'webkit',
'webkit_layout', 'python_unittests'])
@@ -208,20 +208,6 @@ def RunTelemetryPerfUnitTests(options):
RunCmd(['tools/perf/run_tests'] + args)
-def RunMojoTests(options):
- """Runs the mojo unit tests.
-
- Args:
- options: options object.
- """
- test = I('MojoTest',
- None,
- 'org.chromium.mojo.tests',
- 'MojoTest',
- 'bindings:mojo/public/interfaces/bindings/tests/data')
- RunInstrumentationSuite(options, test)
-
-
def InstallApk(options, test, print_step=False):
"""Install an apk to all phones.
@@ -545,7 +531,6 @@ def GetTestStepCmds():
('chromedriver', RunChromeDriverTests),
('chrome_proxy', RunChromeProxyTests),
('gpu', RunGPUTests),
- ('mojo', RunMojoTests),
('python_unittests', RunPythonUnitTests),
('sync', RunChromeSyncShellTests),
('telemetry_perf_unittests', RunTelemetryPerfUnitTests),