Skip to content

Commit

Permalink
test: do not run lwt tests on mac OS for now
Browse files Browse the repository at this point in the history
  • Loading branch information
c-cube committed Apr 2, 2024
1 parent a1814ca commit 83ada94
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions test/lwt/dune
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
./run_hash.sh
(glob_files_rec ../data/**))
(enabled_if
(>= %{ocaml_version} 5.0))
(and
(= %{system} "linux")
(>= %{ocaml_version} 5.0)))
(action
(with-stdout-to
%{targets}
Expand All @@ -19,7 +21,9 @@
(rule
(alias runtest)
(enabled_if
(>= %{ocaml_version} 5.0))
(and
(= %{system} "linux")
(>= %{ocaml_version} 5.0)))
(package moonpool-lwt)
(action
(diff ./output_hash.expected ./output_hash.txt)))
Expand All @@ -28,7 +32,9 @@
(targets output_echo.txt)
(deps ./echo_server.exe ./echo_client.exe ./run_echo.sh)
(enabled_if
(>= %{ocaml_version} 5.0))
(and
(= %{system} "linux")
(>= %{ocaml_version} 5.0)))
(action
(with-stdout-to
%{targets}
Expand All @@ -37,7 +43,9 @@
(rule
(alias runtest)
(enabled_if
(>= %{ocaml_version} 5.0))
(and
(= %{system} "linux")
(>= %{ocaml_version} 5.0)))
(package moonpool-lwt)
(action
(diff ./output_echo.expected ./output_echo.txt)))

0 comments on commit 83ada94

Please sign in to comment.