Organisationsocaml-gospelortacdf5dee ()(lower-bound)

(lower-bound)

Link Copied
Code Copied

Logs

2024-05-10 22:07.07: New job: test ocaml-gospel/ortac https://github.com/ocaml-gospel/ortac.git#refs/heads/main (df5dee04f9df74e41b8551fe92559b025101dd2f) (linux-x86_64:(lower-bound))
Base: ocaml/opam@sha256:838ba1f7aeca547a81ebdab904e71fbb88618057229a64f89f92fd54b9bbb955
Opam project build


To reproduce locally:


git clone --recursive "https://github.com/ocaml-gospel/ortac.git" -b "main" && cd "ortac" && git reset --hard df5dee04
cat > Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam@sha256:838ba1f7aeca547a81ebdab904e71fbb88618057229a64f89f92fd54b9bbb955
# debian-12-4.12_opam-2.1
USER 1000:1000
ENV CLICOLOR_FORCE="1"
ENV OPAMCOLOR="always"
WORKDIR /src
RUN sudo ln -f /usr/bin/opam-2.1 /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 307e33d08fc4ccc1ea453ab45b0ead8ed574b97b || git fetch origin master) && git reset -q --hard 307e33d08fc4ccc1ea453ab45b0ead8ed574b97b && git log --no-decorate -n1 --oneline && opam update -u
COPY --chown=1000:1000 ortac-wrapper.opam ortac-runtime.opam ortac-runtime-qcheck-stm.opam ortac-runtime-monolith.opam ortac-qcheck-stm.opam ortac-monolith.opam ortac-examples.opam ortac-dune.opam ortac-core.opam ./
RUN opam pin add -yn ortac-wrapper.dev './' && \
    opam pin add -yn ortac-runtime.dev './' && \
    opam pin add -yn ortac-runtime-qcheck-stm.dev './' && \
    opam pin add -yn ortac-runtime-monolith.dev './' && \
    opam pin add -yn ortac-qcheck-stm.dev './' && \
    opam pin add -yn ortac-monolith.dev './' && \
    opam pin add -yn ortac-examples.dev './' && \
    opam pin add -yn ortac-dune.dev './' && \
    opam pin add -yn ortac-core.dev './'
ENV DEPS="afl-persistent.1.3 alcotest.1.0.0 astring.0.8.5 base-bigarray.base base-bytes.base base-threads.base base-unix.base cmdliner.1.1.0 conf-gmp.1 conf-m4.1 conf-perl.1 cppo.1.6.1 csexp.1.3.2 dune.3.8.0 dune-build-info.1.11.0 dune-configurator.2.7.0 dune-private-libs.2.8.0 dune-site.2.8.0 fmt.0.9.0 gospel.0.3.0 jbuilder.1.0+beta20.1 logs.0.7.0 lwt.5.4.0 lwt-dllist.1.0.0 mdx.2.3.0 menhir.20181006 mmap.1.1.0 monolith.20201026 ocaml.4.12.1 ocaml-base-compiler.4.12.1 ocaml-compiler-libs.v0.12.0 ocaml-config.2 ocaml-options-vanilla.1 ocaml-version.2.4.0 ocamlbuild.0.14.0 ocamlfind.1.8.1 ocplib-endian.1.0 odoc-parser.1.0.0 pp_loc.2.1.0 pprint.20200410 ppx_derivers.1.0 ppx_deriving.5.2.1 ppxlib.0.26.0 qcheck-core.0.20 qcheck-multicoretests-util.0.2 qcheck-stm.0.2 re.1.7.2 result.1.5 seq.0.2.2 sexplib0.v0.12.0 stdlib-shims.0.1.0 topkg.1.0.3 uuidm.0.9.6 varray.0.2 zarith.1.3"
ENV CI="true"
ENV OCAMLCI="true"
RUN opam update --depexts && opam install --cli=2.1 --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-05-10 22:07.07: Using cache hint "ocaml-gospel/ortac-ocaml/opam@sha256:838ba1f7aeca547a81ebdab904e71fbb88618057229a64f89f92fd54b9bbb955-debian-12-4.12_opam-2.1-c14905a94e131c22550e48a2a6e27dc3"
2024-05-10 22:07.07: Using OBuilder spec:
((from ocaml/opam@sha256:838ba1f7aeca547a81ebdab904e71fbb88618057229a64f89f92fd54b9bbb955)
 (comment debian-12-4.12_opam-2.1)
 (user (uid 1000) (gid 1000))
 (env CLICOLOR_FORCE 1)
 (env OPAMCOLOR always)
 (workdir /src)
 (run (shell "sudo ln -f /usr/bin/opam-2.1 /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 307e33d08fc4ccc1ea453ab45b0ead8ed574b97b || git fetch origin master) && git reset -q --hard 307e33d08fc4ccc1ea453ab45b0ead8ed574b97b && git log --no-decorate -n1 --oneline && opam update -u"))
 (copy (src ortac-wrapper.opam ortac-runtime.opam ortac-runtime-qcheck-stm.opam ortac-runtime-monolith.opam ortac-qcheck-stm.opam ortac-monolith.opam ortac-examples.opam ortac-dune.opam ortac-core.opam)
       (dst ./))
 (run (network host)
      (shell  "opam pin add -yn ortac-wrapper.dev './' && \
             \nopam pin add -yn ortac-runtime.dev './' && \
             \nopam pin add -yn ortac-runtime-qcheck-stm.dev './' && \
             \nopam pin add -yn ortac-runtime-monolith.dev './' && \
             \nopam pin add -yn ortac-qcheck-stm.dev './' && \
             \nopam pin add -yn ortac-monolith.dev './' && \
             \nopam pin add -yn ortac-examples.dev './' && \
             \nopam pin add -yn ortac-dune.dev './' && \
             \nopam pin add -yn ortac-core.dev './'"))
 (env DEPS "afl-persistent.1.3 alcotest.1.0.0 astring.0.8.5 base-bigarray.base base-bytes.base base-threads.base base-unix.base cmdliner.1.1.0 conf-gmp.1 conf-m4.1 conf-perl.1 cppo.1.6.1 csexp.1.3.2 dune.3.8.0 dune-build-info.1.11.0 dune-configurator.2.7.0 dune-private-libs.2.8.0 dune-site.2.8.0 fmt.0.9.0 gospel.0.3.0 jbuilder.1.0+beta20.1 logs.0.7.0 lwt.5.4.0 lwt-dllist.1.0.0 mdx.2.3.0 menhir.20181006 mmap.1.1.0 monolith.20201026 ocaml.4.12.1 ocaml-base-compiler.4.12.1 ocaml-compiler-libs.v0.12.0 ocaml-config.2 ocaml-options-vanilla.1 ocaml-version.2.4.0 ocamlbuild.0.14.0 ocamlfind.1.8.1 ocplib-endian.1.0 odoc-parser.1.0.0 pp_loc.2.1.0 pprint.20200410 ppx_derivers.1.0 ppx_deriving.5.2.1 ppxlib.0.26.0 qcheck-core.0.20 qcheck-multicoretests-util.0.2 qcheck-stm.0.2 re.1.7.2 result.1.5 seq.0.2.2 sexplib0.v0.12.0 stdlib-shims.0.1.0 topkg.1.0.3 uuidm.0.9.6 varray.0.2 zarith.1.3")
 (env CI true)
 (env OCAMLCI true)
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell "opam update --depexts && opam install --cli=2.1 --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-05-10 22:07.07: Waiting for resource in pool OCluster
2024-05-11 12:58.30: Waiting for worker…
2024-05-11 13:09.44: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at df5dee0 Merge pull request #223 from n-osborne/fix-lower-bounds


(from ocaml/opam@sha256:838ba1f7aeca547a81ebdab904e71fbb88618057229a64f89f92fd54b9bbb955)
Unable to find image 'ocaml/opam@sha256:838ba1f7aeca547a81ebdab904e71fbb88618057229a64f89f92fd54b9bbb955' locally
docker.io/ocaml/opam@sha256:838ba1f7aeca547a81ebdab904e71fbb88618057229a64f89f92fd54b9bbb955: Pulling from ocaml/opam
a757a8e75c06: Pulling fs layer
a757a8e75c06: Verifying Checksum
a757a8e75c06: Download complete
a757a8e75c06: Pull complete
Digest: sha256:838ba1f7aeca547a81ebdab904e71fbb88618057229a64f89f92fd54b9bbb955
Status: Downloaded newer image for ocaml/opam@sha256:838ba1f7aeca547a81ebdab904e71fbb88618057229a64f89f92fd54b9bbb955
2024-05-11 13:09.44 ---> using "7691599c3842a186f32c96bd3f64e2958205364d660afeca8f960ca438908d43" from cache


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


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


/: (env CLICOLOR_FORCE 1)


/: (env OPAMCOLOR always)


/: (workdir /src)


/src: (run (shell "sudo ln -f /usr/bin/opam-2.1 /usr/bin/opam"))
2024-05-11 13:09.44 ---> using "5377e64c1dc39ca1a43c8ae5a941f55df6714685285df7bdeaf7f34fcb274434" from cache


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


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


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


<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] synchronised from file:///home/opam/opam-repository
2024-05-11 13:09.44 ---> using "ad3f804af701dcea352ca9aded800a725e18f9ac799fb4a1d5bfb6bb52a7d9ed" from cache


/src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
Linux 5.15.0-106-generic
The OCaml toplevel, version 4.12.1
2.1.5
2024-05-11 13:09.44 ---> using "e355ea3d9b294d1e727ee9241d9217b5458bf1b3b9ce57a201f41e13c4db65b5" from cache


/src: (workdir /src)


/src: (run (shell "sudo chown opam /src"))
2024-05-11 13:09.44 ---> using "8d0600802d9765bf6213fb7c5e04c1b69cf95977c0060c9e97adf2a7f53bcd78" from cache


/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
           (network host)
           (shell "cd ~/opam-repository && (git cat-file -e 307e33d08fc4ccc1ea453ab45b0ead8ed574b97b || git fetch origin master) && git reset -q --hard 307e33d08fc4ccc1ea453ab45b0ead8ed574b97b && git log --no-decorate -n1 --oneline && opam update -u"))
From https://github.com/ocaml/opam-repository
 * branch                  master     -> FETCH_HEAD
   eb2dcab0d8..2ae169d7d0  master     -> origin/master
307e33d08f @dra27 and @Octachron maintain the 4.08+ packages


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


Everything as up-to-date as possible (run with --verbose to show unavailable upgrades).
However, you may "opam upgrade" these packages explicitly, which will ask permission to downgrade or uninstall the conflicting packages.
Nothing to do.
# Run eval $(opam env) to update the current shell environment
2024-05-11 13:09.44 ---> using "4829ae3f3426b7522a3e81a0a7a2805661c3e74d1e9f3f45bddcbb0515b1949e" from cache


/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-05-11 13:09.44 ---> saved as "64ac26e8580232f80e6fd59bb4cb0d52039760b4a94dcfe5e8fc952c0c772d9f"


/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)
Package ortac-dune does not exist, create as a NEW package? [Y/n] y
[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-05-11 13:09.59 ---> saved as "4491131ed73c413c19bac1791fe823261078e44e6132bd3decb92497d5d7fe62"


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


/src: (env CI true)


/src: (env OCAMLCI true)


/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
           (network host)
           (shell "opam update --depexts && opam install --cli=2.1 --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"
- Hit:1 http://deb.debian.org/debian bookworm InRelease
- 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-security bookworm-security/main amd64 Packages [155 kB]
- Fetched 258 kB in 0s (788 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


2024-05-11 13:10.16 ---> saved as "8c8049fbbd80eee02f211c4867a33817f95b97eee8df0329a81226a9bd30ee58"


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


<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved afl-persistent.1.3  (cached)
-> retrieved alcotest.1.0.0  (cached)
-> retrieved astring.0.8.5  (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 dune-build-info.1.11.0  (cached)
-> installed afl-persistent.1.3
-> retrieved dune-configurator.2.7.0  (cached)
-> retrieved dune.3.8.0  (cached)
-> retrieved dune-private-libs.2.8.0  (cached)
-> retrieved dune-site.2.8.0  (cached)
-> retrieved fmt.0.9.0  (cached)
-> retrieved gospel.0.3.0  (cached)
-> retrieved logs.0.7.0  (cached)
-> retrieved lwt-dllist.1.0.0  (cached)
-> retrieved jbuilder.1.0+beta20.1  (cached)
-> retrieved lwt.5.4.0  (cached)
-> retrieved mmap.1.1.0  (cached)
-> retrieved menhir.20181006  (cached)
-> retrieved ocaml-compiler-libs.v0.12.0  (cached)
-> 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-version.2.4.0  (cached)
-> installed cmdliner.1.1.0
-> retrieved ocamlbuild.0.14.0  (cached)
-> retrieved ocamlfind.1.8.1  (cached)
-> retrieved ocplib-endian.1.0  (cached)
-> retrieved pp_loc.2.1.0  (cached)
-> retrieved ppx_derivers.1.0  (cached)
-> retrieved ppx_deriving.5.2.1  (cached)
-> retrieved ppxlib.0.26.0  (cached)
-> retrieved qcheck-core.0.20  (cached)
-> retrieved qcheck-multicoretests-util.0.2  (cached)
-> retrieved qcheck-stm.0.2  (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 topkg.1.0.3  (cached)
-> retrieved uuidm.0.9.6  (cached)
-> retrieved varray.0.2  (cached)
-> retrieved zarith.1.3  (cached)
-> retrieved pprint.20200410  (https://github.com/fpottier/pprint/archive/20200410.tar.gz)
-> retrieved odoc-parser.1.0.0  (https://github.com/ocaml-doc/odoc-parser/releases/download/1.0.0/odoc-parser-1.0.0.tbz)
-> installed ocamlfind.1.8.1
-> installed base-bytes.base
-> installed ocamlbuild.0.14.0
-> installed zarith.1.3
-> installed jbuilder.1.0+beta20.1
-> installed ppx_derivers.1.0
-> installed cppo.1.6.1
-> installed re.1.7.2
-> installed topkg.1.0.3
-> installed uuidm.0.9.6
-> installed fmt.0.9.0
-> installed astring.0.8.5
-> installed ocplib-endian.1.0
-> installed dune.3.8.0
-> installed dune-build-info.1.11.0
-> installed mmap.1.1.0
-> installed stdlib-shims.0.1.0
-> installed result.1.5
-> installed pp_loc.2.1.0
-> installed pprint.20200410
-> installed seq.0.2.2
-> installed sexplib0.v0.12.0
-> installed varray.0.2
-> installed csexp.1.3.2
-> installed ocaml-version.2.4.0
-> installed odoc-parser.1.0.0
-> installed dune-configurator.2.7.0
-> installed alcotest.1.0.0
-> installed ocaml-compiler-libs.v0.12.0
-> installed monolith.20201026
-> installed qcheck-core.0.20
-> installed qcheck-multicoretests-util.0.2
-> installed qcheck-stm.0.2
-> installed dune-private-libs.2.8.0
-> installed lwt.5.4.0
-> installed lwt-dllist.1.0.0
-> installed dune-site.2.8.0
-> installed logs.0.7.0
-> installed mdx.2.3.0
-> installed menhir.20181006
-> 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-05-11 13:11.21 ---> saved as "d3d446fcde95857db82b560e406b767da38d77964efc45e4dabaaca60a92deee"


/src: (copy (src .) (dst /src))
2024-05-11 13:11.22 ---> saved as "10fb936b02a4ed024f3182351d6efeb6c9913e928c8a12b82845f477d5e60db2"


/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/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/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/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/sequence_model_stm_tests.exe /home/opam/.opam/4.12/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.12/lib/ocaml -I /home/opam/.opam/4.12/lib/ocaml /home/opam/.opam/4.12/lib/qcheck-core/qcheck_core.cmxa /home/opam/.opam/4.12/lib/qcheck-core/runner/qcheck_runner.cmxa /home/opam/.opam/4.12/lib/qcheck-multicoretests-util/util.cmxa /home/opam/.opam/4.12/lib/qcheck-stm/stm/STM.cmxa /home/opam/.opam/4.12/lib/qcheck-stm/sequential/STM_sequential.cmxa /home/opam/.opam/4.12/lib/fmt/fmt.cmxa /home/opam/.opam/4.12/lib/zarith/zarith.cmxa -I /home/opam/.opam/4.12/lib/zarith src/runtime/ortac_runtime.cmxa plugins/qcheck-stm/src/runtime/ortac_runtime_qcheck_stm.cmxa plugins/qcheck-stm/test/sequence_model.cmxa plugins/qcheck-stm/test/.sequence_model_stm_tests.eobjs/native/dune__exe__Sequence_model_stm_tests.cmx)
/usr/bin/ld: warning: caml_z_x86_64.o: missing .note.GNU-stack section implies executable stack
/usr/bin/ld: NOTE: This behaviour is deprecated and will be removed in a future version of the linker
(cd _build/default && /home/opam/.opam/4.12/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62@67@69-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o plugins/qcheck-stm/test/conjunctive_clauses_stm_tests.exe /home/opam/.opam/4.12/lib/ocaml/unix.cmxa -I /home/opam/.opam/4.12/lib/ocaml -I /home/opam/.opam/4.12/lib/ocaml /home/opam/.opam/4.12/lib/qcheck-core/qcheck_core.cmxa /home/opam/.opam/4.12/lib/qcheck-core/runner/qcheck_runner.cmxa /home/opam/.opam/4.12/lib/qcheck-multicoretests-util/util.cmxa /home/opam/.opam/4.12/lib/qcheck-stm/stm/STM.cmxa /home/opam/.opam/4.12/lib/qcheck-stm/sequential/STM_sequential.cmxa /home/opam/.opam/4.12/lib/fmt/fmt.cmxa /home/opam/.opam/4.12/lib/zarith/zarith.cmxa -I /home/opam/.opam/4.12/lib/zarith src/runtime/ortac_runtime.cmxa plugins/qcheck-stm/src/runtime/ortac_runtime_qcheck_stm.cmxa plugins/qcheck-stm/test/conjunctive_clauses.cmxa plugins/qcheck-stm/test/.conjunctive_clauses_stm_tests.eobjs/native/dune__exe__Conjunctive_clauses_stm_tests.cmx)
/usr/bin/ld: warning: caml_z_x86_64.o: missing .note.GNU-stack section implies executable stack
/usr/bin/ld: NOTE: This behaviour is deprecated and will be removed in a future version of the linker
(cd _build/default && /home/opam/.opam/4.12/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62@67@69-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o plugins/qcheck-stm/test/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_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_tests.eobjs/native/dune__exe.cmx examples/.lwt_dllist_tests.eobjs/native/dune__exe__Lwt_dllist_incl.cmx examples/.lwt_dllist_tests.eobjs/native/dune__exe__Lwt_dllist_tests.cmx)
/usr/bin/ld: warning: caml_z_x86_64.o: missing .note.GNU-stack section implies executable stack
/usr/bin/ld: NOTE: This behaviour is deprecated and will be removed in a future version of the linker


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


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


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


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


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/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_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_tests.eobjs/native/dune__exe.cmx examples/.varray_circular_tests.eobjs/native/dune__exe__Varray_circular_incl.cmx examples/.varray_circular_tests.eobjs/native/dune__exe__Varray_circular_tests.cmx)
/usr/bin/ld: warning: caml_z_x86_64.o: missing .note.GNU-stack section implies executable stack
/usr/bin/ld: NOTE: This behaviour is deprecated and will be removed in a future version of the linker


array_stm_tests.exe has been generated with the ortac-qcheck-stm plugin.
(cd _build/default && /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_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_tests.eobjs/native/dune__exe.cmx examples/.varray_tests.eobjs/native/dune__exe__Varray_incl.cmx examples/.varray_tests.eobjs/native/dune__exe__Varray_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_tests.exe --verbose)
random seed: 56511878
generated error fail pass / total     time test name
[] 1000    0    0 1000 / 1000     0.2s Lwt_dllist_spec STM tests
================================================================================
success (ran 1 tests)
(cd _build/default && /home/opam/.opam/4.12/bin/ocamlopt.opt -w @1..3@5..28@30..39@43@46..47@49..57@61..62@67@69-40 -strict-sequence -strict-formats -short-paths -keep-locs -g -o 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 plugins/wrapper/test/suite/types/ltypes.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__Types.cmx plugins/wrapper/test/suite/.test.eobjs/native/dune__exe__Test.cmx)
/usr/bin/ld: warning: caml_z_x86_64.o: missing .note.GNU-stack section implies executable stack
/usr/bin/ld: NOTE: This behaviour is deprecated and will be removed in a future version of the linker
(cd _build/default/plugins/wrapper/test/suite && ./test.exe)
Testing Ortac.
This run has ID `7D65C14A-A64E-4000-906B-06BF81EC4166`.
[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]                Types                0   simple field access.
[OK]                Types                1   invalid v function.
[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/7D65C14A-A64E-4000-906B-06BF81EC4166`.
Test Successful in 0.000s. 37 tests run.
(cd _build/default/examples && ./varray_tests.exe --verbose)
random seed: 410991884
generated error fail pass / total     time test name
[] 1000    0    0 1000 / 1000     0.4s Varray_spec STM tests
================================================================================
success (ran 1 tests)
(cd _build/default/examples && ./varray_circular_tests.exe --verbose)
random seed: 212203761
generated error fail pass / total     time test name
[] 1000    0    0 1000 / 1000     0.4s Varray_circular_spec STM tests
================================================================================
success (ran 1 tests)
(cd _build/default && /usr/bin/timeout -s INT -k 3 20 test/runtime/stdlibset.exe)
 66K tests run so far ( 65K/s overall,  73K/s now) (fuel = 20).
130K tests run so far ( 64K/s overall,  73K/s now) (fuel = 20).
194K tests run so far ( 64K/s overall,  72K/s now) (fuel = 20).
260K tests run so far ( 64K/s overall,  73K/s now) (fuel = 20).
319K tests run so far ( 63K/s overall,  69K/s now) (fuel = 20).
383K tests run so far ( 63K/s overall,  71K/s now) (fuel = 20).
449K tests run so far ( 64K/s overall,  73K/s now) (fuel = 20).
514K tests run so far ( 64K/s overall,  71K/s now) (fuel = 20).
580K tests run so far ( 64K/s overall,  73K/s now) (fuel = 20).
646K tests run so far ( 64K/s overall,  74K/s now) (fuel = 20).
713K tests run so far ( 64K/s overall,  73K/s now) (fuel = 20).
775K tests run so far ( 64K/s overall,  75K/s now) (fuel = 20).
842K tests run so far ( 64K/s overall,  74K/s now) (fuel = 20).
907K tests run so far ( 64K/s overall,  74K/s now) (fuel = 20).
974K tests run so far ( 64K/s overall,  74K/s now) (fuel = 20).
  1M tests run so far ( 64K/s overall,  74K/s now) (fuel = 20).
  1M tests run so far ( 64K/s overall,  74K/s now) (fuel = 20).
  1M tests run so far ( 64K/s overall,  74K/s now) (fuel = 20).
  1M tests run so far ( 64K/s overall,  74K/s now) (fuel = 20).
2024-05-11 13:11.44 ---> saved as "f088d9b3702edec54305a3d5377cf861b3920c1139e353eb59ea05ba13fc9134"
Job succeeded
2024-05-11 13:11.44: Job succeeded