Organisationsocaml-gospelortac6e184e (main)(lower-bound)

(lower-bound)

Logs

Show full logs
2024-09-05 11:54.56: New job: test ocaml-gospel/ortac https://github.com/ocaml-gospel/ortac.git#refs/heads/main (6e184e8850616c0279174d9d55e018db46ece5a7) (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" -b "main" && cd "ortac" && git reset --hard 6e184e88
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.3 qcheck-stm.0.3 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-05 11:54.56: Using cache hint "ocaml-gospel/ortac-ocaml/opam:debian-12-ocaml-4.12@sha256:51cc6003512dd8b183dfbcd2923431c0df52e9f6f6ab699eb9dfb395b50fff92-debian-12-4.12_opam-2.2-532883f4e5f169ea0b59240591b26d6f"
2024-09-05 11:54.56: 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.3 qcheck-stm.0.3 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-05 11:54.56: Waiting for resource in pool OCluster
2024-09-05 11:54.56: Waiting for worker…
2024-09-05 11:56.13: Got resource from pool OCluster
Building on x86-bm-c20.sw.ocaml.org
HEAD is now at 6bf05d0 Fix invariant bug
HEAD is now at 6e184e8 Merge pull request #249 from nikolaushuber/fix-invariants

(from ocaml/opam:debian-12-ocaml-4.12@sha256:51cc6003512dd8b183dfbcd2923431c0df52e9f6f6ab699eb9dfb395b50fff92)
2024-09-05 11:56.56 ---> saved as "420e21d3d29bfeb08a7e84a34fa567c804a9bec2cb409e8bcbed293cf7025ea0"

/: (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-05 11:56.57 ---> saved as "23d9fdb5afc0ea363777d04f75af2b54241ef57f02867854c7f3c383826e688e"

/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
[NOTE] The 'jobs' option was reset, its value was 39 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
           opam option jobs=39 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] synchronised from file:///home/opam/opam-repository
2024-09-05 11:58.35 ---> saved as "bb3ede4f63e117a13a7f12a4f5129dbdcefd9f031fe1062e44a7809fb9c72ef3"

/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-05 11:58.35 ---> saved as "d9f99ec742d78506cae543f735f31f34aa5e0d03e1f7f6fb5feda706af46f1d7"

/src: (workdir /src)

/src: (run (shell "sudo chown opam /src"))
2024-09-05 11:58.35 ---> saved as "a835557bb21fc68c6ae4e36c3ff8d9d2944923bb5739962cbc336ed6bad9c901"

/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-05 12:00.04 ---> 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-05 12:00.04 ---> saved as "51d8c49d89a3172425e7dc43426bcdd46b206f6a9dc18688abb46c7987167323"

/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-05 12:00.30 ---> saved as "5a4136cb37aae5cc709526e67fc1ff4e1b7a68ed5a81c90f07ab5fe17e94278c"

/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.3 qcheck-stm.0.3 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 (4378 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-05 12:01.04 ---> saved as "fc1dee726885175841acba2d01698ce66a267b92d83204996051c6fd350142cc"

/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.3
  - install qcheck-stm                 0.3
  - 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 afl-persistent.1.3  (cached)
-> retrieved astring.0.8.5  (cached)
-> retrieved conf-gmp.1  (cached)
-> retrieved cmdliner.1.1.0  (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 dune-build-info.1.11.0  (cached)
-> installed afl-persistent.1.3
-> retrieved dune.3.8.0  (cached)
-> retrieved dune-configurator.2.7.0  (cached)
-> 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)
-> retrieved lwt-dllist.1.0.0  (cached)
-> installed cmdliner.1.1.0
-> retrieved mdx.2.3.0  (cached)
-> retrieved mmap.1.1.0  (cached)
-> retrieved ocaml-compiler-libs.v0.12.0  (cached)
-> retrieved monolith.20201026  (cached)
-> retrieved menhir.20181006  (cached)
-> retrieved ocaml-version.2.4.0  (cached)
-> retrieved ocamlbuild.0.14.0  (cached)
-> retrieved ocamlfind.1.8.1  (cached)
-> retrieved ocplib-endian.1.0  (cached)
-> retrieved odoc-parser.1.0.0  (cached)
-> retrieved pp_loc.2.1.0  (cached)
-> retrieved pprint.20200410  (cached)
-> retrieved ppx_derivers.1.0  (cached)
-> retrieved ppx_deriving.5.2.1  (cached)
-> retrieved qcheck-core.0.20  (cached)
-> retrieved qcheck-multicoretests-util.0.3, qcheck-stm.0.3  (cached)
-> retrieved re.1.7.2  (cached)
-> retrieved result.1.5  (cached)
-> retrieved seq.0.2.2  (cached)
-> retrieved sexplib0.v0.12.0  (cached)
-> retrieved stdlib-shims.0.1.0  (cached)
-> retrieved uuidm.0.9.6  (cached)
-> retrieved ppxlib.0.26.0  (cached)
-> retrieved topkg.1.0.3  (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 re.1.7.2
-> installed cppo.1.6.1
-> 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 result.1.5
-> installed pp_loc.2.1.0
-> installed stdlib-shims.0.1.0
-> installed seq.0.2.2
-> installed pprint.20200410
-> installed sexplib0.v0.12.0
-> installed varray.0.2
-> installed csexp.1.3.2
-> installed ocaml-version.2.4.0
-> installed dune-configurator.2.7.0
-> installed odoc-parser.1.0.0
-> installed alcotest.1.0.0
-> installed ocaml-compiler-libs.v0.12.0
-> installed monolith.20201026
-> installed qcheck-core.0.20
-> installed qcheck-multicoretests-util.0.3
-> installed qcheck-stm.0.3
-> 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-05 12:02.43 ---> saved as "170044d61da90903ded5e25aca55ab30832515517ce19416229dae6617d5077a"

/src: (copy (src .) (dst /src))
2024-09-05 12:02.44 ---> saved as "dd6fce933bf16a0af530a78f52616359d411527f0080cf609fa6bc3bdec7a99d"

/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 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 -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 -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/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 src/core/ortac_core.cmxa bin/registration.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 && /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 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
(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/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/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/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

sut_in_type_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.

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

ref_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.

conjunctive_clauses_stm_tests.exe has been generated with the ortac-qcheck-stm plugin.
(cd _build/default/plugins/wrapper/test/suite && ./test.exe)
Testing Ortac.
This run has ID `AFEAFA95-A5D3-4B32-B494-8B8A0D79F62E`.
 ...                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/AFEAFA95-A5D3-4B32-B494-8B8A0D79F62E`.
Test Successful in 0.000s. 35 tests run.
(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/tuples_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/tuples.cmxa plugins/qcheck-stm/test/.tuples_stm_tests.eobjs/native/dune__exe__Tuples_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/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/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

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

tuples_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/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
(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/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/hashtbl_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/hashtbl.cmxa plugins/qcheck-stm/test/.hashtbl_stm_tests.eobjs/native/dune__exe__Hashtbl_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.

invariants_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.

custom_config_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.

hashtbl_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/queue_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/queue.cmxa plugins/qcheck-stm/test/.queue_stm_tests.eobjs/native/dune__exe__Queue_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/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_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

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

array_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 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
(cd _build/default/examples && ./lwt_dllist_spec_tests.exe --verbose)

random seed: 57259072
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)
[ ]   35    0    0   35 / 1000     0.1s Lwt_dllist_spec STM tests
[ ]  108    0    0  108 / 1000     0.2s Lwt_dllist_spec STM tests
[ ]  210    0    0  210 / 1000     0.3s Lwt_dllist_spec STM tests
[ ]  251    0    0  251 / 1000     0.5s Lwt_dllist_spec STM tests
[ ]  351    0    0  351 / 1000     0.6s Lwt_dllist_spec STM tests (collecting)
[ ]  405    0    0  405 / 1000     0.7s Lwt_dllist_spec STM tests
[ ]  567    0    0  567 / 1000     0.8s Lwt_dllist_spec STM tests
[ ]  655    0    0  655 / 1000     0.9s Lwt_dllist_spec STM tests
[ ]  721    0    0  721 / 1000     1.0s Lwt_dllist_spec STM tests
[ ]  809    0    0  809 / 1000     1.1s Lwt_dllist_spec STM tests
[ ]  830    0    0  830 / 1000     1.2s Lwt_dllist_spec STM tests
[ ]  863    0    0  863 / 1000     1.4s Lwt_dllist_spec STM tests
[ ]  887    0    0  887 / 1000     1.5s Lwt_dllist_spec STM tests
[ ]  933    0    0  933 / 1000     1.6s Lwt_dllist_spec STM tests
[] 1000    0    0 1000 / 1000     1.7s Lwt_dllist_spec STM tests
================================================================================
success (ran 1 tests)
(cd _build/default/examples && ./varray_circular_spec_tests.exe --verbose)

random seed: 150636178
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)
[ ]   49    0    0   49 / 1000     0.1s Varray_circular_spec STM tests
[ ]  100    0    0  100 / 1000     0.2s Varray_circular_spec STM tests
[ ]  116    0    0  116 / 1000     0.3s Varray_circular_spec STM tests
[ ]  199    0    0  199 / 1000     0.5s Varray_circular_spec STM tests
[ ]  243    0    0  243 / 1000     0.6s Varray_circular_spec STM tests
[ ]  288    0    0  288 / 1000     0.7s Varray_circular_spec STM tests
[ ]  366    0    0  366 / 1000     0.8s Varray_circular_spec STM tests
[ ]  487    0    0  487 / 1000     0.9s Varray_circular_spec STM tests (collecting)
[ ]  530    0    0  530 / 1000     1.0s Varray_circular_spec STM tests
[ ]  589    0    0  589 / 1000     1.1s Varray_circular_spec STM tests
[ ]  699    0    0  699 / 1000     1.2s Varray_circular_spec STM tests
[ ]  744    0    0  744 / 1000     1.3s Varray_circular_spec STM tests
[ ]  830    0    0  830 / 1000     1.4s Varray_circular_spec STM tests
[ ]  925    0    0  925 / 1000     1.5s Varray_circular_spec STM tests
[ ]  953    0    0  953 / 1000     1.6s Varray_circular_spec STM tests
[] 1000    0    0 1000 / 1000     1.7s Varray_circular_spec STM tests
================================================================================
success (ran 1 tests)
(cd _build/default/examples && ./varray_spec_tests.exe --verbose)

random seed: 230230476
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)
[ ]   89    0    0   89 / 1000     0.1s Varray_spec STM tests
[ ]  159    0    0  159 / 1000     0.2s Varray_spec STM tests
[ ]  193    0    0  193 / 1000     0.3s Varray_spec STM tests
[ ]  219    0    0  219 / 1000     0.4s Varray_spec STM tests
[ ]  313    0    0  313 / 1000     0.5s Varray_spec STM tests
[ ]  389    0    0  389 / 1000     0.7s Varray_spec STM tests
[ ]  460    0    0  460 / 1000     0.8s Varray_spec STM tests
[ ]  491    0    0  491 / 1000     0.9s Varray_spec STM tests (collecting)
[ ]  528    0    0  528 / 1000     1.0s Varray_spec STM tests
[ ]  554    0    0  554 / 1000     1.1s Varray_spec STM tests
[ ]  637    0    0  637 / 1000     1.2s Varray_spec STM tests
[ ]  709    0    0  709 / 1000     1.3s Varray_spec STM tests
[ ]  795    0    0  795 / 1000     1.4s Varray_spec STM tests (collecting)
[ ]  815    0    0  815 / 1000     1.5s Varray_spec STM tests
[ ]  851    0    0  851 / 1000     1.6s Varray_spec STM tests
[ ]  897    0    0  897 / 1000     1.7s Varray_spec STM tests
[ ]  945    0    0  945 / 1000     1.8s Varray_spec STM tests
[] 1000    0    0 1000 / 1000     1.9s Varray_spec STM tests
================================================================================
success (ran 1 tests)
(cd _build/default && /usr/bin/timeout -s INT -k 3 20 test/runtime/stdlibset.exe)
 39K tests run so far ( 38K/s overall,  44K/s now) (fuel = 20).
 75K tests run so far ( 37K/s overall,  42K/s now) (fuel = 20).
115K tests run so far ( 38K/s overall,  43K/s now) (fuel = 20).
128K tests run so far ( 31K/s overall,  13K/s now) (fuel = 20).
151K tests run so far ( 30K/s overall,  42K/s now) (fuel = 20).
192K tests run so far ( 31K/s overall,  46K/s now) (fuel = 20).
231K tests run so far ( 32K/s overall,  38K/s now) (fuel = 20).
265K tests run so far ( 33K/s overall,  47K/s now) (fuel = 20).
307K tests run so far ( 34K/s overall,  46K/s now) (fuel = 20).
348K tests run so far ( 34K/s overall,  45K/s now) (fuel = 20).
390K tests run so far ( 35K/s overall,  45K/s now) (fuel = 20).
411K tests run so far ( 34K/s overall,  18K/s now) (fuel = 20).
436K tests run so far ( 33K/s overall,  23K/s now) (fuel = 20).
456K tests run so far ( 32K/s overall,  20K/s now) (fuel = 20).
490K tests run so far ( 32K/s overall,  48K/s now) (fuel = 20).
511K tests run so far ( 31K/s overall,  18K/s now) (fuel = 20).
528K tests run so far ( 30K/s overall,  18K/s now) (fuel = 20).
553K tests run so far ( 30K/s overall,  40K/s now) (fuel = 20).
585K tests run so far ( 30K/s overall,  27K/s now) (fuel = 20).
2024-09-05 12:03.05 ---> saved as "be1903944c2147de22de4beb98d9efd52fedefd57ced6c3623ca786eda241df8"
Job succeeded
2024-09-05 12:03.16: Job succeeded