Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions test/dune
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
(rule
(targets t1.ml t1.mli t1_plain.ml t1_plain_ext.ml)
(deps
(source_tree t1))
(source_tree t1)
%{bin:ocaml-crunch})
(action
(setenv
SOURCE_DATE_EPOCH
0
(progn
(run %{bin:ocaml-crunch} --mode=lwt -o t1.ml t1)
(run %{bin:ocaml-crunch} --mode=plain -o t1_plain.ml t1)
(run %{bin:ocaml-crunch} --mode=plain -e ext -o t1_plain_ext.ml t1)))))
(run ocaml-crunch --mode=lwt -o t1.ml t1)
(run ocaml-crunch --mode=plain -o t1_plain.ml t1)
(run ocaml-crunch --mode=plain -e ext -o t1_plain_ext.ml t1)))))

(rule
(alias runtest)
Expand Down