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
106 lines
1.8 KiB
TOML
106 lines
1.8 KiB
TOML
[DEFAULT]
|
|
tags = "devtools devtools-memory"
|
|
head = "../../../shared/test/shared-head.js head.js"
|
|
firefox-appdir = "browser"
|
|
run-if = [
|
|
"os != 'android'",
|
|
]
|
|
|
|
["test_action-clear-snapshots_01.js"]
|
|
|
|
["test_action-clear-snapshots_02.js"]
|
|
|
|
["test_action-clear-snapshots_03.js"]
|
|
|
|
["test_action-clear-snapshots_04.js"]
|
|
|
|
["test_action-clear-snapshots_05.js"]
|
|
|
|
["test_action-clear-snapshots_06.js"]
|
|
|
|
["test_action-export-snapshot.js"]
|
|
|
|
["test_action-filter-01.js"]
|
|
|
|
["test_action-filter-02.js"]
|
|
|
|
["test_action-filter-03.js"]
|
|
|
|
["test_action-import-snapshot-and-census.js"]
|
|
|
|
["test_action-import-snapshot-dominator-tree.js"]
|
|
|
|
["test_action-select-snapshot.js"]
|
|
|
|
["test_action-set-display-and-refresh-01.js"]
|
|
|
|
["test_action-set-display-and-refresh-02.js"]
|
|
|
|
["test_action-set-display.js"]
|
|
|
|
["test_action-take-census.js"]
|
|
|
|
["test_action-take-snapshot-and-census.js"]
|
|
|
|
["test_action-take-snapshot.js"]
|
|
|
|
["test_action-toggle-inverted-and-refresh-01.js"]
|
|
|
|
["test_action-toggle-inverted-and-refresh-02.js"]
|
|
|
|
["test_action-toggle-inverted.js"]
|
|
|
|
["test_action-toggle-recording-allocations.js"]
|
|
|
|
["test_action_diffing_01.js"]
|
|
|
|
["test_action_diffing_02.js"]
|
|
|
|
["test_action_diffing_03.js"]
|
|
|
|
["test_action_diffing_04.js"]
|
|
|
|
["test_action_diffing_05.js"]
|
|
|
|
["test_dominator_trees_01.js"]
|
|
|
|
["test_dominator_trees_02.js"]
|
|
|
|
["test_dominator_trees_03.js"]
|
|
|
|
["test_dominator_trees_04.js"]
|
|
|
|
["test_dominator_trees_05.js"]
|
|
|
|
["test_dominator_trees_06.js"]
|
|
|
|
["test_dominator_trees_07.js"]
|
|
|
|
["test_dominator_trees_08.js"]
|
|
|
|
["test_dominator_trees_09.js"]
|
|
|
|
["test_dominator_trees_10.js"]
|
|
|
|
["test_individuals_01.js"]
|
|
|
|
["test_individuals_02.js"]
|
|
|
|
["test_individuals_03.js"]
|
|
|
|
["test_individuals_04.js"]
|
|
|
|
["test_individuals_05.js"]
|
|
|
|
["test_individuals_06.js"]
|
|
|
|
["test_pop_view_01.js"]
|
|
|
|
["test_tree-map-01.js"]
|
|
|
|
["test_tree-map-02.js"]
|
|
|
|
["test_utils-get-snapshot-totals.js"]
|
|
|
|
["test_utils.js"]
|