Organisationsocaml-gospelortac50350c ()(lower-bound)

(lower-bound)

Link Copied
Code Copied

Logs

2024-09-19 08:42.04: New job: test ocaml-gospel/ortac https://github.com/ocaml-gospel/ortac.git#refs/pull/253/head (50350c1e1607b13d424ddef0aa74e7c0525957f6) (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/253/head" && git reset --hard 50350c1e
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-19 08:42.04: 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-19 08:42.04: 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-19 08:42.04: Waiting for resource in pool OCluster
2024-09-19 08:42.04: Waiting for worker…
2024-09-19 08:42.04: Got resource from pool OCluster
Building on x86-bm-c20.sw.ocaml.org
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint: 
hint: 	git config --global init.defaultBranch <name>
hint: 
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint: 
hint: 	git branch -m <name>
Initialized empty Git repository in /var/cache/obuilder/ocluster/git/ortac.git-c3f61c08f014b97a6e27abb935a8578eb8a22ca5/.git/
HEAD is now at 50350c1 Update changelog


(from ocaml/opam:debian-12-ocaml-4.12@sha256:51cc6003512dd8b183dfbcd2923431c0df52e9f6f6ab699eb9dfb395b50fff92)
Unable to find image 'ocaml/opam:debian-12-ocaml-4.12@sha256:51cc6003512dd8b183dfbcd2923431c0df52e9f6f6ab699eb9dfb395b50fff92' locally
docker.io/ocaml/opam@sha256:51cc6003512dd8b183dfbcd2923431c0df52e9f6f6ab699eb9dfb395b50fff92: Pulling from ocaml/opam
3df9dba02229: Pulling fs layer
3df9dba02229: Verifying Checksum
3df9dba02229: Download complete
3df9dba02229: Pull complete
Digest: sha256:51cc6003512dd8b183dfbcd2923431c0df52e9f6f6ab699eb9dfb395b50fff92
Status: Downloaded newer image for ocaml/opam@sha256:51cc6003512dd8b183dfbcd2923431c0df52e9f6f6ab699eb9dfb395b50fff92
2024-09-19 08:44.03 ---> 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-19 08:44.03 ---> 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-19 08:45.46 ---> saved as "bb3ede4f63e117a13a7f12a4f5129dbdcefd9f031fe1062e44a7809fb9c72ef3"


/src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
Linux 5.15.0-121-generic
The OCaml toplevel, version 4.12.1
2.2.1
2024-09-19 08:45.46 ---> saved as "d9f99ec742d78506cae543f735f31f34aa5e0d03e1f7f6fb5feda706af46f1d7"


/src: (workdir /src)


/src: (run (shell "sudo chown opam /src"))
2024-09-19 08:45.46 ---> 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-19 08:47.03 ---> 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-19 08:47.03 ---> 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-19 08:47.18 ---> 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 bookworm-updates/main amd64 Packages.diff/Index [11.7 kB]
- Get:6 http://deb.debian.org/debian bookworm-updates/main amd64 Packages T-2024-09-10-2011.55-F-2024-09-10-2011.55.pdiff [1116 B]
- Get:6 http://deb.debian.org/debian bookworm-updates/main amd64 Packages T-2024-09-10-2011.55-F-2024-09-10-2011.55.pdiff [1116 B]
- Get:7 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [182 kB]
- Fetched 9237 kB in 2s (4262 kB/s)
- Reading package lists...


<><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><>
[ortac-dune.dev] synchronised (no changes)
[ortac-core.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


2024-09-19 08:47.43 ---> 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 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-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 dune.3.8.0  (https://github.com/ocaml/dune/releases/download/3.8.0/dune-3.8.0.tbz)
-> 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)
-> installed cmdliner.1.1.0
-> retrieved lwt-dllist.1.0.0  (cached)
-> retrieved lwt.5.4.0  (https://github.com/ocsigen/lwt/archive/5.4.0.zip)
-> retrieved mdx.2.3.0  (https://github.com/realworldocaml/mdx/releases/download/2.3.0/mdx-2.3.0.tbz)
-> retrieved monolith.20201026  (https://gitlab.inria.fr/fpottier/monolith/-/archive/20201026/archive.tar.gz)
-> retrieved ocaml-compiler-libs.v0.12.0  (cached)
-> retrieved mmap.1.1.0  (https://github.com/mirage/mmap/releases/download/v1.1.0/mmap-v1.1.0.tbz)
-> retrieved ocaml-version.2.4.0  (cached)
-> retrieved ocamlbuild.0.14.0  (cached)
-> retrieved ocamlfind.1.8.1  (cached)
-> retrieved menhir.20181006  (http://gallium.inria.fr/~fpottier/menhir/menhir-20181006.tar.gz)
-> retrieved pp_loc.2.1.0  (cached)
-> retrieved ocplib-endian.1.0  (https://github.com/OCamlPro/ocplib-endian/archive/1.0.tar.gz)
-> retrieved pprint.20200410  (https://github.com/fpottier/pprint/archive/20200410.tar.gz)
-> retrieved ppx_deriving.5.2.1  (cached)
-> 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 qcheck-core.0.20  (cached)
-> retrieved ppx_derivers.1.0  (https://github.com/ocaml-ppx/ppx_derivers/archive/1.0.tar.gz)
-> retrieved qcheck-multicoretests-util.0.3, qcheck-stm.0.3  (cached)
-> retrieved result.1.5  (cached)
-> retrieved seq.0.2.2  (cached)
-> retrieved sexplib0.v0.12.0  (https://ocaml.janestreet.com/ocaml-core/v0.12/files/sexplib0-v0.12.0.tar.gz)
-> retrieved stdlib-shims.0.1.0  (cached)
-> retrieved topkg.1.0.3  (cached)
-> retrieved uuidm.0.9.6  (http://erratique.ch/software/uuidm/releases/uuidm-0.9.6.tbz)
-> retrieved re.1.7.2  (https://github.com/ocaml/ocaml-re/releases/download/1.7.2/re-1.7.2.tbz)
-> retrieved ppxlib.0.26.0  (https://github.com/ocaml-ppx/ppxlib/releases/download/0.26.0/ppxlib-0.26.0.tbz)
-> retrieved varray.0.2  (https://github.com/art-w/varray/archive/refs/tags/0.2.tar.gz)
-> retrieved zarith.1.3  (https://download.ocamlcore.org/zarith/Zarith/1.3/zarith-1.3.tgz)
-> 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 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 dune-configurator.2.7.0
-> installed odoc-parser.1.0.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.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-19 08:49.04 ---> saved as "170044d61da90903ded5e25aca55ab30832515517ce19416229dae6617d5077a"


/src: (copy (src .) (dst /src))
2024-09-19 08:49.05 ---> saved as "73c0bed3b846cdc5380a28faa7ad7727b06c8071536c91d0189cf0c6fdae8717"


/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/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
(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


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


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
(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/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/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
(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
(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/sut_in_type_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/sut_in_type.cmxa plugins/qcheck-stm/test/.sut_in_type_stm_tests.eobjs/native/dune__exe__Sut_in_type_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/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/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/plugins/wrapper/test/suite && ./test.exe)
Testing Ortac.
This run has ID `965F6D4D-C276-429E-9957-E326FA3EEAF1`.
[OK]                Arrays               0   get out of range.
[OK]                Arrays               1   get wrong value.
[OK]                Arrays               2   create wrong value.
[OK]                Arrays               3   correct implementations.
[OK]                Arrays               4   map correct.
[OK]                Arrays               5   map wrong length.
[OK]                Arrays               6   map wrong function.
[OK]                Arrays               7   create with wrong arguments.
[OK]                Arrays               8   sort is correct.
[OK]                Arrays               9   copy sort is correct.
[OK]                Arrays              10   bad sort is wrong.
[OK]                Arrays              11   constant sort is wrong.
[OK]                Arithmetics          0   forall.
[OK]                Arithmetics          1   double forall.
[OK]                Arithmetics          2   power.
[OK]                Exceptions           0   bad_raise_notfound.
[OK]                Exceptions           1   undeclared_raise_notfound.
[OK]                Exceptions           2   raise_notfound.
[OK]                Exceptions           3   allowed exceptions.
[OK]                Exceptions           4   raise_invalidarg.
[OK]                Exceptions           5   bad_raise_notfound.
[OK]                Exceptions           6   valid_checks.
[OK]                Exceptions           7   bad_checks.
[OK]                Terms                0   boolean operators.
[OK]                Terms                1   scopes.
[OK]                Terms                2   logic.
[OK]                Terms                3   patterns.
[OK]                Terms                4   peano.
[OK]                Terms                5   trees.
[OK]                Terms                6   ref_access.
[OK]                Translation          0   type mutable.
[OK]                Translation          1   type immutable.
[OK]                Translation          2   type unknown.
[OK]                Translation          3   type dependant.
[OK]                Translation          4   value purity.
The full test results are available in `/src/_build/default/plugins/wrapper/test/suite/_build/_tests/965F6D4D-C276-429E-9957-E326FA3EEAF1`.
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/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


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


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


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.


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.


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


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


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


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: 474321111
generated error fail pass / total     time test name
[] 1000    0    0 1000 / 1000     0.9s Lwt_dllist_spec STM tests
================================================================================
success (ran 1 tests)
(cd _build/default/examples && ./varray_circular_spec_tests.exe --verbose)
random seed: 87775188
generated error fail pass / total     time test name
[] 1000    0    0 1000 / 1000     1.5s Varray_circular_spec STM tests
================================================================================
success (ran 1 tests)
(cd _build/default && /usr/bin/timeout -s INT -k 3 20 test/runtime/stdlibset.exe)
 48K tests run so far ( 47K/s overall,  50K/s now) (fuel = 20).
 76K tests run so far ( 37K/s overall,  25K/s now) (fuel = 20).
100K tests run so far ( 33K/s overall,  36K/s now) (fuel = 20).
120K tests run so far ( 29K/s overall,  20K/s now) (fuel = 20).
153K tests run so far ( 30K/s overall,  55K/s now) (fuel = 20).
192K tests run so far ( 31K/s overall,  55K/s now) (fuel = 20).
231K tests run so far ( 32K/s overall,  22K/s now) (fuel = 20).
258K tests run so far ( 32K/s overall,  42K/s now) (fuel = 20).
291K tests run so far ( 32K/s overall,  42K/s now) (fuel = 20).
312K tests run so far ( 31K/s overall,  19K/s now) (fuel = 20).
333K tests run so far ( 30K/s overall,  22K/s now) (fuel = 20).
356K tests run so far ( 29K/s overall,  27K/s now) (fuel = 20).
380K tests run so far ( 29K/s overall,  27K/s now) (fuel = 20).
407K tests run so far ( 29K/s overall,  42K/s now) (fuel = 20).
435K tests run so far ( 28K/s overall,  42K/s now) (fuel = 20).
465K tests run so far ( 29K/s overall,  42K/s now) (fuel = 20).
503K tests run so far ( 29K/s overall,  42K/s now) (fuel = 20).
535K tests run so far ( 29K/s overall,  42K/s now) (fuel = 20).
573K tests run so far ( 30K/s overall,  42K/s now) (fuel = 20).
2024-09-19 08:49.26 ---> saved as "1717e9adcbff4bae727175760e3b6142def98eea7bdafaf67255d655dfd30134"
Job succeeded
2024-09-19 08:49.26: Job succeeded