Organisationsocaml-gospelortac6970d9 ()(lower-bound)

(lower-bound)

Logs

Show full logs
2024-09-01 14:12.45: New job: test ocaml-gospel/ortac https://github.com/ocaml-gospel/ortac.git#refs/pull/196/head (6970d94ee13a60e8fd879dcda02757fddd2cd684) (linux-x86_64:(lower-bound))
Base: ocaml/opam:debian-12-ocaml-4.12@sha256:51cc6003512dd8b183dfbcd2923431c0df52e9f6f6ab699eb9dfb395b50fff92
Opam project build

To reproduce locally:

git clone --recursive "https://github.com/ocaml-gospel/ortac.git" && cd "ortac" && git fetch origin "refs/pull/196/head" && git reset --hard 6970d94e
cat > Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.12@sha256:51cc6003512dd8b183dfbcd2923431c0df52e9f6f6ab699eb9dfb395b50fff92
# debian-12-4.12_opam-2.2
USER 1000:1000
ENV CLICOLOR_FORCE="1"
ENV OPAMCOLOR="always"
WORKDIR /src
RUN sudo ln -f /usr/bin/opam-2.2 /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 4795e0895b44aa27b6ee67583148aee756966a60 || git fetch origin master) && git reset -q --hard 4795e0895b44aa27b6ee67583148aee756966a60 && git log --no-decorate -n1 --oneline && opam update -u
COPY --chown=1000:1000 ortac-wrapper.opam ortac-runtime.opam ortac-runtime-qcheck-stm.opam ortac-runtime-monolith.opam ortac-qcheck-stm.opam ortac-monolith.opam ortac-examples.opam ortac-dune.opam ortac-core.opam ./
RUN opam pin add -yn ortac-wrapper.dev './' && \
    opam pin add -yn ortac-runtime.dev './' && \
    opam pin add -yn ortac-runtime-qcheck-stm.dev './' && \
    opam pin add -yn ortac-runtime-monolith.dev './' && \
    opam pin add -yn ortac-qcheck-stm.dev './' && \
    opam pin add -yn ortac-monolith.dev './' && \
    opam pin add -yn ortac-examples.dev './' && \
    opam pin add -yn ortac-dune.dev './' && \
    opam pin add -yn ortac-core.dev './'
ENV DEPS="afl-persistent.1.3 alcotest.1.0.0 astring.0.8.5 base-bigarray.base base-bytes.base base-threads.base base-unix.base cmdliner.1.1.0 conf-gmp.1 conf-m4.1 conf-perl.1 cppo.1.6.1 csexp.1.3.2 dune.3.8.0 dune-build-info.1.11.0 dune-configurator.2.7.0 dune-private-libs.2.8.0 dune-site.2.8.0 fmt.0.9.0 gospel.0.3.0 jbuilder.1.0+beta20.1 logs.0.7.0 lwt.5.4.0 lwt-dllist.1.0.0 mdx.2.3.0 menhir.20181006 mmap.1.1.0 monolith.20201026 ocaml.4.12.1 ocaml-base-compiler.4.12.1 ocaml-compiler-libs.v0.12.0 ocaml-config.2 ocaml-options-vanilla.1 ocaml-version.2.4.0 ocamlbuild.0.14.0 ocamlfind.1.8.1 ocplib-endian.1.0 odoc-parser.1.0.0 pp_loc.2.1.0 pprint.20200410 ppx_derivers.1.0 ppx_deriving.5.2.1 ppxlib.0.26.0 qcheck-core.0.20 qcheck-multicoretests-util.0.2 qcheck-stm.0.2 re.1.7.2 result.1.5 seq.0.2.2 sexplib0.v0.12.0 stdlib-shims.0.1.0 topkg.1.0.3 uuidm.0.9.6 varray.0.2 zarith.1.3"
ENV CI="true"
ENV OCAMLCI="true"
RUN opam update --depexts && opam install --cli=2.2 --depext-only -y ortac-wrapper.dev ortac-runtime.dev ortac-runtime-qcheck-stm.dev ortac-runtime-monolith.dev ortac-qcheck-stm.dev ortac-monolith.dev ortac-examples.dev ortac-dune.dev ortac-core.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

2024-09-01 14:12.45: Using cache hint "ocaml-gospel/ortac-ocaml/opam:debian-12-ocaml-4.12@sha256:51cc6003512dd8b183dfbcd2923431c0df52e9f6f6ab699eb9dfb395b50fff92-debian-12-4.12_opam-2.2-c14905a94e131c22550e48a2a6e27dc3"
2024-09-01 14:12.45: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.12@sha256:51cc6003512dd8b183dfbcd2923431c0df52e9f6f6ab699eb9dfb395b50fff92)
 (comment debian-12-4.12_opam-2.2)
 (user (uid 1000) (gid 1000))
 (env CLICOLOR_FORCE 1)
 (env OPAMCOLOR always)
 (workdir /src)
 (run (shell "sudo ln -f /usr/bin/opam-2.2 /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 4795e0895b44aa27b6ee67583148aee756966a60 || git fetch origin master) && git reset -q --hard 4795e0895b44aa27b6ee67583148aee756966a60 && git log --no-decorate -n1 --oneline && opam update -u"))
 (copy (src ortac-wrapper.opam ortac-runtime.opam ortac-runtime-qcheck-stm.opam ortac-runtime-monolith.opam ortac-qcheck-stm.opam ortac-monolith.opam ortac-examples.opam ortac-dune.opam ortac-core.opam)
       (dst ./))
 (run (network host)
      (shell  "opam pin add -yn ortac-wrapper.dev './' && \
             \nopam pin add -yn ortac-runtime.dev './' && \
             \nopam pin add -yn ortac-runtime-qcheck-stm.dev './' && \
             \nopam pin add -yn ortac-runtime-monolith.dev './' && \
             \nopam pin add -yn ortac-qcheck-stm.dev './' && \
             \nopam pin add -yn ortac-monolith.dev './' && \
             \nopam pin add -yn ortac-examples.dev './' && \
             \nopam pin add -yn ortac-dune.dev './' && \
             \nopam pin add -yn ortac-core.dev './'"))
 (env DEPS "afl-persistent.1.3 alcotest.1.0.0 astring.0.8.5 base-bigarray.base base-bytes.base base-threads.base base-unix.base cmdliner.1.1.0 conf-gmp.1 conf-m4.1 conf-perl.1 cppo.1.6.1 csexp.1.3.2 dune.3.8.0 dune-build-info.1.11.0 dune-configurator.2.7.0 dune-private-libs.2.8.0 dune-site.2.8.0 fmt.0.9.0 gospel.0.3.0 jbuilder.1.0+beta20.1 logs.0.7.0 lwt.5.4.0 lwt-dllist.1.0.0 mdx.2.3.0 menhir.20181006 mmap.1.1.0 monolith.20201026 ocaml.4.12.1 ocaml-base-compiler.4.12.1 ocaml-compiler-libs.v0.12.0 ocaml-config.2 ocaml-options-vanilla.1 ocaml-version.2.4.0 ocamlbuild.0.14.0 ocamlfind.1.8.1 ocplib-endian.1.0 odoc-parser.1.0.0 pp_loc.2.1.0 pprint.20200410 ppx_derivers.1.0 ppx_deriving.5.2.1 ppxlib.0.26.0 qcheck-core.0.20 qcheck-multicoretests-util.0.2 qcheck-stm.0.2 re.1.7.2 result.1.5 seq.0.2.2 sexplib0.v0.12.0 stdlib-shims.0.1.0 topkg.1.0.3 uuidm.0.9.6 varray.0.2 zarith.1.3")
 (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.2 --depext-only -y ortac-wrapper.dev ortac-runtime.dev ortac-runtime-qcheck-stm.dev ortac-runtime-monolith.dev ortac-qcheck-stm.dev ortac-monolith.dev ortac-examples.dev ortac-dune.dev ortac-core.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"))
)

2024-09-01 14:12.45: Waiting for resource in pool OCluster
2024-09-01 15:29.39: Waiting for worker…
2024-09-01 15:32.30: Got resource from pool OCluster
Building on x86-bm-c14.sw.ocaml.org
All commits already cached
HEAD is now at 6970d94 Update Changelog

(from ocaml/opam:debian-12-ocaml-4.12@sha256:51cc6003512dd8b183dfbcd2923431c0df52e9f6f6ab699eb9dfb395b50fff92)
2024-09-01 15:32.30 ---> using "420e21d3d29bfeb08a7e84a34fa567c804a9bec2cb409e8bcbed293cf7025ea0" from cache

/: (comment debian-12-4.12_opam-2.2)

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

/: (env CLICOLOR_FORCE 1)

/: (env OPAMCOLOR always)

/: (workdir /src)

/src: (run (shell "sudo ln -f /usr/bin/opam-2.2 /usr/bin/opam"))
2024-09-01 15:32.30 ---> using "23d9fdb5afc0ea363777d04f75af2b54241ef57f02867854c7f3c383826e688e" 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 development 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] synchronised from file:///home/opam/opam-repository
2024-09-01 15:32.30 ---> using "bb3ede4f63e117a13a7f12a4f5129dbdcefd9f031fe1062e44a7809fb9c72ef3" from cache

/src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
Linux 5.15.0-119-generic
The OCaml toplevel, version 4.12.1
2.2.1
2024-09-01 15:32.30 ---> using "d9f99ec742d78506cae543f735f31f34aa5e0d03e1f7f6fb5feda706af46f1d7" from cache

/src: (workdir /src)

/src: (run (shell "sudo chown opam /src"))
2024-09-01 15:32.30 ---> using "a835557bb21fc68c6ae4e36c3ff8d9d2944923bb5739962cbc336ed6bad9c901" from cache

/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
           (network host)
           (shell "cd ~/opam-repository && (git cat-file -e 4795e0895b44aa27b6ee67583148aee756966a60 || git fetch origin master) && git reset -q --hard 4795e0895b44aa27b6ee67583148aee756966a60 && git log --no-decorate -n1 --oneline && opam update -u"))
4795e0895b Merge pull request #26339 from mtelvers/macos-m4

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

The following actions will be performed:
=== downgrade 1 package
  - downgrade opam-depext 1.2.3 to 1.2.1-1 [no longer available]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved opam-depext.1.2.1-1  (cached)
-> removed   opam-depext.1.2.3
-> installed opam-depext.1.2.1-1
Done.

<><> opam-depext.1.2.1-1 installed successfully <><><><><><><><><><><><><><><><>
=> opam-depext is unnecessary when used with opam >= 2.1. Please use opam install directly instead
# Run eval $(opam env) to update the current shell environment
2024-09-01 15:33.40 ---> saved as "09829aceee4fc2160606b40720e0e18ae9a6407fa7b056f08116b9c1b6e66d51"

/src: (copy (src ortac-wrapper.opam ortac-runtime.opam ortac-runtime-qcheck-stm.opam ortac-runtime-monolith.opam ortac-qcheck-stm.opam ortac-monolith.opam ortac-examples.opam ortac-dune.opam ortac-core.opam)
            (dst ./))
2024-09-01 15:33.40 ---> saved as "e21eddb9e16d36957d71bb8ea3eb2d003b825a686e1370fb29eb971d6623158f"

/src: (run (network host)
           (shell  "opam pin add -yn ortac-wrapper.dev './' && \
                  \nopam pin add -yn ortac-runtime.dev './' && \
                  \nopam pin add -yn ortac-runtime-qcheck-stm.dev './' && \
                  \nopam pin add -yn ortac-runtime-monolith.dev './' && \
                  \nopam pin add -yn ortac-qcheck-stm.dev './' && \
                  \nopam pin add -yn ortac-monolith.dev './' && \
                  \nopam pin add -yn ortac-examples.dev './' && \
                  \nopam pin add -yn ortac-dune.dev './' && \
                  \nopam pin add -yn ortac-core.dev './'"))
Package ortac-wrapper does not exist, create as a NEW package? [y/n] y
[ortac-wrapper.dev] synchronised (file:///src)
ortac-wrapper is now pinned to file:///src (version dev)
[ortac-runtime.dev] synchronised (file:///src)
ortac-runtime is now pinned to file:///src (version dev)
[ortac-runtime-qcheck-stm.dev] synchronised (file:///src)
ortac-runtime-qcheck-stm is now pinned to file:///src (version dev)
Package ortac-runtime-monolith does not exist, create as a NEW package? [y/n] y
[ortac-runtime-monolith.dev] synchronised (file:///src)
ortac-runtime-monolith is now pinned to file:///src (version dev)
[ortac-qcheck-stm.dev] synchronised (file:///src)
ortac-qcheck-stm is now pinned to file:///src (version dev)
Package ortac-monolith does not exist, create as a NEW package? [y/n] y
[ortac-monolith.dev] synchronised (file:///src)
ortac-monolith is now pinned to file:///src (version dev)
Package ortac-examples does not exist, create as a NEW package? [y/n] y
[ortac-examples.dev] synchronised (file:///src)
ortac-examples is now pinned to file:///src (version dev)
[ortac-dune.dev] synchronised (file:///src)
ortac-dune is now pinned to file:///src (version dev)
[ortac-core.dev] synchronised (file:///src)
ortac-core is now pinned to file:///src (version dev)
2024-09-01 15:33.59 ---> saved as "1504b89c4d76e28f236aac930337a4b879ba9dd0f128bc76116b6add188e5fc4"

/src: (env DEPS "afl-persistent.1.3 alcotest.1.0.0 astring.0.8.5 base-bigarray.base base-bytes.base base-threads.base base-unix.base cmdliner.1.1.0 conf-gmp.1 conf-m4.1 conf-perl.1 cppo.1.6.1 csexp.1.3.2 dune.3.8.0 dune-build-info.1.11.0 dune-configurator.2.7.0 dune-private-libs.2.8.0 dune-site.2.8.0 fmt.0.9.0 gospel.0.3.0 jbuilder.1.0+beta20.1 logs.0.7.0 lwt.5.4.0 lwt-dllist.1.0.0 mdx.2.3.0 menhir.20181006 mmap.1.1.0 monolith.20201026 ocaml.4.12.1 ocaml-base-compiler.4.12.1 ocaml-compiler-libs.v0.12.0 ocaml-config.2 ocaml-options-vanilla.1 ocaml-version.2.4.0 ocamlbuild.0.14.0 ocamlfind.1.8.1 ocplib-endian.1.0 odoc-parser.1.0.0 pp_loc.2.1.0 pprint.20200410 ppx_derivers.1.0 ppx_deriving.5.2.1 ppxlib.0.26.0 qcheck-core.0.20 qcheck-multicoretests-util.0.2 qcheck-stm.0.2 re.1.7.2 result.1.5 seq.0.2.2 sexplib0.v0.12.0 stdlib-shims.0.1.0 topkg.1.0.3 uuidm.0.9.6 varray.0.2 zarith.1.3")

/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.2 --depext-only -y ortac-wrapper.dev ortac-runtime.dev ortac-runtime-qcheck-stm.dev ortac-runtime-monolith.dev ortac-qcheck-stm.dev ortac-monolith.dev ortac-examples.dev ortac-dune.dev ortac-core.dev $DEPS"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB]
- Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
- Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
- Get:4 http://deb.debian.org/debian bookworm/main amd64 Packages [8787 kB]
- Get:5 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [179 kB]
- Fetched 9221 kB in 2s (3809 kB/s)
- Reading package lists...
- 

<><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><>
[ortac-core.dev] synchronised (no changes)
[ortac-dune.dev] synchronised (no changes)
[ortac-examples.dev] synchronised (no changes)
[ortac-monolith.dev] synchronised (no changes)
[ortac-qcheck-stm.dev] synchronised (no changes)
[ortac-runtime.dev] synchronised (no changes)
[ortac-runtime-monolith.dev] synchronised (no changes)
[ortac-runtime-qcheck-stm.dev] synchronised (no changes)
[ortac-wrapper.dev] synchronised (no changes)

[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.12.1).
[NOTE] Package ocaml is already installed (current version is 4.12.1).
[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:
    libgmp-dev m4

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

+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libgmp-dev" "m4"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 18734 files and directories currently installed.)
- Preparing to unpack .../libgmpxx4ldbl_2%3a6.2.1+dfsg1-1.1_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../libgmp-dev_2%3a6.2.1+dfsg1-1.1_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ...
- Selecting previously unselected package m4.
- Preparing to unpack .../archives/m4_1.4.19-3_amd64.deb ...
- Unpacking m4 (1.4.19-3) ...
- Setting up m4 (1.4.19-3) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ...
- Setting up libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ...
- Processing triggers for libc-bin (2.36-9+deb12u7) ...
2024-09-01 15:34.24 ---> saved as "3165380ba7a1308b8a8ea74b769c7b930c138a967398f9fe274b4ca386c44c2c"

/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.12.1).
[NOTE] Package ocaml is already installed (current version is 4.12.1).
[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 48 packages
  - install afl-persistent             1.3
  - install alcotest                   1.0.0
  - install astring                    0.8.5
  - install base-bytes                 base
  - install cmdliner                   1.1.0
  - install conf-gmp                   1
  - install conf-m4                    1
  - install conf-perl                  1
  - install cppo                       1.6.1
  - install csexp                      1.3.2
  - install dune                       3.8.0
  - install dune-build-info            1.11.0
  - install dune-configurator          2.7.0
  - install dune-private-libs          2.8.0
  - install dune-site                  2.8.0
  - install fmt                        0.9.0
  - install gospel                     0.3.0
  - install jbuilder                   1.0+beta20.1
  - install logs                       0.7.0
  - install lwt                        5.4.0
  - install lwt-dllist                 1.0.0
  - install mdx                        2.3.0
  - install menhir                     20181006
  - install mmap                       1.1.0
  - install monolith                   20201026
  - install ocaml-compiler-libs        v0.12.0
  - install ocaml-version              2.4.0
  - install ocamlbuild                 0.14.0
  - install ocamlfind                  1.8.1
  - install ocplib-endian              1.0
  - install odoc-parser                1.0.0
  - install pp_loc                     2.1.0
  - install pprint                     20200410
  - install ppx_derivers               1.0
  - install ppx_deriving               5.2.1
  - install ppxlib                     0.26.0
  - install qcheck-core                0.20
  - install qcheck-multicoretests-util 0.2
  - install qcheck-stm                 0.2
  - install re                         1.7.2
  - install result                     1.5
  - install seq                        0.2.2
  - install sexplib0                   v0.12.0
  - install stdlib-shims               0.1.0
  - install topkg                      1.0.3
  - install uuidm                      0.9.6
  - install varray                     0.2
  - install zarith                     1.3

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5  (cached)
-> retrieved cmdliner.1.1.0  (cached)
-> retrieved conf-gmp.1  (cached)
-> retrieved cppo.1.6.1  (cached)
-> installed conf-gmp.1
-> installed conf-m4.1
-> installed conf-perl.1
-> retrieved csexp.1.3.2  (cached)
-> retrieved alcotest.1.0.0  (cached)
-> retrieved afl-persistent.1.3  (https://github.com/stedolan/ocaml-afl-persistent/archive/v1.3.tar.gz)
-> retrieved dune-configurator.2.7.0  (cached)
-> installed afl-persistent.1.3
-> retrieved dune.3.8.0  (https://github.com/ocaml/dune/releases/download/3.8.0/dune-3.8.0.tbz)
-> retrieved dune-build-info.1.11.0  (https://github.com/ocaml/dune/releases/download/1.11.0/dune-build-info-1.11.0.tbz)
-> retrieved dune-private-libs.2.8.0, dune-site.2.8.0  (cached)
-> retrieved fmt.0.9.0  (cached)
-> retrieved gospel.0.3.0  (cached)
-> retrieved jbuilder.1.0+beta20.1  (cached)
-> retrieved logs.0.7.0  (cached)
-> retrieved lwt.5.4.0  (cached)
-> installed cmdliner.1.1.0
-> retrieved lwt-dllist.1.0.0  (cached)
-> retrieved mmap.1.1.0  (cached)
-> retrieved monolith.20201026  (https://gitlab.inria.fr/fpottier/monolith/-/archive/20201026/archive.tar.gz)
-> retrieved ocaml-compiler-libs.v0.12.0  (cached)
-> retrieved menhir.20181006  (http://gallium.inria.fr/~fpottier/menhir/menhir-20181006.tar.gz)
-> retrieved mdx.2.3.0  (https://github.com/realworldocaml/mdx/releases/download/2.3.0/mdx-2.3.0.tbz)
-> retrieved ocamlbuild.0.14.0  (cached)
-> retrieved ocamlfind.1.8.1  (cached)
-> retrieved ocplib-endian.1.0  (cached)
-> retrieved pp_loc.2.1.0  (cached)
-> retrieved ocaml-version.2.4.0  (https://github.com/ocurrent/ocaml-version/releases/download/v2.4.0/ocaml-version-v2.4.0.tbz)
-> retrieved ppx_derivers.1.0  (cached)
-> retrieved ppx_deriving.5.2.1  (cached)
-> retrieved pprint.20200410  (https://github.com/fpottier/pprint/archive/20200410.tar.gz)
-> retrieved odoc-parser.1.0.0  (https://github.com/ocaml-doc/odoc-parser/releases/download/1.0.0/odoc-parser-1.0.0.tbz)
-> retrieved ppxlib.0.26.0  (https://github.com/ocaml-ppx/ppxlib/releases/download/0.26.0/ppxlib-0.26.0.tbz)
-> retrieved qcheck-core.0.20  (https://github.com/c-cube/qcheck/archive/refs/tags/v0.20.tar.gz)
-> retrieved re.1.7.2  (cached)
-> retrieved result.1.5  (cached)
-> retrieved seq.0.2.2  (cached)
-> retrieved sexplib0.v0.12.0  (cached)
-> retrieved qcheck-multicoretests-util.0.2, qcheck-stm.0.2  (https://github.com/ocaml-multicore/multicoretests/archive/0.2.tar.gz)
-> retrieved stdlib-shims.0.1.0  (cached)
-> retrieved topkg.1.0.3  (cached)
-> retrieved uuidm.0.9.6  (cached)
-> retrieved varray.0.2  (cached)
-> retrieved zarith.1.3  (cached)
-> installed ocamlfind.1.8.1
-> installed base-bytes.base
-> installed ocamlbuild.0.14.0
-> installed zarith.1.3
-> installed jbuilder.1.0+beta20.1
-> installed ppx_derivers.1.0
-> installed cppo.1.6.1
-> installed re.1.7.2
-> installed topkg.1.0.3
-> installed uuidm.0.9.6
-> installed fmt.0.9.0
-> installed astring.0.8.5
-> installed ocplib-endian.1.0
-> installed dune.3.8.0
-> installed dune-build-info.1.11.0
-> installed mmap.1.1.0
-> installed pp_loc.2.1.0
-> installed result.1.5
-> installed stdlib-shims.0.1.0
-> installed pprint.20200410
-> installed seq.0.2.2
-> installed sexplib0.v0.12.0
-> installed varray.0.2
-> installed csexp.1.3.2
-> installed ocaml-version.2.4.0
-> installed odoc-parser.1.0.0
-> installed dune-configurator.2.7.0
-> installed ocaml-compiler-libs.v0.12.0
-> installed alcotest.1.0.0
-> installed monolith.20201026
-> installed qcheck-core.0.20
-> installed qcheck-multicoretests-util.0.2
-> installed qcheck-stm.0.2
-> installed dune-private-libs.2.8.0
-> installed lwt.5.4.0
-> installed lwt-dllist.1.0.0
-> installed dune-site.2.8.0
-> installed logs.0.7.0
-> installed menhir.20181006
-> installed mdx.2.3.0
-> installed ppxlib.0.26.0
-> installed ppx_deriving.5.2.1
-> installed gospel.0.3.0
Done.

<><> afl-persistent.1.3 installed successfully ><><><><><><><><><><><><><><><><>
=> afl-persistent is installed, but since the current OCaml compiler does
   not enable AFL instrumentation by default, most packages will not be
   instrumented and fuzzing with afl-fuzz may not be effective.

   To globally enable AFL instrumentation, use an OCaml switch such as
   4.07.1+afl.
# Run eval $(opam env) to update the current shell environment
2024-09-01 15:36.03 ---> saved as "be17bcc5f3a9455e1a8b845a6e0c66f9f8bf3d5e9f1f968eda3568f94347f21f"

/src: (copy (src .) (dst /src))
2024-09-01 15:36.03 ---> saved as "3f4536daeb4113ed39b3c5756ea61a7322ebd9ca15f5d3fe2b620ed36fc1093b"

/src: (run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build"))
File "/home/opam/.opam/4.12/lib/re/re.dune", line 1, characters 0-0:
Warning: .dune files are ignored since 2.0. Reinstall the library with dune
>= 2.0 to get rid of this warning and enable support for the subsystem this
library provides.
File "/home/opam/.opam/4.12/lib/re/emacs/re.emacs.dune", line 1, characters 0-0:
Warning: .dune files are ignored since 2.0. Reinstall the library with dune
>= 2.0 to get rid of this warning and enable support for the subsystem this
library provides.
File "/home/opam/.opam/4.12/lib/re/glob/re.glob.dune", line 1, characters 0-0:
Warning: .dune files are ignored since 2.0. Reinstall the library with dune
>= 2.0 to get rid of this warning and enable support for the subsystem this
library provides.
File "/home/opam/.opam/4.12/lib/re/pcre/re.pcre.dune", line 1, characters 0-0:
Warning: .dune files are ignored since 2.0. Reinstall the library with dune
>= 2.0 to get rid of this warning and enable support for the subsystem this
library provides.
File "/home/opam/.opam/4.12/lib/re/perl/re.perl.dune", line 1, characters 0-0:
Warning: .dune files are ignored since 2.0. Reinstall the library with dune
>= 2.0 to get rid of this warning and enable support for the subsystem this
library provides.
File "/home/opam/.opam/4.12/lib/re/posix/re.posix.dune", line 1, characters 0-0:
Warning: .dune files are ignored since 2.0. Reinstall the library with dune
>= 2.0 to get rid of this warning and enable support for the subsystem this
library provides.
File "/home/opam/.opam/4.12/lib/re/str/re.str.dune", line 1, characters 0-0:
Warning: .dune files are ignored since 2.0. Reinstall the library with dune
>= 2.0 to get rid of this warning and enable support for the subsystem this
library provides.
File "/home/opam/.opam/4.12/lib/ppx_derivers/ppx_derivers.dune", line 1, characters 0-0:
Warning: .dune files are ignored since 2.0. Reinstall the library with dune
>= 2.0 to get rid of this warning and enable support for the subsystem this
library provides.
(cd _build/default && /home/opam/.opam/4.12/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62@67@69-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -I src/runtime/.ortac_runtime.objs/byte -I src/runtime/.ortac_runtime.objs/native -I /home/opam/.opam/4.12/lib/fmt -I /home/opam/.opam/4.12/lib/zarith -intf-suffix .ml -no-alias-deps -opaque -open Ortac_runtime__ -o src/runtime/.ortac_runtime.objs/native/ortac_runtime.cmx -c -impl src/runtime/ortac_runtime.ml)
File "_none_", line 1:
Warning 58 [no-cmx-file]: no cmx file was found in path for module Z, and its interface was not compiled with -opaque
(cd _build/default && /home/opam/.opam/4.12/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62@67@69-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -I test/runtime/.stdlibset.eobjs/byte -I test/runtime/.stdlibset.eobjs/native -I /home/opam/.opam/4.12/lib/afl-persistent -I /home/opam/.opam/4.12/lib/fmt -I /home/opam/.opam/4.12/lib/monolith -I /home/opam/.opam/4.12/lib/pprint -I /home/opam/.opam/4.12/lib/seq -I /home/opam/.opam/4.12/lib/zarith -I src/runtime/.ortac_runtime.objs/byte -I src/runtime/.ortac_runtime.objs/native -intf-suffix .ml -no-alias-deps -opaque -o test/runtime/.stdlibset.eobjs/native/dune__exe__Stdlibset.cmx -c -impl test/runtime/stdlibset.ml)
File "_none_", line 1:
Warning 58 [no-cmx-file]: no cmx file was found in path for module Z, and its interface was not compiled with -opaque
(cd _build/default && /home/opam/.opam/4.12/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62@67@69-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o test/runtime/stdlibset.exe /home/opam/.opam/4.12/lib/zarith/zarith.cmxa -I /home/opam/.opam/4.12/lib/zarith /home/opam/.opam/4.12/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.12/lib/ocaml /home/opam/.opam/4.12/lib/afl-persistent/afl-persistent.cmxa /home/opam/.opam/4.12/lib/pprint/pprint.cmxa /home/opam/.opam/4.12/lib/seq/seq.cmxa /home/opam/.opam/4.12/lib/monolith/monolith.cmxa /home/opam/.opam/4.12/lib/fmt/fmt.cmxa src/runtime/ortac_runtime.cmxa test/runtime/.stdlibset.eobjs/native/dune__exe__Stdlibset.cmx)
/usr/bin/ld: warning: caml_z_x86_64.o: missing .note.GNU-stack section implies executable stack
/usr/bin/ld: NOTE: This behaviour is deprecated and will be removed in a future version of the linker
(cd _build/default && /home/opam/.opam/4.12/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62@67@69-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o plugins/wrapper/test/generated/wrapper.exe /home/opam/.opam/4.12/lib/fmt/fmt.cmxa /home/opam/.opam/4.12/lib/zarith/zarith.cmxa -I /home/opam/.opam/4.12/lib/zarith src/runtime/ortac_runtime.cmxa plugins/wrapper/test/generated/.wrapper.eobjs/native/dune__exe.cmx plugins/wrapper/test/generated/.wrapper.eobjs/native/dune__exe__Lib.cmx plugins/wrapper/test/generated/.wrapper.eobjs/native/dune__exe__Wrapper.cmx)
/usr/bin/ld: warning: caml_z_x86_64.o: missing .note.GNU-stack section implies executable stack
/usr/bin/ld: NOTE: This behaviour is deprecated and will be removed in a future version of the linker
(cd _build/default && /home/opam/.opam/4.12/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62@67@69-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o plugins/monolith/test/generated/wrapper.exe /home/opam/.opam/4.12/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.12/lib/ocaml /home/opam/.opam/4.12/lib/afl-persistent/afl-persistent.cmxa /home/opam/.opam/4.12/lib/pprint/pprint.cmxa /home/opam/.opam/4.12/lib/seq/seq.cmxa /home/opam/.opam/4.12/lib/monolith/monolith.cmxa /home/opam/.opam/4.12/lib/fmt/fmt.cmxa /home/opam/.opam/4.12/lib/zarith/zarith.cmxa -I /home/opam/.opam/4.12/lib/zarith src/runtime/ortac_runtime.cmxa plugins/monolith/src/runtime/ortac_runtime_monolith.cmxa plugins/monolith/test/generated/.wrapper.eobjs/native/dune__exe.cmx plugins/monolith/test/generated/.wrapper.eobjs/native/dune__exe__Lib.cmx plugins/monolith/test/generated/.wrapper.eobjs/native/dune__exe__Wrapper.cmx)
/usr/bin/ld: warning: caml_z_x86_64.o: missing .note.GNU-stack section implies executable stack
/usr/bin/ld: NOTE: This behaviour is deprecated and will be removed in a future version of the linker

wrapper.exe has been generated with the ortac-monolith plugin.
(cd _build/default && /home/opam/.opam/4.12/bin/ocamlc.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62@67@69-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -bin-annot -I plugins/qcheck-stm/test/.tuples_stm_tests.eobjs/byte -I /home/opam/.opam/4.12/lib/fmt -I /home/opam/.opam/4.12/lib/qcheck-core -I /home/opam/.opam/4.12/lib/qcheck-core/runner -I /home/opam/.opam/4.12/lib/qcheck-multicoretests-util -I /home/opam/.opam/4.12/lib/qcheck-stm/sequential -I /home/opam/.opam/4.12/lib/qcheck-stm/stm -I /home/opam/.opam/4.12/lib/zarith -I plugins/qcheck-stm/src/runtime/.ortac_runtime_qcheck_stm.objs/byte -I plugins/qcheck-stm/test/.tuples.objs/byte -I src/runtime/.ortac_runtime.objs/byte -intf-suffix .ml -no-alias-deps -opaque -o plugins/qcheck-stm/test/.tuples_stm_tests.eobjs/byte/dune__exe__Tuples_stm_tests.cmo -c -impl plugins/qcheck-stm/test/tuples_stm_tests.ml)
File "plugins/qcheck-stm/test/tuples_stm_tests.ml", line 129, characters 29-30:
129 |                   | tuple2_1 (a_1, b_1) ->
                                   ^
Error: Syntax error: operator expected.
(cd _build/default && /home/opam/.opam/4.12/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62@67@69-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -I plugins/qcheck-stm/test/.hashtbl_stm_tests.eobjs/byte -I plugins/qcheck-stm/test/.hashtbl_stm_tests.eobjs/native -I /home/opam/.opam/4.12/lib/fmt -I /home/opam/.opam/4.12/lib/qcheck-core -I /home/opam/.opam/4.12/lib/qcheck-core/runner -I /home/opam/.opam/4.12/lib/qcheck-multicoretests-util -I /home/opam/.opam/4.12/lib/qcheck-stm/sequential -I /home/opam/.opam/4.12/lib/qcheck-stm/stm -I /home/opam/.opam/4.12/lib/zarith -I plugins/qcheck-stm/src/runtime/.ortac_runtime_qcheck_stm.objs/byte -I plugins/qcheck-stm/src/runtime/.ortac_runtime_qcheck_stm.objs/native -I plugins/qcheck-stm/test/.hashtbl.objs/byte -I plugins/qcheck-stm/test/.hashtbl.objs/native -I src/runtime/.ortac_runtime.objs/byte -I src/runtime/.ortac_runtime.objs/native -intf-suffix .ml -no-alias-deps -opaque -o plugins/qcheck-stm/test/.hashtbl_stm_tests.eobjs/native/dune__exe__Hashtbl_stm_tests.cmx -c -impl plugins/qcheck-stm/test/hashtbl_stm_tests.ml)
File "plugins/qcheck-stm/test/hashtbl_stm_tests.ml", line 9, characters 16-17:
9 |     | (tuple2_1 (a_1, b_1))::xs ->
                    ^
Error: Syntax error: ')' expected
File "plugins/qcheck-stm/test/hashtbl_stm_tests.ml", line 9, characters 6-7:
9 |     | (tuple2_1 (a_1, b_1))::xs ->
          ^
  This '(' might be unmatched
(cd _build/default && /home/opam/.opam/4.12/bin/ocamlc.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62@67@69-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -bin-annot -I plugins/qcheck-stm/test/.hashtbl_stm_tests.eobjs/byte -I /home/opam/.opam/4.12/lib/fmt -I /home/opam/.opam/4.12/lib/qcheck-core -I /home/opam/.opam/4.12/lib/qcheck-core/runner -I /home/opam/.opam/4.12/lib/qcheck-multicoretests-util -I /home/opam/.opam/4.12/lib/qcheck-stm/sequential -I /home/opam/.opam/4.12/lib/qcheck-stm/stm -I /home/opam/.opam/4.12/lib/zarith -I plugins/qcheck-stm/src/runtime/.ortac_runtime_qcheck_stm.objs/byte -I plugins/qcheck-stm/test/.hashtbl.objs/byte -I src/runtime/.ortac_runtime.objs/byte -intf-suffix .ml -no-alias-deps -opaque -o plugins/qcheck-stm/test/.hashtbl_stm_tests.eobjs/byte/dune__exe__Hashtbl_stm_tests.cmo -c -impl plugins/qcheck-stm/test/hashtbl_stm_tests.ml)
File "plugins/qcheck-stm/test/hashtbl_stm_tests.ml", line 9, characters 16-17:
9 |     | (tuple2_1 (a_1, b_1))::xs ->
                    ^
Error: Syntax error: ')' expected
File "plugins/qcheck-stm/test/hashtbl_stm_tests.ml", line 9, characters 6-7:
9 |     | (tuple2_1 (a_1, b_1))::xs ->
          ^
  This '(' might be unmatched
(cd _build/default && /home/opam/.opam/4.12/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62@67@69-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -I plugins/qcheck-stm/test/.tuples_stm_tests.eobjs/byte -I plugins/qcheck-stm/test/.tuples_stm_tests.eobjs/native -I /home/opam/.opam/4.12/lib/fmt -I /home/opam/.opam/4.12/lib/qcheck-core -I /home/opam/.opam/4.12/lib/qcheck-core/runner -I /home/opam/.opam/4.12/lib/qcheck-multicoretests-util -I /home/opam/.opam/4.12/lib/qcheck-stm/sequential -I /home/opam/.opam/4.12/lib/qcheck-stm/stm -I /home/opam/.opam/4.12/lib/zarith -I plugins/qcheck-stm/src/runtime/.ortac_runtime_qcheck_stm.objs/byte -I plugins/qcheck-stm/src/runtime/.ortac_runtime_qcheck_stm.objs/native -I plugins/qcheck-stm/test/.tuples.objs/byte -I plugins/qcheck-stm/test/.tuples.objs/native -I src/runtime/.ortac_runtime.objs/byte -I src/runtime/.ortac_runtime.objs/native -intf-suffix .ml -no-alias-deps -opaque -o plugins/qcheck-stm/test/.tuples_stm_tests.eobjs/native/dune__exe__Tuples_stm_tests.cmx -c -impl plugins/qcheck-stm/test/tuples_stm_tests.ml)
File "plugins/qcheck-stm/test/tuples_stm_tests.ml", line 129, characters 29-30:
129 |                   | tuple2_1 (a_1, b_1) ->
                                   ^
Error: Syntax error: operator expected.
(cd _build/default && /home/opam/.opam/4.12/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62@67@69-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o plugins/qcheck-stm/test/ref_stm_tests.exe /home/opam/.opam/4.12/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.12/lib/ocaml -I /home/opam/.opam/4.12/lib/ocaml /home/opam/.opam/4.12/lib/qcheck-core/qcheck_core.cmxa /home/opam/.opam/4.12/lib/qcheck-core/runner/qcheck_runner.cmxa /home/opam/.opam/4.12/lib/qcheck-multicoretests-util/util.cmxa /home/opam/.opam/4.12/lib/qcheck-stm/stm/STM.cmxa /home/opam/.opam/4.12/lib/qcheck-stm/sequential/STM_sequential.cmxa /home/opam/.opam/4.12/lib/fmt/fmt.cmxa /home/opam/.opam/4.12/lib/zarith/zarith.cmxa -I /home/opam/.opam/4.12/lib/zarith src/runtime/ortac_runtime.cmxa plugins/qcheck-stm/src/runtime/ortac_runtime_qcheck_stm.cmxa plugins/qcheck-stm/test/ref.cmxa plugins/qcheck-stm/test/.ref_stm_tests.eobjs/native/dune__exe__Ref_stm_tests.cmx)
/usr/bin/ld: warning: caml_z_x86_64.o: missing .note.GNU-stack section implies executable stack
/usr/bin/ld: NOTE: This behaviour is deprecated and will be removed in a future version of the linker
(cd _build/default && /home/opam/.opam/4.12/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62@67@69-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o plugins/qcheck-stm/test/test_without_sut_stm_tests.exe /home/opam/.opam/4.12/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.12/lib/ocaml -I /home/opam/.opam/4.12/lib/ocaml /home/opam/.opam/4.12/lib/qcheck-core/qcheck_core.cmxa /home/opam/.opam/4.12/lib/qcheck-core/runner/qcheck_runner.cmxa /home/opam/.opam/4.12/lib/qcheck-multicoretests-util/util.cmxa /home/opam/.opam/4.12/lib/qcheck-stm/stm/STM.cmxa /home/opam/.opam/4.12/lib/qcheck-stm/sequential/STM_sequential.cmxa /home/opam/.opam/4.12/lib/fmt/fmt.cmxa /home/opam/.opam/4.12/lib/zarith/zarith.cmxa -I /home/opam/.opam/4.12/lib/zarith src/runtime/ortac_runtime.cmxa plugins/qcheck-stm/src/runtime/ortac_runtime_qcheck_stm.cmxa plugins/qcheck-stm/test/test_without_sut.cmxa plugins/qcheck-stm/test/.test_without_sut_stm_tests.eobjs/native/dune__exe__Test_without_sut_stm_tests.cmx)
/usr/bin/ld: warning: caml_z_x86_64.o: missing .note.GNU-stack section implies executable stack
/usr/bin/ld: NOTE: This behaviour is deprecated and will be removed in a future version of the linker

ref_stm_tests.exe has been generated with the ortac-qcheck-stm plugin.

test_without_sut_stm_tests.exe has been generated with the ortac-qcheck-stm plugin.
(cd _build/default && /home/opam/.opam/4.12/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62@67@69-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o plugins/qcheck-stm/test/ghost_as_model_stm_tests.exe /home/opam/.opam/4.12/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.12/lib/ocaml -I /home/opam/.opam/4.12/lib/ocaml /home/opam/.opam/4.12/lib/qcheck-core/qcheck_core.cmxa /home/opam/.opam/4.12/lib/qcheck-core/runner/qcheck_runner.cmxa /home/opam/.opam/4.12/lib/qcheck-multicoretests-util/util.cmxa /home/opam/.opam/4.12/lib/qcheck-stm/stm/STM.cmxa /home/opam/.opam/4.12/lib/qcheck-stm/sequential/STM_sequential.cmxa /home/opam/.opam/4.12/lib/fmt/fmt.cmxa /home/opam/.opam/4.12/lib/zarith/zarith.cmxa -I /home/opam/.opam/4.12/lib/zarith src/runtime/ortac_runtime.cmxa plugins/qcheck-stm/src/runtime/ortac_runtime_qcheck_stm.cmxa plugins/qcheck-stm/test/ghost_as_model.cmxa plugins/qcheck-stm/test/.ghost_as_model_stm_tests.eobjs/native/dune__exe__Ghost_as_model_stm_tests.cmx)
/usr/bin/ld: warning: caml_z_x86_64.o: missing .note.GNU-stack section implies executable stack
/usr/bin/ld: NOTE: This behaviour is deprecated and will be removed in a future version of the linker

ghost_as_model_stm_tests.exe has been generated with the ortac-qcheck-stm plugin.
(cd _build/default && /home/opam/.opam/4.12/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62@67@69-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o plugins/qcheck-stm/test/record_stm_tests.exe /home/opam/.opam/4.12/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.12/lib/ocaml -I /home/opam/.opam/4.12/lib/ocaml /home/opam/.opam/4.12/lib/qcheck-core/qcheck_core.cmxa /home/opam/.opam/4.12/lib/qcheck-core/runner/qcheck_runner.cmxa /home/opam/.opam/4.12/lib/qcheck-multicoretests-util/util.cmxa /home/opam/.opam/4.12/lib/qcheck-stm/stm/STM.cmxa /home/opam/.opam/4.12/lib/qcheck-stm/sequential/STM_sequential.cmxa /home/opam/.opam/4.12/lib/fmt/fmt.cmxa /home/opam/.opam/4.12/lib/zarith/zarith.cmxa -I /home/opam/.opam/4.12/lib/zarith src/runtime/ortac_runtime.cmxa plugins/qcheck-stm/src/runtime/ortac_runtime_qcheck_stm.cmxa plugins/qcheck-stm/test/record.cmxa plugins/qcheck-stm/test/.record_stm_tests.eobjs/native/dune__exe__Record_stm_tests.cmx)
/usr/bin/ld: warning: caml_z_x86_64.o: missing .note.GNU-stack section implies executable stack
/usr/bin/ld: NOTE: This behaviour is deprecated and will be removed in a future version of the linker
(cd _build/default && /home/opam/.opam/4.12/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62@67@69-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o plugins/qcheck-stm/test/functional_model_stm_tests.exe /home/opam/.opam/4.12/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.12/lib/ocaml -I /home/opam/.opam/4.12/lib/ocaml /home/opam/.opam/4.12/lib/qcheck-core/qcheck_core.cmxa /home/opam/.opam/4.12/lib/qcheck-core/runner/qcheck_runner.cmxa /home/opam/.opam/4.12/lib/qcheck-multicoretests-util/util.cmxa /home/opam/.opam/4.12/lib/qcheck-stm/stm/STM.cmxa /home/opam/.opam/4.12/lib/qcheck-stm/sequential/STM_sequential.cmxa /home/opam/.opam/4.12/lib/fmt/fmt.cmxa /home/opam/.opam/4.12/lib/zarith/zarith.cmxa -I /home/opam/.opam/4.12/lib/zarith src/runtime/ortac_runtime.cmxa plugins/qcheck-stm/src/runtime/ortac_runtime_qcheck_stm.cmxa plugins/qcheck-stm/test/functional_model.cmxa plugins/qcheck-stm/test/.functional_model_stm_tests.eobjs/native/dune__exe__Functional_model_stm_tests.cmx)
/usr/bin/ld: warning: caml_z_x86_64.o: missing .note.GNU-stack section implies executable stack
/usr/bin/ld: NOTE: This behaviour is deprecated and will be removed in a future version of the linker
(cd _build/default && /home/opam/.opam/4.12/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62@67@69-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o plugins/qcheck-stm/test/integer_in_model_stm_tests.exe /home/opam/.opam/4.12/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.12/lib/ocaml -I /home/opam/.opam/4.12/lib/ocaml /home/opam/.opam/4.12/lib/qcheck-core/qcheck_core.cmxa /home/opam/.opam/4.12/lib/qcheck-core/runner/qcheck_runner.cmxa /home/opam/.opam/4.12/lib/qcheck-multicoretests-util/util.cmxa /home/opam/.opam/4.12/lib/qcheck-stm/stm/STM.cmxa /home/opam/.opam/4.12/lib/qcheck-stm/sequential/STM_sequential.cmxa /home/opam/.opam/4.12/lib/fmt/fmt.cmxa /home/opam/.opam/4.12/lib/zarith/zarith.cmxa -I /home/opam/.opam/4.12/lib/zarith src/runtime/ortac_runtime.cmxa plugins/qcheck-stm/src/runtime/ortac_runtime_qcheck_stm.cmxa plugins/qcheck-stm/test/integer_in_model.cmxa plugins/qcheck-stm/test/.integer_in_model_stm_tests.eobjs/native/dune__exe__Integer_in_model_stm_tests.cmx)
/usr/bin/ld: warning: caml_z_x86_64.o: missing .note.GNU-stack section implies executable stack
/usr/bin/ld: NOTE: This behaviour is deprecated and will be removed in a future version of the linker
(cd _build/default && /home/opam/.opam/4.12/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62@67@69-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o plugins/qcheck-stm/test/invariants_stm_tests.exe /home/opam/.opam/4.12/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.12/lib/ocaml -I /home/opam/.opam/4.12/lib/ocaml /home/opam/.opam/4.12/lib/qcheck-core/qcheck_core.cmxa /home/opam/.opam/4.12/lib/qcheck-core/runner/qcheck_runner.cmxa /home/opam/.opam/4.12/lib/qcheck-multicoretests-util/util.cmxa /home/opam/.opam/4.12/lib/qcheck-stm/stm/STM.cmxa /home/opam/.opam/4.12/lib/qcheck-stm/sequential/STM_sequential.cmxa /home/opam/.opam/4.12/lib/fmt/fmt.cmxa /home/opam/.opam/4.12/lib/zarith/zarith.cmxa -I /home/opam/.opam/4.12/lib/zarith src/runtime/ortac_runtime.cmxa plugins/qcheck-stm/src/runtime/ortac_runtime_qcheck_stm.cmxa plugins/qcheck-stm/test/invariants.cmxa plugins/qcheck-stm/test/.invariants_stm_tests.eobjs/native/dune__exe__Invariants_stm_tests.cmx)
/usr/bin/ld: warning: caml_z_x86_64.o: missing .note.GNU-stack section implies executable stack
/usr/bin/ld: NOTE: This behaviour is deprecated and will be removed in a future version of the linker
(cd _build/default && /home/opam/.opam/4.12/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62@67@69-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o plugins/qcheck-stm/test/custom_config_stm_tests.exe /home/opam/.opam/4.12/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.12/lib/ocaml -I /home/opam/.opam/4.12/lib/ocaml /home/opam/.opam/4.12/lib/qcheck-core/qcheck_core.cmxa /home/opam/.opam/4.12/lib/qcheck-core/runner/qcheck_runner.cmxa /home/opam/.opam/4.12/lib/qcheck-multicoretests-util/util.cmxa /home/opam/.opam/4.12/lib/qcheck-stm/stm/STM.cmxa /home/opam/.opam/4.12/lib/qcheck-stm/sequential/STM_sequential.cmxa /home/opam/.opam/4.12/lib/fmt/fmt.cmxa /home/opam/.opam/4.12/lib/zarith/zarith.cmxa -I /home/opam/.opam/4.12/lib/zarith src/runtime/ortac_runtime.cmxa plugins/qcheck-stm/src/runtime/ortac_runtime_qcheck_stm.cmxa plugins/qcheck-stm/test/custom_config.cmxa plugins/qcheck-stm/test/.custom_config_stm_tests.eobjs/native/dune__exe__Custom_config_stm_tests.cmx)
/usr/bin/ld: warning: caml_z_x86_64.o: missing .note.GNU-stack section implies executable stack
/usr/bin/ld: NOTE: This behaviour is deprecated and will be removed in a future version of the linker
(cd _build/default && /home/opam/.opam/4.12/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62@67@69-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o plugins/qcheck-stm/test/sequence_model_stm_tests.exe /home/opam/.opam/4.12/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.12/lib/ocaml -I /home/opam/.opam/4.12/lib/ocaml /home/opam/.opam/4.12/lib/qcheck-core/qcheck_core.cmxa /home/opam/.opam/4.12/lib/qcheck-core/runner/qcheck_runner.cmxa /home/opam/.opam/4.12/lib/qcheck-multicoretests-util/util.cmxa /home/opam/.opam/4.12/lib/qcheck-stm/stm/STM.cmxa /home/opam/.opam/4.12/lib/qcheck-stm/sequential/STM_sequential.cmxa /home/opam/.opam/4.12/lib/fmt/fmt.cmxa /home/opam/.opam/4.12/lib/zarith/zarith.cmxa -I /home/opam/.opam/4.12/lib/zarith src/runtime/ortac_runtime.cmxa plugins/qcheck-stm/src/runtime/ortac_runtime_qcheck_stm.cmxa plugins/qcheck-stm/test/sequence_model.cmxa plugins/qcheck-stm/test/.sequence_model_stm_tests.eobjs/native/dune__exe__Sequence_model_stm_tests.cmx)
/usr/bin/ld: warning: caml_z_x86_64.o: missing .note.GNU-stack section implies executable stack
/usr/bin/ld: NOTE: This behaviour is deprecated and will be removed in a future version of the linker
(cd _build/default && /home/opam/.opam/4.12/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62@67@69-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o plugins/qcheck-stm/test/conjunctive_clauses_stm_tests.exe /home/opam/.opam/4.12/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.12/lib/ocaml -I /home/opam/.opam/4.12/lib/ocaml /home/opam/.opam/4.12/lib/qcheck-core/qcheck_core.cmxa /home/opam/.opam/4.12/lib/qcheck-core/runner/qcheck_runner.cmxa /home/opam/.opam/4.12/lib/qcheck-multicoretests-util/util.cmxa /home/opam/.opam/4.12/lib/qcheck-stm/stm/STM.cmxa /home/opam/.opam/4.12/lib/qcheck-stm/sequential/STM_sequential.cmxa /home/opam/.opam/4.12/lib/fmt/fmt.cmxa /home/opam/.opam/4.12/lib/zarith/zarith.cmxa -I /home/opam/.opam/4.12/lib/zarith src/runtime/ortac_runtime.cmxa plugins/qcheck-stm/src/runtime/ortac_runtime_qcheck_stm.cmxa plugins/qcheck-stm/test/conjunctive_clauses.cmxa plugins/qcheck-stm/test/.conjunctive_clauses_stm_tests.eobjs/native/dune__exe__Conjunctive_clauses_stm_tests.cmx)
/usr/bin/ld: warning: caml_z_x86_64.o: missing .note.GNU-stack section implies executable stack
/usr/bin/ld: NOTE: This behaviour is deprecated and will be removed in a future version of the linker
(cd _build/default && /home/opam/.opam/4.12/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62@67@69-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o plugins/qcheck-stm/test/test_cleanup_stm_tests.exe /home/opam/.opam/4.12/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.12/lib/ocaml -I /home/opam/.opam/4.12/lib/ocaml /home/opam/.opam/4.12/lib/qcheck-core/qcheck_core.cmxa /home/opam/.opam/4.12/lib/qcheck-core/runner/qcheck_runner.cmxa /home/opam/.opam/4.12/lib/qcheck-multicoretests-util/util.cmxa /home/opam/.opam/4.12/lib/qcheck-stm/stm/STM.cmxa /home/opam/.opam/4.12/lib/qcheck-stm/sequential/STM_sequential.cmxa /home/opam/.opam/4.12/lib/fmt/fmt.cmxa /home/opam/.opam/4.12/lib/zarith/zarith.cmxa -I /home/opam/.opam/4.12/lib/zarith src/runtime/ortac_runtime.cmxa plugins/qcheck-stm/src/runtime/ortac_runtime_qcheck_stm.cmxa plugins/qcheck-stm/test/test_cleanup.cmxa plugins/qcheck-stm/test/.test_cleanup_stm_tests.eobjs/native/dune__exe__Test_cleanup_stm_tests.cmx)
/usr/bin/ld: warning: caml_z_x86_64.o: missing .note.GNU-stack section implies executable stack
/usr/bin/ld: NOTE: This behaviour is deprecated and will be removed in a future version of the linker
(cd _build/default && /home/opam/.opam/4.12/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62@67@69-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o examples/lwt_dllist_spec_tests.exe examples/lwt_dllist_spec.cmxa /home/opam/.opam/4.12/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.12/lib/ocaml -I /home/opam/.opam/4.12/lib/ocaml /home/opam/.opam/4.12/lib/qcheck-core/qcheck_core.cmxa /home/opam/.opam/4.12/lib/qcheck-core/runner/qcheck_runner.cmxa /home/opam/.opam/4.12/lib/qcheck-multicoretests-util/util.cmxa /home/opam/.opam/4.12/lib/qcheck-stm/stm/STM.cmxa /home/opam/.opam/4.12/lib/qcheck-stm/sequential/STM_sequential.cmxa /home/opam/.opam/4.12/lib/fmt/fmt.cmxa /home/opam/.opam/4.12/lib/zarith/zarith.cmxa -I /home/opam/.opam/4.12/lib/zarith src/runtime/ortac_runtime.cmxa plugins/qcheck-stm/src/runtime/ortac_runtime_qcheck_stm.cmxa examples/.lwt_dllist_spec_tests.eobjs/native/dune__exe__Lwt_dllist_spec_tests.cmx)
/usr/bin/ld: warning: caml_z_x86_64.o: missing .note.GNU-stack section implies executable stack
/usr/bin/ld: NOTE: This behaviour is deprecated and will be removed in a future version of the linker

record_stm_tests.exe has been generated with the ortac-qcheck-stm plugin.

functional_model_stm_tests.exe has been generated with the ortac-qcheck-stm plugin.

integer_in_model_stm_tests.exe has been generated with the ortac-qcheck-stm plugin.

invariants_stm_tests.exe has been generated with the ortac-qcheck-stm plugin.

custom_config_stm_tests.exe has been generated with the ortac-qcheck-stm plugin.

sequence_model_stm_tests.exe has been generated with the ortac-qcheck-stm plugin.

conjunctive_clauses_stm_tests.exe has been generated with the ortac-qcheck-stm plugin.

test_cleanup_stm_tests.exe has been generated with the ortac-qcheck-stm plugin.
(cd _build/default && /home/opam/.opam/4.12/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62@67@69-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o plugins/qcheck-stm/test/array_stm_tests.exe /home/opam/.opam/4.12/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.12/lib/ocaml -I /home/opam/.opam/4.12/lib/ocaml /home/opam/.opam/4.12/lib/qcheck-core/qcheck_core.cmxa /home/opam/.opam/4.12/lib/qcheck-core/runner/qcheck_runner.cmxa /home/opam/.opam/4.12/lib/qcheck-multicoretests-util/util.cmxa /home/opam/.opam/4.12/lib/qcheck-stm/stm/STM.cmxa /home/opam/.opam/4.12/lib/qcheck-stm/sequential/STM_sequential.cmxa /home/opam/.opam/4.12/lib/fmt/fmt.cmxa /home/opam/.opam/4.12/lib/zarith/zarith.cmxa -I /home/opam/.opam/4.12/lib/zarith src/runtime/ortac_runtime.cmxa plugins/qcheck-stm/src/runtime/ortac_runtime_qcheck_stm.cmxa plugins/qcheck-stm/test/array.cmxa plugins/qcheck-stm/test/.array_stm_tests.eobjs/native/dune__exe__Array_stm_tests.cmx)
/usr/bin/ld: warning: caml_z_x86_64.o: missing .note.GNU-stack section implies executable stack
/usr/bin/ld: NOTE: This behaviour is deprecated and will be removed in a future version of the linker
(cd _build/default && /home/opam/.opam/4.12/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62@67@69-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o examples/varray_spec_tests.exe /home/opam/.opam/4.12/lib/varray/varray.cmxa examples/varray_spec.cmxa /home/opam/.opam/4.12/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.12/lib/ocaml -I /home/opam/.opam/4.12/lib/ocaml /home/opam/.opam/4.12/lib/qcheck-core/qcheck_core.cmxa /home/opam/.opam/4.12/lib/qcheck-core/runner/qcheck_runner.cmxa /home/opam/.opam/4.12/lib/qcheck-multicoretests-util/util.cmxa /home/opam/.opam/4.12/lib/qcheck-stm/stm/STM.cmxa /home/opam/.opam/4.12/lib/qcheck-stm/sequential/STM_sequential.cmxa /home/opam/.opam/4.12/lib/fmt/fmt.cmxa /home/opam/.opam/4.12/lib/zarith/zarith.cmxa -I /home/opam/.opam/4.12/lib/zarith src/runtime/ortac_runtime.cmxa plugins/qcheck-stm/src/runtime/ortac_runtime_qcheck_stm.cmxa examples/.varray_spec_tests.eobjs/native/dune__exe__Varray_spec_tests.cmx)
/usr/bin/ld: warning: caml_z_x86_64.o: missing .note.GNU-stack section implies executable stack
/usr/bin/ld: NOTE: This behaviour is deprecated and will be removed in a future version of the linker

array_stm_tests.exe has been generated with the ortac-qcheck-stm plugin.
(cd _build/default/examples && ./lwt_dllist_spec_tests.exe --verbose)

random seed: 182197290
generated error fail pass / total     time test name

[ ]    0    0    0    0 / 1000     0.0s Lwt_dllist_spec STM tests
[ ]    0    0    0    0 / 1000     0.0s Lwt_dllist_spec STM tests (generating)
[ ]  367    0    0  367 / 1000     0.1s Lwt_dllist_spec STM tests
[ ]  847    0    0  847 / 1000     0.2s Lwt_dllist_spec STM tests
[] 1000    0    0 1000 / 1000     0.2s Lwt_dllist_spec STM tests
================================================================================
success (ran 1 tests)
(cd _build/default && /home/opam/.opam/4.12/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62@67@69-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o examples/varray_circular_spec_tests.exe /home/opam/.opam/4.12/lib/varray/varray.cmxa examples/varray_circular_spec.cmxa /home/opam/.opam/4.12/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.12/lib/ocaml -I /home/opam/.opam/4.12/lib/ocaml /home/opam/.opam/4.12/lib/qcheck-core/qcheck_core.cmxa /home/opam/.opam/4.12/lib/qcheck-core/runner/qcheck_runner.cmxa /home/opam/.opam/4.12/lib/qcheck-multicoretests-util/util.cmxa /home/opam/.opam/4.12/lib/qcheck-stm/stm/STM.cmxa /home/opam/.opam/4.12/lib/qcheck-stm/sequential/STM_sequential.cmxa /home/opam/.opam/4.12/lib/fmt/fmt.cmxa /home/opam/.opam/4.12/lib/zarith/zarith.cmxa -I /home/opam/.opam/4.12/lib/zarith src/runtime/ortac_runtime.cmxa plugins/qcheck-stm/src/runtime/ortac_runtime_qcheck_stm.cmxa examples/.varray_circular_spec_tests.eobjs/native/dune__exe__Varray_circular_spec_tests.cmx)
/usr/bin/ld: warning: caml_z_x86_64.o: missing .note.GNU-stack section implies executable stack
/usr/bin/ld: NOTE: This behaviour is deprecated and will be removed in a future version of the linker
(cd _build/default && /home/opam/.opam/4.12/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62@67@69-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o plugins/wrapper/test/suite/test.exe /home/opam/.opam/4.12/lib/fmt/fmt.cmxa /home/opam/.opam/4.12/lib/astring/astring.cmxa /home/opam/.opam/4.12/lib/cmdliner/cmdliner.cmxa /home/opam/.opam/4.12/lib/fmt/fmt_cli.cmxa /home/opam/.opam/4.12/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.12/lib/ocaml /home/opam/.opam/4.12/lib/fmt/fmt_tty.cmxa -I /home/opam/.opam/4.12/lib/ocaml /home/opam/.opam/4.12/lib/uuidm/uuidm.cmxa /home/opam/.opam/4.12/lib/re/re.cmxa /home/opam/.opam/4.12/lib/stdlib-shims/stdlib_shims.cmxa /home/opam/.opam/4.12/lib/alcotest/alcotest.cmxa /home/opam/.opam/4.12/lib/ocaml-compiler-libs/shadow/ocaml_shadow.cmxa /home/opam/.opam/4.12/lib/findlib/findlib.cmxa /home/opam/.opam/4.12/lib/ocaml/compiler-libs/ocamlcommon.cmxa /home/opam/.opam/4.12/lib/ocaml-compiler-libs/common/ocaml_common.cmxa /home/opam/.opam/4.12/lib/ppxlib/astlib/astlib.cmxa /home/opam/.opam/4.12/lib/ppxlib/ast/ppxlib_ast.cmxa /home/opam/.opam/4.12/lib/ppxlib/print_diff/ppxlib_print_diff.cmxa /home/opam/.opam/4.12/lib/ppx_derivers/ppx_derivers.cmxa /home/opam/.opam/4.12/lib/ppxlib/traverse_builtins/ppxlib_traverse_builtins.cmxa /home/opam/.opam/4.12/lib/sexplib0/sexplib0.cmxa /home/opam/.opam/4.12/lib/ppxlib/stdppx/stdppx.cmxa /home/opam/.opam/4.12/lib/ppxlib/ppxlib.cmxa /home/opam/.opam/4.12/lib/pp_loc/pp_loc.cmxa /home/opam/.opam/4.12/lib/result/result.cmxa /home/opam/.opam/4.12/lib/ppx_deriving/runtime/ppx_deriving_runtime.cmxa /home/opam/.opam/4.12/lib/gospel/gospel.cmxa /home/opam/.opam/4.12/lib/zarith/zarith.cmxa -I /home/opam/.opam/4.12/lib/zarith src/runtime/ortac_runtime.cmxa plugins/wrapper/test/suite/arrays/arrays.cmxa plugins/wrapper/test/suite/arith/arith.cmxa plugins/wrapper/test/suite/exceptions/exceptions.cmxa plugins/wrapper/test/suite/terms/terms.cmxa bin/registration.cmxa src/core/ortac_core.cmxa plugins/wrapper/src/ortac_wrapper.cmxa plugins/wrapper/test/suite/.test.eobjs/native/dune__exe.cmx plugins/wrapper/test/suite/.test.eobjs/native/dune__exe__Common.cmx plugins/wrapper/test/suite/.test.eobjs/native/dune__exe__Arith.cmx plugins/wrapper/test/suite/.test.eobjs/native/dune__exe__Arrays.cmx plugins/wrapper/test/suite/.test.eobjs/native/dune__exe__Exceptions.cmx plugins/wrapper/test/suite/.test.eobjs/native/dune__exe__Terms.cmx plugins/wrapper/test/suite/.test.eobjs/native/dune__exe__Translation.cmx plugins/wrapper/test/suite/.test.eobjs/native/dune__exe__Test.cmx)
/usr/bin/ld: warning: caml_z_x86_64.o: missing .note.GNU-stack section implies executable stack
/usr/bin/ld: NOTE: This behaviour is deprecated and will be removed in a future version of the linker
(cd _build/default/plugins/wrapper/test/suite && ./test.exe)
Testing Ortac.
This run has ID `5206AC0D-D9DF-44EE-A911-3C0659F3A568`.
 ...                Arrays               0   get out of range.
[OK]                Arrays               0   get out of range.
 ...                Arrays               1   get wrong value.
[OK]                Arrays               1   get wrong value.
 ...                Arrays               2   create wrong value.
[OK]                Arrays               2   create wrong value.
 ...                Arrays               3   correct implementations.
[OK]                Arrays               3   correct implementations.
 ...                Arrays               4   map correct.
[OK]                Arrays               4   map correct.
 ...                Arrays               5   map wrong length.
[OK]                Arrays               5   map wrong length.
 ...                Arrays               6   map wrong function.
[OK]                Arrays               6   map wrong function.
 ...                Arrays               7   create with wrong arguments.
[OK]                Arrays               7   create with wrong arguments.
 ...                Arrays               8   sort is correct.
[OK]                Arrays               8   sort is correct.
 ...                Arrays               9   copy sort is correct.
[OK]                Arrays               9   copy sort is correct.
 ...                Arrays              10   bad sort is wrong.
[OK]                Arrays              10   bad sort is wrong.
 ...                Arrays              11   constant sort is wrong.
[OK]                Arrays              11   constant sort is wrong.
 ...                Arithmetics          0   forall.
[OK]                Arithmetics          0   forall.
 ...                Arithmetics          1   double forall.
[OK]                Arithmetics          1   double forall.
 ...                Arithmetics          2   power.
[OK]                Arithmetics          2   power.
 ...                Exceptions           0   bad_raise_notfound.
[OK]                Exceptions           0   bad_raise_notfound.
 ...                Exceptions           1   undeclared_raise_notfound.
[OK]                Exceptions           1   undeclared_raise_notfound.
 ...                Exceptions           2   raise_notfound.
[OK]                Exceptions           2   raise_notfound.
 ...                Exceptions           3   allowed exceptions.
[OK]                Exceptions           3   allowed exceptions.
 ...                Exceptions           4   raise_invalidarg.
[OK]                Exceptions           4   raise_invalidarg.
 ...                Exceptions           5   bad_raise_notfound.
[OK]                Exceptions           5   bad_raise_notfound.
 ...                Exceptions           6   valid_checks.
[OK]                Exceptions           6   valid_checks.
 ...                Exceptions           7   bad_checks.
[OK]                Exceptions           7   bad_checks.
 ...                Terms                0   boolean operators.
[OK]                Terms                0   boolean operators.
 ...                Terms                1   scopes.
[OK]                Terms                1   scopes.
 ...                Terms                2   logic.
[OK]                Terms                2   logic.
 ...                Terms                3   patterns.
[OK]                Terms                3   patterns.
 ...                Terms                4   peano.
[OK]                Terms                4   peano.
 ...                Terms                5   trees.
[OK]                Terms                5   trees.
 ...                Terms                6   ref_access.
[OK]                Terms                6   ref_access.
 ...                Translation          0   type mutable.
[OK]                Translation          0   type mutable.
 ...                Translation          1   type immutable.
[OK]                Translation          1   type immutable.
 ...                Translation          2   type unknown.
[OK]                Translation          2   type unknown.
 ...                Translation          3   type dependant.
[OK]                Translation          3   type dependant.
 ...                Translation          4   value purity.
[OK]                Translation          4   value purity.
The full test results are available in `/src/_build/default/plugins/wrapper/test/suite/_build/_tests/5206AC0D-D9DF-44EE-A911-3C0659F3A568`.
Test Successful in 0.000s. 35 tests run.
(cd _build/default/examples && ./varray_spec_tests.exe --verbose)

random seed: 194674939
generated error fail pass / total     time test name

[ ]    0    0    0    0 / 1000     0.0s Varray_spec STM tests
[ ]    0    0    0    0 / 1000     0.0s Varray_spec STM tests (generating)
[ ]  170    0    0  170 / 1000     0.1s Varray_spec STM tests (collecting)
[ ]  340    0    0  340 / 1000     0.2s Varray_spec STM tests
[ ]  555    0    0  555 / 1000     0.3s Varray_spec STM tests
[ ]  788    0    0  788 / 1000     0.4s Varray_spec STM tests
[] 1000    0    0 1000 / 1000     0.5s Varray_spec STM tests
================================================================================
success (ran 1 tests)
(cd _build/default/examples && ./varray_circular_spec_tests.exe --verbose)

random seed: 518190886
generated error fail pass / total     time test name

[ ]    0    0    0    0 / 1000     0.0s Varray_circular_spec STM tests
[ ]    0    0    0    0 / 1000     0.0s Varray_circular_spec STM tests (generating)
[ ]  166    0    0  166 / 1000     0.1s Varray_circular_spec STM tests
[ ]  343    0    0  343 / 1000     0.2s Varray_circular_spec STM tests (collecting)
[ ]  493    0    0  493 / 1000     0.3s Varray_circular_spec STM tests (collecting)
[ ]  717    0    0  717 / 1000     0.4s Varray_circular_spec STM tests
[ ]  910    0    0  910 / 1000     0.5s Varray_circular_spec STM tests
[ ]  997    0    0  997 / 1000     0.6s Varray_circular_spec STM tests
[] 1000    0    0 1000 / 1000     0.6s Varray_circular_spec STM tests
================================================================================
success (ran 1 tests)
(cd _build/default && /usr/bin/timeout -s INT -k 3 20 test/runtime/stdlibset.exe)
 43K tests run so far ( 42K/s overall,  48K/s now) (fuel = 20).
 82K tests run so far ( 40K/s overall,  47K/s now) (fuel = 20).
112K tests run so far ( 36K/s overall,  17K/s now) (fuel = 20).
126K tests run so far ( 31K/s overall,  19K/s now) (fuel = 20).
144K tests run so far ( 28K/s overall,  19K/s now) (fuel = 20).
163K tests run so far ( 27K/s overall,  21K/s now) (fuel = 20).
188K tests run so far ( 26K/s overall,  24K/s now) (fuel = 20).
206K tests run so far ( 25K/s overall,  20K/s now) (fuel = 20).
224K tests run so far ( 24K/s overall,  20K/s now) (fuel = 20).
242K tests run so far ( 24K/s overall,  20K/s now) (fuel = 20).
260K tests run so far ( 23K/s overall,  20K/s now) (fuel = 20).
280K tests run so far ( 23K/s overall,  23K/s now) (fuel = 20).
298K tests run so far ( 22K/s overall,  20K/s now) (fuel = 20).
316K tests run so far ( 22K/s overall,  19K/s now) (fuel = 20).
334K tests run so far ( 22K/s overall,  20K/s now) (fuel = 20).
352K tests run so far ( 21K/s overall,  20K/s now) (fuel = 20).
375K tests run so far ( 22K/s overall,  48K/s now) (fuel = 20).
419K tests run so far ( 23K/s overall,  48K/s now) (fuel = 20).
455K tests run so far ( 23K/s overall,  24K/s now) (fuel = 20).
"/usr/bin/env" "bash" "-c" "opam exec -- dune build @install @check @runtest && rm -rf _build" failed with exit status 1
2024-09-01 15:36.25: Job failed: Failed: Build failed