(for PR #29222)
2026-01-19 20:51.28: New job: test dolmen.0.10, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29222/head (ad79ca9644feb512edcb7b55f7521e075b88d976)
on debian-13-ocaml-4.10/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:debian-13-ocaml-4.10@sha256:f460347c28c5546512b344e58dc40c28c3c0f98f97b1ae1bc50f0c9fccf304d7
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 "\"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-01-19 20:51.28: Using cache hint "ocaml/opam:debian-13-ocaml-4.10@sha256:f460347c28c5546512b344e58dc40c28c3c0f98f97b1ae1bc50f0c9fccf304d7-dolmen.0.10-ad79ca9644feb512edcb7b55f7521e075b88d976"
2026-01-19 20:51.28: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.10@sha256:f460347c28c5546512b344e58dc40c28c3c0f98f97b1ae1bc50f0c9fccf304d7)
(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 \"\\\"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-01-19 20:51.28: Waiting for resource in pool OCluster
2026-01-19 21:01.29: Waiting for worker…
2026-01-19 21:05.44: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
Updating files: 87% (16819/19232)
Updating files: 88% (16925/19232)
Updating files: 89% (17117/19232)
Updating files: 90% (17309/19232)
Updating files: 91% (17502/19232)
Updating files: 92% (17694/19232)
Updating files: 93% (17886/19232)
Updating files: 94% (18079/19232)
Updating files: 95% (18271/19232)
Updating files: 96% (18463/19232)
Updating files: 97% (18656/19232)
Updating files: 98% (18848/19232)
Updating files: 99% (19040/19232)
Updating files: 100% (19232/19232)
Updating files: 100% (19232/19232), done.
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:debian-13-ocaml-4.10@sha256:f460347c28c5546512b344e58dc40c28c3c0f98f97b1ae1bc50f0c9fccf304d7)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.10@sha256:f460347c28c5546512b344e58dc40c28c3c0f98f97b1ae1bc50f0c9fccf304d7' locally
docker.io/ocaml/opam@sha256:f460347c28c5546512b344e58dc40c28c3c0f98f97b1ae1bc50f0c9fccf304d7: Pulling from ocaml/opam
2ca1bfae7ba8: Already exists
3baeae2ed4cf: Already exists
b254ca288623: Already exists
745976a04e35: Already exists
a516242b2337: Already exists
9bb526cd9631: Already exists
3737e8f76884: Already exists
6a8811ebcb2c: Already exists
386dffb80382: Already exists
e04d691eea35: Already exists
bb72c0d1c3f0: Already exists
3a56fcb872cd: Already exists
5abffa2313de: Already exists
7ed80bc2b055: Already exists
87c92835260d: Already exists
5624e0ee5ca5: Already exists
96e54dc9b357: Already exists
96e54dc9b357: Already exists
7c484d393436: Already exists
16b8d7610542: Already exists
c5ac47ffe6ef: Already exists
00cfb259c8ac: Already exists
4f4fb700ef54: Already exists
4658a16b5264: Already exists
7c82a6a00032: Already exists
b76e2612fc73: Already exists
da0741a07551: Already exists
102a21125d73: Already exists
d244b294335f: Already exists
e47a432b94fb: Already exists
6ee7cce1e23d: Already exists
2475e9cbd3e5: Already exists
4f8aac8ae1e5: Already exists
3e59226f7823: Already exists
6d429b9a6ce7: Already exists
dc8bbbd9edf9: Already exists
66ec5629681d: Already exists
74661ee64965: Already exists
b3088c441ac7: Already exists
11be3e645e01: Already exists
e9a0ff031006: Already exists
8dfc3c1c0909: Pulling fs layer
dfb0bef42a95: Pulling fs layer
3072a31bac1c: Pulling fs layer
f965320a0609: Pulling fs layer
f965320a0609: Waiting
3072a31bac1c: Verifying Checksum
3072a31bac1c: Download complete
dfb0bef42a95: Verifying Checksum
dfb0bef42a95: Download complete
f965320a0609: Verifying Checksum
f965320a0609: Download complete
8dfc3c1c0909: Verifying Checksum
8dfc3c1c0909: Download complete
8dfc3c1c0909: Pull complete
dfb0bef42a95: Pull complete
3072a31bac1c: Pull complete
f965320a0609: Pull complete
Digest: sha256:f460347c28c5546512b344e58dc40c28c3c0f98f97b1ae1bc50f0c9fccf304d7
Status: Downloaded newer image for ocaml/opam@sha256:f460347c28c5546512b344e58dc40c28c3c0f98f97b1ae1bc50f0c9fccf304d7
2026-01-19 21:05.46 ---> using "a8e17f43b5a89242ec7ab4a3e45a5034b6e3c532d0ee726a612438509a44dfed" 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-01-19 21:05.46 ---> using "6b0f96963755d61fc231da2bea43309693e8914bcf89f88ce0b1b2a683fb86f1" 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-01-19 21:05.46 ---> using "f3d47fa48572c8521a906a096314b3c227292a96f37fbe4a5039782492ca4006" 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 4.10
# invariant ["ocaml-base-compiler" {= "4.10.2"}]
# compiler-packages ocaml-base-compiler.4.10.2
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.10/lib/ocaml/stublibs:/home/opam/.opam/4.10/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.10.2
2026-01-19 21:05.46 ---> using "f707ec4efc3e6242e3fcf7c0686f83e608432f74399dc494e60450338b695230" 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-01-19 21:05.46 ---> using "9fd91df49287737fb17dad406201a26ad3ac3e689b96c5508d6e401ab7f3028a" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-01-19 21:05.47 ---> using "dc93eefb56658c0bd8290c08c74e481664762de2ff211e2a459110d3da2e5a91" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-19 21:05.47 ---> using "8f732f535f2c89a4d6d617541abee47d7bb6ccde3735509f6d5c3fac5e8a718a" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- 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-security trixie-security/main amd64 Packages [96.1 kB]
- Fetched 187 kB in 0s (1475 kB/s)
- Reading package lists...
-
2026-01-19 21:05.47 ---> using "7460e2939db8df69d9ff6867deda133a5d7166469f7e9245d23e99aa896cca6c" from cache
/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 21:05.47 ---> using "4272643ff65d8af90d4138aadbd4f5f53a7b884cf472e926cebd5fca93c6bcdc" 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 (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 21:06.44 ---> saved as "008d91c5943173823f1a0ba5a1c8cead2183d4073c7753a100fab4667fe60ac6"
/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.8.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.11.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)
-> installed camlp-streams.5.0.1
-> retrieved csexp.1.5.2 (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0 (https://opam.ocaml.org/cache)
-> retrieved logs.0.8.0 (https://opam.ocaml.org/cache)
-> 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.11.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 cppo.1.8.0
-> installed result.1.5
-> installed astring.0.8.5
-> installed stdlib-shims.0.3.0
-> installed re.1.11.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.8.0
-> installed mdx.2.5.1
-> installed dolmen.0.10
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-19 21:09.03 ---> saved as "adc3921cad30822d6c6fee16175fab37e21a92dbd813509cc0282c9981b3550b"
/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 (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/4.10/.opam-switch/build/dolmen.0.10)
- (cd _build/default/src/languages/dimacs && /home/opam/.opam/4.10/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/4.10/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/smtlib2/v2.6/response && /home/opam/.opam/4.10/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/zf && /home/opam/.opam/4.10/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/dimacs && /home/opam/.opam/4.10/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/icnf && /home/opam/.opam/4.10/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/smtlib2/v2.6/script && /home/opam/.opam/4.10/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/poly && /home/opam/.opam/4.10/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/4.10/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/4.10/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/4.10/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/4.10/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/4.10/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/4.10/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/4.10/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/4.10/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/4.10/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/smtlib2/poly && /home/opam/.opam/4.10/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/zf && /home/opam/.opam/4.10/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/v2.6/script && /home/opam/.opam/4.10/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/4.10/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/4.10/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/4.10/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/4.10/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: 107080163
- generated error fail pass / total time test name
-
[ ] 0 0 0 0 / 50 0.0s Print.smtlib2_6.id
[ ] 29 0 0 5 / 50 1.1s Print.smtlib2_6.id (collecting)
[ ] 38 0 0 6 / 50 2.3s Print.smtlib2_6.id (collecting)
[ ] 48 0 0 6 / 50 2.5s Print.smtlib2_6.id (collecting)
[ ] 49 0 0 6 / 50 2.7s Print.smtlib2_6.id (collecting)
[ ] 61 0 0 6 / 50 2.9s Print.smtlib2_6.id (collecting)
[ ] 75 0 0 8 / 50 3.9s Print.smtlib2_6.id (collecting)
[ ] 76 0 0 8 / 50 4.1s Print.smtlib2_6.id (collecting)
[ ] 78 0 0 8 / 50 4.2s Print.smtlib2_6.id (collecting)
[ ] 94 0 0 11 / 50 4.5s Print.smtlib2_6.id (collecting)
[ ] 98 0 0 12 / 50 6.5s Print.smtlib2_6.id (collecting)
[ ] 101 0 0 12 / 50 6.7s Print.smtlib2_6.id (collecting)
[ ] 117 0 0 13 / 50 6.9s Print.smtlib2_6.id (collecting)
[ ] 121 0 0 13 / 50 7.1s Print.smtlib2_6.id (collecting)
[ ] 130 0 0 16 / 50 7.3s Print.smtlib2_6.id (collecting)
[ ] 139 0 0 18 / 50 9.2s Print.smtlib2_6.id (collecting)
[ ] 144 0 0 19 / 50 10.0s Print.smtlib2_6.id (collecting)
[ ] 149 0 0 19 / 50 10.2s Print.smtlib2_6.id (collecting)
[ ] 154 0 0 19 / 50 11.6s Print.smtlib2_6.id (collecting)
[ ] 163 0 0 19 / 50 11.8s Print.smtlib2_6.id (collecting)
[ ] 168 0 0 19 / 50 12.0s Print.smtlib2_6.id (collecting)
[ ] 170 0 0 19 / 50 12.2s Print.smtlib2_6.id (collecting)
[ ] 182 0 0 22 / 50 12.4s Print.smtlib2_6.id (collecting)
[ ] 194 0 0 22 / 50 12.7s Print.smtlib2_6.id (collecting)
[ ] 203 0 0 22 / 50 12.8s Print.smtlib2_6.id (collecting)
[ ] 216 0 0 23 / 50 14.7s Print.smtlib2_6.id (collecting)
[ ] 233 0 0 25 / 50 14.9s Print.smtlib2_6.id (collecting)
[ ] 239 0 0 25 / 50 15.0s Print.smtlib2_6.id (collecting)
[ ] 244 0 0 25 / 50 15.4s Print.smtlib2_6.id (collecting)
[ ] 261 0 0 27 / 50 15.6s Print.smtlib2_6.id (collecting)
[ ] 265 0 0 27 / 50 15.7s Print.smtlib2_6.id (collecting)
[ ] 272 0 0 29 / 50 15.9s Print.smtlib2_6.id (collecting)
[ ] 277 0 0 29 / 50 16.0s Print.smtlib2_6.id (collecting)
[ ] 284 0 0 29 / 50 16.1s Print.smtlib2_6.id (collecting)
[ ] 299 0 0 30 / 50 16.2s Print.smtlib2_6.id (collecting)
[ ] 311 0 0 31 / 50 16.4s Print.smtlib2_6.id (collecting)
[ ] 316 0 0 32 / 50 17.9s Print.smtlib2_6.id (collecting)
[ ] 322 0 0 32 / 50 18.1s Print.smtlib2_6.id (collecting)
[ ] 342 0 0 33 / 50 18.2s Print.smtlib2_6.id (collecting)
[ ] 357 0 0 34 / 50 18.5s Print.smtlib2_6.id (collecting)
[ ] 361 0 0 34 / 50 18.8s Print.smtlib2_6.id (collecting)
[ ] 365 0 0 35 / 50 18.9s Print.smtlib2_6.id (collecting)
[ ] 372 0 0 36 / 50 19.1s Print.smtlib2_6.id (collecting)
[ ] 378 0 0 36 / 50 19.3s Print.smtlib2_6.id (collecting)
[ ] 383 0 0 37 / 50 21.3s Print.smtlib2_6.id (collecting)
[ ] 389 0 0 37 / 50 21.6s Print.smtlib2_6.id (collecting)
[ ] 390 0 0 37 / 50 21.8s Print.smtlib2_6.id (collecting)
[ ] 402 0 0 38 / 50 21.9s Print.smtlib2_6.id (collecting)
[ ] 412 0 0 40 / 50 23.0s Print.smtlib2_6.id (collecting)
[ ] 413 0 0 40 / 50 23.1s Print.smtlib2_6.id (collecting)
[ ] 415 0 0 40 / 50 23.3s Print.smtlib2_6.id (collecting)
[ ] 417 0 0 40 / 50 25.7s Print.smtlib2_6.id (collecting)
[ ] 422 0 0 40 / 50 27.7s Print.smtlib2_6.id (collecting)
[ ] 429 0 0 40 / 50 28.0s Print.smtlib2_6.id (collecting)
[ ] 430 0 0 40 / 50 30.3s Print.smtlib2_6.id (collecting)
[ ] 438 0 0 41 / 50 30.4s Print.smtlib2_6.id (collecting)
[ ] 449 0 0 43 / 50 30.6s Print.smtlib2_6.id (collecting)
[ ] 452 0 0 43 / 50 30.7s Print.smtlib2_6.id (collecting)
[ ] 462 0 0 44 / 50 31.0s Print.smtlib2_6.id (collecting)
[ ] 469 0 0 45 / 50 31.1s Print.smtlib2_6.id (collecting)
[ ] 487 0 0 46 / 50 31.5s Print.smtlib2_6.id (collecting)
[ ] 498 0 0 46 / 50 31.7s Print.smtlib2_6.id (collecting)
[✓] 500 0 0 46 / 50 31.7s Print.smtlib2_6.id
-
[ ] 0 0 0 0 / 50 0.0s Print.smtlib2_6.id_printable
[ ] 3 0 0 0 / 50 2.5s Print.smtlib2_6.id_printable (collecting)
[ ] 8 0 0 2 / 50 2.7s Print.smtlib2_6.id_printable (collecting)
[ ] 22 0 0 11 / 50 3.0s Print.smtlib2_6.id_printable (collecting)
[ ] 38 0 0 16 / 50 6.1s Print.smtlib2_6.id_printable (collecting)
[ ] 40 0 0 17 / 50 6.4s Print.smtlib2_6.id_printable (collecting)
[ ] 48 0 0 18 / 50 6.8s Print.smtlib2_6.id_printable (collecting)
[ ] 61 0 0 22 / 50 7.3s Print.smtlib2_6.id_printable (collecting)
[ ] 79 0 0 27 / 50 7.4s Print.smtlib2_6.id_printable (collecting)
[ ] 82 0 0 27 / 50 8.1s Print.smtlib2_6.id_printable (collecting)
[ ] 88 0 0 30 / 50 8.3s Print.smtlib2_6.id_printable (collecting)
[ ] 101 0 0 34 / 50 8.7s Print.smtlib2_6.id_printable (collecting)
[ ] 111 0 0 37 / 50 9.1s Print.smtlib2_6.id_printable (collecting)
[ ] 121 0 0 39 / 50 9.4s Print.smtlib2_6.id_printable (collecting)
[ ] 126 0 0 41 / 50 9.5s Print.smtlib2_6.id_printable (collecting)
[ ] 132 0 0 44 / 50 9.8s Print.smtlib2_6.id_printable (collecting)
[ ] 136 0 0 45 / 50 10.0s Print.smtlib2_6.id_printable (collecting)
[ ] 138 0 0 46 / 50 10.3s Print.smtlib2_6.id_printable (collecting)
[✓] 151 0 0 50 / 50 10.3s Print.smtlib2_6.id_printable
-
[ ] 0 0 0 0 / 50 0.0s Print.smtlib2_poly.id
[ ] 25 0 0 3 / 50 0.1s Print.smtlib2_poly.id (collecting)
[ ] 29 0 0 5 / 50 1.7s Print.smtlib2_poly.id (collecting)
[ ] 38 0 0 6 / 50 3.7s Print.smtlib2_poly.id (collecting)
[ ] 40 0 0 6 / 50 3.9s Print.smtlib2_poly.id (collecting)
[ ] 48 0 0 6 / 50 4.2s Print.smtlib2_poly.id (collecting)
[ ] 49 0 0 6 / 50 4.5s Print.smtlib2_poly.id (collecting)
[ ] 61 0 0 6 / 50 4.8s Print.smtlib2_poly.id (collecting)
[ ] 75 0 0 8 / 50 6.4s Print.smtlib2_poly.id (collecting)
[ ] 76 0 0 8 / 50 6.7s Print.smtlib2_poly.id (collecting)
[ ] 78 0 0 8 / 50 6.9s Print.smtlib2_poly.id (collecting)
[ ] 82 0 0 8 / 50 7.1s Print.smtlib2_poly.id (collecting)
[ ] 94 0 0 11 / 50 7.4s Print.smtlib2_poly.id (collecting)
[ ] 98 0 0 12 / 50 10.5s Print.smtlib2_poly.id (collecting)
[ ] 101 0 0 12 / 50 10.8s Print.smtlib2_poly.id (collecting)
[ ] 117 0 0 13 / 50 11.0s Print.smtlib2_poly.id (collecting)
[ ] 121 0 0 13 / 50 11.2s Print.smtlib2_poly.id (collecting)
[ ] 130 0 0 16 / 50 11.4s Print.smtlib2_poly.id (collecting)
[ ] 139 0 0 18 / 50 14.8s Print.smtlib2_poly.id (collecting)
[ ] 144 0 0 19 / 50 16.4s Print.smtlib2_poly.id (collecting)
[ ] 145 0 0 19 / 50 16.8s Print.smtlib2_poly.id (collecting)
[ ] 154 0 0 19 / 50 20.4s Print.smtlib2_poly.id (collecting)
[ ] 163 0 0 19 / 50 20.7s Print.smtlib2_poly.id (collecting)
[ ] 168 0 0 19 / 50 21.1s Print.smtlib2_poly.id (collecting)
[ ] 169 0 0 19 / 50 21.2s Print.smtlib2_poly.id (collecting)
[ ] 170 0 0 19 / 50 21.5s Print.smtlib2_poly.id (collecting)
[ ] 182 0 0 22 / 50 21.8s Print.smtlib2_poly.id (collecting)
[ ] 189 0 0 22 / 50 22.0s Print.smtlib2_poly.id (collecting)
[ ] 194 0 0 22 / 50 22.1s Print.smtlib2_poly.id (collecting)
[ ] 200 0 0 22 / 50 22.5s Print.smtlib2_poly.id (collecting)
[ ] 210 0 0 23 / 50 22.7s Print.smtlib2_poly.id (collecting)
[ ] 216 0 0 23 / 50 25.6s Print.smtlib2_poly.id (collecting)
[ ] 222 0 0 23 / 50 25.8s Print.smtlib2_poly.id (collecting)
[ ] 233 0 0 25 / 50 26.1s Print.smtlib2_poly.id (collecting)
[ ] 239 0 0 25 / 50 26.2s Print.smtlib2_poly.id (collecting)
[ ] 244 0 0 25 / 50 26.6s Print.smtlib2_poly.id (collecting)
[ ] 260 0 0 27 / 50 26.8s Print.smtlib2_poly.id (collecting)
[ ] 261 0 0 27 / 50 26.9s Print.smtlib2_poly.id (collecting)
[ ] 265 0 0 27 / 50 27.4s Print.smtlib2_poly.id (collecting)
[ ] 266 0 0 27 / 50 27.6s Print.smtlib2_poly.id (collecting)
[ ] 272 0 0 29 / 50 27.8s Print.smtlib2_poly.id (collecting)
[ ] 277 0 0 29 / 50 28.0s Print.smtlib2_poly.id (collecting)
[ ] 284 0 0 29 / 50 28.2s Print.smtlib2_poly.id (collecting)
[ ] 299 0 0 30 / 50 28.4s Print.smtlib2_poly.id (collecting)
[ ] 311 0 0 31 / 50 28.5s Print.smtlib2_poly.id (collecting)
[ ] 316 0 0 32 / 50 31.6s Print.smtlib2_poly.id (collecting)
[ ] 322 0 0 32 / 50 32.0s Print.smtlib2_poly.id (collecting)
[ ] 331 0 0 32 / 50 32.2s Print.smtlib2_poly.id (collecting)
[ ] 342 0 0 33 / 50 32.3s Print.smtlib2_poly.id (collecting)
[ ] 357 0 0 34 / 50 32.6s Print.smtlib2_poly.id (collecting)
[ ] 359 0 0 34 / 50 32.7s Print.smtlib2_poly.id (collecting)
[ ] 361 0 0 34 / 50 33.0s Print.smtlib2_poly.id (collecting)
[ ] 365 0 0 35 / 50 33.1s Print.smtlib2_poly.id
[ ] 371 0 0 36 / 50 33.2s Print.smtlib2_poly.id (collecting)
[ ] 372 0 0 36 / 50 33.7s Print.smtlib2_poly.id (collecting)
[ ] 377 0 0 36 / 50 33.9s Print.smtlib2_poly.id (collecting)
[ ] 378 0 0 36 / 50 34.0s Print.smtlib2_poly.id (collecting)
[ ] 383 0 0 37 / 50 37.4s Print.smtlib2_poly.id (collecting)
[ ] 384 0 0 37 / 50 37.5s Print.smtlib2_poly.id (collecting)
[ ] 389 0 0 37 / 50 37.8s Print.smtlib2_poly.id (collecting)
[ ] 390 0 0 37 / 50 38.1s Print.smtlib2_poly.id (collecting)
[ ] 401 0 0 38 / 50 38.2s Print.smtlib2_poly.id (collecting)
[ ] 402 0 0 38 / 50 38.4s Print.smtlib2_poly.id (collecting)
[ ] 412 0 0 40 / 50 40.2s Print.smtlib2_poly.id (collecting)
[ ] 413 0 0 40 / 50 40.5s Print.smtlib2_poly.id (collecting)
[ ] 415 0 0 40 / 50 40.7s Print.smtlib2_poly.id (collecting)
[ ] 417 0 0 40 / 50 43.5s Print.smtlib2_poly.id (collecting)
[ ] 422 0 0 40 / 50 45.5s Print.smtlib2_poly.id (collecting)
[ ] 429 0 0 40 / 50 45.7s Print.smtlib2_poly.id (collecting)
[ ] 430 0 0 40 / 50 49.0s Print.smtlib2_poly.id (collecting)
[ ] 435 0 0 41 / 50 49.1s Print.smtlib2_poly.id (collecting)
[ ] 449 0 0 43 / 50 49.4s Print.smtlib2_poly.id (collecting)
[ ] 451 0 0 43 / 50 49.5s Print.smtlib2_poly.id (collecting)
[ ] 452 0 0 43 / 50 49.6s Print.smtlib2_poly.id (collecting)
[ ] 459 0 0 43 / 50 49.9s Print.smtlib2_poly.id (collecting)
[ ] 462 0 0 44 / 50 50.2s Print.smtlib2_poly.id (collecting)
[ ] 469 0 0 45 / 50 50.4s Print.smtlib2_poly.id (collecting)
[ ] 474 0 0 45 / 50 50.5s Print.smtlib2_poly.id (collecting)
[ ] 487 0 0 46 / 50 50.7s Print.smtlib2_poly.id (collecting)
[ ] 498 0 0 46 / 50 51.0s Print.smtlib2_poly.id (collecting)
[✓] 500 0 0 46 / 50 51.0s Print.smtlib2_poly.id
-
[ ] 0 0 0 0 / 50 0.0s Print.smtlib2_poly.id_printable
[ ] 2 0 0 0 / 50 0.1s Print.smtlib2_poly.id_printable (collecting)
[ ] 3 0 0 0 / 50 2.7s Print.smtlib2_poly.id_printable (collecting)
[ ] 8 0 0 2 / 50 2.9s Print.smtlib2_poly.id_printable (collecting)
[ ] 22 0 0 11 / 50 3.2s Print.smtlib2_poly.id_printable (collecting)
[ ] 38 0 0 16 / 50 6.9s Print.smtlib2_poly.id_printable (collecting)
[ ] 40 0 0 17 / 50 7.3s Print.smtlib2_poly.id_printable (collecting)
[ ] 48 0 0 18 / 50 7.8s Print.smtlib2_poly.id_printable (collecting)
[ ] 61 0 0 22 / 50 8.2s Print.smtlib2_poly.id_printable (collecting)
[ ] 79 0 0 27 / 50 8.3s Print.smtlib2_poly.id_printable (collecting)
[ ] 82 0 0 27 / 50 8.6s Print.smtlib2_poly.id_printable (collecting)
[ ] 88 0 0 30 / 50 8.8s Print.smtlib2_poly.id_printable (collecting)
[ ] 101 0 0 34 / 50 9.6s Print.smtlib2_poly.id_printable (collecting)
[ ] 111 0 0 37 / 50 10.0s Print.smtlib2_poly.id_printable (collecting)
[ ] 121 0 0 39 / 50 10.3s Print.smtlib2_poly.id_printable (collecting)
[ ] 126 0 0 41 / 50 10.5s Print.smtlib2_poly.id_printable (collecting)
[ ] 132 0 0 44 / 50 10.7s Print.smtlib2_poly.id_printable (collecting)
[ ] 136 0 0 45 / 50 10.9s Print.smtlib2_poly.id_printable (collecting)
[ ] 138 0 0 46 / 50 11.1s Print.smtlib2_poly.id_printable (collecting)
[✓] 151 0 0 50 / 50 11.2s Print.smtlib2_poly.id_printable
-
[ ] 0 0 0 0 / 500 0.0s Maps.add_find
[ ] 3 0 0 3 / 500 0.1s Maps.add_find (collecting)
[ ] 4 0 0 4 / 500 0.4s Maps.add_find (collecting)
[ ] 7 0 0 7 / 500 3.7s Maps.add_find (collecting)
[ ] 14 0 0 14 / 500 3.8s Maps.add_find (collecting)
[ ] 26 0 0 26 / 500 3.9s Maps.add_find (collecting)
[ ] 29 0 0 29 / 500 6.1s Maps.add_find (collecting)
[ ] 36 0 0 36 / 500 6.2s Maps.add_find (collecting)
[ ] 43 0 0 43 / 500 6.6s Maps.add_find (collecting)
[ ] 46 0 0 46 / 500 8.0s Maps.add_find (collecting)
[ ] 49 0 0 49 / 500 10.4s Maps.add_find (collecting)
[ ] 50 0 0 50 / 500 10.5s Maps.add_find (collecting)
[ ] 61 0 0 61 / 500 10.8s Maps.add_find (collecting)
[ ] 63 0 0 63 / 500 13.8s Maps.add_find (collecting)
[ ] 64 0 0 64 / 500 13.9s Maps.add_find (collecting)
[ ] 75 0 0 75 / 500 14.0s Maps.add_find (collecting)
[ ] 79 0 0 79 / 500 14.2s Maps.add_find (collecting)
[ ] 82 0 0 82 / 500 15.3s Maps.add_find (collecting)
[ ] 88 0 0 88 / 500 15.7s Maps.add_find (collecting)
[ ] 91 0 0 91 / 500 15.9s Maps.add_find (collecting)
[ ] 92 0 0 92 / 500 16.1s Maps.add_find (collecting)
[ ] 100 0 0 100 / 500 16.2s Maps.add_find (collecting)
[ ] 109 0 0 109 / 500 16.3s Maps.add_find (collecting)
[ ] 118 0 0 118 / 500 16.6s Maps.add_find (collecting)
[ ] 120 0 0 120 / 500 20.2s Maps.add_find (collecting)
[ ] 122 0 0 122 / 500 20.5s Maps.add_find (collecting)
[ ] 133 0 0 133 / 500 21.6s Maps.add_find (collecting)
[ ] 143 0 0 143 / 500 21.8s Maps.add_find (collecting)
[ ] 144 0 0 144 / 500 21.9s Maps.add_find (collecting)
[ ] 152 0 0 152 / 500 22.5s Maps.add_find (collecting)
[ ] 155 0 0 155 / 500 25.8s Maps.add_find (collecting)
[ ] 156 0 0 156 / 500 25.9s Maps.add_find
[ ] 166 0 0 166 / 500 28.4s Maps.add_find (collecting)
[ ] 172 0 0 172 / 500 29.5s Maps.add_find (collecting)
[ ] 177 0 0 177 / 500 29.8s Maps.add_find (collecting)
[ ] 193 0 0 193 / 500 32.7s Maps.add_find (collecting)
[ ] 195 0 0 195 / 500 32.9s Maps.add_find (collecting)
[ ] 196 0 0 196 / 500 33.1s Maps.add_find (collecting)
[ ] 198 0 0 198 / 500 33.4s Maps.add_find (collecting)
[ ] 207 0 0 207 / 500 34.4s Maps.add_find (collecting)
[ ] 208 0 0 208 / 500 34.5s Maps.add_find (collecting)
[ ] 213 0 0 213 / 500 34.6s Maps.add_find (collecting)
[ ] 224 0 0 224 / 500 34.7s Maps.add_find (collecting)
[ ] 231 0 0 231 / 500 34.8s Maps.add_find (collecting)
[ ] 247 0 0 247 / 500 36.0s Maps.add_find (collecting)
[ ] 251 0 0 251 / 500 36.2s Maps.add_find (collecting)
[ ] 257 0 0 257 / 500 36.3s Maps.add_find (collecting)
[ ] 263 0 0 263 / 500 36.6s Maps.add_find (collecting)
[ ] 268 0 0 268 / 500 36.7s Maps.add_find (collecting)
[ ] 273 0 0 273 / 500 36.9s Maps.add_find (collecting)
[ ] 281 0 0 281 / 500 37.0s Maps.add_find (collecting)
[ ] 287 0 0 287 / 500 37.1s Maps.add_find (collecting)
[ ] 290 0 0 290 / 500 37.3s Maps.add_find (collecting)
[ ] 295 0 0 295 / 500 37.5s Maps.add_find (collecting)
[ ] 304 0 0 304 / 500 37.7s Maps.add_find (collecting)
[ ] 321 0 0 321 / 500 39.2s Maps.add_find (collecting)
[ ] 324 0 0 324 / 500 39.4s Maps.add_find (collecting)
[ ] 326 0 0 326 / 500 39.9s Maps.add_find (collecting)
[ ] 334 0 0 334 / 500 40.1s Maps.add_find (collecting)
[ ] 342 0 0 342 / 500 40.4s Maps.add_find (collecting)
[ ] 343 0 0 343 / 500 40.5s Maps.add_find (collecting)
[ ] 344 0 0 344 / 500 40.7s Maps.add_find (collecting)
[ ] 353 0 0 353 / 500 40.9s Maps.add_find (collecting)
[ ] 355 0 0 355 / 500 41.1s Maps.add_find (collecting)
[ ] 361 0 0 361 / 500 41.3s Maps.add_find (collecting)
[ ] 363 0 0 363 / 500 41.4s Maps.add_find (collecting)
[ ] 365 0 0 365 / 500 43.8s Maps.add_find (collecting)
[ ] 369 0 0 369 / 500 46.7s Maps.add_find (collecting)
[ ] 382 0 0 382 / 500 46.8s Maps.add_find (collecting)
[ ] 395 0 0 395 / 500 47.0s Maps.add_find (collecting)
[ ] 402 0 0 402 / 500 47.3s Maps.add_find (collecting)
[ ] 405 0 0 405 / 500 47.4s Maps.add_find (collecting)
[ ] 412 0 0 412 / 500 47.7s Maps.add_find (collecting)
[ ] 413 0 0 413 / 500 48.0s Maps.add_find (collecting)
[ ] 418 0 0 418 / 500 48.3s Maps.add_find (collecting)
[ ] 421 0 0 421 / 500 49.0s Maps.add_find (collecting)
[ ] 427 0 0 427 / 500 49.3s Maps.add_find (collecting)
[ ] 434 0 0 434 / 500 49.6s Maps.add_find (collecting)
[ ] 437 0 0 437 / 500 52.5s Maps.add_find (collecting)
[ ] 441 0 0 441 / 500 52.9s Maps.add_find (collecting)
[ ] 453 0 0 453 / 500 53.2s Maps.add_find (collecting)
[ ] 456 0 0 456 / 500 53.4s Maps.add_find (collecting)
[ ] 461 0 0 461 / 500 53.6s Maps.add_find (collecting)
[ ] 463 0 0 463 / 500 53.7s Maps.add_find (collecting)
[ ] 470 0 0 470 / 500 53.8s Maps.add_find (collecting)
[ ] 475 0 0 475 / 500 55.5s Maps.add_find (collecting)
[ ] 486 0 0 486 / 500 55.7s Maps.add_find (collecting)
[ ] 488 0 0 488 / 500 56.0s Maps.add_find (collecting)
[ ] 490 0 0 490 / 500 57.8s Maps.add_find (collecting)
[ ] 493 0 0 493 / 500 58.1s Maps.add_find (collecting)
[ ] 494 0 0 494 / 500 58.2s Maps.add_find (collecting)
[✓] 500 0 0 500 / 500 58.2s 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 21:12.05 ---> saved as "d8d103b7590a90dbf8719355801f14789f0932fbf6ed32ceb752386467de195c"
Job succeeded
2026-01-19 21:12.22: Job succeeded