-
Notifications
You must be signed in to change notification settings - Fork 412
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 18fc55a
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
37 changes: 37 additions & 0 deletions
37
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,37 @@ | ||
Show missing dependency in Melange when sandboxing is enabled | ||
|
||
$ 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] | ||
|