For TOML manifests:
1. Change processor -> arch
2. Use arch instead of bits bits == '64' =>
aarch64 (default on mac 15.30) or x86_64 bits == '32' => x86
3. Replace android_version with corresponding os_version
4. Remove conditions with linux os_version=="18.04"
(unless they contain verify or verify-standalone)
5. Remove conditions with mac os_version=='11.20',
(unless they contain verify or verify-standalone)
6. Remove conditions with win os_version=='11.2009' or win11_2009,
(unless they contain verify or verify-standalone)
7. Linux conditions should have os_version, arch and display
(simple "os == 'linux'" will get expanded to these two)
"os == 'linux' && os_version == '22.04' && arch == 'x86_64' && display == 'wayland'"
"os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11'"
8. Mac conditions should have os_version and arch
(simple "os == 'mac'" will get expanded to these three)
"os == 'mac' && os_version == '10.15' && arch == 'x86_64'",
"os == 'mac' && os_version == '14.70' && arch == 'x86_64'",
"os == 'mac' && os_version == '15.30' && arch == 'aarch64'",
9. Replace apple_catalina with
os == 'mac' && os_version == '10.15' && arch == 'x86_64'
10. Replace apple_silicon with
os == 'mac' && os_version = '15.30' && arch == 'aarch64'
11. Replace win10_2009 with
os == 'win' && os_version = '10.2009' && arch == 'x86_64'
12. Replace "!debug" with three conditions "asan", "opt", or "tsan"
13. Replace literal boolean comparison with variables
(e.g. "debug == false" => "!debug)
Resolves 2000285
Signed-off-by: Tom Marble <tmarble@info9.net>
Differential Revision: https://phabricator.services.mozilla.com/D272815
68 lines
1.6 KiB
TOML
68 lines
1.6 KiB
TOML
[DEFAULT]
|
|
skip-if = [
|
|
"http2",
|
|
"http3",
|
|
]
|
|
|
|
["test_bad_cert.html"]
|
|
support-files = ["file_bad_cert.sjs"]
|
|
|
|
["test_break_endless_upgrade_downgrade_loop.html"]
|
|
support-files = [
|
|
"file_break_endless_upgrade_downgrade_loop.sjs",
|
|
"file_downgrade_with_different_path.sjs",
|
|
]
|
|
|
|
["test_bug_1725646.html"]
|
|
support-files = ["file_bug_1725646_a.sjs", "file_bug_1725646_b.sjs"]
|
|
|
|
["test_data_uri.html"]
|
|
support-files = ["file_data_uri.html"]
|
|
|
|
["test_downgrade_500_responses.html"]
|
|
support-files = ["file_downgrade_500_responses.sjs"]
|
|
|
|
["test_downgrade_bad_responses.html"]
|
|
support-files = ["file_downgrade_bad_responses.sjs"]
|
|
|
|
["test_downgrade_request_upgrade_request.html"]
|
|
support-files = ["file_downgrade_request_upgrade_request.sjs"]
|
|
|
|
["test_form_submission.html"]
|
|
support-files = ["file_form_submission.sjs"]
|
|
|
|
["test_fragment.html"]
|
|
support-files = ["file_fragment.html"]
|
|
|
|
["test_multiple_redirection.html"]
|
|
support-files = ["file_multiple_redirection.sjs"]
|
|
|
|
["test_redirect_downgrade.html"]
|
|
support-files = ["file_redirect_downgrade.sjs"]
|
|
|
|
["test_redirect_http_error.html"]
|
|
support-files = ["file_redirect_error.sjs"]
|
|
|
|
["test_redirect_upgrade.html"]
|
|
scheme = "https"
|
|
support-files = ["file_redirect.sjs"]
|
|
|
|
["test_referrer_policy.html"]
|
|
support-files = ["file_referrer_policy.sjs"]
|
|
|
|
["test_resource_upgrade.html"]
|
|
scheme = "https"
|
|
support-files = [
|
|
"file_upgrade_insecure.html",
|
|
"file_upgrade_insecure_server.sjs",
|
|
]
|
|
skip-if = [
|
|
"true", # Bug 1727101, Bug 1727925
|
|
]
|
|
|
|
["test_slow_non_standard_port.html"]
|
|
support-files = ["file_slow_non_standard_port.sjs"]
|
|
|
|
["test_toplevel_cookies.html"]
|
|
support-files = ["file_toplevel_cookies.sjs"]
|