Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@

(generate_opam_files)

(warnings (duplicate_deps disabled))

(package
(name mutaml)
(synopsis "A mutation tester for OCaml")
Expand All @@ -26,6 +28,8 @@
(tags ("test" "mutation testing"))
(depends
(ocaml (>= 4.12.0))
(dune (>= 3.18))
(dune (and (>= 3.22.0) :with-test))
(ppxlib (and (>= 0.28.0) (< 0.36.0)))
(ppx_deriving_yojson (>= 3.7.0))
stdlib-random
Expand Down
2 changes: 1 addition & 1 deletion mutaml.opam
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ bug-reports: "https://github.com/jmid/mutaml/issues"
depends: [
"ocaml" {>= "4.12.0"}
"dune" {>= "3.18"}
"dune" {< "3.22.0" & with-test}
"dune" {>= "3.22.0" & with-test}
"ppxlib" {>= "0.28.0" & < "0.36.0"}
"ppx_deriving_yojson" {>= "3.7.0"}
"stdlib-random"
Expand Down
2 changes: 1 addition & 1 deletion test/filter_dune_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# breakdown:
# filter [@@@ocaml.ppx.context whitespace { 0-or-more not-close-brace-chars }]
# and normalize file system paths
dune build $@ 2>&1 | \
dune build -j1 $@ 2>&1 | \
sed -E 'H;1h;$!d;x;s/\[@@@ocaml\.ppx\.context\n\ \ \{[^}]*\}\]//g' | \
sed -E "/^\/usr\/bin\/ld/d" | \
sed 's/home[^ ]*bin\//some\/path\/...\/bin\//' | \
Expand Down
2 changes: 1 addition & 1 deletion test/issue-attributes.t/run.t
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Set seed and (full) mutation rate as environment variables, for repeatability

$ ls _build
default
log
trace.csexp

$ ls _build/default
mutaml-mut-files.txt
Expand Down
2 changes: 1 addition & 1 deletion test/issue-newlines.t/run.t
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Set seed and (full) mutation rate as environment variables, for repeatability

$ ls _build
default
log
trace.csexp

$ ls _build/default
mutaml-mut-files.txt
Expand Down
2 changes: 1 addition & 1 deletion test/issue-pattern-match.t/run.t
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Set seed and (full) mutation rate as environment variables, for repeatability

$ ls _build
default
log
trace.csexp

$ ls _build/default
mutaml-mut-files.txt
Expand Down
2 changes: 1 addition & 1 deletion test/issue-stdlib-equal.t/run.t
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Set seed and (full) mutation rate as environment variables, for repeatability

$ ls _build
default
log
trace.csexp

$ ls _build/default
mutaml-mut-files.txt
Expand Down
2 changes: 1 addition & 1 deletion test/testproj-1-module.t/run.t
Original file line number Diff line number Diff line change
Expand Up @@ -471,8 +471,8 @@ Create a dune-workspace file with another build context:

_build:
default
log
mutation
trace.csexp

_mutations:
lib.ml-mutant12
Expand Down
Loading