summaryrefslogtreecommitdiff
path: root/ocamltest/tests.ml
diff options
context:
space:
mode:
Diffstat (limited to 'ocamltest/tests.ml')
-rw-r--r--ocamltest/tests.ml7
1 files changed, 7 insertions, 0 deletions
diff --git a/ocamltest/tests.ml b/ocamltest/tests.ml
index b6cf378c1d..f2c32c937f 100644
--- a/ocamltest/tests.ml
+++ b/ocamltest/tests.ml
@@ -22,6 +22,13 @@ type t = {
test_description : string
}
+let null = {
+ test_name = "*pass*";
+ test_run_by_default = false;
+ test_actions = [];
+ test_description = "dummy test inserted by parser; always pass"
+}
+
let compare t1 t2 = String.compare t1.test_name t2.test_name
let (tests: (string, t) Hashtbl.t) = Hashtbl.create 20