-
Notifications
You must be signed in to change notification settings - Fork 410
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: show melange.emit regression attempting to read wrong ocamldep …
…result Signed-off-by: Antonio Nuno Monteiro <anmonteiro@gmail.com>
- Loading branch information
1 parent
cd6f2e4
commit bdf25d6
Showing
1 changed file
with
57 additions
and
0 deletions.
There are no files selected for viewing
57 changes: 57 additions & 0 deletions
57
test/blackbox-tests/test-cases/melange/unexpected-ocamldep-output.t
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
Show that `melange.emit` + correct dependency tracking reads the processed | ||
file after any dialects have run | ||
|
||
$ cat > dune-project <<EOF | ||
> (lang dune 3.11) | ||
> (using melange 0.1) | ||
> (dialect | ||
> (name myd) | ||
> (implementation | ||
> (preprocess (run cat %{input-file})) | ||
> (extension myd))) | ||
> EOF | ||
$ cat > dune <<EOF | ||
> (melange.emit | ||
> (target output) | ||
> (alias mel) | ||
> (libraries foo) | ||
> (emit_stdlib false)) | ||
> EOF | ||
$ mkdir lib | ||
$ cat > lib/dune <<EOF | ||
> (library | ||
> (name foo) | ||
> (modes melange)) | ||
> EOF | ||
$ cat > lib/foo.myd <<EOF | ||
> let name = Bar.name | ||
> EOF | ||
$ cat > lib/bar.ml <<EOF | ||
> let name = "Zoe" | ||
> EOF | ||
$ dune build @mel | ||
Error: ocamldep returned unexpected output for _build/default/lib/foo.myd: | ||
> lib/foo.myd.ml: Bar | ||
-> required by _build/default/output/lib/foo.js | ||
-> required by alias mel | ||
[1] | ||
|
||
Now try preprocessing too | ||
|
||
$ dune clean | ||
$ cat > lib/dune <<EOF | ||
> (library | ||
> (name foo) | ||
> (preprocess (action (run cat %{input-file}))) | ||
> (modes melange)) | ||
> EOF | ||
$ dune build @mel | ||
Error: ocamldep returned unexpected output for _build/default/lib/bar.ml: | ||
> lib/bar.pp.ml: | ||
-> required by _build/default/output/lib/bar.js | ||
-> required by alias mel | ||
Error: ocamldep returned unexpected output for _build/default/lib/foo.myd.ml: | ||
> lib/foo.pp.myd.ml: Bar | ||
-> required by _build/default/output/lib/foo.js | ||
-> required by alias mel | ||
[1] |