This commit is contained in:
swrup 2025-11-11 02:07:51 +01:00
parent aa2ff7b2f0
commit 2f3113f55d
11742 changed files with 1223940 additions and 0 deletions

View file

@ -0,0 +1,27 @@
This test demonstrates a bug in Dune's separation compilation of JSOO.
`std_exit.cmo` wasn't being linked in the end, so the `at_exit`
hooks didn't run and the channels weren't flushed.
Setup fixtures:
$ echo "(lang dune 3.17)" > dune-project
$ echo 'let () = print_string "bla"' > main.ml
$ cat >dune <<EOF
> (executable
> (name main)
> (modes wasm))
> EOF
Test without separate compilation:
$ dune build --profile=release ./main.bc.wasm.js
$ node _build/default/main.bc.wasm.js
bla
Test with separate compilation:
$ dune build --profile=dev ./main.bc.wasm.js
$ node _build/default/main.bc.wasm.js
bla
The result should be the same