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

Unified Diff: tools/perf/scripts_smoke_unittest.py

Issue 2293553002: Disable tests in system_health_smoke_test that takes 100+ seconds (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Disable flaky tests that take too long Created 4 years, 4 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 | « tools/perf/benchmarks/system_health_smoke_test.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/scripts_smoke_unittest.py
diff --git a/tools/perf/scripts_smoke_unittest.py b/tools/perf/scripts_smoke_unittest.py
index b23f56153735a7e6e729b85d1a01ed74e8baceba..c6baa8b70bd3b44de6576dfe6aecf65d7467c4d5 100644
--- a/tools/perf/scripts_smoke_unittest.py
+++ b/tools/perf/scripts_smoke_unittest.py
@@ -39,15 +39,15 @@ class ScriptsSmokeTest(unittest.TestCase):
self.assertIn('No benchmark named "foo"', stdout)
self.assertNotEquals(return_code, 0)
- # crbug.com/483212
- @benchmark.Disabled('chromeos')
+ @benchmark.Disabled('chromeos') # crbug.com/483212
+ @benchmark.Disabled('android') # crbug.com/641934
def testRunBenchmarkListListsOutBenchmarks(self):
return_code, stdout = self.RunPerfScript('run_benchmark list')
self.assertEquals(return_code, 0, stdout)
self.assertIn('Pass --browser to list benchmarks', stdout)
self.assertIn('dummy_benchmark.stable_benchmark_1', stdout)
- @benchmark.Enabled('android')
+ @benchmark.Disabled('all') # crbug.com/641934
def testRunBenchmarkListListsOutBenchmarksOnAndroid(self):
return_code, stdout = self.RunPerfScript(
'run_benchmark list --device=android --browser=android-chromium')
« no previous file with comments | « tools/perf/benchmarks/system_health_smoke_test.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698