-
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 error with dialects
Signed-off-by: Antonio Nuno Monteiro <anmonteiro@gmail.com>
- Loading branch information
1 parent
cd6f2e4
commit 1a5d52a
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
38 changes: 38 additions & 0 deletions
38
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,38 @@ | ||
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] | ||
|