remove-manifest-after2.toml (534B)
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 == '24.04' && arch == 'x86' && debug", # Bug 333 19 ] 20 other-key = "test" 21 22 ["test_remove_skip4.html"] 23 skip-if = [ 24 "os == 'mac'", # Bug 111 25 ]