2026-07-02 13:19.03: New job: test ocaml-gospel/ortac https://github.com/ocaml-gospel/ortac.git#refs/heads/main (a86251abd76694e2e444bc88ea5c05e342053db9) (linux-x86_64:ubuntu-26.04-4.14_opam-2.5) Base: ocaml/opam:ubuntu-26.04-ocaml-4.14@sha256:a1dfc321b67898f5b7c38a05f52abc5ba072a5a60b3475df5ee03419c8099c41 Opam project build To reproduce locally: git clone --recursive "https://github.com/ocaml-gospel/ortac.git" -b "main" && cd "ortac" && git reset --hard a86251ab cat > Dockerfile <<'END-OF-DOCKERFILE' FROM ocaml/opam:ubuntu-26.04-ocaml-4.14@sha256:a1dfc321b67898f5b7c38a05f52abc5ba072a5a60b3475df5ee03419c8099c41 # ubuntu-26.04-4.14_opam-2.5 USER 1000:1000 ENV CLICOLOR_FORCE="1" ENV OPAMCOLOR="always" WORKDIR /src RUN sudo ln -f /usr/bin/opam-2.5 /usr/bin/opam RUN cd ~/opam-repository && (git cat-file -e 8cd35acddd18fa903782ac90de78467ca3e3b506 || git fetch origin master) && git reset -q --hard 8cd35acddd18fa903782ac90de78467ca3e3b506 && git log --no-decorate -n1 --oneline RUN opam init --reinit -ni RUN uname -rs && opam exec -- ocaml -version && opam --version WORKDIR /src RUN sudo chown opam /src RUN 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 './' RUN echo '(lang dune 3.0)' > './dune-project' ENV DEPS="afl-persistent.1.4 alcotest.1.9.1 astring.0.8.5 base-bigarray.base base-threads.base base-unix.base camlp-streams.5.0.1 cmdliner.2.1.1 conf-gmp.5 conf-pkg-config.5 cppo.1.8.0 csexp.1.5.2 dune.3.24.0 dune-build-info.3.24.0 dune-private-libs.3.24.0 dune-site.3.24.0 dyn.3.24.0 fmt.0.11.0 fs-io.3.24.0 gospel.0.3.1 logs.0.10.0 mdx.2.5.2 menhir.20260209 menhirCST.20260209 menhirGLR.20260209 menhirLib.20260209 menhirSdk.20260209 monolith.20250922 ocaml.4.14.4 ocaml-base-compiler.4.14.4 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.4.1.3 ocamlbuild.0.16.1 ocamlfind.1.9.8 ordering.3.24.0 pp.2.0.0 pp_loc.2.1.0 pprint.20230830 ppx_derivers.1.2.1 ppx_deriving.6.1.1 ppxlib.0.38.0 qcheck-core.0.91 qcheck-multicoretests-util.0.10 qcheck-stm.0.10 re.1.14.0 result.1.5 sexplib0.v0.17.0 stdlib-shims.0.3.0 stdune.3.24.0 top-closure.3.24.0 topkg.1.1.1 uutf.1.0.4 zarith.1.14" ENV CI="true" ENV OCAMLCI="true" RUN opam update --depexts && opam install --cli=2.5 --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-dune.dev ortac-core.dev $DEPS RUN opam install $DEPS COPY --chown=1000:1000 . /src RUN opam exec -- dune build --only-packages=ortac-wrapper,ortac-runtime,ortac-runtime-qcheck-stm,ortac-runtime-monolith,ortac-qcheck-stm,ortac-monolith,ortac-dune,ortac-core @install @check @runtest && rm -rf _build END-OF-DOCKERFILE docker build . END-REPRO-BLOCK 2026-07-02 13:19.03: Using cache hint "ocaml-gospel/ortac-ocaml/opam:ubuntu-26.04-ocaml-4.14@sha256:a1dfc321b67898f5b7c38a05f52abc5ba072a5a60b3475df5ee03419c8099c41-ubuntu-26.04-4.14_opam-2.5-d249511d670904a82197fa0afb7d9da7" 2026-07-02 13:19.03: Using OBuilder spec: ((from ocaml/opam:ubuntu-26.04-ocaml-4.14@sha256:a1dfc321b67898f5b7c38a05f52abc5ba072a5a60b3475df5ee03419c8099c41) (comment ubuntu-26.04-4.14_opam-2.5) (user (uid 1000) (gid 1000)) (env CLICOLOR_FORCE 1) (env OPAMCOLOR always) (workdir /src) (run (shell "sudo ln -f /usr/bin/opam-2.5 /usr/bin/opam")) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "cd ~/opam-repository && (git cat-file -e 8cd35acddd18fa903782ac90de78467ca3e3b506 || git fetch origin master) && git reset -q --hard 8cd35acddd18fa903782ac90de78467ca3e3b506 && git log --no-decorate -n1 --oneline")) (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 "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 './'")) (run (shell "echo '(lang dune 3.0)' > './dune-project'")) (env DEPS "afl-persistent.1.4 alcotest.1.9.1 astring.0.8.5 base-bigarray.base base-threads.base base-unix.base camlp-streams.5.0.1 cmdliner.2.1.1 conf-gmp.5 conf-pkg-config.5 cppo.1.8.0 csexp.1.5.2 dune.3.24.0 dune-build-info.3.24.0 dune-private-libs.3.24.0 dune-site.3.24.0 dyn.3.24.0 fmt.0.11.0 fs-io.3.24.0 gospel.0.3.1 logs.0.10.0 mdx.2.5.2 menhir.20260209 menhirCST.20260209 menhirGLR.20260209 menhirLib.20260209 menhirSdk.20260209 monolith.20250922 ocaml.4.14.4 ocaml-base-compiler.4.14.4 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.4.1.3 ocamlbuild.0.16.1 ocamlfind.1.9.8 ordering.3.24.0 pp.2.0.0 pp_loc.2.1.0 pprint.20230830 ppx_derivers.1.2.1 ppx_deriving.6.1.1 ppxlib.0.38.0 qcheck-core.0.91 qcheck-multicoretests-util.0.10 qcheck-stm.0.10 re.1.14.0 result.1.5 sexplib0.v0.17.0 stdlib-shims.0.3.0 stdune.3.24.0 top-closure.3.24.0 topkg.1.1.1 uutf.1.0.4 zarith.1.14") (env CI true) (env OCAMLCI true) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam update --depexts && opam install --cli=2.5 --depext-only -y ortac-wrapper.dev ortac-runtime.dev ortac-runtime-qcheck-stm.dev ortac-runtime-monolith.dev ortac-qcheck-stm.dev ortac-monolith.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 --only-packages=ortac-wrapper,ortac-runtime,ortac-runtime-qcheck-stm,ortac-runtime-monolith,ortac-qcheck-stm,ortac-monolith,ortac-dune,ortac-core @install @check @runtest && rm -rf _build")) ) 2026-07-02 13:19.03: Waiting for resource in pool OCluster 2026-07-02 14:28.16: Waiting for worker… 2026-07-02 14:29.59: Got resource from pool OCluster Building on asteria.caelum.ci.dev All commits already cached HEAD is now at a86251a Merge pull request #378 from n-osborne/quickfix (from ocaml/opam:ubuntu-26.04-ocaml-4.14@sha256:a1dfc321b67898f5b7c38a05f52abc5ba072a5a60b3475df5ee03419c8099c41) 2026-07-02 14:29.59 ---> using "69a70ebcb909a377e95568797e23b89a142455f03686ed3bdfd3e9f4a64f8bfc" from cache /: (comment ubuntu-26.04-4.14_opam-2.5) /: (user (uid 1000) (gid 1000)) /: (env CLICOLOR_FORCE 1) /: (env OPAMCOLOR always) /: (workdir /src) /src: (run (shell "sudo ln -f /usr/bin/opam-2.5 /usr/bin/opam")) 2026-07-02 14:29.59 ---> using "ad661082f8156e367f5728c41f90d4504385f85d648e62d69635fd46a80d3eef" from cache /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "cd ~/opam-repository && (git cat-file -e 8cd35acddd18fa903782ac90de78467ca3e3b506 || git fetch origin master) && git reset -q --hard 8cd35acddd18fa903782ac90de78467ca3e3b506 && git log --no-decorate -n1 --oneline")) From https://github.com/ocaml/opam-repository * branch master -> FETCH_HEAD 10b9bc8242..cf4807d523 master -> origin/master 8cd35acddd Merge pull request #30092 from shonfeder/release-dune-3.24.0 2026-07-02 14:29.59 ---> using "79e41b46cec12aa7449b9137d95b5d382b365272fa4a0603a8a786e2fbe26981" 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.1 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 1 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=1 --global Format upgrade done. <><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><> [ERROR] Could not update repository "ocaml-patches-overlay": "/usr/bin/git fetch -q" exited with code 128 "fatal: unable to access 'https://github.com/ocurrent/opam-repository/': Could not resolve host: github.com" [default] synchronised from git+file:///home/opam/opam-repository 2026-07-02 14:29.59 ---> using "9b4290ea3b30d92b83a18e45e4694e2d0f6dd3503efe7e2bdfee79967a4cc65f" from cache /src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version")) Linux 7.0.0-22-generic The OCaml toplevel, version 4.14.4 2.5.1 2026-07-02 14:29.59 ---> using "6081ea61bc2bd945992d44c4d81165c466c3b6630ab783ba9510397f86777702" from cache /src: (workdir /src) /src: (run (shell "sudo chown opam /src")) 2026-07-02 14:29.59 ---> using "e2a5cf8763c650c7bb5b529f6fe494bdbc43110cb1635d83df6e1193e5fd0506" from cache /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam update -u")) <><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><> [ocaml-patches-overlay] no changes from git+https://github.com/ocurrent/opam-repository#patches [default] no changes from git+file:///home/opam/opam-repository Everything as up-to-date as possible (run with --verbose to show unavailable upgrades). The following packages are not being upgraded because the new versions conflict with other installed packages: - ocaml.5.5.1 - ocaml-config.3 However, you may "opam upgrade" these packages explicitly at these versions (e.g. "opam upgrade ocaml.5.5.1"), which will ask permission to downgrade or uninstall the conflicting packages. Nothing to do. # To update the current shell environment, run: eval $(opam env) 2026-07-02 14:29.59 ---> using "6fa5ccec6cb1ef9c12e4a37b977280ac7991dbba7b88ba07acd0c2aede5cb1c0" 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 ./)) 2026-07-02 14:29.59 ---> saved as "92ebcf6a4a9b85f16119405521f4465211d809aed6300e5cf9ec90949dd78500" /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 './'")) [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) [NOTE] Package ortac-runtime-monolith does not exist in opam repositories registered in the current switch. [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) [NOTE] Package ortac-monolith does not exist in opam repositories registered in the current switch. [ortac-monolith.dev] synchronised (file:///src) ortac-monolith is now pinned to file:///src (version dev) [NOTE] Package ortac-examples does not exist in opam repositories registered in the current switch. [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) 2026-07-02 14:30.12 ---> saved as "5c789b3bae8da1a49c885a708e8461314b44479f3dc2cbc51334774206fd774e" /src: (run (shell "echo '(lang dune 3.0)' > './dune-project'")) 2026-07-02 14:30.12 ---> saved as "6675af1d6e0ffaaa69519790c84b055a0f694ffb71aa844ea6a9023bb189d4fd" /src: (env DEPS "afl-persistent.1.4 alcotest.1.9.1 astring.0.8.5 base-bigarray.base base-threads.base base-unix.base camlp-streams.5.0.1 cmdliner.2.1.1 conf-gmp.5 conf-pkg-config.5 cppo.1.8.0 csexp.1.5.2 dune.3.24.0 dune-build-info.3.24.0 dune-private-libs.3.24.0 dune-site.3.24.0 dyn.3.24.0 fmt.0.11.0 fs-io.3.24.0 gospel.0.3.1 logs.0.10.0 mdx.2.5.2 menhir.20260209 menhirCST.20260209 menhirGLR.20260209 menhirLib.20260209 menhirSdk.20260209 monolith.20250922 ocaml.4.14.4 ocaml-base-compiler.4.14.4 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.4.1.3 ocamlbuild.0.16.1 ocamlfind.1.9.8 ordering.3.24.0 pp.2.0.0 pp_loc.2.1.0 pprint.20230830 ppx_derivers.1.2.1 ppx_deriving.6.1.1 ppxlib.0.38.0 qcheck-core.0.91 qcheck-multicoretests-util.0.10 qcheck-stm.0.10 re.1.14.0 result.1.5 sexplib0.v0.17.0 stdlib-shims.0.3.0 stdune.3.24.0 top-closure.3.24.0 topkg.1.1.1 uutf.1.0.4 zarith.1.14") /src: (env CI true) /src: (env OCAMLCI true) /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam update --depexts && opam install --cli=2.5 --depext-only -y ortac-wrapper.dev ortac-runtime.dev ortac-runtime-qcheck-stm.dev ortac-runtime-monolith.dev ortac-qcheck-stm.dev ortac-monolith.dev ortac-dune.dev ortac-core.dev $DEPS")) + /usr/bin/sudo "apt-get" "update" - Hit:1 http://archive.ubuntu.com/ubuntu resolute InRelease - Get:2 http://security.ubuntu.com/ubuntu resolute-security InRelease [137 kB] - Get:3 http://archive.ubuntu.com/ubuntu resolute-updates InRelease [137 kB] - Hit:4 http://archive.ubuntu.com/ubuntu resolute-backports InRelease - Get:5 http://security.ubuntu.com/ubuntu resolute-security/restricted amd64 Packages [297 kB] - Get:6 http://archive.ubuntu.com/ubuntu resolute-updates/restricted amd64 Packages [299 kB] - Get:7 http://security.ubuntu.com/ubuntu resolute-security/universe amd64 Packages [157 kB] - Get:8 http://archive.ubuntu.com/ubuntu resolute-updates/main amd64 Packages [372 kB] - Get:9 http://security.ubuntu.com/ubuntu resolute-security/main amd64 Packages [325 kB] - Get:10 http://archive.ubuntu.com/ubuntu resolute-updates/universe amd64 Packages [236 kB] - Fetched 1961 kB in 0s (10.6 MB/s) - Reading package lists... - <><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><> [ortac-core.dev] synchronised (file:///src) [ortac-dune.dev] synchronised (file:///src) [ortac-monolith.dev] synchronised (file:///src) [ortac-qcheck-stm.dev] synchronised (file:///src) [ortac-runtime.dev] synchronised (file:///src) [ortac-runtime-monolith.dev] synchronised (file:///src) [ortac-runtime-qcheck-stm.dev] synchronised (file:///src) [ortac-wrapper.dev] synchronised (file:///src) [NOTE] Package ocaml-options-vanilla is already installed (current version is 1). [NOTE] Package ocaml-config is already installed (current version is 2). [NOTE] Package ocaml-base-compiler is already installed (current version is 4.14.4). [NOTE] Package ocaml is already installed (current version is 4.14.4). [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 pkg-config <><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><> + /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libgmp-dev" "pkg-config" - Selecting previously unselected package libgmpxx4ldbl:amd64. - (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 22767 files and directories currently installed.) - Preparing to unpack .../0-libgmpxx4ldbl_2%3a6.3.0+dfsg-5ubuntu2_amd64.deb ... - Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-5ubuntu2) ... - Selecting previously unselected package libgmp-dev:amd64. - Preparing to unpack .../1-libgmp-dev_2%3a6.3.0+dfsg-5ubuntu2_amd64.deb ... - Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-5ubuntu2) ... - Selecting previously unselected package libpkgconf7:amd64. - Preparing to unpack .../2-libpkgconf7_2.5.1-4_amd64.deb ... - Unpacking libpkgconf7:amd64 (2.5.1-4) ... - Selecting previously unselected package pkgconf-bin. - Preparing to unpack .../3-pkgconf-bin_2.5.1-4_amd64.deb ... - Unpacking pkgconf-bin (2.5.1-4) ... - Selecting previously unselected package pkgconf:amd64. - Preparing to unpack .../4-pkgconf_2.5.1-4_amd64.deb ... - Unpacking pkgconf:amd64 (2.5.1-4) ... - Selecting previously unselected package pkg-config:amd64. - Preparing to unpack .../5-pkg-config_2.5.1-4_amd64.deb ... - Unpacking pkg-config:amd64 (2.5.1-4) ... - Setting up libpkgconf7:amd64 (2.5.1-4) ... - Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-5ubuntu2) ... - Setting up pkgconf-bin (2.5.1-4) ... - Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-5ubuntu2) ... - Setting up pkgconf:amd64 (2.5.1-4) ... - Setting up pkg-config:amd64 (2.5.1-4) ... - Processing triggers for libc-bin (2.43-2ubuntu2) ... # To update the current shell environment, run: eval $(opam env) 2026-07-02 14:30.23 ---> saved as "9633a6014309b85ca44e7a81de9488942cfd3a62fe873822b695438dc1621d93" /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam install $DEPS")) [NOTE] Package ocaml-options-vanilla is already installed (current version is 1). [NOTE] Package ocaml-config is already installed (current version is 2). [NOTE] Package ocaml-base-compiler is already installed (current version is 4.14.4). [NOTE] Package ocaml is already installed (current version is 4.14.4). [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 49 packages - install afl-persistent 1.4 - install alcotest 1.9.1 - install astring 0.8.5 - install camlp-streams 5.0.1 - install cmdliner 2.1.1 - install conf-gmp 5 - install conf-pkg-config 5 - install cppo 1.8.0 - install csexp 1.5.2 - install dune 3.24.0 - install dune-build-info 3.24.0 - install dune-private-libs 3.24.0 - install dune-site 3.24.0 - install dyn 3.24.0 - install fmt 0.11.0 - install fs-io 3.24.0 - install gospel 0.3.1 - install logs 0.10.0 - install mdx 2.5.2 - install menhir 20260209 - install menhirCST 20260209 - install menhirGLR 20260209 - install menhirLib 20260209 - install menhirSdk 20260209 - install monolith 20250922 - install ocaml-compiler-libs v0.12.4 - install ocaml-syntax-shims 1.0.0 - install ocaml-version 4.1.3 - install ocamlbuild 0.16.1 - install ocamlfind 1.9.8 - install ordering 3.24.0 - install pp 2.0.0 - install pp_loc 2.1.0 - install pprint 20230830 - install ppx_derivers 1.2.1 - install ppx_deriving 6.1.1 - install ppxlib 0.38.0 - install qcheck-core 0.91 - install qcheck-multicoretests-util 0.10 - install qcheck-stm 0.10 - install re 1.14.0 - install result 1.5 - install sexplib0 v0.17.0 - install stdlib-shims 0.3.0 - install stdune 3.24.0 - install top-closure 3.24.0 - install topkg 1.1.1 - install uutf 1.0.4 - install zarith 1.14 <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved afl-persistent.1.4 (cached) -> retrieved alcotest.1.9.1 (cached) -> retrieved astring.0.8.5 (cached) -> retrieved conf-gmp.5 (cached) -> retrieved conf-pkg-config.5 (cached) -> retrieved camlp-streams.5.0.1 (cached) -> retrieved cmdliner.2.1.1 (cached) -> retrieved cppo.1.8.0 (cached) -> installed conf-gmp.5 -> retrieved csexp.1.5.2 (cached) -> retrieved fmt.0.11.0 (cached) -> installed conf-pkg-config.5 -> retrieved logs.0.10.0 (cached) -> retrieved gospel.0.3.1 (cached) -> retrieved mdx.2.5.2 (cached) -> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209 (cached) -> retrieved dune.3.24.0, dune-build-info.3.24.0, dune-private-libs.3.24.0, dune-site.3.24.0, dyn.3.24.0, fs-io.3.24.0, ordering.3.24.0, stdune.3.24.0, top-closure.3.24.0 (cached) -> retrieved monolith.20250922 (cached) -> retrieved ocaml-compiler-libs.v0.12.4 (cached) -> retrieved ocaml-syntax-shims.1.0.0 (cached) -> retrieved ocaml-version.4.1.3 (cached) -> retrieved pp.2.0.0 (cached) -> retrieved ocamlbuild.0.16.1 (cached) -> retrieved ocamlfind.1.9.8 (cached) -> retrieved pp_loc.2.1.0 (cached) -> installed cmdliner.2.1.1 -> retrieved pprint.20230830 (cached) -> retrieved ppx_derivers.1.2.1 (cached) -> retrieved ppx_deriving.6.1.1 (cached) -> retrieved qcheck-core.0.91 (cached) -> retrieved qcheck-multicoretests-util.0.10, qcheck-stm.0.10 (cached) -> retrieved ppxlib.0.38.0 (cached) -> retrieved re.1.14.0 (cached) -> retrieved result.1.5 (cached) -> retrieved sexplib0.v0.17.0 (cached) -> retrieved stdlib-shims.0.3.0 (cached) -> retrieved uutf.1.0.4 (cached) -> retrieved zarith.1.14 (cached) -> retrieved topkg.1.1.1 (cached) -> installed ocamlfind.1.9.8 -> installed ocamlbuild.0.16.1 -> installed zarith.1.14 -> installed topkg.1.1.1 -> installed uutf.1.0.4 -> installed fmt.0.11.0 -> installed astring.0.8.5 -> installed logs.0.10.0 -> installed dune.3.24.0 -> installed camlp-streams.5.0.1 -> installed cppo.1.8.0 -> installed csexp.1.5.2 -> installed dune-build-info.3.24.0 -> installed fs-io.3.24.0 -> installed menhirCST.20260209 -> installed menhirGLR.20260209 -> installed menhirLib.20260209 -> installed menhirSdk.20260209 -> installed ocaml-compiler-libs.v0.12.4 -> installed ocaml-syntax-shims.1.0.0 -> installed ocaml-version.4.1.3 -> installed ordering.3.24.0 -> installed pp.2.0.0 -> installed pp_loc.2.1.0 -> installed pprint.20230830 -> installed ppx_derivers.1.2.1 -> installed qcheck-core.0.91 -> installed re.1.14.0 -> installed result.1.5 -> installed sexplib0.v0.17.0 -> installed stdlib-shims.0.3.0 -> installed top-closure.3.24.0 -> installed afl-persistent.1.4 -> installed qcheck-multicoretests-util.0.10 -> installed dyn.3.24.0 -> installed alcotest.1.9.1 -> installed monolith.20250922 -> installed qcheck-stm.0.10 -> installed mdx.2.5.2 -> installed menhir.20260209 -> installed stdune.3.24.0 -> installed dune-private-libs.3.24.0 -> installed dune-site.3.24.0 -> installed ppxlib.0.38.0 -> installed ppx_deriving.6.1.1 -> installed gospel.0.3.1 Done. <><> afl-persistent.1.4 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, create an OCaml switch like: opam switch create 4.14.4+afl ocaml-variants.4.14.4+options ocaml-option-afl # To update the current shell environment, run: eval $(opam env) 2026-07-02 14:31.47 ---> saved as "71de371e6d61ab4b143c54278f456d8a90836171c706a0e482fa017381601d53" /src: (copy (src .) (dst /src)) 2026-07-02 14:31.47 ---> saved as "f84a7627d85d15eaee973e277d7be4bf4da1984ffa080dfd0b9c6c38607ebe52" /src: (run (shell "opam exec -- dune build --only-packages=ortac-wrapper,ortac-runtime,ortac-runtime-qcheck-stm,ortac-runtime-monolith,ortac-qcheck-stm,ortac-monolith,ortac-dune,ortac-core @install @check @runtest && rm -rf _build")) File "plugins/wrapper/test/generated/wrapper.expected.ml", line 1, characters 0-0: /usr/bin/git --no-pager diff --no-index --color=always -u _build/default/plugins/wrapper/test/generated/wrapper.expected.ml _build/default/plugins/wrapper/test/generated/wrapper.ml diff --git a/_build/default/plugins/wrapper/test/generated/wrapper.expected.ml b/_build/default/plugins/wrapper/test/generated/wrapper.ml index 162fefc..d3987da 100644 --- a/_build/default/plugins/wrapper/test/generated/wrapper.expected.ml +++ b/_build/default/plugins/wrapper/test/generated/wrapper.ml @@ -71,17 +71,17 @@ let create n = { Ortac_runtime.start = { - pos_fname = "lib.mli"; + pos_fname = "./lib.mli"; pos_lnum = 9; - pos_bol = 399; - pos_cnum = 399 + pos_bol = 409; + pos_cnum = 409 }; Ortac_runtime.stop = { - pos_fname = "lib.mli"; + pos_fname = "./lib.mli"; pos_lnum = 13; - pos_bol = 585; - pos_cnum = 638 + pos_bol = 599; + pos_cnum = 652 } } "create" in if @@ -162,17 +162,17 @@ let add i_2 bv_2 = { Ortac_runtime.start = { - pos_fname = "lib.mli"; + pos_fname = "./lib.mli"; pos_lnum = 15; - pos_bol = 640; - pos_cnum = 640 + pos_bol = 654; + pos_cnum = 654 }; Ortac_runtime.stop = { - pos_fname = "lib.mli"; + pos_fname = "./lib.mli"; pos_lnum = 20; - pos_bol = 871; - pos_cnum = 926 + pos_bol = 889; + pos_cnum = 944 } } "add" in let ___ortac_copy_1 = Ortac_runtime.copy bv_2 in @@ -258,17 +258,17 @@ let mem i_3 bv_3 = { Ortac_runtime.start = { - pos_fname = "lib.mli"; + pos_fname = "./lib.mli"; pos_lnum = 22; - pos_bol = 928; - pos_cnum = 928 + pos_bol = 946; + pos_cnum = 946 }; Ortac_runtime.stop = { - pos_fname = "lib.mli"; + pos_fname = "./lib.mli"; pos_lnum = 25; - pos_bol = 1074; - pos_cnum = 1103 + pos_bol = 1096; + pos_cnum = 1125 } } "mem" in if File "plugins/wrapper/test/generated/wrapper_behaviour.expected.ml", line 1, characters 0-0: /usr/bin/git --no-pager diff --no-index --color=always -u _build/default/plugins/wrapper/test/generated/wrapper_behaviour.expected.ml _build/default/plugins/wrapper/test/generated/wrapper_behaviour.ml diff --git a/_build/default/plugins/wrapper/test/generated/wrapper_behaviour.expected.ml b/_build/default/plugins/wrapper/test/generated/wrapper_behaviour.ml index f078b5a..1fff5e6 100644 --- a/_build/default/plugins/wrapper/test/generated/wrapper_behaviour.expected.ml +++ b/_build/default/plugins/wrapper/test/generated/wrapper_behaviour.ml @@ -29,17 +29,17 @@ let create_int n = { Ortac_runtime.start = { - pos_fname = "lib_behaviour.mli"; + pos_fname = "./lib_behaviour.mli"; pos_lnum = 7; - pos_bol = 211; - pos_cnum = 211 + pos_bol = 217; + pos_cnum = 217 }; Ortac_runtime.stop = { - pos_fname = "lib_behaviour.mli"; + pos_fname = "./lib_behaviour.mli"; pos_lnum = 10; - pos_bol = 365; - pos_cnum = 392 + pos_bol = 375; + pos_cnum = 402 } } "create_int" in if @@ -90,17 +90,17 @@ let bad_create_int n_1 = { Ortac_runtime.start = { - pos_fname = "lib_behaviour.mli"; + pos_fname = "./lib_behaviour.mli"; pos_lnum = 16; - pos_bol = 540; - pos_cnum = 540 + pos_bol = 550; + pos_cnum = 550 }; Ortac_runtime.stop = { - pos_fname = "lib_behaviour.mli"; + pos_fname = "./lib_behaviour.mli"; pos_lnum = 18; - pos_bol = 683; - pos_cnum = 710 + pos_bol = 697; + pos_cnum = 724 } } "bad_create_int" in Ortac_runtime.Errors.report __error__005_; @@ -136,17 +136,17 @@ let increment_int x = { Ortac_runtime.start = { - pos_fname = "lib_behaviour.mli"; + pos_fname = "./lib_behaviour.mli"; pos_lnum = 20; - pos_bol = 712; - pos_cnum = 712 + pos_bol = 726; + pos_cnum = 726 }; Ortac_runtime.stop = { - pos_fname = "lib_behaviour.mli"; + pos_fname = "./lib_behaviour.mli"; pos_lnum = 25; - pos_bol = 948; - pos_cnum = 984 + pos_bol = 966; + pos_cnum = 1002 } } "increment_int" in if @@ -261,17 +261,17 @@ let bad_increment_int x_1 = { Ortac_runtime.start = { - pos_fname = "lib_behaviour.mli"; + pos_fname = "./lib_behaviour.mli"; pos_lnum = 30; - pos_bol = 1078; - pos_cnum = 1078 + pos_bol = 1096; + pos_cnum = 1096 }; Ortac_runtime.stop = { - pos_fname = "lib_behaviour.mli"; + pos_fname = "./lib_behaviour.mli"; pos_lnum = 34; - pos_bol = 1291; - pos_cnum = 1327 + pos_bol = 1313; + pos_cnum = 1349 } } "bad_increment_int" in __invariant___001_ __error__008_ Pre x_1; @@ -370,17 +370,17 @@ let bad2_increment_int x_2 = { Ortac_runtime.start = { - pos_fname = "lib_behaviour.mli"; + pos_fname = "./lib_behaviour.mli"; pos_lnum = 39; - pos_bol = 1426; - pos_cnum = 1426 + pos_bol = 1448; + pos_cnum = 1448 }; Ortac_runtime.stop = { - pos_fname = "lib_behaviour.mli"; + pos_fname = "./lib_behaviour.mli"; pos_lnum = 44; - pos_bol = 1672; - pos_cnum = 1708 + pos_bol = 1698; + pos_cnum = 1734 } } "bad2_increment_int" in if File "plugins/wrapper/test/generated/pascal_wrapped.expected.ml", line 1, characters 0-0: /usr/bin/git --no-pager diff --no-index --color=always -u _build/default/plugins/wrapper/test/generated/pascal_wrapped.expected.ml _build/default/plugins/wrapper/test/generated/pascal_wrapped.ml diff --git a/_build/default/plugins/wrapper/test/generated/pascal_wrapped.expected.ml b/_build/default/plugins/wrapper/test/generated/pascal_wrapped.ml index a8591d5..d999629 100644 --- a/_build/default/plugins/wrapper/test/generated/pascal_wrapped.expected.ml +++ b/_build/default/plugins/wrapper/test/generated/pascal_wrapped.ml @@ -8,17 +8,17 @@ let __projection_n__001_ __arg0 = { Ortac_runtime.start = { - pos_fname = "pascal.mli"; + pos_fname = "./pascal.mli"; pos_lnum = 10; - pos_bol = 617; - pos_cnum = 617 + pos_bol = 631; + pos_cnum = 631 }; Ortac_runtime.stop = { - pos_fname = "pascal.mli"; + pos_fname = "./pascal.mli"; pos_lnum = 10; - pos_bol = 617; - pos_cnum = 638 + pos_bol = 631; + pos_cnum = 652 } } "__projection_n__001_" in let result = @@ -38,17 +38,17 @@ let __projection_row__002_ __arg0_1 = { Ortac_runtime.start = { - pos_fname = "pascal.mli"; + pos_fname = "./pascal.mli"; pos_lnum = 11; - pos_bol = 639; - pos_cnum = 639 + pos_bol = 653; + pos_cnum = 653 }; Ortac_runtime.stop = { - pos_fname = "pascal.mli"; + pos_fname = "./pascal.mli"; pos_lnum = 11; - pos_bol = 639; - pos_cnum = 694 + pos_bol = 653; + pos_cnum = 708 } } "__projection_row__002_" in let result_1 = @@ -82,17 +82,17 @@ let n __arg0 = { Ortac_runtime.start = { - pos_fname = "pascal.mli"; + pos_fname = "./pascal.mli"; pos_lnum = 10; - pos_bol = 617; - pos_cnum = 617 + pos_bol = 631; + pos_cnum = 631 }; Ortac_runtime.stop = { - pos_fname = "pascal.mli"; + pos_fname = "./pascal.mli"; pos_lnum = 10; - pos_bol = 617; - pos_cnum = 638 + pos_bol = 631; + pos_cnum = 652 } } "n" in Ortac_runtime.Errors.report __error__005_; @@ -113,17 +113,17 @@ let to_list __arg0_1 = { Ortac_runtime.start = { - pos_fname = "pascal.mli"; + pos_fname = "./pascal.mli"; pos_lnum = 11; - pos_bol = 639; - pos_cnum = 639 + pos_bol = 653; + pos_cnum = 653 }; Ortac_runtime.stop = { - pos_fname = "pascal.mli"; + pos_fname = "./pascal.mli"; pos_lnum = 11; - pos_bol = 639; - pos_cnum = 694 + pos_bol = 653; + pos_cnum = 708 } } "to_list" in Ortac_runtime.Errors.report __error__006_; @@ -144,17 +144,17 @@ let init () = { Ortac_runtime.start = { - pos_fname = "pascal.mli"; + pos_fname = "./pascal.mli"; pos_lnum = 12; - pos_bol = 695; - pos_cnum = 695 + pos_bol = 709; + pos_cnum = 709 }; Ortac_runtime.stop = { - pos_fname = "pascal.mli"; + pos_fname = "./pascal.mli"; pos_lnum = 14; - pos_bol = 806; - pos_cnum = 828 + pos_bol = 824; + pos_cnum = 846 } } "init" in Ortac_runtime.Errors.report __error__007_; @@ -190,17 +190,17 @@ let next r_1 = { Ortac_runtime.start = { - pos_fname = "pascal.mli"; + pos_fname = "./pascal.mli"; pos_lnum = 16; - pos_bol = 830; - pos_cnum = 830 + pos_bol = 848; + pos_cnum = 848 }; Ortac_runtime.stop = { - pos_fname = "pascal.mli"; + pos_fname = "./pascal.mli"; pos_lnum = 20; - pos_bol = 1022; - pos_cnum = 1085 + pos_bol = 1044; + pos_cnum = 1107 } } "next" in let ___ortac_copy_1 = Ortac_runtime.copy r_1 in File "plugins/wrapper/test/generated/wrapper_model.expected.ml", line 1, characters 0-0: /usr/bin/git --no-pager diff --no-index --color=always -u _build/default/plugins/wrapper/test/generated/wrapper_model.expected.ml _build/default/plugins/wrapper/test/generated/wrapper_model.ml diff --git a/_build/default/plugins/wrapper/test/generated/wrapper_model.expected.ml b/_build/default/plugins/wrapper/test/generated/wrapper_model.ml index caf72f1..3bf60a9 100644 --- a/_build/default/plugins/wrapper/test/generated/wrapper_model.expected.ml +++ b/_build/default/plugins/wrapper/test/generated/wrapper_model.ml @@ -8,17 +8,17 @@ let __projection_capacity__001_ __arg0 = { Ortac_runtime.start = { - pos_fname = "lib_model.mli"; + pos_fname = "./lib_model.mli"; pos_lnum = 8; - pos_bol = 277; - pos_cnum = 277 + pos_bol = 283; + pos_cnum = 283 }; Ortac_runtime.stop = { - pos_fname = "lib_model.mli"; + pos_fname = "./lib_model.mli"; pos_lnum = 8; - pos_bol = 277; - pos_cnum = 303 + pos_bol = 283; + pos_cnum = 309 } } "__projection_capacity__001_" in let result = @@ -38,17 +38,17 @@ let __projection_view__002_ __arg0_1 = { Ortac_runtime.start = { - pos_fname = "lib_model.mli"; + pos_fname = "./lib_model.mli"; pos_lnum = 9; - pos_bol = 304; - pos_cnum = 304 + pos_bol = 310; + pos_cnum = 310 }; Ortac_runtime.stop = { - pos_fname = "lib_model.mli"; + pos_fname = "./lib_model.mli"; pos_lnum = 9; - pos_bol = 304; - pos_cnum = 330 + pos_bol = 310; + pos_cnum = 336 } } "__projection_view__002_" in let result_1 = @@ -116,17 +116,17 @@ let capacity __arg0 = { Ortac_runtime.start = { - pos_fname = "lib_model.mli"; + pos_fname = "./lib_model.mli"; pos_lnum = 8; - pos_bol = 277; - pos_cnum = 277 + pos_bol = 283; + pos_cnum = 283 }; Ortac_runtime.stop = { - pos_fname = "lib_model.mli"; + pos_fname = "./lib_model.mli"; pos_lnum = 8; - pos_bol = 277; - pos_cnum = 303 + pos_bol = 283; + pos_cnum = 309 } } "capacity" in __invariant___006_ __error__009_ Pre __arg0; @@ -157,17 +157,17 @@ let view __arg0_1 = { Ortac_runtime.start = { - pos_fname = "lib_model.mli"; + pos_fname = "./lib_model.mli"; pos_lnum = 9; - pos_bol = 304; - pos_cnum = 304 + pos_bol = 310; + pos_cnum = 310 }; Ortac_runtime.stop = { - pos_fname = "lib_model.mli"; + pos_fname = "./lib_model.mli"; pos_lnum = 9; - pos_bol = 304; - pos_cnum = 330 + pos_bol = 310; + pos_cnum = 336 } } "view" in __invariant___006_ __error__010_ Pre __arg0_1; @@ -198,17 +198,17 @@ let create c = { Ortac_runtime.start = { - pos_fname = "lib_model.mli"; + pos_fname = "./lib_model.mli"; pos_lnum = 10; - pos_bol = 331; - pos_cnum = 331 + pos_bol = 337; + pos_cnum = 337 }; Ortac_runtime.stop = { - pos_fname = "lib_model.mli"; + pos_fname = "./lib_model.mli"; pos_lnum = 14; - pos_bol = 498; - pos_cnum = 524 + pos_bol = 508; + pos_cnum = 534 } } "create" in if @@ -273,17 +273,17 @@ let is_empty t_3 = { Ortac_runtime.start = { - pos_fname = "lib_model.mli"; + pos_fname = "./lib_model.mli"; pos_lnum = 16; - pos_bol = 526; - pos_cnum = 526 + pos_bol = 536; + pos_cnum = 536 }; Ortac_runtime.stop = { - pos_fname = "lib_model.mli"; + pos_fname = "./lib_model.mli"; pos_lnum = 19; - pos_bol = 667; - pos_cnum = 699 + pos_bol = 681; + pos_cnum = 713 } } "is_empty" in __invariant___006_ __error__012_ Pre t_3; @@ -327,17 +327,17 @@ let mem t_4 x = { Ortac_runtime.start = { - pos_fname = "lib_model.mli"; + pos_fname = "./lib_model.mli"; pos_lnum = 21; - pos_bol = 701; - pos_cnum = 701 + pos_bol = 715; + pos_cnum = 715 }; Ortac_runtime.stop = { - pos_fname = "lib_model.mli"; + pos_fname = "./lib_model.mli"; pos_lnum = 24; - pos_bol = 846; - pos_cnum = 884 + pos_bol = 864; + pos_cnum = 902 } } "mem" in __invariant___006_ __error__013_ Pre t_4; @@ -385,17 +385,17 @@ let clear t_5 = { Ortac_runtime.start = { - pos_fname = "lib_model.mli"; + pos_fname = "./lib_model.mli"; pos_lnum = 26; - pos_bol = 886; - pos_cnum = 886 + pos_bol = 904; + pos_cnum = 904 }; Ortac_runtime.stop = { - pos_fname = "lib_model.mli"; + pos_fname = "./lib_model.mli"; pos_lnum = 29; - pos_bol = 1021; - pos_cnum = 1046 + pos_bol = 1043; + pos_cnum = 1068 } } "clear" in __invariant___006_ __error__014_ Pre t_5; @@ -439,17 +439,17 @@ let add t_6 x_1 = { Ortac_runtime.start = { - pos_fname = "lib_model.mli"; + pos_fname = "./lib_model.mli"; pos_lnum = 31; - pos_bol = 1048; - pos_cnum = 1048 + pos_bol = 1070; + pos_cnum = 1070 }; Ortac_runtime.stop = { - pos_fname = "lib_model.mli"; + pos_fname = "./lib_model.mli"; pos_lnum = 35; - pos_bol = 1246; - pos_cnum = 1287 + pos_bol = 1272; + pos_cnum = 1313 } } "add" in let ___ortac_copy_1 = Ortac_runtime.copy t_6 in @@ -541,17 +541,17 @@ let tail t_7 = { Ortac_runtime.start = { - pos_fname = "lib_model.mli"; + pos_fname = "./lib_model.mli"; pos_lnum = 37; - pos_bol = 1289; - pos_cnum = 1289 + pos_bol = 1315; + pos_cnum = 1315 }; Ortac_runtime.stop = { - pos_fname = "lib_model.mli"; + pos_fname = "./lib_model.mli"; pos_lnum = 42; - pos_bol = 1511; - pos_cnum = 1555 + pos_bol = 1541; + pos_cnum = 1585 } } "tail" in let (___ortac_copy_3, ___ortac_copy_2) = Ortac_runtime.copy (t_7, t_7) in File "plugins/monolith/test/generated/wrapper.expected.ml", line 1, characters 0-0: /usr/bin/git --no-pager diff --no-index --color=always -u _build/default/plugins/monolith/test/generated/wrapper.expected.ml _build/default/plugins/monolith/test/generated/wrapper.ml diff --git a/_build/default/plugins/monolith/test/generated/wrapper.expected.ml b/_build/default/plugins/monolith/test/generated/wrapper.ml index ccf7308..37647de 100644 --- a/_build/default/plugins/monolith/test/generated/wrapper.expected.ml +++ b/_build/default/plugins/monolith/test/generated/wrapper.ml @@ -76,17 +76,17 @@ module R = { Ortac_runtime.start = { - pos_fname = "lib.mli"; + pos_fname = "./lib.mli"; pos_lnum = 9; - pos_bol = 399; - pos_cnum = 399 + pos_bol = 409; + pos_cnum = 409 }; Ortac_runtime.stop = { - pos_fname = "lib.mli"; + pos_fname = "./lib.mli"; pos_lnum = 13; - pos_bol = 585; - pos_cnum = 638 + pos_bol = 599; + pos_cnum = 652 } } "create" in if @@ -171,17 +171,17 @@ module R = { Ortac_runtime.start = { - pos_fname = "lib.mli"; + pos_fname = "./lib.mli"; pos_lnum = 15; - pos_bol = 640; - pos_cnum = 640 + pos_bol = 654; + pos_cnum = 654 }; Ortac_runtime.stop = { - pos_fname = "lib.mli"; + pos_fname = "./lib.mli"; pos_lnum = 20; - pos_bol = 871; - pos_cnum = 926 + pos_bol = 889; + pos_cnum = 944 } } "add" in let ___ortac_copy_1 = Ortac_runtime.copy bv_2 in @@ -268,17 +268,17 @@ module R = { Ortac_runtime.start = { - pos_fname = "lib.mli"; + pos_fname = "./lib.mli"; pos_lnum = 22; - pos_bol = 928; - pos_cnum = 928 + pos_bol = 946; + pos_cnum = 946 }; Ortac_runtime.stop = { - pos_fname = "lib.mli"; + pos_fname = "./lib.mli"; pos_lnum = 25; - pos_bol = 1074; - pos_cnum = 1103 + pos_bol = 1096; + pos_cnum = 1125 } } "mem" in if ./wrapper.exe has been generated with the ortac-monolith plugin. (cd _build/default/plugins/wrapper/test/generated && ./test.exe) Testing `Wrapped lib'. This run has ID `FBBT84XZ'. [OK] lib 0 create is correct. [OK] lib 1 create fails with negativ size. [OK] lib 2 add is correct. [OK] lib 3 add fails with negativ arg. [OK] lib 4 mem fails with negativ arg. [OK] behaviour tests 0 invariant violated hit. [OK] behaviour tests 1 good incrementation. [OK] behaviour tests 2 precondition violated hit. [OK] behaviour tests 3 Int_overflow raised. [OK] behaviour tests 4 checks no hold, Invalid_argument... [OK] behaviour tests 5 postcondition hit. [OK] model tests 0 add model. [OK] pascal tests 0 three nexts. Full test results in `/src/_build/default/plugins/wrapper/test/generated/_build/_tests/Wrapped lib'. Test Successful in 0.001s. 13 tests run. File "plugins/qcheck-stm/test/module_prefix_tests.expected.ml", line 1, characters 0-0: /usr/bin/git --no-pager diff --no-index --color=always -u _build/default/plugins/qcheck-stm/test/module_prefix_tests.expected.ml _build/default/plugins/qcheck-stm/test/module_prefix_tests.ml diff --git a/_build/default/plugins/qcheck-stm/test/module_prefix_tests.expected.ml b/_build/default/plugins/qcheck-stm/test/module_prefix_tests.ml index 3881a3c..cfc6891 100644 --- a/_build/default/plugins/qcheck-stm/test/module_prefix_tests.expected.ml +++ b/_build/default/plugins/qcheck-stm/test/module_prefix_tests.ml @@ -23,17 +23,17 @@ module ModelElt = { Ortac_runtime.start = { - pos_fname = "module_prefix.mli"; + pos_fname = "./module_prefix.mli"; pos_lnum = 6; - pos_bol = 228; - pos_cnum = 250 + pos_bol = 236; + pos_cnum = 258 }; Ortac_runtime.stop = { - pos_fname = "module_prefix.mli"; + pos_fname = "./module_prefix.mli"; pos_lnum = 6; - pos_bol = 228; - pos_cnum = 251 + pos_bol = 236; + pos_cnum = 259 } }))) } @@ -89,17 +89,17 @@ module Spec = { Ortac_runtime.start = { - pos_fname = "module_prefix.mli"; + pos_fname = "./module_prefix.mli"; pos_lnum = 6; - pos_bol = 228; - pos_cnum = 250 + pos_bol = 236; + pos_cnum = 258 }; Ortac_runtime.stop = { - pos_fname = "module_prefix.mli"; + pos_fname = "./module_prefix.mli"; pos_lnum = 6; - pos_bol = 228; - pos_cnum = 251 + pos_bol = 236; + pos_cnum = 259 } }))) } in File "plugins/qcheck-stm/test/submodule_tests.expected.ml", line 1, characters 0-0: /usr/bin/git --no-pager diff --no-index --color=always -u _build/default/plugins/qcheck-stm/test/submodule_tests.expected.ml _build/default/plugins/qcheck-stm/test/submodule_tests.ml diff --git a/_build/default/plugins/qcheck-stm/test/submodule_tests.expected.ml b/_build/default/plugins/qcheck-stm/test/submodule_tests.ml index c7b6bc5..1157b89 100644 --- a/_build/default/plugins/qcheck-stm/test/submodule_tests.expected.ml +++ b/_build/default/plugins/qcheck-stm/test/submodule_tests.ml @@ -23,17 +23,17 @@ module ModelElt = { Ortac_runtime.start = { - pos_fname = "submodule.mli"; + pos_fname = "./submodule.mli"; pos_lnum = 7; - pos_bol = 241; - pos_cnum = 265 + pos_bol = 249; + pos_cnum = 273 }; Ortac_runtime.stop = { - pos_fname = "submodule.mli"; + pos_fname = "./submodule.mli"; pos_lnum = 7; - pos_bol = 241; - pos_cnum = 266 + pos_bol = 249; + pos_cnum = 274 } }))) } @@ -89,17 +89,17 @@ module Spec = { Ortac_runtime.start = { - pos_fname = "submodule.mli"; + pos_fname = "./submodule.mli"; pos_lnum = 7; - pos_bol = 241; - pos_cnum = 265 + pos_bol = 249; + pos_cnum = 273 }; Ortac_runtime.stop = { - pos_fname = "submodule.mli"; + pos_fname = "./submodule.mli"; pos_lnum = 7; - pos_bol = 241; - pos_cnum = 266 + pos_bol = 249; + pos_cnum = 274 } }))) } in File "plugins/qcheck-stm/test/all_warnings_errors.expected", line 1, characters 0-0: /usr/bin/git --no-pager diff --no-index --color=always -u _build/default/plugins/qcheck-stm/test/all_warnings_errors.expected _build/default/plugins/qcheck-stm/test/all_warnings_errors diff --git a/_build/default/plugins/qcheck-stm/test/all_warnings_errors.expected b/_build/default/plugins/qcheck-stm/test/all_warnings_errors index 7812085..e7196fc 100644 --- a/_build/default/plugins/qcheck-stm/test/all_warnings_errors.expected +++ b/_build/default/plugins/qcheck-stm/test/all_warnings_errors @@ -1,15 +1,15 @@ -File "all_warnings_config.ml", line 9, characters 2-18: +File "./all_warnings_config.ml", line 9, characters 2-18: 9 | let lenght = bob ^^^^^^^^^^^^^^^^ Warning: Ill formed weight configuration is ignored. Weight should be configured as follow: let <function_name> = int litteral>. -File "all_warnings.mli", line 12, characters 0-52: +File "./all_warnings.mli", line 12, characters 0-52: 12 | val constant : unit 13 | (*@ constant 14 | ensures true *) Warning: Skipping constant: constants cannot be tested. -File "all_warnings.mli", line 17, characters 3-24: +File "./all_warnings.mli", line 17, characters 3-24: 17 | (*@ t = returning_sut a *) ^^^^^^^^^^^^^^^^^^^^^ Warning: Skipping returning_sut: the specification of the function does not @@ -17,35 +17,35 @@ Warning: Skipping returning_sut: the specification of the function does not Specifications should contain at least one "ensures x.contents = expr" where x is the returned SUT and expr can refer to other SUTs only under an old operator. -File "all_warnings.mli", line 22, characters 24-29: +File "./all_warnings.mli", line 22, characters 24-29: 22 | val incompatible_type : int t -> bool ^^^^^ Warning: Skipping incompatible_type: the type of its SUT-type argument is incompatible with the configured SUT type: char t. -File "all_warnings.mli", line 25, characters 0-26: +File "./all_warnings.mli", line 25, characters 0-26: 25 | val no_spec : 'a t -> bool ^^^^^^^^^^^^^^^^^^^^^^^^^^ Warning: Skipping no_spec: functions without specifications cannot be tested. -File "all_warnings.mli", line 40, characters 3-37: +File "./all_warnings.mli", line 40, characters 3-37: 40 | ('a -> 'a -> 'a -> 'a -> 'a -> bool) -> 'a t -> bool ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Warning: Skipping functional_argument_arity: Can only test function arguments with arity < 5. -File "all_warnings.mli", line 44, characters 3-35: +File "./all_warnings.mli", line 44, characters 3-35: 44 | ('a -> ('a -> 'a -> bool) -> bool) -> 'a t -> bool ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Warning: Third-order functions and above are not supported in functional_argument_third_order. -File "all_warnings.mli", line 48, characters 24-25: +File "./all_warnings.mli", line 48, characters 24-25: 48 | (*@ b = ghost_argument [x : bool] t *) ^ Warning: Skipping ghost_argument: functions with a ghost argument are not supported. -File "all_warnings.mli", line 51, characters 6-7: +File "./all_warnings.mli", line 51, characters 6-7: 51 | (*@ [ x : bool ], b = ghost_returned_value t *) ^ Warning: Skipping ghost_returned_value: functions with a ghost returned value are not supported. -File "all_warnings.mli", line 34, characters 13-23: +File "./all_warnings.mli", line 34, characters 13-23: 34 | modifies t.contents *) ^^^^^^^^^^ Warning: Skipping ensures_not_found_for_next_state: model contents is @@ -53,7 +53,7 @@ Warning: Skipping ensures_not_found_for_next_state: model contents is was found. Specifications should contain at least one "ensures x.contents = expr" where x is the SUT and expr can refer to the SUT only under an old operator and can't refer to the returned value. -File "all_warnings.mli", line 66, characters 13-23: +File "./all_warnings.mli", line 66, characters 13-23: 66 | modifies t.contents ^^^^^^^^^^ Warning: Skipping term_refer_to_returned_value_next_state: model contents is @@ -61,33 +61,33 @@ Warning: Skipping term_refer_to_returned_value_next_state: model contents is was found. Specifications should contain at least one "ensures x.contents = expr" where x is the SUT and expr can refer to the SUT only under an old operator and can't refer to the returned value. -File "all_warnings.mli", line 19, characters 0-85: +File "./all_warnings.mli", line 19, characters 0-85: 19 | val multiple_sut_argument : 'a t -> 'a t -> bool 20 | (*@ b = multiple_sut_argument x y *) Warning: Incomplete computation of the returned value in the specification of multiple_sut_argument. Failure message won't be able to display the expected returned value. -File "all_warnings.mli", line 36, characters 0-66: +File "./all_warnings.mli", line 36, characters 0-66: 36 | val type_not_supported : 'a t -> s 37 | (*@ s = type_not_supported t *) Warning: Incomplete computation of the returned value in the specification of type_not_supported. Failure message won't be able to display the expected returned value. -File "all_warnings.mli", line 53, characters 0-144: +File "./all_warnings.mli", line 53, characters 0-144: 53 | val unsupported_quantification : 'a t -> bool 54 | (*@ b = unsupported_quantification t 55 | ensures b = forall a. Sequence.mem a t.contents -> p a *) Warning: Incomplete computation of the returned value in the specification of unsupported_quantification. Failure message won't be able to display the expected returned value. -File "all_warnings.mli", line 55, characters 16-58: +File "./all_warnings.mli", line 55, characters 16-58: 55 | ensures b = forall a. Sequence.mem a t.contents -> p a *) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Warning: Skipping clause: unsupported quantification. -File "all_warnings.mli", line 57, characters 0-111: +File "./all_warnings.mli", line 57, characters 0-111: 57 | val record_not_model_field : 'a t -> bool 58 | (*@ b = record_not_model_field t 59 | requires Array.length t.v > 0 *) Warning: Incomplete computation of the returned value in the specification of record_not_model_field. Failure message won't be able to display the expected returned value. -File "all_warnings.mli", line 61, characters 0-67: +File "./all_warnings.mli", line 61, characters 0-67: 61 | val return_tuple : 'a t -> 'a * bool 62 | (*@ (a, b) = return_tuple t *) Warning: Incomplete computation of the returned value in the specification of return_tuple. Failure message won't be able to display the expected returned value. -File "all_warnings.mli", line 64, characters 0-278: +File "./all_warnings.mli", line 64, characters 0-278: 64 | val term_refer_to_returned_value_next_state : 'a t -> 'a option 65 | (*@ o = term_refer_to_returned_value_next_state t 66 | modifies t.contents @@ -95,16 +95,16 @@ File "all_warnings.mli", line 64, characters 0-278: 68 | | None -> old t.contents 69 | | Some _ -> old t.contents *) Warning: Incomplete computation of the returned value in the specification of term_refer_to_returned_value_next_state. Failure message won't be able to display the expected returned value. -File "all_warnings.mli", line 59, characters 26-29: +File "./all_warnings.mli", line 59, characters 26-29: 59 | requires Array.length t.v > 0 *) ^^^ Warning: Skipping clause: occurrences of the SUT in clauses are only supported to access its model fields. -File "all_warnings_config.ml", line 8, characters 6-9: +File "./all_warnings_config.ml", line 8, characters 6-9: 8 | let bob = 42 ^^^ Warning: Unused weight from configuration file: bob. -File "all_warnings_config.ml", line 10, characters 6-14: +File "./all_warnings_config.ml", line 10, characters 6-14: 10 | let constant = 42 ^^^^^^^^ Warning: Unused weight from configuration file: constant. File "plugins/qcheck-stm/test/submodule_and_prefix_tests.expected.ml", line 1, characters 0-0: /usr/bin/git --no-pager diff --no-index --color=always -u _build/default/plugins/qcheck-stm/test/submodule_and_prefix_tests.expected.ml _build/default/plugins/qcheck-stm/test/submodule_and_prefix_tests.ml diff --git a/_build/default/plugins/qcheck-stm/test/submodule_and_prefix_tests.expected.ml b/_build/default/plugins/qcheck-stm/test/submodule_and_prefix_tests.ml index 83037b6..ef372f5 100644 --- a/_build/default/plugins/qcheck-stm/test/submodule_and_prefix_tests.expected.ml +++ b/_build/default/plugins/qcheck-stm/test/submodule_and_prefix_tests.ml @@ -23,17 +23,17 @@ module ModelElt = { Ortac_runtime.start = { - pos_fname = "submodule_and_prefix.mli"; + pos_fname = "./submodule_and_prefix.mli"; pos_lnum = 7; - pos_bol = 285; - pos_cnum = 309 + pos_bol = 293; + pos_cnum = 317 }; Ortac_runtime.stop = { - pos_fname = "submodule_and_prefix.mli"; + pos_fname = "./submodule_and_prefix.mli"; pos_lnum = 7; - pos_bol = 285; - pos_cnum = 310 + pos_bol = 293; + pos_cnum = 318 } }))) } @@ -89,17 +89,17 @@ module Spec = { Ortac_runtime.start = { - pos_fname = "submodule_and_prefix.mli"; + pos_fname = "./submodule_and_prefix.mli"; pos_lnum = 7; - pos_bol = 285; - pos_cnum = 309 + pos_bol = 293; + pos_cnum = 317 }; Ortac_runtime.stop = { - pos_fname = "submodule_and_prefix.mli"; + pos_fname = "./submodule_and_prefix.mli"; pos_lnum = 7; - pos_bol = 285; - pos_cnum = 310 + pos_bol = 293; + pos_cnum = 318 } }))) } in ./module_prefix_tests.exe has been generated with the ortac-qcheck-stm plugin. ./submodule_tests.exe has been generated with the ortac-qcheck-stm plugin. ./submodule_and_prefix_tests.exe has been generated with the ortac-qcheck-stm plugin. (cd _build/default/plugins/wrapper/test/suite && ./test.exe) Testing `Ortac'. This run has ID `6BAI35KD'. [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 value purity. Full test results in `/src/_build/default/plugins/wrapper/test/suite/_build/_tests/Ortac'. Test Successful in 0.020s. 31 tests run. (cd _build/default && /usr/bin/timeout -s INT -k 3 20 test/runtime/stdlibset.exe) 1K tests run so far ( 59K/s overall, 591K/s now) (fuel = 20). 66K tests run so far ( 64K/s overall, 72K/s now) (fuel = 20). 131K tests run so far ( 64K/s overall, 72K/s now) (fuel = 20). 196K tests run so far ( 64K/s overall, 71K/s now) (fuel = 20). 261K tests run so far ( 64K/s overall, 71K/s now) (fuel = 20). 326K tests run so far ( 64K/s overall, 71K/s now) (fuel = 20). 391K tests run so far ( 64K/s overall, 72K/s now) (fuel = 20). 456K tests run so far ( 64K/s overall, 72K/s now) (fuel = 20). 522K tests run so far ( 64K/s overall, 72K/s now) (fuel = 20). 588K tests run so far ( 64K/s overall, 72K/s now) (fuel = 20). 654K tests run so far ( 64K/s overall, 72K/s now) (fuel = 20). 720K tests run so far ( 64K/s overall, 72K/s now) (fuel = 20). 786K tests run so far ( 64K/s overall, 72K/s now) (fuel = 20). 851K tests run so far ( 64K/s overall, 72K/s now) (fuel = 20). 916K tests run so far ( 64K/s overall, 71K/s now) (fuel = 20). 981K tests run so far ( 64K/s overall, 72K/s now) (fuel = 20). 1M tests run so far ( 64K/s overall, 71K/s now) (fuel = 20). 1M tests run so far ( 64K/s overall, 72K/s now) (fuel = 20). 1M tests run so far ( 64K/s overall, 72K/s now) (fuel = 20). 1M tests run so far ( 64K/s overall, 69K/s now) (fuel = 20). ./integer_in_model_stm_tests.exe has been generated with the ortac-qcheck-stm plugin. ./ghost_as_model_stm_tests.exe has been generated with the ortac-qcheck-stm plugin. ./ref_stm_tests.exe has been generated with the ortac-qcheck-stm plugin. ./test_cleanup_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. ./record_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. ./functional_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. ./invariants_stm_tests.exe has been generated with the ortac-qcheck-stm plugin. ./stack_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. ./test_without_sut_stm_tests.exe has been generated with the ortac-qcheck-stm plugin. ./function_args_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. ./custom_config_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. ./array_stm_tests.exe has been generated with the ortac-qcheck-stm plugin. "/usr/bin/env" "bash" "-c" "opam exec -- dune build --only-packages=ortac-wrapper,ortac-runtime,ortac-runtime-qcheck-stm,ortac-runtime-monolith,ortac-qcheck-stm,ortac-monolith,ortac-dune,ortac-core @install @check @runtest && rm -rf _build" failed with exit status 1 2026-07-02 14:32.08: Job failed: Failed: Build failed