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
52 lines
1.1 KiB
TOML
52 lines
1.1 KiB
TOML
[DEFAULT]
|
|
skip-if = [
|
|
"a11y_checks", # 1534855
|
|
]
|
|
subsuite = "a11y"
|
|
support-files = [
|
|
"!/accessible/tests/mochitest/*.js",
|
|
"*.sys.mjs",
|
|
"atk/a11y_setup.py",
|
|
"head.js",
|
|
"python_runner_wsh.py",
|
|
"shared-head.js",
|
|
"windows/a11y_setup.py",
|
|
"windows/a11y_setup_requirements.txt",
|
|
]
|
|
prefs = [
|
|
# Required for the eval in invokeContentTask in shared-head.js
|
|
"security.allow_eval_with_system_principal=true"
|
|
]
|
|
|
|
["browser_shutdown_acc_reference.js"]
|
|
|
|
["browser_shutdown_doc_acc_reference.js"]
|
|
|
|
["browser_shutdown_multi_acc_reference_doc.js"]
|
|
|
|
["browser_shutdown_multi_acc_reference_obj.js"]
|
|
|
|
["browser_shutdown_multi_proxy_acc_reference_doc.js"]
|
|
|
|
["browser_shutdown_multi_proxy_acc_reference_obj.js"]
|
|
|
|
["browser_shutdown_multi_reference.js"]
|
|
|
|
["browser_shutdown_parent_own_reference.js"]
|
|
|
|
["browser_shutdown_pref.js"]
|
|
|
|
["browser_shutdown_proxy_acc_reference.js"]
|
|
|
|
["browser_shutdown_proxy_doc_acc_reference.js"]
|
|
|
|
["browser_shutdown_remote_no_reference.js"]
|
|
|
|
["browser_shutdown_remote_only.js"]
|
|
|
|
["browser_shutdown_remote_own_reference.js"]
|
|
|
|
["browser_shutdown_scope_lifecycle.js"]
|
|
|
|
["browser_shutdown_start_restart.js"]
|