зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1602832 - P3: Skip failed tests r=dragana
Differential Revision: https://phabricator.services.mozilla.com/D67448
This commit is contained in:
Родитель
87223aa639
Коммит
d0dabdf4c3
|
@ -7,4 +7,6 @@ support-files =
|
|||
[test_DNSLookup.js]
|
||||
skip-if = debug # Bug 1617845
|
||||
[test_LookupAggregator.js]
|
||||
skip-if = socketprocess_networking
|
||||
[test_TRRRacer.js]
|
||||
skip-if = socketprocess_networking
|
||||
|
|
|
@ -181,6 +181,7 @@ skip-if = bits != 32
|
|||
[test_compressappend.js]
|
||||
[test_content_encoding_gzip.js]
|
||||
[test_content_sniffer.js]
|
||||
skip-if = socketprocess_networking
|
||||
[test_cookie_header.js]
|
||||
[test_cookiejars.js]
|
||||
[test_cookiejars_safebrowsing.js]
|
||||
|
@ -257,6 +258,7 @@ skip-if = os == "win"
|
|||
[test_nojsredir.js]
|
||||
[test_offline_status.js]
|
||||
[test_origin.js]
|
||||
skip-if = socketprocess_networking
|
||||
[test_anonymous-coalescing.js]
|
||||
[test_original_sent_received_head.js]
|
||||
[test_parse_content_type.js]
|
||||
|
@ -305,9 +307,12 @@ fail-if = os == "android"
|
|||
# http2 unit tests require us to have node available to run the spdy and http2 server
|
||||
[test_http2.js]
|
||||
run-sequentially = node server exceptions dont replay well
|
||||
skip-if = socketprocess_networking
|
||||
[test_altsvc.js]
|
||||
run-sequentially = node server exceptions dont replay well
|
||||
skip-if = socketprocess_networking
|
||||
[test_speculative_connect.js]
|
||||
skip-if = socketprocess_networking
|
||||
[test_standardurl.js]
|
||||
[test_standardurl_default_port.js]
|
||||
[test_standardurl_port.js]
|
||||
|
@ -329,12 +334,14 @@ run-sequentially = Hardcoded hash value includes port 4444.
|
|||
[test_unix_domain.js]
|
||||
[test_addr_in_use_error.js]
|
||||
[test_about_networking.js]
|
||||
skip-if = socketprocess_networking
|
||||
[test_ping_aboutnetworking.js]
|
||||
skip-if = (verify && (os == 'mac'))
|
||||
[test_referrer.js]
|
||||
[test_referrer_cross_origin.js]
|
||||
[test_referrer_policy.js]
|
||||
[test_predictor.js]
|
||||
skip-if = socketprocess_networking
|
||||
[test_signature_extraction.js]
|
||||
skip-if = os != "win"
|
||||
[test_synthesized_response.js]
|
||||
|
@ -346,6 +353,7 @@ skip-if = os != "win"
|
|||
firefox-appdir = browser
|
||||
[test_be_conservative_error_handling.js]
|
||||
firefox-appdir = browser
|
||||
skip-if = socketprocess_networking
|
||||
[test_tls_server.js]
|
||||
firefox-appdir = browser
|
||||
[test_tls_server_multiple_clients.js]
|
||||
|
@ -374,6 +382,7 @@ skip-if = appname == "thunderbird"
|
|||
[test_throttlequeue.js]
|
||||
[test_throttlechannel.js]
|
||||
[test_throttling.js]
|
||||
skip-if = socketprocess_networking
|
||||
[test_separate_connections.js]
|
||||
[test_trackingProtection_annotateChannels.js]
|
||||
[test_race_cache_with_network.js]
|
||||
|
@ -392,14 +401,16 @@ skip-if = (verify && (os == 'linux')) || (os == "android" && processor == "x86_6
|
|||
run-sequentially = node server exceptions dont replay well
|
||||
[test_trr.js]
|
||||
# test_trr.js is not working in Thunderbird due to bug 1608066.
|
||||
skip-if = appname == "thunderbird"
|
||||
skip-if = appname == "thunderbird" || socketprocess_networking
|
||||
[test_ioservice.js]
|
||||
[test_substituting_protocol_handler.js]
|
||||
[test_proxyconnect.js]
|
||||
skip-if = tsan # Bug 1614708
|
||||
skip-if = tsan || socketprocess_networking # Bug 1614708
|
||||
[test_captive_portal_service.js]
|
||||
run-sequentially = node server exceptions dont replay well
|
||||
skip-if = socketprocess_networking
|
||||
[test_esni_dns_fetch.js]
|
||||
skip-if = socketprocess_networking
|
||||
[test_network_connectivity_service.js]
|
||||
[test_suspend_channel_on_authRetry.js]
|
||||
[test_suspend_channel_on_examine_merged_response.js]
|
||||
|
|
|
@ -1311,6 +1311,9 @@ class XPCShellTests(object):
|
|||
self.mozInfo['verify'] = options.get('verify', False)
|
||||
self.mozInfo['webrender'] = self.enable_webrender
|
||||
|
||||
self.mozInfo['socketprocess_networking'] = prefs.get(
|
||||
'network.http.network_access_on_socket_process.enabled', False)
|
||||
|
||||
mozinfo.update(self.mozInfo)
|
||||
|
||||
return True
|
||||
|
|
|
@ -182,6 +182,7 @@ skip-if = os == "android" && debug
|
|||
[test_ext_webRequest_permission.js]
|
||||
skip-if = os == "android" && debug
|
||||
[test_ext_webRequest_requestSize.js]
|
||||
skip-if = socketprocess_networking
|
||||
[test_ext_webRequest_responseBody.js]
|
||||
skip-if = os == "android" && debug
|
||||
[test_ext_webRequest_set_cookie.js]
|
||||
|
|
|
@ -15,4 +15,5 @@ support-files =
|
|||
data/notags.mp3
|
||||
|
||||
[test_mediasniffer.js]
|
||||
skip-if = socketprocess_networking
|
||||
[test_mediasniffer_ext.js]
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
head = head.js
|
||||
support-files =
|
||||
../shared-head.js
|
||||
skip-if = toolkit == 'android'
|
||||
skip-if = toolkit == 'android' || socketprocess_networking
|
||||
|
||||
[test_active_configuration.js]
|
||||
[test_start.js]
|
||||
|
|
Загрузка…
Ссылка в новой задаче