(for PR #29222)

2026-01-19 20:51.33: New job: test dolmen.0.10, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29222/head (ad79ca9644feb512edcb7b55f7521e075b88d976)
                              on ubuntu-25.10-ocaml-5.4/amd64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29222/head" && git reset --hard ad79ca96
git fetch origin master
git merge --no-edit 1c997ec9e6ebc6ea699547000cb8dfa44e52efaa
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:ubuntu-25.10-ocaml-5.4@sha256:de3d7e2600224a83921db191ba1a75b24e34caf2d67f4c7716742b7e62724f10
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn dolmen.0.10 0.10
RUN opam reinstall dolmen.0.10; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"ubuntu-25.10\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'dolmen.0.10' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test dolmen.0.10) || true
RUN opam reinstall --with-test --verbose dolmen.0.10; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"ubuntu-25.10\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'dolmen.0.10' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

END-OF-DOCKERFILE
docker build -f ../Dockerfile .

2026-01-19 20:51.33: Using cache hint "ocaml/opam:ubuntu-25.10-ocaml-5.4@sha256:de3d7e2600224a83921db191ba1a75b24e34caf2d67f4c7716742b7e62724f10-dolmen.0.10-ad79ca9644feb512edcb7b55f7521e075b88d976"
2026-01-19 20:51.33: Using OBuilder spec:
((from ocaml/opam:ubuntu-25.10-ocaml-5.4@sha256:de3d7e2600224a83921db191ba1a75b24e34caf2d67f4c7716742b7e62724f10)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -ni"))
 (run (shell "opam option solver=builtin-0install && opam config report"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMPRECISETRACKING 1)
 (env CI true)
 (env OPAM_REPO_CI true)
 (run (shell "rm -rf opam-repository/"))
 (copy (src .) (dst opam-repository/))
 (run (shell "opam repository set-url --strict default opam-repository/"))
 (run (network host)
      (shell "opam update --depexts || true"))
 (run (shell "opam pin add -k version -yn dolmen.0.10 0.10"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dolmen.0.10;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"ubuntu-25.10\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'dolmen.0.10' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test dolmen.0.10) || true"))
 (run (shell  "opam reinstall --with-test --verbose dolmen.0.10;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"ubuntu-25.10\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'dolmen.0.10' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-01-19 20:51.33: Waiting for resource in pool OCluster
2026-01-19 21:57.27: Waiting for worker…
2026-01-19 21:59.01: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
HEAD is now at 1c997ec9e6 Merge pull request #29241 from polytypic/release-multicore-magic-2.3.2
Updating 1c997ec9e6..ad79ca9644
Fast-forward
 packages/archetype/archetype.0.1.10/opam                     |  2 +-
 packages/archetype/archetype.0.1.11/opam                     |  2 +-
 packages/archetype/archetype.0.1.12/opam                     |  2 +-
 packages/archetype/archetype.0.1.13/opam                     |  2 +-
 packages/archetype/archetype.0.1.14/opam                     |  2 +-
 packages/archetype/archetype.0.1.3/opam                      |  2 +-
 packages/archetype/archetype.0.1.4/opam                      |  2 +-
 packages/archetype/archetype.0.1.5/opam                      |  2 +-
 packages/archetype/archetype.0.1.6/opam                      |  2 +-
 packages/archetype/archetype.0.1.8/opam                      |  2 +-
 packages/archetype/archetype.0.1.9/opam                      |  2 +-
 packages/archetype/archetype.1.0.0/opam                      |  2 +-
 packages/archetype/archetype.1.1.0/opam                      |  2 +-
 packages/archetype/archetype.1.1.1/opam                      |  2 +-
 packages/archetype/archetype.1.1.2/opam                      |  2 +-
 packages/archetype/archetype.1.2.0/opam                      |  2 +-
 packages/archetype/archetype.1.2.1/opam                      |  2 +-
 packages/archetype/archetype.1.2.10/opam                     |  2 +-
 packages/archetype/archetype.1.2.11/opam                     |  2 +-
 packages/archetype/archetype.1.2.12/opam                     |  2 +-
 packages/archetype/archetype.1.2.13/opam                     |  2 +-
 packages/archetype/archetype.1.2.14/opam                     |  2 +-
 packages/archetype/archetype.1.2.15/opam                     |  2 +-
 packages/archetype/archetype.1.2.16/opam                     |  2 +-
 packages/archetype/archetype.1.2.2/opam                      |  2 +-
 packages/archetype/archetype.1.2.3/opam                      |  2 +-
 packages/archetype/archetype.1.2.4/opam                      |  2 +-
 packages/archetype/archetype.1.2.5/opam                      |  2 +-
 packages/archetype/archetype.1.2.6/opam                      |  2 +-
 packages/archetype/archetype.1.2.7/opam                      |  2 +-
 packages/archetype/archetype.1.2.8/opam                      |  2 +-
 packages/archetype/archetype.1.2.9/opam                      |  2 +-
 packages/archetype/archetype.1.3.0/opam                      |  2 +-
 packages/archetype/archetype.1.3.1/opam                      |  2 +-
 packages/archetype/archetype.1.3.2/opam                      |  2 +-
 packages/archetype/archetype.1.3.3/opam                      |  2 +-
 packages/archetype/archetype.1.3.4/opam                      |  2 +-
 packages/archetype/archetype.1.3.5/opam                      |  2 +-
 packages/archetype/archetype.1.3.6/opam                      |  2 +-
 packages/archetype/archetype.1.4.0/opam                      |  2 +-
 packages/archetype/archetype.1.4.1/opam                      |  2 +-
 packages/archetype/archetype.1.4.2/opam                      |  2 +-
 packages/archetype/archetype.1.4.3/opam                      |  2 +-
 packages/archetype/archetype.1.5.0/opam                      |  2 +-
 packages/archetype/archetype.1.5.1/opam                      |  2 +-
 packages/archetype/archetype.1.5.2/opam                      |  2 +-
 packages/archetype/archetype.1.5.3/opam                      |  2 +-
 packages/bnfgen/bnfgen.4.0.0/opam                            |  2 +-
 packages/catala/catala.0.10.0/opam                           |  2 +-
 packages/catala/catala.0.3.0/opam                            |  2 +-
 packages/catala/catala.0.5.0/opam                            |  2 +-
 packages/catala/catala.0.6.0/opam                            |  2 +-
 packages/catala/catala.0.7.0/opam                            |  2 +-
 packages/catala/catala.0.8.0/opam                            |  2 +-
 packages/catala/catala.0.9.0/opam                            |  2 +-
 packages/catala/catala.1.0.0/opam                            |  2 +-
 packages/catala/catala.1.0.0~alpha/opam                      |  2 +-
 packages/catala/catala.1.0.0~beta/opam                       |  2 +-
 packages/dolmen/dolmen.0.1/opam                              |  2 +-
 packages/dolmen/dolmen.0.10/opam                             |  2 +-
 packages/dolmen/dolmen.0.2/opam                              |  2 +-
 packages/dolmen/dolmen.0.4.1/opam                            |  2 +-
 packages/dolmen/dolmen.0.4/opam                              |  2 +-
 packages/dolmen/dolmen.0.5/opam                              |  2 +-
 packages/dolmen/dolmen.0.6/opam                              |  4 ++--
 packages/dolmen/dolmen.0.7/opam                              |  2 +-
 packages/dolmen/dolmen.0.8.1/opam                            |  2 +-
 packages/dolmen/dolmen.0.8/opam                              |  2 +-
 packages/dolmen/dolmen.0.9/opam                              |  2 +-
 .../embedded_ocaml_templates.0.1.4/opam                      | 12 ++++++------
 .../embedded_ocaml_templates.0.2/opam                        | 12 ++++++------
 .../embedded_ocaml_templates.0.3.1/opam                      |  8 ++++----
 .../embedded_ocaml_templates.0.4/opam                        | 10 +++++-----
 .../embedded_ocaml_templates.0.5.1/opam                      | 10 +++++-----
 .../embedded_ocaml_templates.0.6/opam                        |  2 +-
 .../embedded_ocaml_templates.0.7/opam                        |  2 +-
 packages/morbig/morbig.0.10.3/opam                           |  2 +-
 packages/morbig/morbig.0.10.4/opam                           |  2 +-
 packages/morbig/morbig.0.11.0/opam                           |  2 +-
 packages/morbig/morbig.0.9.1/opam                            |  2 +-
 packages/morbig/morbig.0.9/opam                              |  2 +-
 packages/otoml/otoml.0.9.0/opam                              |  2 +-
 packages/otoml/otoml.0.9.1/opam                              |  2 +-
 packages/otoml/otoml.0.9.2/opam                              |  2 +-
 packages/otoml/otoml.0.9.3/opam                              |  2 +-
 packages/otoml/otoml.1.0.0/opam                              |  2 +-
 packages/otoml/otoml.1.0.1/opam                              |  2 +-
 packages/otoml/otoml.1.0.2/opam                              |  2 +-
 packages/otoml/otoml.1.0.3/opam                              |  2 +-
 packages/otoml/otoml.1.0.4/opam                              |  2 +-
 packages/otoml/otoml.1.0.5/opam                              |  2 +-
 packages/touist/touist.3.0.0/opam                            |  2 +-
 packages/touist/touist.3.1.0/opam                            |  2 +-
 packages/touist/touist.3.2.0/opam                            |  2 +-
 packages/touist/touist.3.2.1/opam                            |  2 +-
 packages/touist/touist.3.5.0/opam                            |  2 +-
 packages/unionFind/unionFind.20250818/opam                   |  2 +-
 97 files changed, 119 insertions(+), 119 deletions(-)

(from ocaml/opam:ubuntu-25.10-ocaml-5.4@sha256:de3d7e2600224a83921db191ba1a75b24e34caf2d67f4c7716742b7e62724f10)
2026-01-19 21:59.25 ---> saved as "fa736ed3aa59c3db58c7666b24a0e7b6d49ea2953c293b8dd0761dc2de6cc30b"

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-01-19 21:59.25 ---> saved as "7ca787a2e0927f4b79cf12d85fa8ddfe545f822edcd9281a34551031740001be"

/home/opam: (run (network host)
                 (shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally 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.2, which can't be reverted.
You may want to back it up before going further.

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

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-01-19 21:59.50 ---> saved as "4aaf27a92cca8460e82141170fd44557afcdd9bcdead90ecb32613ed6e5a8def"

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=ubuntu os-version=25.10
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.4
# invariant            ["ocaml-base-compiler" {>= "5.4.0"}]
# compiler-packages    ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.0
2026-01-19 21:59.51 ---> saved as "49cd0d094234f1ce2a175c1c45742d51d6cc355058c32e9b570897dd78708dbd"

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2026-01-19 22:00.02 ---> saved as "4b45d641540045e77f00de735aa8da38f669394a406f47ce16a67e77b2830995"

/home/opam: (copy (src .) (dst opam-repository/))
2026-01-19 22:00.30 ---> saved as "201c788d718dbda587176149db4b862f3506c26a8d409ad1bec79708d4ca9bdf"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-19 22:00.49 ---> saved as "7fdef79dc594b3641e85abf42848c2401a44e9da672017db3e1693ba5aa67820"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://security.ubuntu.com/ubuntu questing-security InRelease [136 kB]
- Hit:2 http://archive.ubuntu.com/ubuntu questing InRelease
- Get:3 http://archive.ubuntu.com/ubuntu questing-updates InRelease [136 kB]
- Get:4 http://security.ubuntu.com/ubuntu questing-security/main amd64 Packages [181 kB]
- Get:5 http://archive.ubuntu.com/ubuntu questing-backports InRelease [133 kB]
- Get:6 http://security.ubuntu.com/ubuntu questing-security/universe amd64 Packages [117 kB]
- Get:7 http://archive.ubuntu.com/ubuntu questing-updates/universe amd64 Packages [171 kB]
- Get:8 http://archive.ubuntu.com/ubuntu questing-updates/main amd64 Packages [302 kB]
- Fetched 1175 kB in 1s (1376 kB/s)
- Reading package lists...
- 
2026-01-19 22:00.52 ---> saved as "866c5fb1b9d1018153afdb856037b8757c84166715f3ddd8f3109b9f8e08c57a"

/home/opam: (run (shell "opam pin add -k version -yn dolmen.0.10 0.10"))
dolmen is now pinned to version 0.10
2026-01-19 22:00.53 ---> saved as "2f35cbe8f2b530c8c457e118ad3361b2453e096f8d064573f1fe6ee95ff1cc7c"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dolmen.0.10;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"ubuntu-25.10\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'dolmen.0.10' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
dolmen.0.10 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 12 packages
  - install dolmen     0.10 (pinned)
  - install dune       3.21.0        [required by dolmen]
  - install fmt        0.11.0        [required by dolmen]
  - install hmap       0.8.1         [required by dolmen]
  - install menhir     20250912      [required by dolmen]
  - install menhirCST  20250912      [required by menhir]
  - install menhirLib  20250912      [required by menhir]
  - install menhirSdk  20250912      [required by menhir]
  - install ocamlbuild 0.16.1        [required by fmt, hmap]
  - install ocamlfind  1.9.8         [required by fmt, hmap]
  - install seq        base          [required by dolmen]
  - install topkg      1.1.1         [required by fmt, hmap]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dolmen.0.10  (cached)
-> retrieved dune.3.21.0  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved hmap.0.8.1  (cached)
-> retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> retrieved topkg.1.1.1  (cached)
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed hmap.0.8.1
-> installed fmt.0.11.0
-> installed dune.3.21.0
-> installed menhirCST.20250912
-> installed menhirSdk.20250912
-> installed menhirLib.20250912
-> installed menhir.20250912
-> installed dolmen.0.10
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-19 22:02.00 ---> saved as "6734481f79d92151978f288bc29d7df86e4622e306dfe66e4b49ae5af63ffb74"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test dolmen.0.10) || true"))
The following actions will be performed:
=== recompile 2 packages
  - recompile dolmen        0.10 (pinned)
  - recompile fmt           0.11.0        [uses cmdliner]
=== install 15 packages
  - install   astring       0.8.5         [required by mdx]
  - install   camlp-streams 5.0.1         [required by mdx]
  - install   cmdliner      2.1.0         [required by mdx]
  - install   cppo          1.8.0         [required by mdx]
  - install   csexp         1.5.2         [required by mdx]
  - install   logs          0.10.0        [required by mdx]
  - install   mdx           2.5.1         [required by dolmen]
  - install   ocaml-version 4.0.3         [required by mdx]
  - install   ounit2        2.2.7         [required by qcheck-ounit]
  - install   qcheck        0.91          [required by dolmen]
  - install   qcheck-core   0.91          [required by qcheck]
  - install   qcheck-ounit  0.91          [required by qcheck]
  - install   re            1.14.0        [required by mdx]
  - install   result        1.5           [required by mdx]
  - install   stdlib-shims  0.3.0         [required by ounit2]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved astring.0.8.5  (https://opam.ocaml.org/cache)
-> retrieved camlp-streams.5.0.1  (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.0  (https://opam.ocaml.org/cache)
-> retrieved cppo.1.8.0  (https://opam.ocaml.org/cache)
-> retrieved csexp.1.5.2  (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0  (https://opam.ocaml.org/cache)
-> retrieved logs.0.10.0  (https://opam.ocaml.org/cache)
-> installed camlp-streams.5.0.1
-> installed csexp.1.5.2
-> retrieved mdx.2.5.1  (https://opam.ocaml.org/cache)
-> retrieved ocaml-version.4.0.3  (https://opam.ocaml.org/cache)
-> retrieved ounit2.2.2.7  (https://opam.ocaml.org/cache)
-> retrieved qcheck.0.91, qcheck-core.0.91, qcheck-ounit.0.91  (https://opam.ocaml.org/cache)
-> installed ocaml-version.4.0.3
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> retrieved result.1.5  (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0  (https://opam.ocaml.org/cache)
-> installed result.1.5
-> installed cppo.1.8.0
-> installed stdlib-shims.0.3.0
-> installed astring.0.8.5
-> installed re.1.14.0
-> installed ounit2.2.2.7
-> installed qcheck-core.0.91
-> installed qcheck-ounit.0.91
-> installed qcheck.0.91
-> removed   dolmen.0.10
-> removed   fmt.0.11.0
-> installed cmdliner.2.1.0
-> installed fmt.0.11.0
-> installed logs.0.10.0
-> installed mdx.2.5.1
-> installed dolmen.0.10
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-19 22:03.17 ---> saved as "71578a6ecab84ce396b6b648760a4508bc7c12bbf61d5204839da411089e17b7"

/home/opam: (run (shell  "opam reinstall --with-test --verbose dolmen.0.10;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"ubuntu-25.10\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'dolmen.0.10' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
The following actions will be performed:
=== recompile 1 package
  - recompile dolmen 0.10 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [dolmen: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "dolmen" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/dolmen.0.10)
- (cd _build/default/src/languages/dimacs && /home/opam/.opam/5.4/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --update-errors syntax.messages) > _build/default/src/languages/dimacs/updated.messages
- Read 18 sample input sentences and 18 error messages.
- (cd _build/default/src/languages/icnf && /home/opam/.opam/5.4/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --update-errors syntax.messages) > _build/default/src/languages/icnf/updated.messages
- Read 20 sample input sentences and 20 error messages.
- (cd _build/default/src/languages/zf && /home/opam/.opam/5.4/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --update-errors syntax.messages) > _build/default/src/languages/zf/updated.messages
- Read 128 sample input sentences and 128 error messages.
- (cd _build/default/src/languages/smtlib2/v2.6/response && /home/opam/.opam/5.4/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --update-errors syntax.messages) > _build/default/src/languages/smtlib2/v2.6/response/updated.messages
- Read 109 sample input sentences and 109 error messages.
- (cd _build/default/src/languages/icnf && /home/opam/.opam/5.4/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --merge-errors new.messages --merge-errors updated.messages) > _build/default/src/languages/icnf/syntax.messages.updated
- Read 20 sample input sentences and 20 error messages.
- Read 20 sample input sentences and 20 error messages.
- (cd _build/default/src/languages/dimacs && /home/opam/.opam/5.4/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --merge-errors new.messages --merge-errors updated.messages) > _build/default/src/languages/dimacs/syntax.messages.updated
- Read 18 sample input sentences and 18 error messages.
- Read 18 sample input sentences and 18 error messages.
- (cd _build/default/src/languages/smtlib2/poly && /home/opam/.opam/5.4/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --update-errors syntax.messages) > _build/default/src/languages/smtlib2/poly/updated.messages
- Read 321 sample input sentences and 321 error messages.
- (cd _build/default/src/languages/smtlib2/v2.6/script && /home/opam/.opam/5.4/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --update-errors syntax.messages) > _build/default/src/languages/smtlib2/v2.6/script/updated.messages
- Read 255 sample input sentences and 255 error messages.
- (cd _build/default/src/languages/smtlib2/v2.6/response && /home/opam/.opam/5.4/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --merge-errors new.messages --merge-errors updated.messages) > _build/default/src/languages/smtlib2/v2.6/response/syntax.messages.updated
- Read 109 sample input sentences and 109 error messages.
- Read 109 sample input sentences and 109 error messages.
- (cd _build/default/src/languages/ae && /home/opam/.opam/5.4/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --update-errors syntax.messages) > _build/default/src/languages/ae/updated.messages
- Read 241 sample input sentences and 241 error messages.
- (cd _build/default/src/languages/zf && /home/opam/.opam/5.4/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --merge-errors new.messages --merge-errors updated.messages) > _build/default/src/languages/zf/syntax.messages.updated
- Read 128 sample input sentences and 128 error messages.
- Read 128 sample input sentences and 128 error messages.
- (cd _build/default/src/languages/tptp/v6.3.0 && /home/opam/.opam/5.4/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --update-errors syntax.messages) > _build/default/src/languages/tptp/v6.3.0/updated.messages
- Read 342 sample input sentences and 342 error messages.
- (cd _build/default/src/languages/smtlib2/v2.6/script && /home/opam/.opam/5.4/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --merge-errors new.messages --merge-errors updated.messages) > _build/default/src/languages/smtlib2/v2.6/script/syntax.messages.updated
- Read 255 sample input sentences and 255 error messages.
- Read 255 sample input sentences and 255 error messages.
- (cd _build/default/src/languages/smtlib2/poly && /home/opam/.opam/5.4/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --merge-errors new.messages --merge-errors updated.messages) > _build/default/src/languages/smtlib2/poly/syntax.messages.updated
- Read 321 sample input sentences and 321 error messages.
- Read 321 sample input sentences and 321 error messages.
- (cd _build/default/src/languages/dimacs && /home/opam/.opam/5.4/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --compile-errors syntax.messages) > _build/default/src/languages/dimacs/syntax_messages.ml
- Read 18 sample input sentences and 18 error messages.
- (cd _build/default/src/languages/icnf && /home/opam/.opam/5.4/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --compile-errors syntax.messages) > _build/default/src/languages/icnf/syntax_messages.ml
- Read 20 sample input sentences and 20 error messages.
- (cd _build/default/src/languages/smtlib2/v2.6/response && /home/opam/.opam/5.4/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --compile-errors syntax.messages) > _build/default/src/languages/smtlib2/v2.6/response/syntax_messages.ml
- Read 109 sample input sentences and 109 error messages.
- (cd _build/default/src/languages/zf && /home/opam/.opam/5.4/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --compile-errors syntax.messages) > _build/default/src/languages/zf/syntax_messages.ml
- Read 128 sample input sentences and 128 error messages.
- (cd _build/default/src/languages/smtlib2/poly && /home/opam/.opam/5.4/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --compile-errors syntax.messages) > _build/default/src/languages/smtlib2/poly/syntax_messages.ml
- Read 321 sample input sentences and 321 error messages.
- (cd _build/default/src/languages/smtlib2/v2.6/script && /home/opam/.opam/5.4/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --compile-errors syntax.messages) > _build/default/src/languages/smtlib2/v2.6/script/syntax_messages.ml
- Read 255 sample input sentences and 255 error messages.
- (cd _build/default/src/languages/ae && /home/opam/.opam/5.4/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --compile-errors syntax.messages) > _build/default/src/languages/ae/syntax_messages.ml
- Read 241 sample input sentences and 241 error messages.
- (cd _build/default/src/languages/ae && /home/opam/.opam/5.4/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --merge-errors new.messages --merge-errors updated.messages) > _build/default/src/languages/ae/syntax.messages.updated
- Read 241 sample input sentences and 241 error messages.
- Read 241 sample input sentences and 241 error messages.
- (cd _build/default/src/languages/tptp/v6.3.0 && /home/opam/.opam/5.4/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --compile-errors syntax.messages) > _build/default/src/languages/tptp/v6.3.0/syntax_messages.ml
- Read 342 sample input sentences and 342 error messages.
- (cd _build/default/src/languages/tptp/v6.3.0 && /home/opam/.opam/5.4/bin/menhir --external-tokens Tokens tokens.mly parser.mly --base parser.mly --merge-errors new.messages --merge-errors updated.messages) > _build/default/src/languages/tptp/v6.3.0/syntax.messages.updated
- Read 342 sample input sentences and 342 error messages.
- Read 342 sample input sentences and 342 error messages.
- (cd _build/default/tests/qcheck && ./main.exe --colors --verbose)
- 
random seed: 423438874
- generated error fail pass / total     time test name
- 
[ ]    0    0    0    0 /   50     0.0s Print.smtlib2_6.id
[ ]    6    0    0    1 /   50     0.2s Print.smtlib2_6.id (collecting)
[ ]   13    0    0    3 /   50     0.3s Print.smtlib2_6.id (collecting)
[ ]   20    0    0    5 /   50     0.4s Print.smtlib2_6.id (collecting)
[ ]   48    0    0    8 /   50     1.4s Print.smtlib2_6.id (collecting)
[ ]   57    0    0    9 /   50     1.5s Print.smtlib2_6.id (collecting)
[ ]   73    0    0   11 /   50     1.7s Print.smtlib2_6.id (collecting)
[ ]   96    0    0   11 /   50     1.9s Print.smtlib2_6.id (collecting)
[ ]  100    0    0   11 /   50     2.0s Print.smtlib2_6.id (collecting)
[ ]  113    0    0   11 /   50     2.1s Print.smtlib2_6.id (collecting)
[ ]  119    0    0   11 /   50     2.8s Print.smtlib2_6.id (collecting)
[ ]  138    0    0   14 /   50     2.9s Print.smtlib2_6.id (collecting)
[ ]  147    0    0   14 /   50     3.0s Print.smtlib2_6.id (collecting)
[ ]  157    0    0   14 /   50     3.2s Print.smtlib2_6.id (collecting)
[ ]  169    0    0   15 /   50     3.3s Print.smtlib2_6.id (collecting)
[ ]  190    0    0   17 /   50     3.5s Print.smtlib2_6.id (collecting)
[ ]  211    0    0   21 /   50     4.0s Print.smtlib2_6.id (collecting)
[ ]  223    0    0   23 /   50     4.1s Print.smtlib2_6.id (collecting)
[ ]  225    0    0   23 /   50     4.3s Print.smtlib2_6.id (collecting)
[ ]  239    0    0   24 /   50     4.4s Print.smtlib2_6.id (collecting)
[ ]  254    0    0   26 /   50     4.8s Print.smtlib2_6.id (collecting)
[ ]  268    0    0   26 /   50     4.9s Print.smtlib2_6.id (collecting)
[ ]  304    0    0   31 /   50     5.7s Print.smtlib2_6.id (collecting)
[ ]  339    0    0   33 /   50     5.8s Print.smtlib2_6.id (collecting)
[ ]  354    0    0   33 /   50     5.9s Print.smtlib2_6.id (collecting)
[ ]  364    0    0   34 /   50     6.4s Print.smtlib2_6.id (collecting)
[ ]  396    0    0   36 /   50     6.5s Print.smtlib2_6.id (collecting)
[ ]  401    0    0   37 /   50     6.6s Print.smtlib2_6.id (collecting)
[ ]  412    0    0   37 /   50     6.8s Print.smtlib2_6.id (collecting)
[ ]  421    0    0   37 /   50     6.9s Print.smtlib2_6.id (collecting)
[ ]  429    0    0   39 /   50     7.6s Print.smtlib2_6.id (collecting)
[ ]  447    0    0   41 /   50     7.7s Print.smtlib2_6.id (collecting)
[ ]  451    0    0   41 /   50     8.3s Print.smtlib2_6.id (collecting)
[ ]  465    0    0   44 /   50     8.4s Print.smtlib2_6.id (collecting)
[ ]  475    0    0   46 /   50     8.5s Print.smtlib2_6.id (collecting)
[ ]  489    0    0   47 /   50     9.2s Print.smtlib2_6.id (collecting)
[✓]  500    0    0   47 /   50     9.2s Print.smtlib2_6.id
- 
[ ]    0    0    0    0 /   50     0.0s Print.smtlib2_6.id_printable
[ ]   29    0    0    9 /   50     0.4s Print.smtlib2_6.id_printable (collecting)
[ ]   31    0    0    9 /   50     1.8s Print.smtlib2_6.id_printable (collecting)
[ ]   34    0    0    9 /   50     2.6s Print.smtlib2_6.id_printable (collecting)
[ ]   44    0    0   11 /   50     2.7s Print.smtlib2_6.id_printable (collecting)
[ ]   50    0    0   14 /   50     2.8s Print.smtlib2_6.id_printable (collecting)
[ ]   52    0    0   15 /   50     3.0s Print.smtlib2_6.id_printable (collecting)
[ ]   79    0    0   17 /   50     3.2s Print.smtlib2_6.id_printable (collecting)
[ ]   80    0    0   17 /   50     3.4s Print.smtlib2_6.id_printable (collecting)
[ ]   97    0    0   23 /   50     3.5s Print.smtlib2_6.id_printable (collecting)
[ ]  102    0    0   24 /   50     4.7s Print.smtlib2_6.id_printable (collecting)
[ ]  138    0    0   32 /   50     4.8s Print.smtlib2_6.id_printable (collecting)
[ ]  174    0    0   48 /   50     4.9s Print.smtlib2_6.id_printable (collecting)
[✓]  179    0    0   50 /   50     4.9s Print.smtlib2_6.id_printable
- 
[ ]    0    0    0    0 /   50     0.0s Print.smtlib2_poly.id
[ ]    6    0    0    1 /   50     0.1s Print.smtlib2_poly.id (collecting)
[ ]   20    0    0    5 /   50     0.3s Print.smtlib2_poly.id (collecting)
[ ]   48    0    0    8 /   50     1.2s Print.smtlib2_poly.id (collecting)
[ ]   57    0    0    9 /   50     1.4s Print.smtlib2_poly.id (collecting)
[ ]   68    0    0   11 /   50     1.5s Print.smtlib2_poly.id (collecting)
[ ]   79    0    0   11 /   50     1.6s Print.smtlib2_poly.id (collecting)
[ ]   97    0    0   11 /   50     1.7s Print.smtlib2_poly.id (collecting)
[ ]  108    0    0   11 /   50     1.8s Print.smtlib2_poly.id (collecting)
[ ]  119    0    0   11 /   50     2.8s Print.smtlib2_poly.id (collecting)
[ ]  138    0    0   14 /   50     2.9s Print.smtlib2_poly.id (collecting)
[ ]  147    0    0   14 /   50     3.0s Print.smtlib2_poly.id (collecting)
[ ]  154    0    0   14 /   50     3.1s Print.smtlib2_poly.id (collecting)
[ ]  161    0    0   15 /   50     3.3s Print.smtlib2_poly.id (collecting)
[ ]  172    0    0   16 /   50     3.4s Print.smtlib2_poly.id (collecting)
[ ]  189    0    0   17 /   50     3.5s Print.smtlib2_poly.id (collecting)
[ ]  192    0    0   18 /   50     3.6s Print.smtlib2_poly.id (collecting)
[ ]  211    0    0   21 /   50     4.2s Print.smtlib2_poly.id (collecting)
[ ]  223    0    0   23 /   50     4.3s Print.smtlib2_poly.id (collecting)
[ ]  225    0    0   23 /   50     4.7s Print.smtlib2_poly.id (collecting)
[ ]  235    0    0   23 /   50     4.8s Print.smtlib2_poly.id (collecting)
[ ]  239    0    0   24 /   50     4.9s Print.smtlib2_poly.id (collecting)
[ ]  254    0    0   26 /   50     5.7s Print.smtlib2_poly.id (collecting)
[ ]  256    0    0   26 /   50     5.8s Print.smtlib2_poly.id (collecting)
[ ]  273    0    0   26 /   50     6.0s Print.smtlib2_poly.id (collecting)
[ ]  304    0    0   31 /   50     7.5s Print.smtlib2_poly.id (collecting)
[ ]  334    0    0   32 /   50     7.7s Print.smtlib2_poly.id (collecting)
[ ]  341    0    0   33 /   50     7.8s Print.smtlib2_poly.id (collecting)
[ ]  354    0    0   33 /   50     7.9s Print.smtlib2_poly.id (collecting)
[ ]  364    0    0   34 /   50     8.9s Print.smtlib2_poly.id (collecting)
[ ]  396    0    0   36 /   50     9.1s Print.smtlib2_poly.id (collecting)
[ ]  399    0    0   37 /   50     9.2s Print.smtlib2_poly.id (collecting)
[ ]  405    0    0   37 /   50     9.3s Print.smtlib2_poly.id (collecting)
[ ]  412    0    0   37 /   50     9.6s Print.smtlib2_poly.id (collecting)
[ ]  421    0    0   37 /   50     9.8s Print.smtlib2_poly.id (collecting)
[ ]  429    0    0   39 /   50    11.0s Print.smtlib2_poly.id (collecting)
[ ]  442    0    0   41 /   50    11.1s Print.smtlib2_poly.id (collecting)
[ ]  447    0    0   41 /   50    11.3s Print.smtlib2_poly.id (collecting)
[ ]  448    0    0   41 /   50    11.4s Print.smtlib2_poly.id (collecting)
[ ]  451    0    0   41 /   50    12.2s Print.smtlib2_poly.id (collecting)
[ ]  465    0    0   44 /   50    12.4s Print.smtlib2_poly.id (collecting)
[ ]  472    0    0   45 /   50    12.6s Print.smtlib2_poly.id (collecting)
[ ]  489    0    0   47 /   50    13.8s Print.smtlib2_poly.id (collecting)
[✓]  500    0    0   47 /   50    13.9s Print.smtlib2_poly.id
- 
[ ]    0    0    0    0 /   50     0.0s Print.smtlib2_poly.id_printable
[ ]   29    0    0    9 /   50     0.6s Print.smtlib2_poly.id_printable (collecting)
[ ]   30    0    0    9 /   50     0.7s Print.smtlib2_poly.id_printable (collecting)
[ ]   31    0    0    9 /   50     2.9s Print.smtlib2_poly.id_printable (collecting)
[ ]   34    0    0    9 /   50     3.6s Print.smtlib2_poly.id_printable (collecting)
[ ]   44    0    0   11 /   50     3.7s Print.smtlib2_poly.id_printable (collecting)
[ ]   50    0    0   14 /   50     3.9s Print.smtlib2_poly.id_printable (collecting)
[ ]   52    0    0   15 /   50     4.0s Print.smtlib2_poly.id_printable (collecting)
[ ]   79    0    0   17 /   50     4.2s Print.smtlib2_poly.id_printable (collecting)
[ ]   80    0    0   17 /   50     4.4s Print.smtlib2_poly.id_printable (collecting)
[ ]   97    0    0   23 /   50     4.5s Print.smtlib2_poly.id_printable (collecting)
[ ]  102    0    0   24 /   50     6.4s Print.smtlib2_poly.id_printable (collecting)
[ ]  138    0    0   32 /   50     6.5s Print.smtlib2_poly.id_printable (collecting)
[ ]  174    0    0   48 /   50     6.7s Print.smtlib2_poly.id_printable (collecting)
[✓]  179    0    0   50 /   50     6.7s Print.smtlib2_poly.id_printable
- 
[ ]    0    0    0    0 /  500     0.0s Maps.add_find
[ ]    6    0    0    6 /  500     0.3s Maps.add_find (collecting)
[ ]   25    0    0   25 /  500     0.4s Maps.add_find (collecting)
[ ]   26    0    0   26 /  500     1.6s Maps.add_find (collecting)
[ ]   28    0    0   28 /  500     1.7s Maps.add_find (collecting)
[ ]   35    0    0   35 /  500     2.0s Maps.add_find (collecting)
[ ]   44    0    0   44 /  500     3.0s Maps.add_find (collecting)
[ ]   52    0    0   52 /  500     4.8s Maps.add_find (collecting)
[ ]   53    0    0   53 /  500     6.1s Maps.add_find (collecting)
[ ]   59    0    0   59 /  500     6.2s Maps.add_find (collecting)
[ ]   64    0    0   64 /  500     6.3s Maps.add_find (collecting)
[ ]   67    0    0   67 /  500     6.4s Maps.add_find (collecting)
[ ]   78    0    0   78 /  500     6.5s Maps.add_find (collecting)
[ ]   87    0    0   87 /  500     6.8s Maps.add_find (collecting)
[ ]   99    0    0   99 /  500     7.0s Maps.add_find (collecting)
[ ]  106    0    0  106 /  500     7.1s Maps.add_find (collecting)
[ ]  111    0    0  111 /  500     7.3s Maps.add_find (collecting)
[ ]  124    0    0  124 /  500     8.0s Maps.add_find (collecting)
[ ]  127    0    0  127 /  500     8.5s Maps.add_find (collecting)
[ ]  130    0    0  130 /  500     9.2s Maps.add_find (collecting)
[ ]  140    0    0  140 /  500     9.3s Maps.add_find (collecting)
[ ]  152    0    0  152 /  500     9.5s Maps.add_find (collecting)
[ ]  157    0    0  157 /  500    10.3s Maps.add_find (collecting)
[ ]  161    0    0  161 /  500    10.4s Maps.add_find (collecting)
[ ]  171    0    0  171 /  500    10.5s Maps.add_find (collecting)
[ ]  173    0    0  173 /  500    10.6s Maps.add_find (collecting)
[ ]  180    0    0  180 /  500    11.6s Maps.add_find (collecting)
[ ]  183    0    0  183 /  500    12.4s Maps.add_find (collecting)
[ ]  186    0    0  186 /  500    12.5s Maps.add_find (collecting)
[ ]  191    0    0  191 /  500    12.7s Maps.add_find (collecting)
[ ]  202    0    0  202 /  500    12.8s Maps.add_find (collecting)
[ ]  207    0    0  207 /  500    12.9s Maps.add_find (collecting)
[ ]  232    0    0  232 /  500    13.1s Maps.add_find (collecting)
[ ]  246    0    0  246 /  500    13.2s Maps.add_find (collecting)
[ ]  254    0    0  254 /  500    13.3s Maps.add_find
[ ]  257    0    0  257 /  500    13.4s Maps.add_find (collecting)
[ ]  261    0    0  261 /  500    14.5s Maps.add_find (collecting)
[ ]  262    0    0  262 /  500    14.6s Maps.add_find (collecting)
[ ]  264    0    0  264 /  500    14.7s Maps.add_find (collecting)
[ ]  276    0    0  276 /  500    14.9s Maps.add_find (collecting)
[ ]  295    0    0  295 /  500    15.8s Maps.add_find (collecting)
[ ]  310    0    0  310 /  500    16.0s Maps.add_find (collecting)
[ ]  321    0    0  321 /  500    16.2s Maps.add_find (collecting)
[ ]  328    0    0  328 /  500    16.3s Maps.add_find (collecting)
[ ]  339    0    0  339 /  500    16.5s Maps.add_find (collecting)
[ ]  343    0    0  343 /  500    16.6s Maps.add_find (collecting)
[ ]  360    0    0  360 /  500    16.8s Maps.add_find (collecting)
[ ]  363    0    0  363 /  500    16.9s Maps.add_find (collecting)
[ ]  367    0    0  367 /  500    17.0s Maps.add_find (collecting)
[ ]  380    0    0  380 /  500    17.1s Maps.add_find (collecting)
[ ]  385    0    0  385 /  500    17.2s Maps.add_find (collecting)
[ ]  387    0    0  387 /  500    17.6s Maps.add_find (collecting)
[ ]  390    0    0  390 /  500    17.7s Maps.add_find (collecting)
[ ]  404    0    0  404 /  500    17.9s Maps.add_find (collecting)
[ ]  412    0    0  412 /  500    18.0s Maps.add_find (collecting)
[ ]  430    0    0  430 /  500    18.1s Maps.add_find (collecting)
[ ]  444    0    0  444 /  500    18.2s Maps.add_find (collecting)
[ ]  447    0    0  447 /  500    18.4s Maps.add_find (collecting)
[ ]  455    0    0  455 /  500    18.5s Maps.add_find (collecting)
[ ]  468    0    0  468 /  500    18.6s Maps.add_find (collecting)
[ ]  474    0    0  474 /  500    18.7s Maps.add_find (collecting)
[ ]  485    0    0  485 /  500    18.9s Maps.add_find (collecting)
[✓]  500    0    0  500 /  500    19.0s Maps.add_find
- ================================================================================
- success (ran 5 tests)
-> compiled  dolmen.0.10
-> removed   dolmen.0.10
-> installed dolmen.0.10
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-19 22:04.24 ---> saved as "90eeaa767af6febc69fb8e46564882c72e80864a8d6a5b3b6300910c570df27a"
Job succeeded
2026-01-19 22:04.31: Job succeeded