edit-manifest-after.toml (969B)
1 # This is an example of comment at the top of a manifest 2 3 [DEFAULT] 4 5 ["bug_3.js"] 6 # This is a comment about Bug 3 7 # DO NOT ADD MORE TESTS HERE 8 skip-if = [ 9 "os == 'linux'", 10 "verify", # Bug 33333 11 ] 12 13 ["bug_20.js"] 14 skip-if = [ 15 "os == 'mac'", # Bug 20 16 "os == 'windows'", # Bug 20 17 ] 18 19 ["bug_100.js"] 20 skip-if = [ 21 "apple_catalina", # Bug 200 22 "os == 'android' && asan", # Bug 100, will be carried over 23 "os == 'android' && os_version == '14' && ccov", # Bug 100, will be carried over 24 ] 25 26 ["test_bar.html"] 27 skip-if = [ 28 "os == 'linux'", # Bug 222 29 "os == 'mac'", # Bug 111 30 "os == 'win'", # Bug 333 31 "tsan", # Bug 444 32 ] 33 34 ["test_extend_linux.js"] 35 skip-if = [ 36 "os == 'linux'", # Bug 222 37 "os == 'mac'", # Bug 111 38 ] 39 40 ["test_foo.html"] 41 skip-if = [ 42 "os == 'mac' && !debug", # bug 31415 43 "os == 'mac' && debug", 44 ] 45 46 ["test_simplify_linux.js"] 47 skip-if = [ 48 "os == 'linux' && os_version == '22.04'", # Bug 222 49 "os == 'mac'", # Bug 111 50 "os == 'win'", 51 ]