summaryrefslogtreecommitdiffstats
path: root/testing/mozbase/manifestparser/tests/default-skipif.toml
blob: e986f29b8cb4a5346cdee820f0fb91f2a3601fc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[DEFAULT]
skip-if = [
  "os == 'win' && debug",  # a pesky comment
]

[test1]
skip-if = [
  "debug",
]

[test2]
skip-if = [
  "os == 'linux'",
]

[test3]
skip-if = [
  "os == 'win'",
]

[test4]
skip-if = [
  "os == 'win' && debug",
]

[test5]
foo = "bar"

[test6]
skip-if = [
  "debug # a second pesky inline comment", # inline comments are discouraged
]