(for PR #29582)

2026-03-25 13:14.48: New job: test dolmen.0.10 with ocaml-compiler.5.4.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29582/head (fa5fb3a6a806e832e4c7791145889a6bbe8b64ef)
                              on debian-13-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/29582/head" && git reset --hard fa5fb3a6
git fetch origin master
git merge --no-edit 2f93e9d4614d6376ed929fc2cee7c59cb9d5833b
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6
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 ocaml-compiler.5.4.0 5.4.0
RUN opam reinstall --update-invariant ocaml-compiler.5.4.0; \
    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 "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'ocaml-compiler.5.4.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
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 "\"debian-13\""; 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 "\"debian-13\""; 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-03-25 13:14.48: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6-ocaml-compiler.5.4.0-dolmen.0.10-fa5fb3a6a806e832e4c7791145889a6bbe8b64ef"
2026-03-25 13:14.48: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
 (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 ocaml-compiler.5.4.0 5.4.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall --update-invariant ocaml-compiler.5.4.0;\
             \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 \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'ocaml-compiler.5.4.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (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 \"\\\"debian-13\\\"\"; 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 \"\\\"debian-13\\\"\"; 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-03-25 13:14.48: Waiting for resource in pool OCluster
2026-03-25 19:27.58: Waiting for worker…
2026-03-25 19:30.14: Got resource from pool OCluster
Building on clete.caelum.ci.dev
All commits already cached
Updating files:  71% (13298/18520)
Updating files:  72% (13335/18520)
Updating files:  73% (13520/18520)
Updating files:  74% (13705/18520)
Updating files:  75% (13890/18520)
Updating files:  76% (14076/18520)
Updating files:  77% (14261/18520)
Updating files:  78% (14446/18520)
Updating files:  79% (14631/18520)
Updating files:  80% (14816/18520)
Updating files:  81% (15002/18520)
Updating files:  82% (15187/18520)
Updating files:  83% (15372/18520)
Updating files:  84% (15557/18520)
Updating files:  85% (15742/18520)
Updating files:  86% (15928/18520)
Updating files:  87% (16113/18520)
Updating files:  88% (16298/18520)
Updating files:  89% (16483/18520)
Updating files:  90% (16668/18520)
Updating files:  91% (16854/18520)
Updating files:  92% (17039/18520)
Updating files:  93% (17224/18520)
Updating files:  94% (17409/18520)
Updating files:  95% (17594/18520)
Updating files:  96% (17780/18520)
Updating files:  97% (17965/18520)
Updating files:  98% (18150/18520)
Updating files:  99% (18335/18520)
Updating files: 100% (18520/18520)
Updating files: 100% (18520/18520), done.
HEAD is now at 2f93e9d461 Merge pull request #29592 from dinosaure/release-miou-v0.5.5
Merge made by the 'ort' strategy.
 packages/ocaml-compiler/ocaml-compiler.5.3.0/opam      |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.3/opam        |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4.0/opam      |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.4.0~alpha1/opam    |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.4.0~beta1/opam     |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.4.0~beta2/opam     |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4.0~rc1/opam  |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4.1/opam      |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4/opam        |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.5.0~alpha1/opam    |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.5/opam        |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.6/opam        |  5 ++++-
 packages/ocaml-option-llvm/ocaml-option-llvm.1/opam    | 18 ++++++++++++++++++
 .../ocaml-options-vanilla/ocaml-options-vanilla.1/opam |  1 +
 packages/ocaml-variants/ocaml-variants.5.2.0+msvc/opam |  2 ++
 15 files changed, 69 insertions(+), 12 deletions(-)
 create mode 100644 packages/ocaml-option-llvm/ocaml-option-llvm.1/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
2026-03-25 19:30.25 ---> using "41eea30e3f639c18d8cf57c309ec76919ec7b2398036f7e41744cbce59a133d3" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-25 19:30.25 ---> using "4ad7f430d684c40cedc651267e0edf890c044fe4e624255de377c471b4526bac" from cache

/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-03-25 19:30.25 ---> using "71fa58e52457bf6a7eac317c6a6ef1e2bdf53e533a1e4fd04b90c9349347e038" from cache

/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=debian os-version=13
# 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-03-25 19:30.25 ---> using "ed86081cb38ca125a920162bfe6a4bb7b1c27c6973c917551687c83cf44dbfdf" from cache

/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-03-25 19:30.25 ---> using "04a48515eea40c32b96da0c71328b4bba0edb66eed83d4f78554b39097cf1f25" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-25 19:30.27 ---> using "034191995d824300f355cbba1072d6e5fe6d815701f24eb84d82c75009d73829" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-25 19:30.27 ---> using "8232259ea36ea8848dc29ae49703acf145fd27b40f3ebd8fb785db7f8da1b9d4" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian trixie/main amd64 Packages [9671 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [114 kB]
- Fetched 10.0 MB in 1s (6734 kB/s)
- Reading package lists...
- 
2026-03-25 19:30.27 ---> using "a75782a571df4fc8f8933e94c681af881015ee87cdd4c652f8ae9af1d8cfad37" from cache

/home/opam: (run (shell "opam pin add -k version -yn ocaml-compiler.5.4.0 5.4.0"))
ocaml-compiler is now pinned to version 5.4.0
2026-03-25 19:30.27 ---> using "60e129f7398974b5fa5afc8f56ec09bd24a9182f5e9834464bfc959db1aa6b14" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall --update-invariant ocaml-compiler.5.4.0;\
                        \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 \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'ocaml-compiler.5.4.0' && 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 8 packages
  - recompile base-domains        base           [uses ocaml]
  - recompile base-effects        base           [uses ocaml]
  - recompile base-nnp            base           [uses base-domains]
  - recompile ocaml               5.4.0          [uses ocaml-base-compiler]
  - recompile ocaml-base-compiler 5.4.0 (pinned) [uses ocaml-compiler]
  - recompile ocaml-compiler      5.4.0 (pinned)
  - recompile ocaml-config        3              [uses ocaml-base-compiler]
  - recompile opam-depext         1.2.3          [uses ocaml]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocaml-compiler.5.4.0  (cached)
-> retrieved ocaml-config.3  (cached)
-> retrieved opam-depext.1.2.3  (cached)
-> removed   base-effects.base
-> removed   base-nnp.base
-> removed   base-domains.base
-> removed   opam-depext.1.2.3
-> removed   ocaml.5.4.0
-> removed   ocaml-config.3
-> removed   ocaml-base-compiler.5.4.0
-> removed   ocaml-compiler.5.4.0
-> installed ocaml-compiler.5.4.0
-> installed ocaml-base-compiler.5.4.0
-> installed ocaml-config.3
-> installed ocaml.5.4.0
-> installed base-domains.base
-> installed base-effects.base
-> installed base-nnp.base
-> installed opam-depext.1.2.3
Done.

<><> opam-depext.1.2.3 installed successfully <><><><><><><><><><><><><><><><><>
=> opam-depext is unnecessary when used with opam >= 2.1. Please use opam install directly instead
# To update the current shell environment, run: eval $(opam env)
2026-03-25 19:30.27 ---> using "efbc92fc0c607605c8bb33f9e4c8fe340a48c67e14d2f61592db8a4edc5c0b15" from cache

/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 \"\\\"debian-13\\\"\"; 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
  - install dune       3.22.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.22.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.22.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-03-25 19:33.35 ---> saved as "8611d871804d665be3081e97443affddaa1858174c606704d3ec153e8474f94a"

/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
  - 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.4  [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)
-> installed camlp-streams.5.0.1
-> installed csexp.1.5.2
-> retrieved dolmen.0.10  (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)
-> retrieved mdx.2.5.1  (https://opam.ocaml.org/cache)
-> retrieved ocaml-version.4.0.4  (https://opam.ocaml.org/cache)
-> retrieved ounit2.2.2.7  (https://opam.ocaml.org/cache)
-> installed cppo.1.8.0
-> retrieved qcheck.0.91, qcheck-core.0.91, qcheck-ounit.0.91  (https://opam.ocaml.org/cache)
-> installed ocaml-version.4.0.4
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> installed astring.0.8.5
-> 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 stdlib-shims.0.3.0
-> 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-03-25 19:36.20 ---> saved as "8a297fa05513c73296f16604e5541762dae92ef7ae93f3a8a961b92d9e4e1b0d"

/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 \"\\\"debian-13\\\"\"; 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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [dolmen.0.10: extract]
-> retrieved dolmen.0.10  (cached)
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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/tests/qcheck && ./main.exe --colors --verbose)
- 
random seed: 429266430
- generated error fail pass / total     time test name
- 
[ ]    0    0    0    0 /   50     0.0s Print.smtlib2_6.id
[ ]    4    0    0    0 /   50     0.1s Print.smtlib2_6.id (collecting)
[ ]    8    0    0    2 /   50     0.3s Print.smtlib2_6.id (collecting)
[ ]   11    0    0    2 /   50     0.6s Print.smtlib2_6.id (collecting)
[ ]   12    0    0    2 /   50     0.8s Print.smtlib2_6.id (collecting)
[ ]   14    0    0    2 /   50     1.0s Print.smtlib2_6.id (collecting)
[ ]   18    0    0    2 /   50     3.1s Print.smtlib2_6.id (collecting)
[ ]   22    0    0    2 /   50     3.3s Print.smtlib2_6.id (collecting)
[ ]   23    0    0    2 /   50     3.5s Print.smtlib2_6.id (collecting)
[ ]   25    0    0    2 /   50     4.3s Print.smtlib2_6.id (collecting)
[ ]   32    0    0    4 /   50     4.6s Print.smtlib2_6.id (collecting)
[ ]   51    0    0    7 /   50     4.8s Print.smtlib2_6.id (collecting)
[ ]   53    0    0    7 /   50     5.3s Print.smtlib2_6.id (collecting)
[ ]   71    0    0    9 /   50     7.1s Print.smtlib2_6.id (collecting)
[ ]   74    0    0    9 /   50     9.1s Print.smtlib2_6.id (collecting)
[ ]   75    0    0    9 /   50     9.2s Print.smtlib2_6.id (collecting)
[ ]   84    0    0    9 /   50     9.3s Print.smtlib2_6.id (collecting)
[ ]   85    0    0    9 /   50    10.7s Print.smtlib2_6.id (collecting)
[ ]   86    0    0    9 /   50    10.9s Print.smtlib2_6.id (collecting)
[ ]   92    0    0    9 /   50    13.1s Print.smtlib2_6.id (collecting)
[ ]   96    0    0   10 /   50    13.3s Print.smtlib2_6.id (collecting)
[ ]  101    0    0   10 /   50    15.0s Print.smtlib2_6.id (collecting)
[ ]  102    0    0   10 /   50    16.8s Print.smtlib2_6.id (collecting)
[ ]  103    0    0   10 /   50    17.0s Print.smtlib2_6.id (collecting)
[ ]  114    0    0   10 /   50    17.1s Print.smtlib2_6.id (collecting)
[ ]  128    0    0   11 /   50    17.3s Print.smtlib2_6.id (collecting)
[ ]  144    0    0   11 /   50    17.4s Print.smtlib2_6.id (collecting)
[ ]  150    0    0   11 /   50    18.8s Print.smtlib2_6.id (collecting)
[ ]  162    0    0   11 /   50    18.9s Print.smtlib2_6.id (collecting)
[ ]  175    0    0   13 /   50    19.2s Print.smtlib2_6.id (collecting)
[ ]  190    0    0   13 /   50    19.4s Print.smtlib2_6.id (collecting)
[ ]  194    0    0   13 /   50    19.7s Print.smtlib2_6.id (collecting)
[ ]  207    0    0   14 /   50    19.9s Print.smtlib2_6.id (collecting)
[ ]  215    0    0   14 /   50    20.8s Print.smtlib2_6.id (collecting)
[ ]  221    0    0   15 /   50    20.9s Print.smtlib2_6.id (collecting)
[ ]  223    0    0   15 /   50    21.2s Print.smtlib2_6.id (collecting)
[ ]  225    0    0   15 /   50    21.4s Print.smtlib2_6.id (collecting)
[ ]  228    0    0   16 /   50    23.0s Print.smtlib2_6.id (collecting)
[ ]  252    0    0   19 /   50    23.1s Print.smtlib2_6.id (collecting)
[ ]  254    0    0   19 /   50    23.3s Print.smtlib2_6.id (collecting)
[ ]  256    0    0   19 /   50    24.4s Print.smtlib2_6.id (collecting)
[ ]  269    0    0   19 /   50    24.5s Print.smtlib2_6.id (collecting)
[ ]  270    0    0   19 /   50    24.6s Print.smtlib2_6.id (collecting)
[ ]  274    0    0   20 /   50    25.8s Print.smtlib2_6.id (collecting)
[ ]  295    0    0   21 /   50    26.9s Print.smtlib2_6.id (collecting)
[ ]  297    0    0   21 /   50    27.6s Print.smtlib2_6.id (collecting)
[ ]  301    0    0   22 /   50    27.8s Print.smtlib2_6.id (collecting)
[ ]  329    0    0   24 /   50    27.9s Print.smtlib2_6.id (collecting)
[ ]  331    0    0   24 /   50    28.1s Print.smtlib2_6.id (collecting)
[ ]  334    0    0   24 /   50    29.0s Print.smtlib2_6.id (collecting)
[ ]  342    0    0   24 /   50    29.1s Print.smtlib2_6.id (collecting)
[ ]  358    0    0   25 /   50    29.3s Print.smtlib2_6.id (collecting)
[ ]  361    0    0   25 /   50    29.5s Print.smtlib2_6.id (collecting)
[ ]  378    0    0   27 /   50    29.6s Print.smtlib2_6.id (collecting)
[ ]  381    0    0   27 /   50    30.7s Print.smtlib2_6.id (collecting)
[ ]  391    0    0   29 /   50    30.9s Print.smtlib2_6.id (collecting)
[ ]  392    0    0   29 /   50    31.5s Print.smtlib2_6.id (collecting)
[ ]  397    0    0   30 /   50    31.8s Print.smtlib2_6.id (collecting)
[ ]  398    0    0   30 /   50    31.9s Print.smtlib2_6.id (collecting)
[ ]  401    0    0   30 /   50    32.1s Print.smtlib2_6.id (collecting)
[ ]  403    0    0   30 /   50    32.2s Print.smtlib2_6.id (collecting)
[ ]  412    0    0   32 /   50    32.5s Print.smtlib2_6.id (collecting)
[ ]  415    0    0   33 /   50    32.7s Print.smtlib2_6.id (collecting)
[ ]  429    0    0   34 /   50    32.8s Print.smtlib2_6.id (collecting)
[ ]  432    0    0   35 /   50    32.9s Print.smtlib2_6.id (collecting)
[ ]  434    0    0   35 /   50    33.2s Print.smtlib2_6.id (collecting)
[ ]  447    0    0   36 /   50    33.5s Print.smtlib2_6.id (collecting)
[ ]  451    0    0   36 /   50    35.7s Print.smtlib2_6.id (collecting)
[ ]  463    0    0   37 /   50    35.8s Print.smtlib2_6.id
[ ]  478    0    0   43 /   50    36.1s Print.smtlib2_6.id (collecting)
[ ]  486    0    0   43 /   50    36.2s Print.smtlib2_6.id (collecting)
[ ]  494    0    0   44 /   50    36.4s Print.smtlib2_6.id (collecting)
[✓]  500    0    0   44 /   50    36.4s Print.smtlib2_6.id
- 
[ ]    0    0    0    0 /   50     0.0s Print.smtlib2_6.id_printable
[ ]    4    0    0    0 /   50     0.1s Print.smtlib2_6.id_printable (collecting)
[ ]    7    0    0    1 /   50     0.3s Print.smtlib2_6.id_printable (collecting)
[ ]    8    0    0    1 /   50     4.0s Print.smtlib2_6.id_printable (collecting)
[ ]   46    0    0   17 /   50     4.3s Print.smtlib2_6.id_printable (collecting)
[ ]   53    0    0   20 /   50     6.9s Print.smtlib2_6.id_printable (collecting)
[ ]   59    0    0   22 /   50     7.3s Print.smtlib2_6.id_printable (collecting)
[ ]   68    0    0   23 /   50     7.7s Print.smtlib2_6.id_printable (collecting)
[ ]   71    0    0   23 /   50    10.8s Print.smtlib2_6.id_printable (collecting)
[ ]   79    0    0   24 /   50    11.0s Print.smtlib2_6.id_printable (collecting)
[ ]   82    0    0   25 /   50    14.2s Print.smtlib2_6.id_printable (collecting)
[ ]   84    0    0   26 /   50    14.4s Print.smtlib2_6.id_printable (collecting)
[ ]  101    0    0   33 /   50    16.7s Print.smtlib2_6.id_printable (collecting)
[ ]  103    0    0   34 /   50    16.9s Print.smtlib2_6.id_printable (collecting)
[ ]  108    0    0   35 /   50    17.0s Print.smtlib2_6.id_printable (collecting)
[ ]  120    0    0   37 /   50    17.1s Print.smtlib2_6.id_printable (collecting)
[ ]  121    0    0   37 /   50    17.5s Print.smtlib2_6.id_printable (collecting)
[ ]  128    0    0   39 /   50    17.8s Print.smtlib2_6.id_printable (collecting)
[ ]  143    0    0   44 /   50    18.2s Print.smtlib2_6.id_printable (collecting)
[ ]  144    0    0   44 /   50    19.4s Print.smtlib2_6.id_printable (collecting)
[ ]  145    0    0   44 /   50    19.6s Print.smtlib2_6.id_printable (collecting)
[ ]  154    0    0   46 /   50    19.8s Print.smtlib2_6.id_printable (collecting)
[ ]  159    0    0   47 /   50    20.1s Print.smtlib2_6.id_printable (collecting)
[ ]  161    0    0   47 /   50    20.2s Print.smtlib2_6.id_printable (collecting)
[✓]  169    0    0   50 /   50    20.3s Print.smtlib2_6.id_printable
- 
[ ]    0    0    0    0 /   50     0.0s Print.smtlib2_poly.id
[ ]    8    0    0    2 /   50     0.3s Print.smtlib2_poly.id (collecting)
[ ]   11    0    0    2 /   50     0.6s Print.smtlib2_poly.id (collecting)
[ ]   12    0    0    2 /   50     0.8s Print.smtlib2_poly.id (collecting)
[ ]   14    0    0    2 /   50     1.1s Print.smtlib2_poly.id (collecting)
[ ]   18    0    0    2 /   50     3.2s Print.smtlib2_poly.id (collecting)
[ ]   22    0    0    2 /   50     3.4s Print.smtlib2_poly.id (collecting)
[ ]   23    0    0    2 /   50     3.6s Print.smtlib2_poly.id (collecting)
[ ]   25    0    0    2 /   50     4.3s Print.smtlib2_poly.id (collecting)
[ ]   32    0    0    4 /   50     4.6s Print.smtlib2_poly.id (collecting)
[ ]   50    0    0    7 /   50     4.7s Print.smtlib2_poly.id (collecting)
[ ]   51    0    0    7 /   50     4.8s Print.smtlib2_poly.id (collecting)
[ ]   53    0    0    7 /   50     5.6s Print.smtlib2_poly.id (collecting)
[ ]   71    0    0    9 /   50     7.6s Print.smtlib2_poly.id (collecting)
[ ]   72    0    0    9 /   50     7.7s Print.smtlib2_poly.id (collecting)
[ ]   74    0    0    9 /   50     9.7s Print.smtlib2_poly.id (collecting)
[ ]   75    0    0    9 /   50     9.8s Print.smtlib2_poly.id (collecting)
[ ]   84    0    0    9 /   50    10.0s Print.smtlib2_poly.id (collecting)
[ ]   85    0    0    9 /   50    11.4s Print.smtlib2_poly.id (collecting)
[ ]   86    0    0    9 /   50    11.7s Print.smtlib2_poly.id (collecting)
[ ]   92    0    0    9 /   50    13.8s Print.smtlib2_poly.id (collecting)
[ ]   96    0    0   10 /   50    14.2s Print.smtlib2_poly.id (collecting)
[ ]  101    0    0   10 /   50    15.8s Print.smtlib2_poly.id (collecting)
[ ]  102    0    0   10 /   50    17.9s Print.smtlib2_poly.id (collecting)
[ ]  103    0    0   10 /   50    18.0s Print.smtlib2_poly.id
[ ]  108    0    0   10 /   50    18.2s Print.smtlib2_poly.id (collecting)
[ ]  126    0    0   11 /   50    18.3s Print.smtlib2_poly.id
[ ]  128    0    0   11 /   50    18.5s Print.smtlib2_poly.id (collecting)
[ ]  144    0    0   11 /   50    18.6s Print.smtlib2_poly.id (collecting)
[ ]  150    0    0   11 /   50    20.2s Print.smtlib2_poly.id (collecting)
[ ]  151    0    0   11 /   50    20.3s Print.smtlib2_poly.id (collecting)
[ ]  166    0    0   13 /   50    20.4s Print.smtlib2_poly.id (collecting)
[ ]  175    0    0   13 /   50    20.6s Print.smtlib2_poly.id (collecting)
[ ]  189    0    0   13 /   50    20.7s Print.smtlib2_poly.id (collecting)
[ ]  190    0    0   13 /   50    20.9s Print.smtlib2_poly.id (collecting)
[ ]  194    0    0   13 /   50    21.1s Print.smtlib2_poly.id (collecting)
[ ]  207    0    0   14 /   50    21.4s Print.smtlib2_poly.id (collecting)
[ ]  215    0    0   14 /   50    22.3s Print.smtlib2_poly.id (collecting)
[ ]  221    0    0   15 /   50    22.4s Print.smtlib2_poly.id (collecting)
[ ]  223    0    0   15 /   50    22.7s Print.smtlib2_poly.id (collecting)
[ ]  225    0    0   15 /   50    22.8s Print.smtlib2_poly.id (collecting)
[ ]  228    0    0   16 /   50    24.4s Print.smtlib2_poly.id (collecting)
[ ]  252    0    0   19 /   50    24.5s Print.smtlib2_poly.id (collecting)
[ ]  254    0    0   19 /   50    24.7s Print.smtlib2_poly.id (collecting)
[ ]  256    0    0   19 /   50    25.9s Print.smtlib2_poly.id (collecting)
[ ]  269    0    0   19 /   50    26.0s Print.smtlib2_poly.id (collecting)
[ ]  270    0    0   19 /   50    26.1s Print.smtlib2_poly.id (collecting)
[ ]  274    0    0   20 /   50    27.4s Print.smtlib2_poly.id (collecting)
[ ]  295    0    0   21 /   50    28.4s Print.smtlib2_poly.id (collecting)
[ ]  297    0    0   21 /   50    29.2s Print.smtlib2_poly.id (collecting)
[ ]  301    0    0   22 /   50    29.4s Print.smtlib2_poly.id (collecting)
[ ]  328    0    0   24 /   50    29.5s Print.smtlib2_poly.id (collecting)
[ ]  331    0    0   24 /   50    29.8s Print.smtlib2_poly.id (collecting)
[ ]  334    0    0   24 /   50    31.0s Print.smtlib2_poly.id (collecting)
[ ]  342    0    0   24 /   50    31.1s Print.smtlib2_poly.id (collecting)
[ ]  358    0    0   25 /   50    31.2s Print.smtlib2_poly.id (collecting)
[ ]  361    0    0   25 /   50    31.5s Print.smtlib2_poly.id (collecting)
[ ]  378    0    0   27 /   50    31.7s Print.smtlib2_poly.id (collecting)
[ ]  381    0    0   27 /   50    32.9s Print.smtlib2_poly.id (collecting)
[ ]  391    0    0   29 /   50    33.0s Print.smtlib2_poly.id (collecting)
[ ]  392    0    0   29 /   50    33.8s Print.smtlib2_poly.id (collecting)
[ ]  397    0    0   30 /   50    34.1s Print.smtlib2_poly.id (collecting)
[ ]  398    0    0   30 /   50    34.2s Print.smtlib2_poly.id (collecting)
[ ]  401    0    0   30 /   50    34.4s Print.smtlib2_poly.id (collecting)
[ ]  403    0    0   30 /   50    34.6s Print.smtlib2_poly.id (collecting)
[ ]  412    0    0   32 /   50    34.8s Print.smtlib2_poly.id (collecting)
[ ]  415    0    0   33 /   50    35.0s Print.smtlib2_poly.id (collecting)
[ ]  429    0    0   34 /   50    35.1s Print.smtlib2_poly.id (collecting)
[ ]  432    0    0   35 /   50    35.3s Print.smtlib2_poly.id (collecting)
[ ]  434    0    0   35 /   50    35.5s Print.smtlib2_poly.id (collecting)
[ ]  447    0    0   36 /   50    35.8s Print.smtlib2_poly.id (collecting)
[ ]  451    0    0   36 /   50    38.0s Print.smtlib2_poly.id (collecting)
[ ]  462    0    0   37 /   50    38.1s Print.smtlib2_poly.id (collecting)
[ ]  478    0    0   43 /   50    38.3s Print.smtlib2_poly.id (collecting)
[ ]  493    0    0   44 /   50    38.4s Print.smtlib2_poly.id (collecting)
[ ]  494    0    0   44 /   50    38.5s Print.smtlib2_poly.id (collecting)
[✓]  500    0    0   44 /   50    38.5s Print.smtlib2_poly.id
- 
[ ]    0    0    0    0 /   50     0.0s Print.smtlib2_poly.id_printable
[ ]    4    0    0    0 /   50     0.2s Print.smtlib2_poly.id_printable (collecting)
[ ]    7    0    0    1 /   50     0.3s Print.smtlib2_poly.id_printable (collecting)
[ ]    8    0    0    1 /   50     4.3s Print.smtlib2_poly.id_printable (collecting)
[ ]   46    0    0   17 /   50     4.6s Print.smtlib2_poly.id_printable (collecting)
[ ]   53    0    0   20 /   50     6.8s Print.smtlib2_poly.id_printable (collecting)
[ ]   59    0    0   22 /   50     7.1s Print.smtlib2_poly.id_printable (collecting)
[ ]   68    0    0   23 /   50     7.4s Print.smtlib2_poly.id_printable (collecting)
[ ]   71    0    0   23 /   50    10.0s Print.smtlib2_poly.id_printable (collecting)
[ ]   79    0    0   24 /   50    10.2s Print.smtlib2_poly.id_printable (collecting)
[ ]   82    0    0   25 /   50    13.3s Print.smtlib2_poly.id_printable (collecting)
[ ]   84    0    0   26 /   50    13.5s Print.smtlib2_poly.id_printable (collecting)
[ ]  101    0    0   33 /   50    16.0s Print.smtlib2_poly.id_printable (collecting)
[ ]  103    0    0   34 /   50    16.1s Print.smtlib2_poly.id_printable (collecting)
[ ]  108    0    0   35 /   50    16.2s Print.smtlib2_poly.id_printable (collecting)
[ ]  120    0    0   37 /   50    16.4s Print.smtlib2_poly.id_printable (collecting)
[ ]  121    0    0   37 /   50    16.9s Print.smtlib2_poly.id_printable (collecting)
[ ]  128    0    0   39 /   50    17.2s Print.smtlib2_poly.id_printable (collecting)
[ ]  143    0    0   44 /   50    17.7s Print.smtlib2_poly.id_printable (collecting)
[ ]  144    0    0   44 /   50    18.9s Print.smtlib2_poly.id_printable (collecting)
[ ]  145    0    0   44 /   50    19.1s Print.smtlib2_poly.id_printable (collecting)
[ ]  154    0    0   46 /   50    19.2s Print.smtlib2_poly.id_printable (collecting)
[ ]  159    0    0   47 /   50    19.5s Print.smtlib2_poly.id_printable (collecting)
[ ]  161    0    0   47 /   50    19.7s Print.smtlib2_poly.id_printable (collecting)
[✓]  169    0    0   50 /   50    19.8s Print.smtlib2_poly.id_printable
- 
[ ]    0    0    0    0 /  500     0.0s Maps.add_find
[ ]    5    0    0    5 /  500     0.6s Maps.add_find (collecting)
[ ]   10    0    0   10 /  500     2.1s Maps.add_find (collecting)
[ ]   15    0    0   15 /  500     2.3s Maps.add_find (collecting)
[ ]   19    0    0   19 /  500     2.5s Maps.add_find (collecting)
[ ]   37    0    0   37 /  500     2.8s Maps.add_find (collecting)
[ ]   41    0    0   41 /  500     3.0s Maps.add_find (collecting)
[ ]   47    0    0   47 /  500     3.2s Maps.add_find (collecting)
[ ]   49    0    0   49 /  500     3.4s Maps.add_find (collecting)
[ ]   54    0    0   54 /  500     3.5s Maps.add_find (collecting)
[ ]   61    0    0   61 /  500     3.8s Maps.add_find (collecting)
[ ]   62    0    0   62 /  500     4.0s Maps.add_find (collecting)
[ ]   63    0    0   63 /  500     4.2s Maps.add_find (collecting)
[ ]   66    0    0   66 /  500     4.8s Maps.add_find (collecting)
[ ]   71    0    0   71 /  500     4.9s Maps.add_find (collecting)
[ ]   73    0    0   73 /  500     5.0s Maps.add_find (collecting)
[ ]   76    0    0   76 /  500     6.7s Maps.add_find (collecting)
[ ]   80    0    0   80 /  500     7.0s Maps.add_find (collecting)
[ ]   86    0    0   86 /  500     7.1s Maps.add_find (collecting)
[ ]   88    0    0   88 /  500     7.3s Maps.add_find (collecting)
[ ]   95    0    0   95 /  500     7.5s Maps.add_find (collecting)
[ ]  102    0    0  102 /  500     8.6s Maps.add_find (collecting)
[ ]  106    0    0  106 /  500    10.6s Maps.add_find (collecting)
[ ]  110    0    0  110 /  500    10.7s Maps.add_find (collecting)
[ ]  114    0    0  114 /  500    10.9s Maps.add_find (collecting)
[ ]  115    0    0  115 /  500    12.9s Maps.add_find (collecting)
[ ]  116    0    0  116 /  500    13.0s Maps.add_find (collecting)
[ ]  118    0    0  118 /  500    13.3s Maps.add_find (collecting)
[ ]  129    0    0  129 /  500    13.4s Maps.add_find (collecting)
[ ]  146    0    0  146 /  500    14.0s Maps.add_find (collecting)
[ ]  147    0    0  147 /  500    16.1s Maps.add_find (collecting)
[ ]  148    0    0  148 /  500    16.3s Maps.add_find (collecting)
[ ]  149    0    0  149 /  500    16.5s Maps.add_find (collecting)
[ ]  159    0    0  159 /  500    16.6s Maps.add_find
[ ]  161    0    0  161 /  500    16.8s Maps.add_find (collecting)
[ ]  167    0    0  167 /  500    16.9s Maps.add_find (collecting)
[ ]  177    0    0  177 /  500    17.3s Maps.add_find (collecting)
[ ]  179    0    0  179 /  500    17.7s Maps.add_find (collecting)
[ ]  185    0    0  185 /  500    20.3s Maps.add_find (collecting)
[ ]  188    0    0  188 /  500    20.6s Maps.add_find (collecting)
[ ]  192    0    0  192 /  500    20.8s Maps.add_find (collecting)
[ ]  195    0    0  195 /  500    22.5s Maps.add_find (collecting)
[ ]  196    0    0  196 /  500    22.6s Maps.add_find (collecting)
[ ]  199    0    0  199 /  500    22.9s Maps.add_find (collecting)
[ ]  202    0    0  202 /  500    24.9s Maps.add_find (collecting)
[ ]  211    0    0  211 /  500    25.3s Maps.add_find (collecting)
[ ]  212    0    0  212 /  500    26.2s Maps.add_find (collecting)
[ ]  215    0    0  215 /  500    26.4s Maps.add_find (collecting)
[ ]  222    0    0  222 /  500    26.6s Maps.add_find (collecting)
[ ]  225    0    0  225 /  500    27.7s Maps.add_find (collecting)
[ ]  235    0    0  235 /  500    28.0s Maps.add_find (collecting)
[ ]  237    0    0  237 /  500    28.1s Maps.add_find (collecting)
[ ]  240    0    0  240 /  500    30.6s Maps.add_find (collecting)
[ ]  241    0    0  241 /  500    30.7s Maps.add_find
[ ]  244    0    0  244 /  500    31.0s Maps.add_find (collecting)
[ ]  247    0    0  247 /  500    32.8s Maps.add_find (collecting)
[ ]  249    0    0  249 /  500    33.2s Maps.add_find (collecting)
[ ]  260    0    0  260 /  500    33.3s Maps.add_find (collecting)
[ ]  268    0    0  268 /  500    33.4s Maps.add_find (collecting)
[ ]  269    0    0  269 /  500    33.7s Maps.add_find (collecting)
[ ]  280    0    0  280 /  500    33.8s Maps.add_find (collecting)
[ ]  286    0    0  286 /  500    34.0s Maps.add_find (collecting)
[ ]  300    0    0  300 /  500    34.1s Maps.add_find (collecting)
[ ]  311    0    0  311 /  500    34.3s Maps.add_find (collecting)
[ ]  322    0    0  322 /  500    34.4s Maps.add_find (collecting)
[ ]  329    0    0  329 /  500    34.6s Maps.add_find (collecting)
[ ]  346    0    0  346 /  500    34.8s Maps.add_find (collecting)
[ ]  360    0    0  360 /  500    35.1s Maps.add_find (collecting)
[ ]  362    0    0  362 /  500    36.6s Maps.add_find (collecting)
[ ]  364    0    0  364 /  500    36.7s Maps.add_find (collecting)
[ ]  365    0    0  365 /  500    36.8s Maps.add_find (collecting)
[ ]  370    0    0  370 /  500    38.6s Maps.add_find (collecting)
[ ]  382    0    0  382 /  500    38.9s Maps.add_find (collecting)
[ ]  384    0    0  384 /  500    40.9s Maps.add_find (collecting)
[ ]  385    0    0  385 /  500    41.1s Maps.add_find (collecting)
[ ]  388    0    0  388 /  500    41.2s Maps.add_find (collecting)
[ ]  389    0    0  389 /  500    41.4s Maps.add_find (collecting)
[ ]  390    0    0  390 /  500    43.9s Maps.add_find (collecting)
[ ]  391    0    0  391 /  500    44.0s Maps.add_find (collecting)
[ ]  393    0    0  393 /  500    44.2s Maps.add_find (collecting)
[ ]  399    0    0  399 /  500    45.8s Maps.add_find (collecting)
[ ]  402    0    0  402 /  500    45.9s Maps.add_find (collecting)
[ ]  408    0    0  408 /  500    47.2s Maps.add_find (collecting)
[ ]  412    0    0  412 /  500    47.3s Maps.add_find (collecting)
[ ]  420    0    0  420 /  500    47.5s Maps.add_find (collecting)
[ ]  426    0    0  426 /  500    47.7s Maps.add_find (collecting)
[ ]  433    0    0  433 /  500    47.9s Maps.add_find (collecting)
[ ]  440    0    0  440 /  500    48.1s Maps.add_find (collecting)
[ ]  446    0    0  446 /  500    48.3s Maps.add_find (collecting)
[ ]  453    0    0  453 /  500    49.1s Maps.add_find (collecting)
[ ]  456    0    0  456 /  500    49.4s Maps.add_find (collecting)
[ ]  458    0    0  458 /  500    51.8s Maps.add_find (collecting)
[ ]  459    0    0  459 /  500    51.9s Maps.add_find
[ ]  460    0    0  460 /  500    53.0s Maps.add_find (collecting)
[ ]  465    0    0  465 /  500    53.1s Maps.add_find (collecting)
[ ]  472    0    0  472 /  500    54.8s Maps.add_find (collecting)
[ ]  475    0    0  475 /  500    55.0s Maps.add_find (collecting)
[ ]  479    0    0  479 /  500    55.1s Maps.add_find (collecting)
[ ]  487    0    0  487 /  500    55.3s Maps.add_find (collecting)
[ ]  493    0    0  493 /  500    55.5s Maps.add_find (collecting)
[ ]  497    0    0  497 /  500    55.7s Maps.add_find (collecting)
[✓]  500    0    0  500 /  500    55.7s 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-03-25 19:39.51 ---> saved as "e80c0271b5528a6ce27e3de3da935e00d61595dd8072fe6d5ff13bdf807087a1"
Job succeeded
2026-03-25 19:40.21: Job succeeded