We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af56666 commit 77e38f9Copy full SHA for 77e38f9
test/generators/gen_rules/gen_rules.ml
@@ -55,6 +55,7 @@ let constraints =
55
("bugs_pre_410.ml", Max "4.09");
56
("module_type_subst.mli", Min "4.13");
57
("class_comments.mli", Min "4.08");
58
+ ("functor_ml.ml", Min "4.14");
59
]
60
61
let test_cases_dir = Fpath.v "cases"
@@ -73,7 +74,8 @@ let make_test_case case_name =
73
74
let odoc = Fpath.set_ext ".odoc" base_out_path in
75
let odocl = Fpath.set_ext ".odocl" base_out_path in
76
let enabledif =
- try Some (List.assoc case_name constraints) with Not_found -> None
77
+ try Some (List.assoc case_name constraints)
78
+ with Not_found -> Some (Min "4.04")
79
in
80
{ Gen_rules_lib.input; cmt; odoc; odocl; enabledif }
81
0 commit comments