mirror of
https://github.com/c-cube/moonpool.git
synced 2025-12-06 03:05:30 -05:00
test: do not run lwt tests on mac OS for now
This commit is contained in:
parent
a1814cadb4
commit
83ada948aa
1 changed files with 12 additions and 4 deletions
|
|
@ -10,7 +10,9 @@
|
||||||
./run_hash.sh
|
./run_hash.sh
|
||||||
(glob_files_rec ../data/**))
|
(glob_files_rec ../data/**))
|
||||||
(enabled_if
|
(enabled_if
|
||||||
(>= %{ocaml_version} 5.0))
|
(and
|
||||||
|
(= %{system} "linux")
|
||||||
|
(>= %{ocaml_version} 5.0)))
|
||||||
(action
|
(action
|
||||||
(with-stdout-to
|
(with-stdout-to
|
||||||
%{targets}
|
%{targets}
|
||||||
|
|
@ -19,7 +21,9 @@
|
||||||
(rule
|
(rule
|
||||||
(alias runtest)
|
(alias runtest)
|
||||||
(enabled_if
|
(enabled_if
|
||||||
(>= %{ocaml_version} 5.0))
|
(and
|
||||||
|
(= %{system} "linux")
|
||||||
|
(>= %{ocaml_version} 5.0)))
|
||||||
(package moonpool-lwt)
|
(package moonpool-lwt)
|
||||||
(action
|
(action
|
||||||
(diff ./output_hash.expected ./output_hash.txt)))
|
(diff ./output_hash.expected ./output_hash.txt)))
|
||||||
|
|
@ -28,7 +32,9 @@
|
||||||
(targets output_echo.txt)
|
(targets output_echo.txt)
|
||||||
(deps ./echo_server.exe ./echo_client.exe ./run_echo.sh)
|
(deps ./echo_server.exe ./echo_client.exe ./run_echo.sh)
|
||||||
(enabled_if
|
(enabled_if
|
||||||
(>= %{ocaml_version} 5.0))
|
(and
|
||||||
|
(= %{system} "linux")
|
||||||
|
(>= %{ocaml_version} 5.0)))
|
||||||
(action
|
(action
|
||||||
(with-stdout-to
|
(with-stdout-to
|
||||||
%{targets}
|
%{targets}
|
||||||
|
|
@ -37,7 +43,9 @@
|
||||||
(rule
|
(rule
|
||||||
(alias runtest)
|
(alias runtest)
|
||||||
(enabled_if
|
(enabled_if
|
||||||
(>= %{ocaml_version} 5.0))
|
(and
|
||||||
|
(= %{system} "linux")
|
||||||
|
(>= %{ocaml_version} 5.0)))
|
||||||
(package moonpool-lwt)
|
(package moonpool-lwt)
|
||||||
(action
|
(action
|
||||||
(diff ./output_echo.expected ./output_echo.txt)))
|
(diff ./output_echo.expected ./output_echo.txt)))
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue