blob: bd4866690371563fdc970848f5d1e8a45f8325fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# This is an example of comment at the top of a manifest
["bug_100.js"]
skip-if = [
"debug", # Bug 100
]
["bug_3.js"]
# This is a comment about Bug 3
skip-if = ["os == 'linux'"]
# DO NOT ADD MORE TESTS HERE
['bug_20.js']
["test_foo.html"]
skip-if = ["os == 'mac' && !debug"] # bug 31415
["test_bar.html"]
skip-if = [
"os == 'mac'", # Bug 111
"os == 'linux'", # Bug 222
"os == 'win'", # Bug 333
]
|