Organisationsmiragealcotestfb6e90 ()opensuse-15.6-4.14_opam-2.5

opensuse-15.6-4.14_opam-2.5

Link Copied
Code Copied

Logs

2026-03-12 20:17.47: New job: test mirage/alcotest https://github.com/mirage/alcotest.git#refs/pull/433/head (fb6e903ed934babb8a6735242724c3f688e1cb13) (linux-x86_64:opensuse-15.6-4.14_opam-2.5)
Base: ocaml/opam:opensuse-15.6-ocaml-4.14@sha256:60a8739fab44bd4b7628c051b2fbd9e0a75ca74d607ca75de0534804db88c4c9
Opam project build


To reproduce locally:


git clone --recursive "https://github.com/mirage/alcotest.git" && cd "alcotest" && git fetch origin "refs/pull/433/head" && git reset --hard fb6e903e
cat > Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:opensuse-15.6-ocaml-4.14@sha256:60a8739fab44bd4b7628c051b2fbd9e0a75ca74d607ca75de0534804db88c4c9
# opensuse-15.6-4.14_opam-2.5
USER 1000:1000
ENV CLICOLOR_FORCE="1"
ENV OPAMCOLOR="always"
WORKDIR /src
RUN sudo ln -f /usr/bin/opam-2.5 /usr/bin/opam
RUN opam init --reinit -ni
RUN uname -rs && opam exec -- ocaml -version && opam --version
WORKDIR /src
RUN sudo chown opam /src
RUN cd ~/opam-repository && (git cat-file -e f15d82d4876db0d9c8ffca03adbd331cd7612081 || git fetch origin master) && git reset -q --hard f15d82d4876db0d9c8ffca03adbd331cd7612081 && git log --no-decorate -n1 --oneline && opam update -u
COPY --chown=1000:1000 alcotest.opam alcotest-mirage.opam alcotest-lwt.opam alcotest-js.opam alcotest-async.opam ./
RUN opam pin add -yn alcotest.dev './' && \
opam pin add -yn alcotest-mirage.dev './' && \
opam pin add -yn alcotest-lwt.dev './' && \
opam pin add -yn alcotest-js.dev './' && \
opam pin add -yn alcotest-async.dev './'
RUN echo '(lang dune 3.0)' > './dune-project'
ENV DEPS="astring.0.8.5 async.v0.16.0 async_kernel.v0.16.0 async_rpc_kernel.v0.16.0 async_unix.v0.16.0 base.v0.16.4 base-bigarray.base base-bytes.base base-threads.base base-unix.base base_bigstring.v0.16.0 base_quickcheck.v0.16.0 bin_prot.v0.16.0 cmdliner.2.1.0 conf-npm.1 core.v0.16.2 core_kernel.v0.16.0 core_unix.v0.16.0 cppo.1.8.0 csexp.1.5.2 dune.3.21.1 dune-configurator.3.21.1 duration.0.2.1 expect_test_helpers_core.v0.16.0 fieldslib.v0.16.0 fmt.0.11.0 gen.1.1 int_repr.v0.16.0 jane-street-headers.v0.16.0 js_of_ocaml-compiler.6.3.2 jst-config.v0.16.0 logs.0.10.0 lwt.6.1.1 menhir.20260209 menhirCST.20260209 menhirGLR.20260209 menhirLib.20260209 menhirSdk.20260209 mirage-clock.4.2.0 num.1.6 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml_intrinsics.v0.16.2 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 parsexp.v0.16.0 ppx_assert.v0.16.0 ppx_base.v0.16.0 ppx_bench.v0.16.0 ppx_bin_prot.v0.16.0 ppx_cold.v0.16.0 ppx_compare.v0.16.0 ppx_custom_printf.v0.16.0 ppx_derivers.1.2.1 ppx_disable_unused_warnings.v0.16.0 ppx_enumerate.v0.16.0 ppx_expect.v0.16.2 ppx_fields_conv.v0.16.0 ppx_fixed_literal.v0.16.0 ppx_globalize.v0.16.0 ppx_hash.v0.16.0 ppx_here.v0.16.0 ppx_ignore_instrumentation.v0.16.0 ppx_inline_test.v0.16.1 ppx_jane.v0.16.0 ppx_let.v0.16.0 ppx_log.v0.16.0 ppx_module_timer.v0.16.0 ppx_optcomp.v0.16.0 ppx_optional.v0.16.0 ppx_pipebang.v0.16.0 ppx_sexp_conv.v0.16.0 ppx_sexp_message.v0.16.0 ppx_sexp_value.v0.16.0 ppx_stable.v0.16.0 ppx_stable_witness.v0.16.0 ppx_string.v0.16.0 ppx_tydi.v0.16.0 ppx_typerep_conv.v0.16.0 ppx_variants_conv.v0.16.0 ppxlib.0.35.0 protocol_version_header.v0.16.0 re.1.14.0 sedlex.3.7 seq.base sexp_pretty.v0.16.0 sexplib.v0.16.0 sexplib0.v0.16.0 spawn.v0.17.0 splittable_random.v0.16.0 stdio.v0.16.0 stdlib-shims.0.3.0 textutils.v0.16.0 textutils_kernel.v0.16.0 time_now.v0.16.0 timezone.v0.16.0 topkg.1.1.1 typerep.v0.16.0 uutf.1.0.4 variantslib.v0.16.0 yojson.3.0.0"
ENV CI="true"
ENV OCAMLCI="true"
RUN opam update --depexts && opam install --cli=2.5 --depext-only -y alcotest.dev alcotest-mirage.dev alcotest-lwt.dev alcotest-js.dev alcotest-async.dev $DEPS
RUN opam install $DEPS
COPY --chown=1000:1000 . /src
RUN opam exec -- dune build @install @check @runtest && rm -rf _build


END-OF-DOCKERFILE
docker build .
END-REPRO-BLOCK


2026-03-12 20:17.47: Using cache hint "mirage/alcotest-ocaml/opam:opensuse-15.6-ocaml-4.14@sha256:60a8739fab44bd4b7628c051b2fbd9e0a75ca74d607ca75de0534804db88c4c9-opensuse-15.6-4.14_opam-2.5-1bd4f8fe53c52b3eee7a02835930022f"
2026-03-12 20:17.47: Using OBuilder spec:
((from ocaml/opam:opensuse-15.6-ocaml-4.14@sha256:60a8739fab44bd4b7628c051b2fbd9e0a75ca74d607ca75de0534804db88c4c9)
(comment opensuse-15.6-4.14_opam-2.5)
(user (uid 1000) (gid 1000))
(env CLICOLOR_FORCE 1)
(env OPAMCOLOR always)
(workdir /src)
(run (shell "sudo ln -f /usr/bin/opam-2.5 /usr/bin/opam"))
(run (shell "opam init --reinit -ni"))
(run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
(workdir /src)
(run (shell "sudo chown opam /src"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "cd ~/opam-repository && (git cat-file -e f15d82d4876db0d9c8ffca03adbd331cd7612081 || git fetch origin master) && git reset -q --hard f15d82d4876db0d9c8ffca03adbd331cd7612081 && git log --no-decorate -n1 --oneline && opam update -u"))
(copy (src alcotest.opam alcotest-mirage.opam alcotest-lwt.opam alcotest-js.opam alcotest-async.opam)
(dst ./))
(run (network host)
(shell  "opam pin add -yn alcotest.dev './' && \
\nopam pin add -yn alcotest-mirage.dev './' && \
\nopam pin add -yn alcotest-lwt.dev './' && \
\nopam pin add -yn alcotest-js.dev './' && \
\nopam pin add -yn alcotest-async.dev './'"))
(run (shell "echo '(lang dune 3.0)' > './dune-project'"))
(env DEPS "astring.0.8.5 async.v0.16.0 async_kernel.v0.16.0 async_rpc_kernel.v0.16.0 async_unix.v0.16.0 base.v0.16.4 base-bigarray.base base-bytes.base base-threads.base base-unix.base base_bigstring.v0.16.0 base_quickcheck.v0.16.0 bin_prot.v0.16.0 cmdliner.2.1.0 conf-npm.1 core.v0.16.2 core_kernel.v0.16.0 core_unix.v0.16.0 cppo.1.8.0 csexp.1.5.2 dune.3.21.1 dune-configurator.3.21.1 duration.0.2.1 expect_test_helpers_core.v0.16.0 fieldslib.v0.16.0 fmt.0.11.0 gen.1.1 int_repr.v0.16.0 jane-street-headers.v0.16.0 js_of_ocaml-compiler.6.3.2 jst-config.v0.16.0 logs.0.10.0 lwt.6.1.1 menhir.20260209 menhirCST.20260209 menhirGLR.20260209 menhirLib.20260209 menhirSdk.20260209 mirage-clock.4.2.0 num.1.6 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml_intrinsics.v0.16.2 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 parsexp.v0.16.0 ppx_assert.v0.16.0 ppx_base.v0.16.0 ppx_bench.v0.16.0 ppx_bin_prot.v0.16.0 ppx_cold.v0.16.0 ppx_compare.v0.16.0 ppx_custom_printf.v0.16.0 ppx_derivers.1.2.1 ppx_disable_unused_warnings.v0.16.0 ppx_enumerate.v0.16.0 ppx_expect.v0.16.2 ppx_fields_conv.v0.16.0 ppx_fixed_literal.v0.16.0 ppx_globalize.v0.16.0 ppx_hash.v0.16.0 ppx_here.v0.16.0 ppx_ignore_instrumentation.v0.16.0 ppx_inline_test.v0.16.1 ppx_jane.v0.16.0 ppx_let.v0.16.0 ppx_log.v0.16.0 ppx_module_timer.v0.16.0 ppx_optcomp.v0.16.0 ppx_optional.v0.16.0 ppx_pipebang.v0.16.0 ppx_sexp_conv.v0.16.0 ppx_sexp_message.v0.16.0 ppx_sexp_value.v0.16.0 ppx_stable.v0.16.0 ppx_stable_witness.v0.16.0 ppx_string.v0.16.0 ppx_tydi.v0.16.0 ppx_typerep_conv.v0.16.0 ppx_variants_conv.v0.16.0 ppxlib.0.35.0 protocol_version_header.v0.16.0 re.1.14.0 sedlex.3.7 seq.base sexp_pretty.v0.16.0 sexplib.v0.16.0 sexplib0.v0.16.0 spawn.v0.17.0 splittable_random.v0.16.0 stdio.v0.16.0 stdlib-shims.0.3.0 textutils.v0.16.0 textutils_kernel.v0.16.0 time_now.v0.16.0 timezone.v0.16.0 topkg.1.1.1 typerep.v0.16.0 uutf.1.0.4 variantslib.v0.16.0 yojson.3.0.0")
(env CI true)
(env OCAMLCI true)
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam update --depexts && opam install --cli=2.5 --depext-only -y alcotest.dev alcotest-mirage.dev alcotest-lwt.dev alcotest-js.dev alcotest-async.dev $DEPS"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam install $DEPS"))
(copy (src .) (dst /src))
(run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build"))
)


2026-03-12 20:17.47: Waiting for resource in pool OCluster
2026-03-12 20:17.47: Waiting for worker…
2026-03-12 20:17.47: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
HEAD is now at fb6e903 Fix windows build


(from ocaml/opam:opensuse-15.6-ocaml-4.14@sha256:60a8739fab44bd4b7628c051b2fbd9e0a75ca74d607ca75de0534804db88c4c9)
Unable to find image 'ocaml/opam:opensuse-15.6-ocaml-4.14@sha256:60a8739fab44bd4b7628c051b2fbd9e0a75ca74d607ca75de0534804db88c4c9' locally
docker.io/ocaml/opam@sha256:60a8739fab44bd4b7628c051b2fbd9e0a75ca74d607ca75de0534804db88c4c9: Pulling from ocaml/opam
88fec4ee27fa: Pulling fs layer
0c29b9b81895: Pulling fs layer
e13a07a82ff2: Pulling fs layer
a4f587681cd2: Pulling fs layer
b654fe557977: Pulling fs layer
07b50a5ff06e: Pulling fs layer
2524e7100bda: Pulling fs layer
62a0e072f540: Pulling fs layer
e4d4efb28b71: Pulling fs layer
4d22927afde6: Pulling fs layer
1910d19eb083: Pulling fs layer
f0e05cd6bfcf: Pulling fs layer
a809beaf2ce5: Pulling fs layer
b7a362ffa81b: Pulling fs layer
460129753514: Pulling fs layer
62a0e072f540: Waiting
e4d4efb28b71: Waiting
d4f714e04836: Pulling fs layer
d70fe23c18cd: Pulling fs layer
07b50a5ff06e: Waiting
a4f587681cd2: Waiting
4d22927afde6: Waiting
b7a362ffa81b: Waiting
0d07d7fef061: Pulling fs layer
5623d083d3b3: Pulling fs layer
460129753514: Waiting
d4f714e04836: Waiting
4f4fb700ef54: Pulling fs layer
b654fe557977: Waiting
ce6441b074a7: Pulling fs layer
f0e05cd6bfcf: Waiting
0d07d7fef061: Waiting
5623d083d3b3: Waiting
0fd2a08bcd56: Pulling fs layer
1910d19eb083: Waiting
f6068b2a147c: Pulling fs layer
0fd2a08bcd56: Waiting
a809beaf2ce5: Waiting
4c1a35052789: Pulling fs layer
ce6441b074a7: Waiting
b33abd038481: Pulling fs layer
4c1a35052789: Waiting
350e9373a176: Pulling fs layer
b33abd038481: Waiting
a7fc136663a0: Pulling fs layer
5703438fe18a: Pulling fs layer
2524e7100bda: Waiting
8833b155bad4: Pulling fs layer
a7fc136663a0: Waiting
98913bd67483: Pulling fs layer
350e9373a176: Waiting
331f50433f29: Pulling fs layer
8833b155bad4: Waiting
98913bd67483: Waiting
c935b3ee9c7e: Pulling fs layer
22319c85fe85: Pulling fs layer
5703438fe18a: Waiting
c935b3ee9c7e: Waiting
b7a9591fcacc: Pulling fs layer
945c450a4d0f: Pulling fs layer
22319c85fe85: Waiting
24e90ed45fcf: Pulling fs layer
8424e867ee77: Pulling fs layer
b7a9591fcacc: Waiting
b85a58b4c2e9: Pulling fs layer
945c450a4d0f: Waiting
a9dae66123de: Pulling fs layer
24e90ed45fcf: Waiting
8424e867ee77: Waiting
b85a58b4c2e9: Waiting
49f1adc9c3a4: Pulling fs layer
a9a190666cb6: Pulling fs layer
49f1adc9c3a4: Waiting
4afed0003f6a: Pulling fs layer
a9a190666cb6: Waiting
4afed0003f6a: Waiting
0c29b9b81895: Verifying Checksum
0c29b9b81895: Download complete
88fec4ee27fa: Verifying Checksum
88fec4ee27fa: Download complete
b654fe557977: Verifying Checksum
b654fe557977: Download complete
07b50a5ff06e: Download complete
2524e7100bda: Verifying Checksum
2524e7100bda: Download complete
62a0e072f540: Verifying Checksum
62a0e072f540: Download complete
88fec4ee27fa: Pull complete
0c29b9b81895: Pull complete
e4d4efb28b71: Verifying Checksum
e4d4efb28b71: Download complete
e13a07a82ff2: Verifying Checksum
e13a07a82ff2: Download complete
4d22927afde6: Verifying Checksum
4d22927afde6: Download complete
1910d19eb083: Verifying Checksum
1910d19eb083: Download complete
a4f587681cd2: Verifying Checksum
a4f587681cd2: Download complete
f0e05cd6bfcf: Verifying Checksum
f0e05cd6bfcf: Download complete
b7a362ffa81b: Verifying Checksum
b7a362ffa81b: Download complete
a809beaf2ce5: Verifying Checksum
a809beaf2ce5: Download complete
460129753514: Verifying Checksum
460129753514: Download complete
d70fe23c18cd: Download complete
d4f714e04836: Verifying Checksum
d4f714e04836: Download complete
0d07d7fef061: Download complete
5623d083d3b3: Verifying Checksum
5623d083d3b3: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
ce6441b074a7: Verifying Checksum
ce6441b074a7: Download complete
0fd2a08bcd56: Download complete
4c1a35052789: Verifying Checksum
4c1a35052789: Download complete
b33abd038481: Download complete
350e9373a176: Download complete
a7fc136663a0: Verifying Checksum
a7fc136663a0: Download complete
5703438fe18a: Verifying Checksum
5703438fe18a: Download complete
8833b155bad4: Download complete
331f50433f29: Download complete
98913bd67483: Verifying Checksum
98913bd67483: Download complete
c935b3ee9c7e: Download complete
b7a9591fcacc: Download complete
24e90ed45fcf: Verifying Checksum
24e90ed45fcf: Download complete
e13a07a82ff2: Pull complete
8424e867ee77: Verifying Checksum
8424e867ee77: Download complete
b85a58b4c2e9: Verifying Checksum
b85a58b4c2e9: Download complete
945c450a4d0f: Verifying Checksum
945c450a4d0f: Download complete
49f1adc9c3a4: Verifying Checksum
49f1adc9c3a4: Download complete
a9a190666cb6: Verifying Checksum
a9a190666cb6: Download complete
a9dae66123de: Verifying Checksum
a9dae66123de: Download complete
22319c85fe85: Verifying Checksum
22319c85fe85: Download complete
4afed0003f6a: Verifying Checksum
4afed0003f6a: Download complete
a4f587681cd2: Pull complete
b654fe557977: Pull complete
07b50a5ff06e: Pull complete
2524e7100bda: Pull complete
62a0e072f540: Pull complete
e4d4efb28b71: Pull complete
4d22927afde6: Pull complete
1910d19eb083: Pull complete
f0e05cd6bfcf: Pull complete
a809beaf2ce5: Pull complete
b7a362ffa81b: Pull complete
460129753514: Pull complete
d4f714e04836: Pull complete
d70fe23c18cd: Pull complete
0d07d7fef061: Pull complete
5623d083d3b3: Pull complete
4f4fb700ef54: Pull complete
ce6441b074a7: Pull complete
0fd2a08bcd56: Pull complete
f6068b2a147c: Pull complete
4c1a35052789: Pull complete
b33abd038481: Pull complete
350e9373a176: Pull complete
a7fc136663a0: Pull complete
5703438fe18a: Pull complete
8833b155bad4: Pull complete
98913bd67483: Pull complete
331f50433f29: Pull complete
c935b3ee9c7e: Pull complete
22319c85fe85: Pull complete
b7a9591fcacc: Pull complete
945c450a4d0f: Pull complete
24e90ed45fcf: Pull complete
8424e867ee77: Pull complete
b85a58b4c2e9: Pull complete
a9dae66123de: Pull complete
49f1adc9c3a4: Pull complete
a9a190666cb6: Pull complete
4afed0003f6a: Pull complete
Digest: sha256:60a8739fab44bd4b7628c051b2fbd9e0a75ca74d607ca75de0534804db88c4c9
Status: Downloaded newer image for ocaml/opam@sha256:60a8739fab44bd4b7628c051b2fbd9e0a75ca74d607ca75de0534804db88c4c9
2026-03-12 20:17.49 ---> using "68ed99005e3b1166849df4c2b92fbf03bda7e3e0c16253fdd436444b5faeeb83" from cache


/: (comment opensuse-15.6-4.14_opam-2.5)


/: (user (uid 1000) (gid 1000))


/: (env CLICOLOR_FORCE 1)


/: (env OPAMCOLOR always)


/: (workdir /src)


/src: (run (shell "sudo ln -f /usr/bin/opam-2.5 /usr/bin/opam"))
2026-03-12 20:17.49 ---> using "758ad5028119e26afe45912468334b0f029cab532cd436055f6e6f1570003108" from cache


/src: (run (shell "opam init --reinit -ni"))
Configuring from /home/opam/.opamrc and then from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.


This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.


Continue? [Y/n] y
Format upgrade done.


<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-12 20:17.49 ---> using "6399ed3111400fd8025fe761f3cfe64b0f0c53e0562e2d65231ba34b6bcd05c3" from cache


/src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
Linux 6.8.0-94-generic
The OCaml toplevel, version 4.14.2
2.5.0
2026-03-12 20:17.49 ---> using "ab74ba4160a7ec3b94c64ef7ec5c69544220ca15897d1297e8784cf6a52391d5" from cache


/src: (workdir /src)


/src: (run (shell "sudo chown opam /src"))
2026-03-12 20:17.49 ---> using "e5cc5a7dca600d18a8dd8d955854bef56d6a65f98aa05633e3968a4b95ade98a" from cache


/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "cd ~/opam-repository && (git cat-file -e f15d82d4876db0d9c8ffca03adbd331cd7612081 || git fetch origin master) && git reset -q --hard f15d82d4876db0d9c8ffca03adbd331cd7612081 && git log --no-decorate -n1 --oneline && opam update -u"))
From https://github.com/ocaml/opam-repository
* branch                  master     -> FETCH_HEAD
3109384a92..3c0d72031e  master     -> origin/master
f15d82d487 Merge pull request #29449 from raphael-proust/opam-publish-lwt.6.1.1


<><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><>
[default] synchronised from git+file:///home/opam/opam-repository


Everything as up-to-date as possible (run with --verbose to show unavailable upgrades).
However, you may "opam upgrade" these packages explicitly at these versions (e.g. "opam upgrade ocaml.5.4.1"), which will ask permission to downgrade or uninstall the conflicting packages.
Nothing to do.
# To update the current shell environment, run: eval $(opam env)
2026-03-12 20:17.49 ---> using "062f35e42e7d5dc9a61967557ff709099c63ed8cf773f87d99047c5cf9a6ea18" from cache


/src: (copy (src alcotest.opam alcotest-mirage.opam alcotest-lwt.opam alcotest-js.opam alcotest-async.opam)
(dst ./))
2026-03-12 20:17.49 ---> using "8bd0c2a191164ca1658e8fa160364da3f8965633b1f714224620ce30f6db396a" from cache


/src: (run (network host)
(shell  "opam pin add -yn alcotest.dev './' && \
\nopam pin add -yn alcotest-mirage.dev './' && \
\nopam pin add -yn alcotest-lwt.dev './' && \
\nopam pin add -yn alcotest-js.dev './' && \
\nopam pin add -yn alcotest-async.dev './'"))
[alcotest.dev] synchronised (file:///src)
alcotest is now pinned to file:///src (version dev)
[alcotest-mirage.dev] synchronised (file:///src)
alcotest-mirage is now pinned to file:///src (version dev)
[alcotest-lwt.dev] synchronised (file:///src)
alcotest-lwt is now pinned to file:///src (version dev)
[alcotest-js.dev] synchronised (file:///src)
alcotest-js is now pinned to file:///src (version dev)
[alcotest-async.dev] synchronised (file:///src)
alcotest-async is now pinned to file:///src (version dev)
2026-03-12 20:17.49 ---> using "c2af40975223d0b91f0ca53bcbcfc1eb440e217c2552b7f205dd01c0861fe68e" from cache


/src: (run (shell "echo '(lang dune 3.0)' > './dune-project'"))
2026-03-12 20:17.49 ---> using "f540704a7de4214c642491d0926046236a79f77dac7d60c8dbcd6c0e94bee693" from cache


/src: (env DEPS "astring.0.8.5 async.v0.16.0 async_kernel.v0.16.0 async_rpc_kernel.v0.16.0 async_unix.v0.16.0 base.v0.16.4 base-bigarray.base base-bytes.base base-threads.base base-unix.base base_bigstring.v0.16.0 base_quickcheck.v0.16.0 bin_prot.v0.16.0 cmdliner.2.1.0 conf-npm.1 core.v0.16.2 core_kernel.v0.16.0 core_unix.v0.16.0 cppo.1.8.0 csexp.1.5.2 dune.3.21.1 dune-configurator.3.21.1 duration.0.2.1 expect_test_helpers_core.v0.16.0 fieldslib.v0.16.0 fmt.0.11.0 gen.1.1 int_repr.v0.16.0 jane-street-headers.v0.16.0 js_of_ocaml-compiler.6.3.2 jst-config.v0.16.0 logs.0.10.0 lwt.6.1.1 menhir.20260209 menhirCST.20260209 menhirGLR.20260209 menhirLib.20260209 menhirSdk.20260209 mirage-clock.4.2.0 num.1.6 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml_intrinsics.v0.16.2 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 parsexp.v0.16.0 ppx_assert.v0.16.0 ppx_base.v0.16.0 ppx_bench.v0.16.0 ppx_bin_prot.v0.16.0 ppx_cold.v0.16.0 ppx_compare.v0.16.0 ppx_custom_printf.v0.16.0 ppx_derivers.1.2.1 ppx_disable_unused_warnings.v0.16.0 ppx_enumerate.v0.16.0 ppx_expect.v0.16.2 ppx_fields_conv.v0.16.0 ppx_fixed_literal.v0.16.0 ppx_globalize.v0.16.0 ppx_hash.v0.16.0 ppx_here.v0.16.0 ppx_ignore_instrumentation.v0.16.0 ppx_inline_test.v0.16.1 ppx_jane.v0.16.0 ppx_let.v0.16.0 ppx_log.v0.16.0 ppx_module_timer.v0.16.0 ppx_optcomp.v0.16.0 ppx_optional.v0.16.0 ppx_pipebang.v0.16.0 ppx_sexp_conv.v0.16.0 ppx_sexp_message.v0.16.0 ppx_sexp_value.v0.16.0 ppx_stable.v0.16.0 ppx_stable_witness.v0.16.0 ppx_string.v0.16.0 ppx_tydi.v0.16.0 ppx_typerep_conv.v0.16.0 ppx_variants_conv.v0.16.0 ppxlib.0.35.0 protocol_version_header.v0.16.0 re.1.14.0 sedlex.3.7 seq.base sexp_pretty.v0.16.0 sexplib.v0.16.0 sexplib0.v0.16.0 spawn.v0.17.0 splittable_random.v0.16.0 stdio.v0.16.0 stdlib-shims.0.3.0 textutils.v0.16.0 textutils_kernel.v0.16.0 time_now.v0.16.0 timezone.v0.16.0 topkg.1.1.1 typerep.v0.16.0 uutf.1.0.4 variantslib.v0.16.0 yojson.3.0.0")


/src: (env CI true)


/src: (env OCAMLCI true)


/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam update --depexts && opam install --cli=2.5 --depext-only -y alcotest.dev alcotest-mirage.dev alcotest-lwt.dev alcotest-js.dev alcotest-async.dev $DEPS"))
+ /usr/bin/sudo "zypper" "--non-interactive" "refresh"
- Retrieving repository 'Update repository of openSUSE Backports' metadata [..
- .
- Looking for gpg keys in repository Update repository of openSUSE Backports.
-   gpgkey=http://download.opensuse.org/update/leap/15.6/backports/repodata/repomd.xml.key
- ......
- ....
- ....
- ....
- ....
- ....
- ....
- ....
- ....
- ....
- ....
- ....
- ....
- ...........
- ..........
- ............
- ..done]
- Building repository 'Update repository of openSUSE Backports' cache [....done]
- Retrieving repository 'Update repository with updates from SUSE Linux Enterprise 15' metadata [..
- Looking for gpg keys in repository Update repository with updates from SUSE Linux Enterprise 15.
-   gpgkey=http://download.opensuse.org/update/leap/15.6/sle/repodata/repomd.xml.key
- ...
- .....
- ....
- ....
- ....
- ....
- ..........
- ....
- ....
- ....
- ....
- ......
- ..............
- .........
- .........
- .........
- .........
- ........
- ..........
- ........
- .........
- .........
- ........
- .........
- ........
- .......
- ........
- .........
- ..........
- .........
- ..........
- .........
- ........
- .........
- ........
- .........
- .........
- ..........
- .........
- .........
- .........
- .........
- .........
- .........
- .........
- .........
- .........
- .........
- .........
- .........
- ..........
- .........
- ..........
- .........
- ..........
- ..........
- ..........
- ..........
- .........
- ..........
- ..........
- .........
- .........
- .........
- .........
- ..............
- ...............
- .....done]
- Building repository 'Update repository with updates from SUSE Linux Enterprise 15' cache [..
- ..done]
- Repository 'Main Update Repository' is up to date.
- Repository 'Update Repository (Non-Oss)' is up to date.
- Repository 'Non-OSS Repository' is up to date.
- Repository 'Main Repository' is up to date.
- All repositories have been refreshed.


<><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><>
[alcotest.dev] synchronised (file:///src)
[alcotest-async.dev] synchronised (file:///src)
[alcotest-js.dev] synchronised (file:///src)
[alcotest-lwt.dev] synchronised (file:///src)
[alcotest-mirage.dev] synchronised (file:///src)


[NOTE] Package ocaml-options-vanilla is already installed (current version is 1).
[NOTE] Package ocaml-config is already installed (current version is 2).
[NOTE] Package ocaml-base-compiler is already installed (current version is 4.14.2).
[NOTE] Package ocaml is already installed (current version is 4.14.2).
[NOTE] Package base-unix is already installed (current version is base).
[NOTE] Package base-threads is already installed (current version is base).
[NOTE] Package base-bigarray is already installed (current version is base).


The following system packages will first need to be installed:
npm-default


<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>


+ /usr/bin/sudo "zypper" "--non-interactive" "install" "npm-default"
- Loading repository data...
- Reading installed packages...
- Resolving package dependencies...
- 
- The following 7 NEW packages are going to be installed:
-   libicu73_2 libicu73_2-ledata nodejs-common nodejs-default nodejs20 npm-default npm20
- 
- 7 new packages to install.
- 
- Package download size:    21.5 MiB
- 
- Package install size change:
-               |      88.2 MiB  required by packages that will be installed
-     88.2 MiB  |  -      0 B    released by packages that will be removed
- 
- Backend:  classic_rpmtrans
- Continue? [y/n/v/...? shows all options] (y): y
- Retrieving: libicu73_2-ledata-73.2-150000.1.7.1.noarch (Main Repository) (1/7),   7.3 MiB
- Retrieving: libicu73_2-ledata-73.2-150000.1.7.1.noarch.rpm [....
- ....
- ....
- ....
- ....
- ......
- .done (1.1 MiB/s)]
- Retrieving: libicu73_2-73.2-150000.1.7.1.x86_64 (Main Repository) (2/7),   1.8 MiB
- Retrieving: libicu73_2-73.2-150000.1.7.1.x86_64.rpm [..done (1.7 MiB/s)]
- Retrieving: nodejs-common-6.0-150600.1.5.x86_64 (Main Repository) (3/7),  14.5 KiB
- Retrieving: nodejs-common-6.0-150600.1.5.x86_64.rpm [.done]
- Retrieving: nodejs20-20.20.0-150600.3.15.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (4/7),  10.6 MiB
- Retrieving: nodejs20-20.20.0-150600.3.15.1.x86_64.rpm [.....
- ....
- ....
- ....
- ....not found]
- Retrieving: nodejs20-20.20.0-150600.3.15.1.x86_64.rpm [.not found]
- Retrieving: nodejs20-20.20.0-150600.3.15.1.x86_64.rpm [.
- .........
- ....done (10.3 MiB/s)]
- Retrieving: nodejs-default-6.0-150600.1.5.x86_64 (Main Repository) (5/7),   9.8 KiB
- Retrieving: nodejs-default-6.0-150600.1.5.x86_64.rpm [.done]
- Retrieving: npm20-20.20.0-150600.3.15.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (6/7),   1.8 MiB
- Retrieving: npm20-20.20.0-150600.3.15.1.x86_64.rpm [.not found]
- Retrieving: npm20-20.20.0-150600.3.15.1.x86_64.rpm [.not found]
- Retrieving: npm20-20.20.0-150600.3.15.1.x86_64.rpm [....done (1.3 MiB/s)]
- Retrieving: npm-default-6.0-150600.1.5.x86_64 (Main Repository) (7/7),   9.8 KiB
- Retrieving: npm-default-6.0-150600.1.5.x86_64.rpm [.
- done]
- 
- Checking for file conflicts: [..done]
- (1/7) Installing: libicu73_2-ledata-73.2-150000.1.7.1.noarch [........done]
- (2/7) Installing: libicu73_2-73.2-150000.1.7.1.x86_64 [...
- done]
- (3/7) Installing: nodejs-common-6.0-150600.1.5.x86_64 [..done]
- (4/7) Installing: nodejs20-20.20.0-150600.3.15.1.x86_64 [..........
- update-alternatives: using /usr/bin/node20 to provide /usr/bin/node-default (node-default) in auto mode
- done]
- (5/7) Installing: nodejs-default-6.0-150600.1.5.x86_64 [.
- .done]
- (6/7) Installing: npm20-20.20.0-150600.3.15.1.x86_64 [....
- update-alternatives: using /usr/bin/npm20 to provide /usr/bin/npm-default (npm-default) in auto mode
- update-alternatives: using /usr/bin/npx20 to provide /usr/bin/npx-default (npx-default) in auto mode
- done]
- (7/7) Installing: npm-default-6.0-150600.1.5.x86_64 [..done]
# To update the current shell environment, run: eval $(opam env)
2026-03-12 20:17.49 ---> using "41a11aeabf7ba8b6408f7bcb040d3750eae40809c670da5648cf61e66debcbb6" from cache


/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam install $DEPS"))
[NOTE] Package ocaml-options-vanilla is already installed (current version is 1).
[NOTE] Package ocaml-config is already installed (current version is 2).
[NOTE] Package ocaml-base-compiler is already installed (current version is 4.14.2).
[NOTE] Package ocaml is already installed (current version is 4.14.2).
[NOTE] Package base-unix is already installed (current version is base).
[NOTE] Package base-threads is already installed (current version is base).
[NOTE] Package base-bigarray is already installed (current version is base).
The following actions will be performed:
=== install 99 packages
- install astring                     0.8.5
- install async                       v0.16.0
- install async_kernel                v0.16.0
- install async_rpc_kernel            v0.16.0
- install async_unix                  v0.16.0
- install base                        v0.16.4
- install base-bytes                  base
- install base_bigstring              v0.16.0
- install base_quickcheck             v0.16.0
- install bin_prot                    v0.16.0
- install cmdliner                    2.1.0
- install conf-npm                    1
- install core                        v0.16.2
- install core_kernel                 v0.16.0
- install core_unix                   v0.16.0
- install cppo                        1.8.0
- install csexp                       1.5.2
- install dune                        3.21.1
- install dune-configurator           3.21.1
- install duration                    0.2.1
- install expect_test_helpers_core    v0.16.0
- install fieldslib                   v0.16.0
- install fmt                         0.11.0
- install gen                         1.1
- install int_repr                    v0.16.0
- install jane-street-headers         v0.16.0
- install js_of_ocaml-compiler        6.3.2
- install jst-config                  v0.16.0
- install logs                        0.10.0
- install lwt                         6.1.1
- install menhir                      20260209
- install menhirCST                   20260209
- install menhirGLR                   20260209
- install menhirLib                   20260209
- install menhirSdk                   20260209
- install mirage-clock                4.2.0
- install num                         1.6
- install ocaml-compiler-libs         v0.12.4
- install ocaml-syntax-shims          1.0.0
- install ocaml_intrinsics            v0.16.2
- install ocamlbuild                  0.16.1
- install ocamlfind                   1.9.8
- install ocplib-endian               1.2
- install parsexp                     v0.16.0
- install ppx_assert                  v0.16.0
- install ppx_base                    v0.16.0
- install ppx_bench                   v0.16.0
- install ppx_bin_prot                v0.16.0
- install ppx_cold                    v0.16.0
- install ppx_compare                 v0.16.0
- install ppx_custom_printf           v0.16.0
- install ppx_derivers                1.2.1
- install ppx_disable_unused_warnings v0.16.0
- install ppx_enumerate               v0.16.0
- install ppx_expect                  v0.16.2
- install ppx_fields_conv             v0.16.0
- install ppx_fixed_literal           v0.16.0
- install ppx_globalize               v0.16.0
- install ppx_hash                    v0.16.0
- install ppx_here                    v0.16.0
- install ppx_ignore_instrumentation  v0.16.0
- install ppx_inline_test             v0.16.1
- install ppx_jane                    v0.16.0
- install ppx_let                     v0.16.0
- install ppx_log                     v0.16.0
- install ppx_module_timer            v0.16.0
- install ppx_optcomp                 v0.16.0
- install ppx_optional                v0.16.0
- install ppx_pipebang                v0.16.0
- install ppx_sexp_conv               v0.16.0
- install ppx_sexp_message            v0.16.0
- install ppx_sexp_value              v0.16.0
- install ppx_stable                  v0.16.0
- install ppx_stable_witness          v0.16.0
- install ppx_string                  v0.16.0
- install ppx_tydi                    v0.16.0
- install ppx_typerep_conv            v0.16.0
- install ppx_variants_conv           v0.16.0
- install ppxlib                      0.35.0
- install protocol_version_header     v0.16.0
- install re                          1.14.0
- install sedlex                      3.7
- install seq                         base
- install sexp_pretty                 v0.16.0
- install sexplib                     v0.16.0
- install sexplib0                    v0.16.0
- install spawn                       v0.17.0
- install splittable_random           v0.16.0
- install stdio                       v0.16.0
- install stdlib-shims                0.3.0
- install textutils                   v0.16.0
- install textutils_kernel            v0.16.0
- install time_now                    v0.16.0
- install timezone                    v0.16.0
- install topkg                       1.1.1
- install typerep                     v0.16.0
- install uutf                        1.0.4
- install variantslib                 v0.16.0
- install yojson                      3.0.0


<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5  (cached)
-> retrieved async.v0.16.0  (cached)
-> retrieved async_kernel.v0.16.0  (cached)
-> retrieved async_rpc_kernel.v0.16.0  (cached)
-> retrieved async_unix.v0.16.0  (cached)
-> retrieved base.v0.16.4  (cached)
-> retrieved base_bigstring.v0.16.0  (cached)
-> retrieved base_quickcheck.v0.16.0  (cached)
-> retrieved bin_prot.v0.16.0  (cached)
-> retrieved cmdliner.2.1.0  (cached)
-> retrieved core.v0.16.2  (cached)
-> installed conf-npm.1
-> retrieved core_kernel.v0.16.0  (cached)
-> retrieved core_unix.v0.16.0  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved duration.0.2.1  (cached)
-> retrieved expect_test_helpers_core.v0.16.0  (cached)
-> retrieved fieldslib.v0.16.0  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved gen.1.1  (cached)
-> retrieved int_repr.v0.16.0  (cached)
-> retrieved jane-street-headers.v0.16.0  (cached)
-> retrieved jst-config.v0.16.0  (cached)
-> retrieved logs.0.10.0  (cached)
-> retrieved lwt.6.1.1  (cached)
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209  (cached)
-> retrieved dune.3.21.1, dune-configurator.3.21.1  (cached)
-> retrieved js_of_ocaml-compiler.6.3.2  (cached)
-> retrieved mirage-clock.4.2.0  (cached)
-> retrieved num.1.6  (cached)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocaml_intrinsics.v0.16.2  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> installed cmdliner.2.1.0
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved parsexp.v0.16.0  (cached)
-> retrieved ppx_assert.v0.16.0  (cached)
-> retrieved ppx_base.v0.16.0  (cached)
-> retrieved ppx_bench.v0.16.0  (cached)
-> retrieved ppx_bin_prot.v0.16.0  (cached)
-> retrieved ppx_cold.v0.16.0  (cached)
-> retrieved ppx_compare.v0.16.0  (cached)
-> retrieved ppx_custom_printf.v0.16.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_disable_unused_warnings.v0.16.0  (cached)
-> retrieved ppx_enumerate.v0.16.0  (cached)
-> retrieved ppx_expect.v0.16.2  (cached)
-> retrieved ppx_fields_conv.v0.16.0  (cached)
-> retrieved ppx_fixed_literal.v0.16.0  (cached)
-> retrieved ppx_globalize.v0.16.0  (cached)
-> retrieved ppx_hash.v0.16.0  (cached)
-> retrieved ppx_here.v0.16.0  (cached)
-> retrieved ppx_ignore_instrumentation.v0.16.0  (cached)
-> retrieved ppx_inline_test.v0.16.1  (cached)
-> retrieved ppx_jane.v0.16.0  (cached)
-> retrieved ppx_let.v0.16.0  (cached)
-> retrieved ppx_log.v0.16.0  (cached)
-> retrieved ppx_module_timer.v0.16.0  (cached)
-> retrieved ppx_optcomp.v0.16.0  (cached)
-> retrieved ppx_optional.v0.16.0  (cached)
-> retrieved ppx_pipebang.v0.16.0  (cached)
-> retrieved ppx_sexp_conv.v0.16.0  (cached)
-> retrieved ppx_sexp_message.v0.16.0  (cached)
-> retrieved ppx_sexp_value.v0.16.0  (cached)
-> retrieved ppx_stable.v0.16.0  (cached)
-> retrieved ppx_stable_witness.v0.16.0  (cached)
-> retrieved ppx_string.v0.16.0  (cached)
-> retrieved ppx_tydi.v0.16.0  (cached)
-> retrieved ppx_typerep_conv.v0.16.0  (cached)
-> retrieved ppx_variants_conv.v0.16.0  (cached)
-> retrieved protocol_version_header.v0.16.0  (cached)
-> retrieved re.1.14.0  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> retrieved sedlex.3.7  (cached)
-> retrieved sexp_pretty.v0.16.0  (cached)
-> retrieved ppxlib.0.35.0  (cached)
-> retrieved sexplib.v0.16.0  (cached)
-> retrieved sexplib0.v0.16.0  (cached)
-> retrieved spawn.v0.17.0  (cached)
-> retrieved splittable_random.v0.16.0  (cached)
-> retrieved stdio.v0.16.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved textutils.v0.16.0  (cached)
-> retrieved textutils_kernel.v0.16.0  (cached)
-> retrieved time_now.v0.16.0  (cached)
-> retrieved timezone.v0.16.0  (cached)
-> retrieved typerep.v0.16.0  (cached)
-> retrieved uutf.1.0.4  (cached)
-> retrieved variantslib.v0.16.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved yojson.3.0.0  (cached)
-> installed num.1.6
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed dune.3.21.1
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed duration.0.2.1
-> installed gen.1.1
-> installed jane-street-headers.v0.16.0
-> installed menhirCST.20260209
-> installed menhirGLR.20260209
-> installed menhirLib.20260209
-> installed menhirSdk.20260209
-> installed mirage-clock.4.2.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed ocaml-syntax-shims.1.0.0
-> installed ppx_derivers.1.2.1
-> installed re.1.14.0
-> installed sexplib0.v0.16.0
-> installed spawn.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed yojson.3.0.0
-> installed ocplib-endian.1.2
-> installed parsexp.v0.16.0
-> installed dune-configurator.3.21.1
-> installed sexplib.v0.16.0
-> installed ocaml_intrinsics.v0.16.2
-> installed lwt.6.1.1
-> installed menhir.20260209
-> installed base.v0.16.4
-> installed variantslib.v0.16.0
-> installed fieldslib.v0.16.0
-> installed stdio.v0.16.0
-> installed typerep.v0.16.0
-> installed ppxlib.0.35.0
-> installed ppx_globalize.v0.16.0
-> installed ppx_optcomp.v0.16.0
-> installed ppx_tydi.v0.16.0
-> installed ppx_cold.v0.16.0
-> installed ppx_disable_unused_warnings.v0.16.0
-> installed ppx_enumerate.v0.16.0
-> installed ppx_here.v0.16.0
-> installed ppx_stable_witness.v0.16.0
-> installed ppx_typerep_conv.v0.16.0
-> installed ppx_compare.v0.16.0
-> installed ppx_variants_conv.v0.16.0
-> installed ppx_fields_conv.v0.16.0
-> installed ppx_stable.v0.16.0
-> installed ppx_fixed_literal.v0.16.0
-> installed ppx_pipebang.v0.16.0
-> installed ppx_ignore_instrumentation.v0.16.0
-> installed ppx_optional.v0.16.0
-> installed ppx_sexp_conv.v0.16.0
-> installed sedlex.3.7
-> installed ppx_let.v0.16.0
-> installed ppx_hash.v0.16.0
-> installed ppx_sexp_value.v0.16.0
-> installed ppx_assert.v0.16.0
-> installed ppx_sexp_message.v0.16.0
-> installed ppx_custom_printf.v0.16.0
-> installed ppx_base.v0.16.0
-> installed sexp_pretty.v0.16.0
-> installed ppx_log.v0.16.0
-> installed jst-config.v0.16.0
-> installed ppx_string.v0.16.0
-> installed bin_prot.v0.16.0
-> installed time_now.v0.16.0
-> installed ppx_bin_prot.v0.16.0
-> installed ppx_module_timer.v0.16.0
-> installed ppx_inline_test.v0.16.1
-> installed ppx_bench.v0.16.0
-> installed ppx_expect.v0.16.2
-> installed js_of_ocaml-compiler.6.3.2
-> installed splittable_random.v0.16.0
-> installed logs.0.10.0
-> installed base_quickcheck.v0.16.0
-> installed ppx_jane.v0.16.0
-> installed int_repr.v0.16.0
-> installed base_bigstring.v0.16.0
-> installed core.v0.16.2
-> installed protocol_version_header.v0.16.0
-> installed textutils_kernel.v0.16.0
-> installed timezone.v0.16.0
-> installed expect_test_helpers_core.v0.16.0
-> installed core_kernel.v0.16.0
-> installed async_kernel.v0.16.0
-> installed core_unix.v0.16.0
-> installed async_rpc_kernel.v0.16.0
-> installed textutils.v0.16.0
-> installed async_unix.v0.16.0
-> installed async.v0.16.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-12 20:17.49 ---> using "8a28d868a50b5741adbbe63bea6ca3512fe138dfb91ee660f7da8ced5e74b87c" from cache


/src: (copy (src .) (dst /src))
2026-03-12 20:17.49 ---> saved as "2599c23a45ee1c0392dbd1f0d87ff5f7488b9590b7320b6b9af23eb7a5d10b2e"


/src: (run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build"))
(cd _build/default/src/alcotest-engine && /usr/bin/gcc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -Wall -fdiagnostics-color=always -g -I /home/opam/.opam/4.14/lib/ocaml -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -I ../alcotest-stdlib-ext -o stack_error_reporter.o -c stack_error_reporter.c)
stack_error_reporter.c: In function 'caml_setup_stub_exception_handler':
stack_error_reporter.c:205:3: warning: implicit declaration of function 'CAMLparam0'; did you mean 'CAMLprim'? [-Wimplicit-function-declaration]
CAMLparam0();
^~~~~~~~~~
CAMLprim
stack_error_reporter.c:216:3: warning: implicit declaration of function 'CAMLreturn'; did you mean 'CAMLextern'? [-Wimplicit-function-declaration]
CAMLreturn(Val_unit);
^~~~~~~~~~
CAMLextern
stack_error_reporter.c:217:1: warning: control reaches end of non-void function [-Wreturn-type]
}
^
File "test/e2e/alcotest/source_code_position/with-position.expected", line 1, characters 0-0:
/usr/bin/git --no-pager diff --no-index --color=always -u _build/default/test/e2e/alcotest/source_code_position/with-position.expected _build/default/test/e2e/alcotest/source_code_position/with-position.processed
diff --git a/_build/default/test/e2e/alcotest/source_code_position/with-position.expected b/_build/default/test/e2e/alcotest/source_code_position/with-position.processed
index 34697b9..6a00b26 100644
--- a/_build/default/test/e2e/alcotest/source_code_position/with-position.expected
+++ b/_build/default/test/e2e/alcotest/source_code_position/with-position.processed
@@ -1,60 +1,2 @@
-Testing `First suite'.
-This run has ID `<uuid>'.
-
-  [FAIL]        to_test          0   capitalise.
-  [FAIL]        to_test          1   double all.
-
-┌──────────────────────────────────────────────────────────────────────────────┐
-│ [FAIL]        to_test          0   capitalise.                               │
-└──────────────────────────────────────────────────────────────────────────────┘
-ASSERT strings
-File "test/e2e/alcotest/source_code_position/test_source_code_position.ml", line 24, character 2:
-FAIL strings
-
-   Expected: `"A"'
-   Received: `"B"'
-
-<stacktrace>
-
-Logs saved to `<build-context>/_build/_tests/<test-dir>/to_test.000.output'.
- ──────────────────────────────────────────────────────────────────────────────
-
-
-┌──────────────────────────────────────────────────────────────────────────────┐
-│ [FAIL]        to_test          1   double all.                               │
-└──────────────────────────────────────────────────────────────────────────────┘
-ASSERT int lists 1
-File "test/e2e/alcotest/source_code_position/test_source_code_position.ml", line 28, character 2:
-FAIL int lists 1
-
-   Expected: `[1]'
-   Received: `[2; 2; 4; 6]'
-
-<stacktrace>
-
-Logs saved to `<build-context>/_build/_tests/<test-dir>/to_test.001.output'.
- ──────────────────────────────────────────────────────────────────────────────
-
-Full test results in `<build-context>/_build/_tests/<test-dir>'.
-2 failures! in <test-duration>s. 2 tests run.Forging ahead regardless!
-
-Testing `Second suite'.
-This run has ID `<uuid>'.
-
-  [OK]          Ωèone          0   Passing test 1.
-  [FAIL]        Ωèone          1   Failing test.
-  [OK]          Ωèone          2   Passing test 2.
-
-┌──────────────────────────────────────────────────────────────────────────────┐
-│ [FAIL]        Ωèone          1   Failing test.                               │
-└──────────────────────────────────────────────────────────────────────────────┘
-ASSERT This was never going to work...
-FAIL This was never going to work...
-<stacktrace>
-
-Logs saved to `<build-context>/_build/_tests/<test-dir>/U+03A9U+00E8one.001.output'.
- ──────────────────────────────────────────────────────────────────────────────
-
-Full test results in `<build-context>/_build/_tests/<test-dir>'.
-1 failure! in <test-duration>s. 3 tests run.
-Fatal error: exception Alcotest_engine__Core.Make(P)(M).Test_error
+Fatal error: cannot load shared library dllalcotest_engine_stubs
+Reason: /src/_build/install/default/lib/stublibs/dllalcotest_engine_stubs.so: undefined symbol: CAMLparam0
File "examples/dune", line 2, characters 15-21:
2 |  (names simple floats)
^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o examples/floats.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest examples/.simple.eobjs/native/dune__exe.cmx examples/.simple.eobjs/native/dune__exe__Floats.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "examples/bad/dune", line 2, characters 7-10:
2 |  (name bad)
^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o examples/bad/bad.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest examples/bad/.bad.eobjs/native/dune__exe__Bad.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest/source_code_position/dune", line 19, characters 7-32:
19 |  (name test_source_code_position)
^^^^^^^^^^^^^^^^^^^^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest/source_code_position/test_source_code_position.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest test/e2e/alcotest/source_code_position/.test_source_code_position.eobjs/native/dune__exe__Test_source_code_position.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest/stubs/dune", line 2, characters 7-20:
2 |  (name nullexception)
^^^^^^^^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest/stubs/nullexception.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest test/e2e/alcotest/stubs/nullexceptionstub.o test/e2e/alcotest/stubs/.nullexception.eobjs/native/dune__exe__Nullexception.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest/inside-dune/dune", line 2, characters 7-17:
2 |  (name test_color)
^^^^^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest/inside-dune/test_color.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest test/e2e/alcotest/inside-dune/.test_color.eobjs/native/dune__exe__Test_color.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest/failing/dune.inc", line 6, characters 3-13:
6 |    check_long
^^^^^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest/failing/check_long.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest test/e2e/alcotest/failing/.bail.eobjs/native/dune__exe.cmx test/e2e/alcotest/failing/.bail.eobjs/native/dune__exe__Check_long.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest/failing/dune.inc", line 4, characters 3-14:
4 |    check_basic
^^^^^^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest/failing/check_basic.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest test/e2e/alcotest/failing/.bail.eobjs/native/dune__exe.cmx test/e2e/alcotest/failing/.bail.eobjs/native/dune__exe__Check_basic.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest/failing/dune.inc", line 3, characters 3-7:
3 |    bail
^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest/failing/bail.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest test/e2e/alcotest/failing/.bail.eobjs/native/dune__exe.cmx test/e2e/alcotest/failing/.bail.eobjs/native/dune__exe__Bail.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest/failing/dune.inc", line 7, characters 3-10:
7 |    compact
^^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest/failing/compact.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest test/e2e/alcotest/failing/.bail.eobjs/native/dune__exe.cmx test/e2e/alcotest/failing/.bail.eobjs/native/dune__exe__Compact.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "examples/dune", line 2, characters 8-14:
2 |  (names simple floats)
^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o examples/simple.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest examples/.simple.eobjs/native/dune__exe.cmx examples/.simple.eobjs/native/dune__exe__Simple.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest/failing/dune.inc", line 9, characters 3-19:
9 |    empty_suite_name
^^^^^^^^^^^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest/failing/empty_suite_name.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest test/e2e/alcotest/failing/.bail.eobjs/native/dune__exe.cmx test/e2e/alcotest/failing/.bail.eobjs/native/dune__exe__Empty_suite_name.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest/failing/dune.inc", line 14, characters 3-17:
14 |    outside_runner
^^^^^^^^^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest/failing/outside_runner.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest test/e2e/alcotest/failing/.bail.eobjs/native/dune__exe.cmx test/e2e/alcotest/failing/.bail.eobjs/native/dune__exe__Outside_runner.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest/failing/dune.inc", line 8, characters 3-23:
8 |    duplicate_test_names
^^^^^^^^^^^^^^^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest/failing/duplicate_test_names.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest test/e2e/alcotest/failing/.bail.eobjs/native/dune__exe.cmx test/e2e/alcotest/failing/.bail.eobjs/native/dune__exe__Duplicate_test_names.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest/failing/dune.inc", line 10, characters 3-20:
10 |    exception_in_test
^^^^^^^^^^^^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest/failing/exception_in_test.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest test/e2e/alcotest/failing/.bail.eobjs/native/dune__exe.cmx test/e2e/alcotest/failing/.bail.eobjs/native/dune__exe__Exception_in_test.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest/failing/dune.inc", line 15, characters 3-20:
15 |    tail_errors_limit
^^^^^^^^^^^^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest/failing/tail_errors_limit.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest test/e2e/alcotest/failing/.bail.eobjs/native/dune__exe.cmx test/e2e/alcotest/failing/.bail.eobjs/native/dune__exe__Tail_errors_limit.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest/failing/dune.inc", line 12, characters 3-22:
12 |    invalid_arg_in_test
^^^^^^^^^^^^^^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest/failing/invalid_arg_in_test.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest test/e2e/alcotest/failing/.bail.eobjs/native/dune__exe.cmx test/e2e/alcotest/failing/.bail.eobjs/native/dune__exe__Invalid_arg_in_test.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest/failing/dune.inc", line 16, characters 3-24:
16 |    tail_errors_unlimited
^^^^^^^^^^^^^^^^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest/failing/tail_errors_unlimited.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest test/e2e/alcotest/failing/.bail.eobjs/native/dune__exe.cmx test/e2e/alcotest/failing/.bail.eobjs/native/dune__exe__Tail_errors_unlimited.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest/passing/dune.inc", line 4, characters 3-16:
4 |    and_exit_true
^^^^^^^^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest/passing/and_exit_true.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe.cmx test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe__And_exit_true.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest/failing/dune.inc", line 5, characters 3-16:
5 |    check_located
^^^^^^^^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest/failing/check_located.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest test/e2e/alcotest/failing/.bail.eobjs/native/dune__exe.cmx test/e2e/alcotest/failing/.bail.eobjs/native/dune__exe__Check_located.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest/failing/dune.inc", line 13, characters 3-22:
13 |    long_test_case_name
^^^^^^^^^^^^^^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest/failing/long_test_case_name.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest test/e2e/alcotest/failing/.bail.eobjs/native/dune__exe.cmx test/e2e/alcotest/failing/.bail.eobjs/native/dune__exe__Long_test_case_name.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest/failing/dune.inc", line 11, characters 3-19:
11 |    filter_all_tests
^^^^^^^^^^^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest/failing/filter_all_tests.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest test/e2e/alcotest/failing/.bail.eobjs/native/dune__exe.cmx test/e2e/alcotest/failing/.bail.eobjs/native/dune__exe__Filter_all_tests.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest/passing/dune.inc", line 5, characters 3-21:
5 |    assert_and_verbose
^^^^^^^^^^^^^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest/passing/assert_and_verbose.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe.cmx test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe__Assert_and_verbose.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest/passing/dune.inc", line 3, characters 3-17:
3 |    and_exit_false
^^^^^^^^^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest/passing/and_exit_false.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe.cmx test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe__And_exit_false.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest/passing/dune.inc", line 10, characters 3-10:
10 |    compact
^^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest/passing/compact.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe.cmx test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe__Compact.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest/passing/dune.inc", line 8, characters 3-14:
8 |    check_basic
^^^^^^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest/passing/check_basic.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe.cmx test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe__Check_basic.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest/passing/dune.inc", line 6, characters 3-21:
6 |    assert_not_printed
^^^^^^^^^^^^^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest/passing/assert_not_printed.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe.cmx test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe__Assert_not_printed.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest/passing/dune.inc", line 7, characters 3-8:
7 |    basic
^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest/passing/basic.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe.cmx test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe__Basic.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest/passing/dune.inc", line 13, characters 3-20:
13 |    filter_name_regex
^^^^^^^^^^^^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest/passing/filter_name_regex.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe.cmx test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe__Filter_name_regex.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest/passing/dune.inc", line 12, characters 3-14:
12 |    filter_name
^^^^^^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest/passing/filter_name.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe.cmx test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe__Filter_name.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-egine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest/passing/dune.inc", line 16, characters 3-14:
16 |    json_output
^^^^^^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest/passing/json_output.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe.cmx test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe__Json_output.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest/passing/dune.inc", line 9, characters 3-14:
9 |    cli_verbose
^^^^^^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest/passing/cli_verbose.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe.cmx test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe__Cli_verbose.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest/passing/dune.inc", line 17, characters 3-13:
17 |    list_tests
^^^^^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest/passing/list_tests.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe.cmx test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe__List_tests.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest/passing/dune.inc", line 24, characters 3-19:
24 |    unicode_testname
^^^^^^^^^^^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest/passing/unicode_testname.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe.cmx test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe__Unicode_testname.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest/passing/dune.inc", line 21, characters 3-19:
21 |    quick_only_regex
^^^^^^^^^^^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest/passing/quick_only_regex.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe.cmx test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe__Quick_only_regex.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest/passing/dune.inc", line 19, characters 3-23:
19 |    only_monadic_effects
^^^^^^^^^^^^^^^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest/passing/only_monadic_effects.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe.cmx test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe__Only_monadic_effects.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest/passing/dune.inc", line 25, characters 3-19:
25 |    verbose_newlines
^^^^^^^^^^^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest/passing/verbose_newlines.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe.cmx test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe__Verbose_newlines.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest/passing/dune.inc", line 18, characters 3-15:
18 |    match_raises
^^^^^^^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest/passing/match_raises.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe.cmx test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe__Match_raises.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest/passing/dune.inc", line 15, characters 3-9:
15 |    isatty
^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest/passing/isatty.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe.cmx test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe__Isatty.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest/passing/dune.inc", line 20, characters 3-13:
20 |    quick_only
^^^^^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest/passing/quick_only.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe.cmx test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe__Quick_only.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest/passing/dune.inc", line 22, characters 3-21:
22 |    separator_testname
^^^^^^^^^^^^^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest/passing/separator_testname.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe.cmx test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe__Separator_testname.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest/passing/dune.inc", line 14, characters 3-15:
14 |    filter_range
^^^^^^^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest/passing/filter_range.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe.cmx test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe__Filter_range.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest/passing/dune.inc", line 11, characters 3-18:
11 |    empty_test_name
^^^^^^^^^^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest/passing/empty_test_name.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe.cmx test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe__Empty_test_name.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest/passing/dune.inc", line 23, characters 3-15:
23 |    skip_in_test
^^^^^^^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest/passing/skip_in_test.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe.cmx test/e2e/alcotest/passing/.and_exit_false.eobjs/native/dune__exe__Skip_in_test.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "examples/lwt/dune", line 2, characters 8-12:
2 |  (names test)
^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o examples/lwt/test.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest /home/opam/.opam/4.14/lib/ocaml/bigarray.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/lwt/lwt.cmxa /home/opam/.opam/4.14/lib/ocplib-endian/ocplib_endian.cmxa /home/opam/.opam/4.14/lib/ocplib-endian/bigstring/ocplib_endian_bigstring.cmxa /home/opam/.opam/4.14/lib/ocaml/threads/threads.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/lwt/unix/lwt_unix.cmxa -I /home/opam/.opam/4.14/lib/lwt/unix /home/opam/.opam/4.14/lib/logs/logs.cmxa src/alcotest-lwt/alcotest_lwt.cmxa examples/lwt/.test.eobjs/native/dune__exe__Test.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest-lwt/failing/dune.inc", line 4, characters 3-12:
4 |    fail_with
^^^^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest-lwt/failing/fail_with.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest /home/opam/.opam/4.14/lib/ocaml/bigarray.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/lwt/lwt.cmxa /home/opam/.opam/4.14/lib/ocplib-endian/ocplib_endian.cmxa /home/opam/.opam/4.14/lib/ocplib-endian/bigstring/ocplib_endian_bigstring.cmxa /home/opam/.opam/4.14/lib/ocaml/threads/threads.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/lwt/unix/lwt_unix.cmxa -I /home/opam/.opam/4.14/lib/lwt/unix /home/opam/.opam/4.14/lib/logs/logs.cmxa src/alcotest-lwt/alcotest_lwt.cmxa test/e2e/alcotest-lwt/failing/.async_failure.eobjs/native/dune__exe.cmx test/e2e/alcotest-lwt/failing/.async_failure.eobjs/native/dune__exe__Fail_with.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest-lwt/failing/dune.inc", line 3, characters 3-16:
3 |    async_failure
^^^^^^^^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest-lwt/failing/async_failure.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest /home/opam/.opam/4.14/lib/ocaml/bigarray.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/lwt/lwt.cmxa /home/opam/.opam/4.14/lib/ocplib-endian/ocplib_endian.cmxa /home/opam/.opam/4.14/lib/ocplib-endian/bigstring/ocplib_endian_bigstring.cmxa /home/opam/.opam/4.14/lib/ocaml/threads/threads.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/lwt/unix/lwt_unix.cmxa -I /home/opam/.opam/4.14/lib/lwt/unix /home/opam/.opam/4.14/lib/logs/logs.cmxa src/alcotest-lwt/alcotest_lwt.cmxa test/e2e/alcotest-lwt/failing/.async_failure.eobjs/native/dune__exe.cmx test/e2e/alcotest-lwt/failing/.async_failure.eobjs/native/dune__exe__Async_failure.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
File "test/e2e/alcotest-lwt/passing/dune.inc", line 3, characters 3-14:
3 |    cli_options
^^^^^^^^^^^
(cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/e2e/alcotest-lwt/passing/cli_options.exe /home/opam/.opam/4.14/lib/astring/astring.cmxa /home/opam/.opam/4.14/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.14/lib/uutf/uutf.cmxa src/alcotest-stdlib-ext/alcotest_stdlib_ext.cmxa /home/opam/.opam/4.14/lib/fmt/fmt.cmxa /home/opam/.opam/4.14/lib/fmt/cli/fmt_cli.cmxa /home/opam/.opam/4.14/lib/re/re.cmxa /home/opam/.opam/4.14/lib/stdlib-shims/stdlib_shims.cmxa src/alcotest-engine/alcotest_engine.cmxa -I src/alcotest-engine /home/opam/.opam/4.14/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/fmt/tty/fmt_tty.cmxa src/alcotest/alcotest.cmxa -I src/alcotest /home/opam/.opam/4.14/lib/ocaml/bigarray.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/lwt/lwt.cmxa /home/opam/.opam/4.14/lib/ocplib-endian/ocplib_endian.cmxa /home/opam/.opam/4.14/lib/ocplib-endian/bigstring/ocplib_endian_bigstring.cmxa /home/opam/.opam/4.14/lib/ocaml/threads/threads.cmxa -I /home/opam/.opam/4.14/lib/ocaml /home/opam/.opam/4.14/lib/lwt/unix/lwt_unix.cmxa -I /home/opam/.opam/4.14/lib/lwt/unix /home/opam/.opam/4.14/lib/logs/logs.cmxa src/alcotest-lwt/alcotest_lwt.cmxa test/e2e/alcotest-lwt/passing/.cli_options.eobjs/native/dune__exe__Cli_options.cmx)
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: src/alcotest-engine/libalcotest_engine_stubs.a(stack_error_reporter.o): in function `caml_setup_stub_exception_handler':
/src/_build/default/src/alcotest-engine/stack_error_reporter.c:205:(.text+0x1ce): undefined reference to `CAMLparam0'
/usr/lib64/gcc/x86_64-suse-linux/7/../../../../x86_64-suse-linux/bin/ld: /src/_build/default/src/alcotest-engine/stack_error_reporter.c:216:(.text+0x217): undefined reference to `CAMLreturn'
collect2: error: ld returned 1 exit status
File "caml_startup", line 1:
Error: Error during linking (exit code 1)
"/usr/bin/env" "bash" "-c" "opam exec -- dune build @install @check @runtest && rm -rf _build" failed with exit status 1
2026-03-12 20:17.52: Job failed: Failed: Build failed