summaryrefslogtreecommitdiffstats
path: root/testing/mozbase/manifestparser/tests/filter-example.toml
diff options
context:
space:
mode:
Diffstat (limited to 'testing/mozbase/manifestparser/tests/filter-example.toml')
-rw-r--r--testing/mozbase/manifestparser/tests/filter-example.toml20
1 files changed, 20 insertions, 0 deletions
diff --git a/testing/mozbase/manifestparser/tests/filter-example.toml b/testing/mozbase/manifestparser/tests/filter-example.toml
new file mode 100644
index 0000000000..044470e4cc
--- /dev/null
+++ b/testing/mozbase/manifestparser/tests/filter-example.toml
@@ -0,0 +1,20 @@
+# illustrate test filters based on various categories
+
+[windowstest]
+skip-if = [
+ "os != 'win'",
+]
+
+[fleem]
+skip-if = [
+ "os == 'mac'",
+]
+
+[linuxtest]
+skip-if = [
+ "os == 'mac'",
+ "os == 'win'",
+]
+fail-if = [
+ "os == 'mac'",
+]