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

Unified Diff: chrome/test/webdriver/test/run_chromedriver_tests.py

Issue 8943001: Fix mac chromedriver tests (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: ... Created 9 years 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/webdriver/test/py_unittest_util.py ('k') | chrome/test/webdriver/webdriver_automation.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/webdriver/test/run_chromedriver_tests.py
diff --git a/chrome/test/webdriver/test/run_chromedriver_tests.py b/chrome/test/webdriver/test/run_chromedriver_tests.py
index 8d1aeff94507a5d337ed9f7651718676211d62ad..bbb4c3b521e8f67fd9e8d3e2ed9c44e44735df36 100755
--- a/chrome/test/webdriver/test/run_chromedriver_tests.py
+++ b/chrome/test/webdriver/test/run_chromedriver_tests.py
@@ -48,9 +48,6 @@ def main():
if options.list is True:
print '\n'.join(py_unittest_util.GetTestNamesFromSuite(filtered_suite))
return 0
- if sys.platform.startswith('darwin'):
- print 'All tests temporarily disabled on mac, crbug.com/103434'
- return 0
driver_exe = options.driver_exe
if driver_exe is not None:
@@ -61,6 +58,8 @@ def main():
ChromeDriverTest.GlobalSetUp(driver_exe, chrome_exe)
result = py_unittest_util.GTestTextTestRunner(verbosity=1).run(filtered_suite)
ChromeDriverTest.GlobalTearDown()
+ if not result.wasSuccessful():
+ print "Rerun failing tests using --f=" + result.getRetestFilter()
return not result.wasSuccessful()
« no previous file with comments | « chrome/test/webdriver/test/py_unittest_util.py ('k') | chrome/test/webdriver/webdriver_automation.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698