remove-manifest-after3.toml (608B)
1 [DEFAULT] 2 3 ["test_remove_skip1.html"] 4 skip-if = [ 5 "os == 'mac'", # Bug 111 6 "os == 'linux'", # Bug 222 7 "os == 'win'", # Bug 333 8 ] 9 10 ["test_remove_skip2.html"] 11 skip-if = [ 12 "os == 'mac' && os_version == '14.70' && arch == 'x86'", # Bug 333 13 "os == 'linux' && os_version == '24.04' && arch == 'x86'", # Bug 111 14 ] 15 16 ["test_remove_skip3.html"] 17 skip-if = [ 18 "os == 'linux' && os_version == '22.04' && arch == 'armv7'", # Bug 222 19 "os == 'linux' && os_version == '24.04' && arch == 'x86' && debug", # Bug 333 20 ] 21 other-key = "test" 22 23 ["test_remove_skip4.html"] 24 skip-if = [ 25 "os == 'mac'", # Bug 111 26 ]