summaryrefslogtreecommitdiffstats
path: root/testing/mozbase/manifestparser/tests/edit-manifest-before.toml
diff options
context:
space:
mode:
Diffstat (limited to 'testing/mozbase/manifestparser/tests/edit-manifest-before.toml')
-rw-r--r--testing/mozbase/manifestparser/tests/edit-manifest-before.toml23
1 files changed, 23 insertions, 0 deletions
diff --git a/testing/mozbase/manifestparser/tests/edit-manifest-before.toml b/testing/mozbase/manifestparser/tests/edit-manifest-before.toml
new file mode 100644
index 0000000000..bd48666903
--- /dev/null
+++ b/testing/mozbase/manifestparser/tests/edit-manifest-before.toml
@@ -0,0 +1,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
+]