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

Unified Diff: chrome/test/chromeos/autotest/files/client/site_tests/desktopui_UITest/desktopui_UITest.py

Issue 4698004: [Chrome OS] Cleanup and modify Chrome-for-ChromeOS autotest wrappers (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/chrome
Patch Set: Created 10 years, 1 month 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 | « chrome/test/chromeos/autotest/files/client/site_tests/desktopui_UITest/control.two ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/chromeos/autotest/files/client/site_tests/desktopui_UITest/desktopui_UITest.py
diff --git a/chrome/test/chromeos/autotest/files/client/site_tests/desktopui_UITest/desktopui_UITest.py b/chrome/test/chromeos/autotest/files/client/site_tests/desktopui_UITest/desktopui_UITest.py
index 2f4e056cbad44919ed26c8ecb42272aadf4e2289..8ee5edd6df530ee5aa62d04492e2fb45dd11c0d3 100644
--- a/chrome/test/chromeos/autotest/files/client/site_tests/desktopui_UITest/desktopui_UITest.py
+++ b/chrome/test/chromeos/autotest/files/client/site_tests/desktopui_UITest/desktopui_UITest.py
@@ -7,6 +7,12 @@ from autotest_lib.client.bin import site_chrome_test
class desktopui_UITest(site_chrome_test.ChromeTestBase):
version = 1
- def run_once(self):
- self.run_test('ui_tests', '')
+ binary_to_run='ui_tests'
+ blacklist = []
+ def run_once(self, group=0, total_groups=4):
+ tests_to_run = self.filter_bad_tests(
+ self.generate_test_list(self.binary_to_run, group, total_groups))
+ tests_to_run.extend(map(lambda(x): '-'+x, self.blacklist))
+ self.run_chrome_test(self.binary_to_run,
+ '--gtest_filter=%s' % ':'.join(tests_to_run))
« no previous file with comments | « chrome/test/chromeos/autotest/files/client/site_tests/desktopui_UITest/control.two ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698