Bug 1057512 - --run-by-dir enabled for browser-chrome on trunk. r=RyanVM

This commit is contained in:
Joel Maher 2014-11-17 11:01:23 -05:00
parent 9701fa420c
commit 72ca5bb924
4 changed files with 8 additions and 2 deletions

View File

@ -21,6 +21,7 @@ skip-if = os == "mac" # Intermittent failures, bug 898317
[browser_newtab_bug998387.js]
[browser_newtab_disable.js]
[browser_newtab_drag_drop.js]
skip-if = os == "win" && debug # bug 1097056; test fails in --run-by-dir mode on win8 x64 debug
[browser_newtab_drag_drop_ext.js]
[browser_newtab_drop_preview.js]
[browser_newtab_enhanced.js]

View File

@ -36,4 +36,4 @@ skip-if = e10s # Bug ?????? - Test uses load event and checks event.target.
[browser_yahoo_behavior.js]
skip-if = e10s # Bug ?????? - some issue with progress listeners [JavaScript Error: "req.originalURI is null" {file: "chrome://mochitests/content/browser/browser/components/search/test/browser_bing_behavior.js" line: 127}]
[browser_abouthome_behavior.js]
skip-if = e10s # Bug ???????
skip-if = e10s || os == "win" # Bug ??????, Bug 1100301 - leaks windows until shutdown when --run-by-dir

View File

@ -19,7 +19,7 @@ support-files =
[browser_tabview_bug587231.js]
skip-if = buildapp == 'mulet'
[browser_tabview_bug587276.js]
skip-if = e10s # Bug 1091200
skip-if = e10s || true # Bug 1091200, bug 1096285
[browser_tabview_bug587351.js]
[browser_tabview_bug587503.js]
[browser_tabview_bug587990.js]

View File

@ -1711,6 +1711,11 @@ class Mochitest(MochitestUtilsMixin):
self.setTestRoot(options)
# Until we have all green, this only runs on bc* jobs (not dt* jobs)
# skipping on e10s jobs as we have a few extra failures
if options.browserChrome and not options.subsuite and not options.e10s:
options.runByDir = True
if not options.runByDir:
return self.runMochitests(options, onLaunch)