Skip to content

Commit

Permalink
test(melange): show compilation error for Melange public virtual lib
Browse files Browse the repository at this point in the history
Signed-off-by: Antonio Nuno Monteiro <[email protected]>
  • Loading branch information
anmonteiro committed Dec 27, 2024
1 parent 975bfec commit e4c9a4d
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions test/blackbox-tests/test-cases/melange/virtual-lib-public.t
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
Test a case of virtual libraries where the virtual library is transitive

$ mkdir -p vlib js_impl test
$ cat > dune-project <<EOF
> (lang dune 3.13)
> (using melange 0.1)
> (package (name the_lib))
> EOF
$ cat > vlib/dune <<EOF
> (library
> (name the_lib)
> (modes melange native)
> (public_name the_lib)
> (virtual_modules virt))
> EOF
$ cat > vlib/the_lib.mli <<EOF
> module Time : sig
> val gettimeofday : unit -> float
> end
> EOF
$ cat > vlib/the_lib.ml <<EOF
> module Time = struct
> let gettimeofday () = Virt.gettimeofday ()
> end
> EOF
$ cat > vlib/virt.mli <<EOF
> val gettimeofday : unit -> float
> EOF

$ cat > js_impl/dune <<EOF
> (library
> (name timeJs)
> (implements the_lib)
> (modes melange)
> (preprocess (pps melange.ppx)))
> EOF
$ cat > js_impl/virt.ml <<EOF
> let gettimeofday : unit -> float = fun () -> 42.
> EOF

$ cat > test/dune <<EOF
> (melange.emit
> (target output)
> (libraries the_lib timeJs)
> (emit_stdlib false))
> EOF

$ dune build @melange
Error: No rule found for test/output/node_modules/the_lib/the_lib.js
-> required by alias test/melange
Error: No rule found for test/output/node_modules/the_lib/the_lib__.js
-> required by alias test/melange
[1]

0 comments on commit e4c9a4d

Please sign in to comment.