Bug 1162003 - Enable run-by-dir mode on Fx desktop debug & ASAN builds. r=jmaher

This commit is contained in:
Kaustabh Datta Choudhury 2015-09-10 09:52:00 +02:00
Родитель 640c3f9609
Коммит 2a080acfd0
6 изменённых файлов: 22 добавлений и 10 удалений

Просмотреть файл

@ -615,17 +615,17 @@ skip-if = buildapp == 'b2g' && toolkit != 'gonk' # bug 1082984
[test_dormant_playback.html]
skip-if = (os == 'win' && os_version == '5.1') || (os != 'win' && toolkit != 'gonk')
[test_eme_canvas_blocked.html]
skip-if = toolkit == 'android' || (os == 'win' && !debug) # bug 1043403, bug 1140675
skip-if = toolkit == 'android' || (os == 'win') # bug 1043403, bug 1140675, win debug : Bug 1202683
[test_eme_non_mse_fails.html]
skip-if = toolkit == 'android' # bug 1043403
skip-if = toolkit == 'android' || (os == 'win' && debug) # bug 1043403, win debug : Bug 1202683
[test_eme_request_notifications.html]
skip-if = toolkit == 'android' # bug 1043403
skip-if = toolkit == 'android' || (os == 'win' && debug) # bug 1043403, win debug : Bug 1202683
[test_eme_persistent_sessions.html]
skip-if = toolkit == 'android' # bug 1043403
skip-if = toolkit == 'android' || (os == 'win' && debug) # bug 1043403, win debug : Bug 1202683
[test_eme_playback.html]
skip-if = toolkit == 'android' || toolkit == 'gonk' || os == 'win' # bug 1043403, bug 1187903, bug 1186406, bug 1193351
[test_eme_requestKeySystemAccess.html]
skip-if = toolkit == 'android' # bug 1043403
skip-if = toolkit == 'android' || (os == 'win' && debug) # bug 1043403, win debug : Bug 1202683
[test_eme_stream_capture_blocked_case1.html]
tags=msg capturestream
skip-if = toolkit == 'android' || toolkit == 'gonk' || os == 'win' # bug 1043403, bug 1140675, bug 1187903, bug 1193351
@ -636,6 +636,7 @@ skip-if = toolkit == 'android' || toolkit == 'gonk' || os == 'win' # bug 1043403
tags=msg capturestream
skip-if = toolkit == 'android' || toolkit == 'gonk' || os == 'win' # bug 1043403, bug 1140675, bug 1187903, bug 1193351
[test_empty_resource.html]
skip-if = os == 'win' && debug #win debug : Bug 1202683
[test_error_in_video_document.html]
skip-if = toolkit == 'android' || (os == 'win' && !debug) || (os == 'mac' && !debug) # bug 608634
[test_error_on_404.html]

Просмотреть файл

@ -170,6 +170,10 @@ skip-if = (toolkit == 'gonk' && !debug) || android_version == '10' || android_ve
[test_stereoPanningWithGain.html]
[test_waveDecoder.html]
[test_waveShaper.html]
skip-if = os == 'win' && debug #Bug 1202564
[test_waveShaperNoCurve.html]
skip-if = os == 'win' && debug #Bug 1202565
[test_waveShaperPassThrough.html]
skip-if = os == 'win' && debug #Bug 1196084
[test_waveShaperInvalidLengthCurve.html]
skip-if = os == 'win' && debug #Bug 1202567

Просмотреть файл

@ -2,5 +2,5 @@
skip-if = buildapp == 'b2g' || os == 'android' || buildapp == 'mulet'
[test_bug1170484.html]
support-files =
helper_bug1170484.js
support-files = helper_bug1170484.js
skip-if = os == 'linux' #Bug 1202570

Просмотреть файл

@ -2523,10 +2523,16 @@ def run_test_harness(options):
options.runByDir = False
if runner.getTestFlavor(options) == 'browser-chrome':
if runner.getTestFlavor(options) == 'mochitest':
options.runByDir = True
if runner.getTestFlavor(options) == 'mochitest' and (not mozinfo.info['debug']) and (not mozinfo.info['asan']):
if mozinfo.info['asan'] and options.e10s:
options.runByDir = False
if mozinfo.isMac and mozinfo.info['debug']:
options.runByDir = False
if runner.getTestFlavor(options) == 'browser-chrome':
options.runByDir = True
if mozinfo.info.get('buildapp') == 'mulet':

Просмотреть файл

@ -11,6 +11,6 @@ skip-if = toolkit == 'android' #TIMED_OUT
[test_bug625187.html]
[test_bug861605.html]
[test_modal_prompts.html]
skip-if = toolkit == 'android' #TIMED_OUT
skip-if = toolkit == 'android' || (os == 'linux' && (debug || asan)) #TIMED_OUT (For Linux : 950636)
[test_modal_select.html]
skip-if = toolkit == 'android' #TIMED_OUT

Просмотреть файл

@ -16,4 +16,5 @@ support-files =
workerFrame.html
[test_classifier.html]
skip-if = (os == 'linux' && debug) #Bug 1199778
[test_classifier_worker.html]