Skip to content

Commit

Permalink
Misc: disable some test on older ocaml
Browse files Browse the repository at this point in the history
  • Loading branch information
hhugo authored and OlivierNicole committed Sep 3, 2024
1 parent 7eee7ed commit 7721b16
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions compiler/tests-toplevel/dune
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,12 @@

(rule
(target test_toplevel.referencejs)
(deps test_toplevel.js)
(enabled_if
(and
(<> %{profile} wasm)
(<> %{profile} wasm-effects)))
(deps test_toplevel.js)
(<> %{profile} wasm-effects)
(>= %{ocaml_version} 5.2)))
(action
(with-stdout-to
%{target}
Expand All @@ -35,7 +36,8 @@
(enabled_if
(and
(<> %{profile} wasm)
(<> %{profile} wasm-effects)))
(<> %{profile} wasm-effects)
(>= %{ocaml_version} 5.2)))
(deps test_toplevel.reference test_toplevel.referencejs)
(action
(diff test_toplevel.reference test_toplevel.referencejs)))

0 comments on commit 7721b16

Please sign in to comment.