Skip to content

Commit

Permalink
test: don't install the outcome tree printer test executable (#2787)
Browse files Browse the repository at this point in the history
  • Loading branch information
anmonteiro authored Aug 5, 2024
1 parent ebe72f2 commit 5ac3c14
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion test/basic.t/run.t
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
See the typed tree from ./input.re
$ cat ./input.re | outcome_printer
$ cat ./input.re | ../lib/outcometreePrinter.exe
let x1: unit => int;
let x2: 'a => int;
let x3: (int, 'a) => int;
Expand Down
2 changes: 1 addition & 1 deletion test/class.t/run.t
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
See the typed tree from ./input.re
$ cat ./input.re | outcome_printer
$ cat ./input.re | ../lib/outcometreePrinter.exe
class aClass1 :
('a) =>
{
Expand Down
2 changes: 1 addition & 1 deletion test/dune
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
(cram
(applies_to * \ lib rtopIntegration)
(package reason)
(deps %{bin:ocamlc} %{bin:refmt} %{bin:outcome_printer}))
(deps %{bin:ocamlc} %{bin:refmt} ./lib/outcometreePrinter.exe))

(cram
(applies_to rtopIntegration)
Expand Down
2 changes: 1 addition & 1 deletion test/inlineRecord.t/run.t
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
See the typed tree from ./input.re
$ cat ./input.re | outcome_printer
$ cat ./input.re | ../lib/outcometreePrinter.exe
type t0 = T0({ t0: int, });
type t1 = A({ x: int, }) | B | C({ c1: string, c2: string, });
type t2(_) =
Expand Down
2 changes: 0 additions & 2 deletions test/lib/dune
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,5 @@
(run %{bin:cppo} -V OCAML:%{ocaml_version} %{deps} -o %{targets})))

(executable
(public_name outcome_printer)
(name outcometreePrinter)
(package reason)
(libraries reason))

0 comments on commit 5ac3c14

Please sign in to comment.