Skip to content

Commit 5a24adb

Browse files
committed
disable tests for compilers <4.04
Signed-off-by: lubegasimon <lubegasimon73@gmail.com>
1 parent 18e5de8 commit 5a24adb

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/html/test.ml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,6 @@ let source_files_all =
273273
("functor.mli", [ "Functor/index.html" ]);
274274
("class.mli", [ "Class/index.html" ]);
275275
("stop.mli", [ "Stop/index.html" ]);
276-
("stop_dead_link_doc.mli", [ "Stop_dead_link_doc/index.html" ]);
277276
("bugs.ml", [ "Bugs/index.html" ]);
278277
("alias.ml", [ "Alias/index.html"; "Alias/X/index.html" ]);
279278
]
@@ -290,6 +289,9 @@ let source_files_post408 =
290289

291290
let source_files_pre410 = [ ("bugs_pre_410.ml", [ "Bugs_pre_410/index.html" ]) ]
292291

292+
let source_files_stop_dead_link_doc =
293+
[("stop_dead_link_doc.mli", [ "Stop_dead_link_doc/index.html" ])]
294+
293295
let source_files =
294296
let cur =
295297
Astring.String.cuts ~sep:"." Sys.ocaml_version
@@ -302,6 +304,7 @@ let source_files =
302304
(if major = 4 && minor < 10 then source_files_pre410 else []);
303305
(if major = 4 && minor > 8 then source_files_post408 else []);
304306
(if major = 4 && minor >= 6 then source_files_post406 else []);
307+
(if major = 4 && minor >= 4 then source_files_stop_dead_link_doc else []);
305308
source_files_all;
306309
]
307310
| _ -> source_files_all

0 commit comments

Comments
 (0)