Skip to content

Commit 8d3a7d4

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

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

test/html/test.ml

Lines changed: 5 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,8 @@ 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
308+
else [] );
305309
source_files_all;
306310
]
307311
| _ -> source_files_all

0 commit comments

Comments
 (0)