(for PR #29582)

2026-03-25 23:09.43: New job: test dates_calc.0.0.4 with ocaml-compiler.5.4.0~beta1, 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 40ee9f8d41e293fa1327d03c279f5e61e22157f8
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~beta1 5.4.0~beta1
RUN opam reinstall --update-invariant ocaml-compiler.5.4.0~beta1; \
    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~beta1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall dates_calc.0.0.4; \
    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" != 'dates_calc.0.0.4' && 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 dates_calc.0.0.4) || true
RUN opam reinstall --with-test --verbose dates_calc.0.0.4; \
    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" != 'dates_calc.0.0.4' && 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 23:09.43: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6-ocaml-compiler.5.4.0~beta1-dates_calc.0.0.4-fa5fb3a6a806e832e4c7791145889a6bbe8b64ef"
2026-03-25 23:09.43: 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~beta1 5.4.0~beta1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall --update-invariant ocaml-compiler.5.4.0~beta1;\
             \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~beta1' && 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 dates_calc.0.0.4;\
             \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\" != 'dates_calc.0.0.4' && 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 dates_calc.0.0.4) || true"))
 (run (shell  "opam reinstall --with-test --verbose dates_calc.0.0.4;\
             \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\" != 'dates_calc.0.0.4' && 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 23:09.43: Waiting for resource in pool OCluster
2026-03-25 23:54.59: Waiting for worker…
2026-03-25 23:57.11: Got resource from pool OCluster
Building on eumache.caelum.ci.dev
All commits already cached
Updating files:  62% (11559/18536)
Updating files:  63% (11678/18536)
Updating files:  64% (11864/18536)
Updating files:  65% (12049/18536)
Updating files:  66% (12234/18536)
Updating files:  67% (12420/18536)
Updating files:  68% (12605/18536)
Updating files:  69% (12790/18536)
Updating files:  70% (12976/18536)
Updating files:  71% (13161/18536)
Updating files:  72% (13346/18536)
Updating files:  73% (13532/18536)
Updating files:  74% (13717/18536)
Updating files:  75% (13902/18536)
Updating files:  76% (14088/18536)
Updating files:  77% (14273/18536)
Updating files:  78% (14459/18536)
Updating files:  79% (14644/18536)
Updating files:  80% (14829/18536)
Updating files:  81% (15015/18536)
Updating files:  82% (15200/18536)
Updating files:  83% (15385/18536)
Updating files:  84% (15571/18536)
Updating files:  85% (15756/18536)
Updating files:  86% (15941/18536)
Updating files:  87% (16127/18536)
Updating files:  88% (16312/18536)
Updating files:  89% (16498/18536)
Updating files:  90% (16683/18536)
Updating files:  91% (16868/18536)
Updating files:  92% (17054/18536)
Updating files:  93% (17239/18536)
Updating files:  94% (17424/18536)
Updating files:  95% (17610/18536)
Updating files:  96% (17795/18536)
Updating files:  97% (17980/18536)
Updating files:  98% (18166/18536)
Updating files:  99% (18351/18536)
Updating files: 100% (18536/18536)
Updating files: 100% (18536/18536), done.
HEAD is now at 40ee9f8d41 Merge pull request #29587 from astrada/gdfuse08
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)
Unable to find image 'ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6' locally
docker.io/ocaml/opam@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6: Pulling from ocaml/opam
866771c43bf5: Already exists
1e49bea09367: Already exists
e793768537e6: Already exists
ed323d3d481a: Already exists
7df34a5cd5f1: Already exists
fd712d3eb935: Already exists
4b9fb8c99118: Already exists
9d9a01948b94: Already exists
0f1514f90b32: Already exists
e1ec5a753447: Already exists
03cc323e2f71: Already exists
c09c08ea9749: Already exists
b36b619f8e6b: Already exists
195344ca5274: Already exists
228ee78582a6: Already exists
504bde1c25b3: Already exists
9d8b1356c89f: Already exists
9d8b1356c89f: Already exists
568fb6dda155: Already exists
c499c9198aea: Already exists
048e5e358118: Already exists
871ca48eb45d: Already exists
4f4fb700ef54: Already exists
a5a2568b9df9: Already exists
068cf3106ac8: Already exists
559f54ec9b29: Already exists
798ffd96fde5: Already exists
e9a891bf80d7: Already exists
d720cfe12674: Already exists
c81c932f4a91: Already exists
79f24fa3bb11: Already exists
8c1debcd8c20: Already exists
1bb2cfea7250: Already exists
2b3d3ca75e4c: Already exists
557cacaf263c: Already exists
d10483022eef: Already exists
7b62a90d8223: Already exists
28ce8ea66e72: Already exists
d975909ea717: Already exists
5c215c69c247: Already exists
e7c082452a54: Already exists
f6cbd774d654: Already exists
b40777a84cca: Already exists
7bb5edb9c889: Already exists
020670bcefab: Already exists
46df05d0db83: Already exists
45bde7b38933: Already exists
b4d63fa01ada: Already exists
Digest: sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6
Status: Downloaded newer image for ocaml/opam@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6
2026-03-25 23:57.22 ---> 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 23:57.22 ---> 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 23:57.22 ---> 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 23:57.22 ---> 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 23:57.22 ---> using "04a48515eea40c32b96da0c71328b4bba0edb66eed83d4f78554b39097cf1f25" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-25 23:57.23 ---> using "07a68ecb21bed61e4f94fa4dcb50d9c7e84f81448f8ae7e9e9983c91027df4a2" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-25 23:57.23 ---> using "b26a47ea5c8289d9e604d194e0a5dfeb524275bd8a7c64613ecd9c7e1857f13a" 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 (7538 kB/s)
- Reading package lists...
- 
2026-03-25 23:57.23 ---> using "0b343335ec438165d35b471bbf0eb838e16886a027b79662715b77b328e1271c" from cache

/home/opam: (run (shell "opam pin add -k version -yn ocaml-compiler.5.4.0~beta1 5.4.0~beta1"))
ocaml-compiler is now pinned to version 5.4.0~beta1
2026-03-25 23:57.23 ---> using "e1c05b46f28d7574e116a5b10ba98f694969006f7796f6a98c361e246ff746c8" 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~beta1;\
                        \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~beta1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
ocaml-compiler.5.4.0~beta1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== remove 1 package
  - remove    ocaml-base-compiler 5.4.0 (pinned)                [conflicts with ocaml-compiler]
=== downgrade 1 package
  - downgrade ocaml-compiler      5.4.0 to 5.4.0~beta1 (pinned)
=== recompile 6 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-config        3                             [uses ocaml-base-compiler]
  - recompile opam-depext         1.2.3                         [uses ocaml]
=== install 1 package
  - install   ocaml-variants      5.4.0~beta1+options           [required by ocaml]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocaml-compiler.5.4.0~beta1  (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~beta1
-> installed ocaml-variants.5.4.0~beta1+options
-> 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
[NOTE] Switch invariant was updated to ["ocaml-variants" {= "5.4.0~beta1+options"}]
       Use `opam switch set-invariant' to change it.
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 23:57.23 ---> using "3817a208ed5f7baeb43f88e56244319516f39faddd782fe35a9ef1c9797c14d8" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dates_calc.0.0.4;\
                        \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\" != 'dates_calc.0.0.4' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
dates_calc.0.0.4 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 2 packages
  - install dates_calc 0.0.4
  - install dune       3.22.0 [required by dates_calc]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dates_calc.0.0.4  (cached)
-> retrieved dune.3.22.0  (cached)
-> installed dune.3.22.0
-> installed dates_calc.0.0.4
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 23:58.26 ---> saved as "0abbdc69a65028fcea3f380e8e099aa479135ede6515dd9af37afb0657039e68"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test dates_calc.0.0.4) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile dates_calc         0.0.4
=== install 16 packages
  - install   alcotest           1.9.1  [required by dates_calc]
  - install   astring            0.8.5  [required by alcotest]
  - install   cmdliner           2.1.0  [required by alcotest]
  - install   fmt                0.11.0 [required by alcotest]
  - install   ocaml-syntax-shims 1.0.0  [required by alcotest]
  - install   ocamlbuild         0.16.1 [required by fmt, astring, uutf]
  - install   ocamlfind          1.9.8  [required by fmt, astring, uutf]
  - install   ounit2             2.2.7  [required by qcheck-ounit]
  - install   qcheck             0.91   [required by dates_calc]
  - install   qcheck-core        0.91   [required by qcheck]
  - install   qcheck-ounit       0.91   [required by qcheck]
  - install   re                 1.14.0 [required by alcotest]
  - install   seq                base   [required by ounit2]
  - install   stdlib-shims       0.3.0  [required by alcotest]
  - install   topkg              1.1.1  [required by fmt, astring, uutf]
  - install   uutf               1.0.4  [required by alcotest]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1  (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5  (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.0  (https://opam.ocaml.org/cache)
-> retrieved dates_calc.0.0.4  (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0  (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0  (https://opam.ocaml.org/cache)
-> retrieved ocamlbuild.0.16.1  (https://opam.ocaml.org/cache)
-> retrieved ocamlfind.1.9.8  (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)
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> retrieved seq.base  (2 extra sources)
-> retrieved seq.base  (2 extra sources)
-> installed seq.base
-> retrieved stdlib-shims.0.3.0  (https://opam.ocaml.org/cache)
-> retrieved topkg.1.1.1  (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> installed ocaml-syntax-shims.1.0.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
-> installed ocamlfind.1.9.8
-> installed cmdliner.2.1.0
-> removed   dates_calc.0.0.4
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed alcotest.1.9.1
-> installed dates_calc.0.0.4
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-26 00:00.22 ---> saved as "4ad476799f1c46c8003a608822930b79328e792b18c81194706bad30350aa56c"

/home/opam: (run (shell  "opam reinstall --with-test --verbose dates_calc.0.0.4;\
                        \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\" != 'dates_calc.0.0.4' && 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 dates_calc 0.0.4

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [dates_calc.0.0.4: extract]
-> retrieved dates_calc.0.0.4  (cached)
Processing  2/4: [dates_calc: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "dates_calc" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/dates_calc.0.0.4)
- (cd _build/default/test && ./unit.exe)
- Testing `unit'.
- This run has ID `CI3AC5QB'.
- 
-   [OK]          add_dates                        0   days.
-   [OK]          add_dates                        1   months_exact.
-   [OK]          add_dates                        2   months_ambig.
-   [OK]          add_dates                        3   years_exact.
-   [OK]          add_dates                        4   years_ambig.
-   [OK]          first_last_day_of_month          0   all.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/dates_calc.0.0.4/_build/default/test/_build/_tests/unit'.
- Test Successful in 0.006s. 6 tests run.
- (cd _build/default/test && ./prop.exe)
- 
random seed: 176103052
-   generated   error    fail    pass /   total     time test name
- 
[ ]       0       0       0       0 /    1000     0.0s anon_test_1
[ ]     194       0       0     194 /    1000     0.1s anon_test_1
[ ]     498       0       0     498 /    1000     0.2s anon_test_1
[ ]     799       0       0     799 /    1000     0.3s anon_test_1
[✓]    1000       0       0    1000 /    1000     0.4s anon_test_1
- 
[ ]       0       0       0       0 /    1000     0.0s anon_test_2
[ ]       9       0       0       9 /    1000     0.1s anon_test_2
[ ]      17       0       0      17 /    1000     0.2s anon_test_2
[ ]      29       0       0      29 /    1000     0.3s anon_test_2
[ ]      40       0       0      40 /    1000     0.4s anon_test_2
[ ]      54       0       0      54 /    1000     0.5s anon_test_2
[ ]      67       0       0      67 /    1000     0.6s anon_test_2
[ ]      78       0       0      78 /    1000     0.7s anon_test_2
[ ]      97       0       0      97 /    1000     0.8s anon_test_2
[ ]     109       0       0     109 /    1000     0.9s anon_test_2
[ ]     120       0       0     120 /    1000     1.1s anon_test_2
[ ]     134       0       0     134 /    1000     1.2s anon_test_2
[ ]     147       0       0     147 /    1000     1.3s anon_test_2
[ ]     158       0       0     158 /    1000     1.4s anon_test_2
[ ]     178       0       0     178 /    1000     1.5s anon_test_2
[ ]     190       0       0     190 /    1000     1.6s anon_test_2
[ ]     210       0       0     210 /    1000     1.7s anon_test_2
[ ]     227       0       0     227 /    1000     1.8s anon_test_2
[ ]     235       0       0     235 /    1000     1.9s anon_test_2
[ ]     248       0       0     248 /    1000     2.0s anon_test_2
[ ]     260       0       0     260 /    1000     2.1s anon_test_2
[ ]     276       0       0     276 /    1000     2.2s anon_test_2
[ ]     286       0       0     286 /    1000     2.3s anon_test_2
[ ]     298       0       0     298 /    1000     2.4s anon_test_2
[ ]     312       0       0     312 /    1000     2.5s anon_test_2
[ ]     323       0       0     323 /    1000     2.6s anon_test_2
[ ]     336       0       0     336 /    1000     2.7s anon_test_2
[ ]     350       0       0     350 /    1000     2.9s anon_test_2
[ ]     362       0       0     362 /    1000     3.0s anon_test_2
[ ]     371       0       0     371 /    1000     3.1s anon_test_2
[ ]     384       0       0     384 /    1000     3.2s anon_test_2
[ ]     404       0       0     404 /    1000     3.3s anon_test_2
[ ]     422       0       0     422 /    1000     3.4s anon_test_2
[ ]     432       0       0     432 /    1000     3.5s anon_test_2
[ ]     444       0       0     444 /    1000     3.6s anon_test_2
[ ]     459       0       0     459 /    1000     3.7s anon_test_2
[ ]     470       0       0     470 /    1000     3.8s anon_test_2
[ ]     481       0       0     481 /    1000     3.9s anon_test_2
[ ]     497       0       0     497 /    1000     4.0s anon_test_2
[ ]     509       0       0     509 /    1000     4.1s anon_test_2
[ ]     520       0       0     520 /    1000     4.3s anon_test_2
[ ]     534       0       0     534 /    1000     4.4s anon_test_2
[ ]     550       0       0     550 /    1000     4.5s anon_test_2
[ ]     571       0       0     571 /    1000     4.6s anon_test_2
[ ]     589       0       0     589 /    1000     4.7s anon_test_2
[ ]     602       0       0     602 /    1000     4.8s anon_test_2
[ ]     616       0       0     616 /    1000     4.9s anon_test_2
[ ]     629       0       0     629 /    1000     5.0s anon_test_2
[ ]     643       0       0     643 /    1000     5.1s anon_test_2
[ ]     657       0       0     657 /    1000     5.3s anon_test_2
[ ]     672       0       0     672 /    1000     5.4s anon_test_2
[ ]     684       0       0     684 /    1000     5.5s anon_test_2
[ ]     694       0       0     694 /    1000     5.6s anon_test_2
[ ]     706       0       0     706 /    1000     5.7s anon_test_2
[ ]     717       0       0     717 /    1000     5.8s anon_test_2
[ ]     729       0       0     729 /    1000     5.9s anon_test_2
[ ]     741       0       0     741 /    1000     6.0s anon_test_2
[ ]     758       0       0     758 /    1000     6.1s anon_test_2
[ ]     771       0       0     771 /    1000     6.2s anon_test_2
[ ]     786       0       0     786 /    1000     6.3s anon_test_2
[ ]     795       0       0     795 /    1000     6.4s anon_test_2
[ ]     805       0       0     805 /    1000     6.5s anon_test_2
[ ]     817       0       0     817 /    1000     6.6s anon_test_2
[ ]     830       0       0     830 /    1000     6.7s anon_test_2
[ ]     840       0       0     840 /    1000     6.8s anon_test_2
[ ]     853       0       0     853 /    1000     6.9s anon_test_2
[ ]     864       0       0     864 /    1000     7.0s anon_test_2
[ ]     881       0       0     881 /    1000     7.2s anon_test_2
[ ]     895       0       0     895 /    1000     7.3s anon_test_2
[ ]     908       0       0     908 /    1000     7.4s anon_test_2
[ ]     918       0       0     918 /    1000     7.5s anon_test_2
[ ]     935       0       0     935 /    1000     7.6s anon_test_2
[ ]     948       0       0     948 /    1000     7.7s anon_test_2
[ ]     965       0       0     965 /    1000     7.8s anon_test_2
[ ]     975       0       0     975 /    1000     7.9s anon_test_2
[ ]     990       0       0     990 /    1000     8.0s anon_test_2
[✓]    1000       0       0    1000 /    1000     8.1s anon_test_2
- 
[ ]       0       0       0       0 / 1000000     0.0s h1
[ ]    9603       0       0    9603 / 1000000     0.1s h1
[ ]   19164       0       0   19164 / 1000000     0.2s h1
[ ]   28798       0       0   28798 / 1000000     0.3s h1
[ ]   38364       0       0   38364 / 1000000     0.4s h1
[ ]   47929       0       0   47929 / 1000000     0.5s h1
[ ]   57763       0       0   57763 / 1000000     0.6s h1
[ ]   67482       0       0   67482 / 1000000     0.7s h1 (   testing)
[ ]   77194       0       0   77194 / 1000000     0.8s h1
[ ]   87041       0       0   87041 / 1000000     0.9s h1
[ ]   96959       0       0   96959 / 1000000     1.0s h1
[ ]  106546       0       0  106546 / 1000000     1.1s h1
[ ]  116497       0       0  116497 / 1000000     1.2s h1
[ ]  126092       0       0  126092 / 1000000     1.3s h1
[ ]  134982       0       0  134982 / 1000000     1.4s h1
[ ]  144128       0       0  144128 / 1000000     1.5s h1
[ ]  153674       0       0  153674 / 1000000     1.6s h1 (generating)
[ ]  163333       0       0  163333 / 1000000     1.7s h1 (collecting)
[ ]  172544       0       0  172544 / 1000000     1.8s h1
[ ]  182242       0       0  182242 / 1000000     1.9s h1
[ ]  191500       0       0  191500 / 1000000     2.0s h1
[ ]  201270       0       0  201270 / 1000000     2.1s h1
[ ]  210761       0       0  210761 / 1000000     2.2s h1
[ ]  220659       0       0  220659 / 1000000     2.3s h1
[ ]  230223       0       0  230223 / 1000000     2.4s h1
[ ]  239616       0       0  239616 / 1000000     2.5s h1
[ ]  249384       0       0  249384 / 1000000     2.6s h1
[ ]  258937       0       0  258937 / 1000000     2.7s h1
[ ]  268693       0       0  268693 / 1000000     2.8s h1
[ ]  278269       0       0  278269 / 1000000     2.9s h1
[ ]  287640       0       0  287640 / 1000000     3.0s h1
[ ]  297204       0       0  297204 / 1000000     3.1s h1
[ ]  306816       0       0  306816 / 1000000     3.2s h1
[ ]  316466       0       0  316466 / 1000000     3.3s h1
[ ]  326317       0       0  326317 / 1000000     3.4s h1
[ ]  335818       0       0  335818 / 1000000     3.5s h1 (   testing)
[ ]  345523       0       0  345523 / 1000000     3.6s h1
[ ]  355107       0       0  355107 / 1000000     3.7s h1
[ ]  364855       0       0  364855 / 1000000     3.8s h1
[ ]  374443       0       0  374443 / 1000000     3.9s h1
[ ]  384056       0       0  384056 / 1000000     4.0s h1
[ ]  393540       0       0  393540 / 1000000     4.1s h1
[ ]  403060       0       0  403060 / 1000000     4.2s h1
[ ]  412599       0       0  412599 / 1000000     4.3s h1
[ ]  421944       0       0  421944 / 1000000     4.4s h1
[ ]  431489       0       0  431489 / 1000000     4.5s h1
[ ]  441137       0       0  441137 / 1000000     4.6s h1
[ ]  450903       0       0  450903 / 1000000     4.7s h1
[ ]  460518       0       0  460518 / 1000000     4.8s h1
[ ]  470029       0       0  470029 / 1000000     4.9s h1
[ ]  479784       0       0  479784 / 1000000     5.0s h1
[ ]  489798       0       0  489798 / 1000000     5.1s h1
[ ]  499530       0       0  499530 / 1000000     5.2s h1
[ ]  508809       0       0  508809 / 1000000     5.3s h1
[ ]  517769       0       0  517769 / 1000000     5.4s h1
[ ]  527223       0       0  527223 / 1000000     5.5s h1 (   testing)
[ ]  536779       0       0  536779 / 1000000     5.6s h1
[ ]  546409       0       0  546409 / 1000000     5.7s h1
[ ]  555416       0       0  555416 / 1000000     5.8s h1
[ ]  565033       0       0  565033 / 1000000     5.9s h1
[ ]  574519       0       0  574519 / 1000000     6.0s h1
[ ]  583648       0       0  583648 / 1000000     6.1s h1
[ ]  593410       0       0  593410 / 1000000     6.2s h1
[ ]  603466       0       0  603466 / 1000000     6.3s h1
[ ]  612985       0       0  612985 / 1000000     6.4s h1
[ ]  622570       0       0  622570 / 1000000     6.5s h1
[ ]  632505       0       0  632505 / 1000000     6.6s h1
[ ]  641949       0       0  641949 / 1000000     6.7s h1
[ ]  651577       0       0  651577 / 1000000     6.8s h1
[ ]  661192       0       0  661192 / 1000000     6.9s h1
[ ]  671225       0       0  671225 / 1000000     7.0s h1
[ ]  681139       0       0  681139 / 1000000     7.1s h1
[ ]  690863       0       0  690863 / 1000000     7.2s h1
[ ]  699877       0       0  699877 / 1000000     7.3s h1
[ ]  709434       0       0  709434 / 1000000     7.4s h1
[ ]  719074       0       0  719074 / 1000000     7.5s h1
[ ]  728510       0       0  728510 / 1000000     7.6s h1
[ ]  738046       0       0  738046 / 1000000     7.7s h1
[ ]  746575       0       0  746575 / 1000000     7.8s h1
[ ]  756143       0       0  756143 / 1000000     7.9s h1
[ ]  765919       0       0  765919 / 1000000     8.0s h1
[ ]  775145       0       0  775145 / 1000000     8.1s h1
[ ]  784537       0       0  784537 / 1000000     8.2s h1
[ ]  794234       0       0  794234 / 1000000     8.3s h1
[ ]  803991       0       0  803991 / 1000000     8.4s h1
[ ]  813738       0       0  813738 / 1000000     8.5s h1
[ ]  823416       0       0  823416 / 1000000     8.6s h1
[ ]  832965       0       0  832965 / 1000000     8.7s h1
[ ]  842619       0       0  842619 / 1000000     8.8s h1
[ ]  852302       0       0  852302 / 1000000     8.9s h1
[ ]  862048       0       0  862048 / 1000000     9.0s h1 (collecting)
[ ]  871762       0       0  871762 / 1000000     9.1s h1
[ ]  881487       0       0  881487 / 1000000     9.2s h1
[ ]  891052       0       0  891052 / 1000000     9.3s h1
[ ]  900314       0       0  900314 / 1000000     9.4s h1
[ ]  910280       0       0  910280 / 1000000     9.5s h1
[ ]  920393       0       0  920393 / 1000000     9.6s h1
[ ]  930404       0       0  930404 / 1000000     9.7s h1
[ ]  940338       0       0  940338 / 1000000     9.8s h1
[ ]  949992       0       0  949992 / 1000000     9.9s h1
[ ]  959668       0       0  959668 / 1000000    10.0s h1
[ ]  969279       0       0  969279 / 1000000    10.1s h1
[ ]  979010       0       0  979010 / 1000000    10.2s h1
[ ]  988744       0       0  988744 / 1000000    10.3s h1
[ ]  998174       0       0  998174 / 1000000    10.4s h1
[✓] 1000000       0       0 1000000 / 1000000    10.4s h1
- 
[ ]       0       0       0       0 / 1000000     0.0s h2
[ ]    4913       0       0    4913 / 1000000     0.1s h2
[ ]    9987       0       0    9987 / 1000000     0.2s h2
[ ]   14858       0       0   14858 / 1000000     0.3s h2
[ ]   19805       0       0   19805 / 1000000     0.4s h2
[ ]   24816       0       0   24816 / 1000000     0.5s h2
[ ]   29780       0       0   29780 / 1000000     0.6s h2
[ ]   34840       0       0   34840 / 1000000     0.7s h2
[ ]   39775       0       0   39775 / 1000000     0.8s h2
[ ]   44756       0       0   44756 / 1000000     0.9s h2
[ ]   49599       0       0   49599 / 1000000     1.0s h2
[ ]   54694       0       0   54694 / 1000000     1.1s h2
[ ]   59704       0       0   59704 / 1000000     1.2s h2
[ ]   64440       0       0   64440 / 1000000     1.3s h2
[ ]   69573       0       0   69573 / 1000000     1.4s h2
[ ]   74380       0       0   74380 / 1000000     1.5s h2
[ ]   79233       0       0   79233 / 1000000     1.6s h2
[ ]   84134       0       0   84134 / 1000000     1.7s h2
[ ]   89087       0       0   89087 / 1000000     1.8s h2
[ ]   94032       0       0   94032 / 1000000     1.9s h2
[ ]   99188       0       0   99188 / 1000000     2.0s h2
[ ]  104098       0       0  104098 / 1000000     2.1s h2
[ ]  109180       0       0  109180 / 1000000     2.2s h2
[ ]  114299       0       0  114299 / 1000000     2.3s h2
[ ]  119418       0       0  119418 / 1000000     2.4s h2
[ ]  124401       0       0  124401 / 1000000     2.5s h2
[ ]  129423       0       0  129423 / 1000000     2.6s h2
[ ]  134488       0       0  134488 / 1000000     2.7s h2
[ ]  139503       0       0  139503 / 1000000     2.8s h2
[ ]  144463       0       0  144463 / 1000000     2.9s h2
[ ]  149525       0       0  149525 / 1000000     3.0s h2
[ ]  154522       0       0  154522 / 1000000     3.1s h2
[ ]  159510       0       0  159510 / 1000000     3.2s h2
[ ]  164416       0       0  164416 / 1000000     3.3s h2
[ ]  169295       0       0  169295 / 1000000     3.4s h2
[ ]  174274       0       0  174274 / 1000000     3.5s h2
[ ]  179271       0       0  179271 / 1000000     3.6s h2
[ ]  184074       0       0  184074 / 1000000     3.7s h2
[ ]  188955       0       0  188955 / 1000000     3.8s h2
[ ]  194048       0       0  194048 / 1000000     3.9s h2
[ ]  199076       0       0  199076 / 1000000     4.0s h2
[ ]  204041       0       0  204041 / 1000000     4.1s h2
[ ]  209079       0       0  209079 / 1000000     4.2s h2
[ ]  213486       0       0  213486 / 1000000     4.3s h2
[ ]  218185       0       0  218185 / 1000000     4.4s h2
[ ]  223051       0       0  223051 / 1000000     4.5s h2
[ ]  227895       0       0  227895 / 1000000     4.6s h2
[ ]  232858       0       0  232858 / 1000000     4.7s h2
[ ]  237699       0       0  237699 / 1000000     4.8s h2
[ ]  242577       0       0  242577 / 1000000     4.9s h2
[ ]  247672       0       0  247672 / 1000000     5.0s h2
[ ]  252694       0       0  252694 / 1000000     5.1s h2
[ ]  257800       0       0  257800 / 1000000     5.2s h2
[ ]  262878       0       0  262878 / 1000000     5.3s h2
[ ]  267876       0       0  267876 / 1000000     5.4s h2
[ ]  272863       0       0  272863 / 1000000     5.5s h2
[ ]  277840       0       0  277840 / 1000000     5.6s h2
[ ]  282901       0       0  282901 / 1000000     5.7s h2
[ ]  287880       0       0  287880 / 1000000     5.8s h2 (collecting)
[ ]  292090       0       0  292090 / 1000000     5.9s h2
[ ]  297061       0       0  297061 / 1000000     6.0s h2
[ ]  301997       0       0  301997 / 1000000     6.1s h2
[ ]  306990       0       0  306990 / 1000000     6.2s h2
[ ]  312032       0       0  312032 / 1000000     6.3s h2
[ ]  317054       0       0  317054 / 1000000     6.4s h2
[ ]  322067       0       0  322067 / 1000000     6.5s h2
[ ]  327173       0       0  327173 / 1000000     6.6s h2
[ ]  332100       0       0  332100 / 1000000     6.7s h2
[ ]  337063       0       0  337063 / 1000000     6.8s h2
[ ]  342030       0       0  342030 / 1000000     6.9s h2
[ ]  347066       0       0  347066 / 1000000     7.0s h2
[ ]  351973       0       0  351973 / 1000000     7.1s h2
[ ]  356786       0       0  356786 / 1000000     7.2s h2
[ ]  361726       0       0  361726 / 1000000     7.3s h2
[ ]  366672       0       0  366672 / 1000000     7.4s h2
[ ]  371775       0       0  371775 / 1000000     7.5s h2
[ ]  376773       0       0  376773 / 1000000     7.6s h2
[ ]  381892       0       0  381892 / 1000000     7.7s h2
[ ]  386868       0       0  386868 / 1000000     7.8s h2
[ ]  391778       0       0  391778 / 1000000     7.9s h2
[ ]  396063       0       0  396063 / 1000000     8.0s h2
[ ]  399893       0       0  399893 / 1000000     8.1s h2
[ ]  403101       0       0  403101 / 1000000     8.2s h2
[ ]  407366       0       0  407366 / 1000000     8.3s h2
[ ]  412284       0       0  412284 / 1000000     8.4s h2
[ ]  417251       0       0  417251 / 1000000     8.5s h2 (collecting)
[ ]  422153       0       0  422153 / 1000000     8.6s h2 (collecting)
[ ]  427131       0       0  427131 / 1000000     8.7s h2
[ ]  432130       0       0  432130 / 1000000     8.8s h2
[ ]  437171       0       0  437171 / 1000000     8.9s h2
[ ]  441980       0       0  441980 / 1000000     9.0s h2
[ ]  447040       0       0  447040 / 1000000     9.1s h2
[ ]  451954       0       0  451954 / 1000000     9.2s h2
[ ]  457014       0       0  457014 / 1000000     9.3s h2
[ ]  462035       0       0  462035 / 1000000     9.4s h2
[ ]  467084       0       0  467084 / 1000000     9.5s h2
[ ]  472054       0       0  472054 / 1000000     9.6s h2
[ ]  477069       0       0  477069 / 1000000     9.7s h2
[ ]  481997       0       0  481997 / 1000000     9.8s h2
[ ]  486913       0       0  486913 / 1000000     9.9s h2
[ ]  491927       0       0  491927 / 1000000    10.0s h2
[ ]  496957       0       0  496957 / 1000000    10.1s h2
[ ]  502073       0       0  502073 / 1000000    10.2s h2
[ ]  507054       0       0  507054 / 1000000    10.3s h2
[ ]  512241       0       0  512241 / 1000000    10.4s h2
[ ]  517275       0       0  517275 / 1000000    10.5s h2
[ ]  521789       0       0  521789 / 1000000    10.6s h2
[ ]  526363       0       0  526363 / 1000000    10.7s h2
[ ]  531200       0       0  531200 / 1000000    10.8s h2
[ ]  536101       0       0  536101 / 1000000    10.9s h2
[ ]  540840       0       0  540840 / 1000000    11.0s h2
[ ]  545176       0       0  545176 / 1000000    11.1s h2
[ ]  550092       0       0  550092 / 1000000    11.2s h2
[ ]  555021       0       0  555021 / 1000000    11.3s h2
[ ]  559929       0       0  559929 / 1000000    11.4s h2
[ ]  564823       0       0  564823 / 1000000    11.5s h2
[ ]  569680       0       0  569680 / 1000000    11.6s h2
[ ]  574547       0       0  574547 / 1000000    11.7s h2
[ ]  579481       0       0  579481 / 1000000    11.8s h2
[ ]  583788       0       0  583788 / 1000000    11.9s h2
[ ]  588366       0       0  588366 / 1000000    12.0s h2
[ ]  593367       0       0  593367 / 1000000    12.1s h2
[ ]  598311       0       0  598311 / 1000000    12.2s h2
[ ]  603303       0       0  603303 / 1000000    12.3s h2
[ ]  608230       0       0  608230 / 1000000    12.4s h2
[ ]  613079       0       0  613079 / 1000000    12.5s h2
[ ]  618027       0       0  618027 / 1000000    12.6s h2
[ ]  623163       0       0  623163 / 1000000    12.7s h2
[ ]  628101       0       0  628101 / 1000000    12.8s h2
[ ]  633027       0       0  633027 / 1000000    12.9s h2
[ ]  637979       0       0  637979 / 1000000    13.0s h2
[ ]  642963       0       0  642963 / 1000000    13.1s h2 (generating)
[ ]  647902       0       0  647902 / 1000000    13.2s h2
[ ]  652804       0       0  652804 / 1000000    13.3s h2
[ ]  657720       0       0  657720 / 1000000    13.4s h2
[ ]  662531       0       0  662531 / 1000000    13.5s h2
[ ]  667425       0       0  667425 / 1000000    13.6s h2
[ ]  672347       0       0  672347 / 1000000    13.7s h2
[ ]  677133       0       0  677133 / 1000000    13.8s h2
[ ]  682090       0       0  682090 / 1000000    13.9s h2
[ ]  687079       0       0  687079 / 1000000    14.0s h2
[ ]  692007       0       0  692007 / 1000000    14.1s h2
[ ]  696925       0       0  696925 / 1000000    14.2s h2
[ ]  701848       0       0  701848 / 1000000    14.3s h2 (   testing)
[ ]  706753       0       0  706753 / 1000000    14.4s h2
[ ]  711717       0       0  711717 / 1000000    14.5s h2
[ ]  716631       0       0  716631 / 1000000    14.6s h2
[ ]  721680       0       0  721680 / 1000000    14.7s h2
[ ]  726588       0       0  726588 / 1000000    14.8s h2
[ ]  731502       0       0  731502 / 1000000    14.9s h2
[ ]  736474       0       0  736474 / 1000000    15.0s h2
[ ]  741329       0       0  741329 / 1000000    15.1s h2
[ ]  746182       0       0  746182 / 1000000    15.2s h2
[ ]  751150       0       0  751150 / 1000000    15.3s h2
[ ]  756014       0       0  756014 / 1000000    15.4s h2
[ ]  760907       0       0  760907 / 1000000    15.5s h2
[ ]  765791       0       0  765791 / 1000000    15.6s h2
[ ]  770723       0       0  770723 / 1000000    15.7s h2
[ ]  775612       0       0  775612 / 1000000    15.8s h2
[ ]  780476       0       0  780476 / 1000000    15.9s h2
[ ]  785427       0       0  785427 / 1000000    16.0s h2 (collecting)
[ ]  790376       0       0  790376 / 1000000    16.1s h2
[ ]  795302       0       0  795302 / 1000000    16.2s h2
[ ]  800173       0       0  800173 / 1000000    16.3s h2
[ ]  805000       0       0  805000 / 1000000    16.4s h2
[ ]  810017       0       0  810017 / 1000000    16.5s h2
[ ]  814680       0       0  814680 / 1000000    16.6s h2
[ ]  819674       0       0  819674 / 1000000    16.7s h2
[ ]  824666       0       0  824666 / 1000000    16.8s h2
[ ]  829618       0       0  829618 / 1000000    16.9s h2
[ ]  834435       0       0  834435 / 1000000    17.0s h2
[ ]  839402       0       0  839402 / 1000000    17.1s h2
[ ]  844419       0       0  844419 / 1000000    17.2s h2
[ ]  849109       0       0  849109 / 1000000    17.3s h2
[ ]  853911       0       0  853911 / 1000000    17.4s h2
[ ]  858797       0       0  858797 / 1000000    17.5s h2
[ ]  863830       0       0  863830 / 1000000    17.6s h2
[ ]  868831       0       0  868831 / 1000000    17.7s h2
[ ]  873690       0       0  873690 / 1000000    17.8s h2
[ ]  878623       0       0  878623 / 1000000    17.9s h2
[ ]  883598       0       0  883598 / 1000000    18.0s h2
[ ]  888499       0       0  888499 / 1000000    18.1s h2
[ ]  893532       0       0  893532 / 1000000    18.2s h2
[ ]  898490       0       0  898490 / 1000000    18.3s h2
[ ]  903568       0       0  903568 / 1000000    18.4s h2
[ ]  908482       0       0  908482 / 1000000    18.5s h2
[ ]  913622       0       0  913622 / 1000000    18.6s h2
[ ]  918416       0       0  918416 / 1000000    18.7s h2
[ ]  923307       0       0  923307 / 1000000    18.8s h2
[ ]  928274       0       0  928274 / 1000000    18.9s h2
[ ]  932994       0       0  932994 / 1000000    19.0s h2
[ ]  937979       0       0  937979 / 1000000    19.1s h2
[ ]  942655       0       0  942655 / 1000000    19.2s h2
[ ]  947684       0       0  947684 / 1000000    19.3s h2
[ ]  952585       0       0  952585 / 1000000    19.4s h2
[ ]  957510       0       0  957510 / 1000000    19.5s h2 (collecting)
[ ]  962157       0       0  962157 / 1000000    19.6s h2
[ ]  967109       0       0  967109 / 1000000    19.7s h2
[ ]  972042       0       0  972042 / 1000000    19.8s h2
[ ]  976960       0       0  976960 / 1000000    19.9s h2
[ ]  981877       0       0  981877 / 1000000    20.0s h2
[ ]  986786       0       0  986786 / 1000000    20.1s h2
[ ]  991797       0       0  991797 / 1000000    20.2s h2
[ ]  996733       0       0  996733 / 1000000    20.3s h2
[✓] 1000000       0       0 1000000 / 1000000    20.4s h2
- 
[ ]       0       0       0       0 / 1000000     0.0s h3
[ ]    9623       0       0    9623 / 1000000     0.1s h3
[ ]   19014       0       0   19014 / 1000000     0.2s h3
[ ]   28630       0       0   28630 / 1000000     0.3s h3
[ ]   38257       0       0   38257 / 1000000     0.4s h3
[ ]   47326       0       0   47326 / 1000000     0.5s h3
[ ]   56202       0       0   56202 / 1000000     0.6s h3
[ ]   65903       0       0   65903 / 1000000     0.7s h3
[ ]   75641       0       0   75641 / 1000000     0.8s h3
[ ]   85242       0       0   85242 / 1000000     0.9s h3
[ ]   94928       0       0   94928 / 1000000     1.0s h3
[ ]  104326       0       0  104326 / 1000000     1.1s h3
[ ]  114090       0       0  114090 / 1000000     1.2s h3
[ ]  123750       0       0  123750 / 1000000     1.3s h3 (collecting)
[ ]  133146       0       0  133146 / 1000000     1.4s h3
[ ]  142779       0       0  142779 / 1000000     1.5s h3
[ ]  152288       0       0  152288 / 1000000     1.6s h3
[ ]  161933       0       0  161933 / 1000000     1.7s h3
[ ]  171839       0       0  171839 / 1000000     1.8s h3
[ ]  181410       0       0  181410 / 1000000     1.9s h3
[ ]  191062       0       0  191062 / 1000000     2.0s h3
[ ]  200744       0       0  200744 / 1000000     2.1s h3
[ ]  210353       0       0  210353 / 1000000     2.2s h3
[ ]  220103       0       0  220103 / 1000000     2.3s h3 (collecting)
[ ]  229711       0       0  229711 / 1000000     2.4s h3
[ ]  239195       0       0  239195 / 1000000     2.5s h3 (collecting)
[ ]  248609       0       0  248609 / 1000000     2.6s h3
[ ]  258216       0       0  258216 / 1000000     2.7s h3
[ ]  267733       0       0  267733 / 1000000     2.8s h3
[ ]  277334       0       0  277334 / 1000000     2.9s h3
[ ]  286681       0       0  286681 / 1000000     3.0s h3
[ ]  296305       0       0  296305 / 1000000     3.1s h3
[ ]  306134       0       0  306134 / 1000000     3.2s h3
[ ]  315504       0       0  315504 / 1000000     3.3s h3 (collecting)
[ ]  324988       0       0  324988 / 1000000     3.4s h3
[ ]  334450       0       0  334450 / 1000000     3.5s h3
[ ]  344149       0       0  344149 / 1000000     3.6s h3
[ ]  353865       0       0  353865 / 1000000     3.7s h3 (generating)
[ ]  363460       0       0  363460 / 1000000     3.8s h3
[ ]  373055       0       0  373055 / 1000000     3.9s h3
[ ]  382709       0       0  382709 / 1000000     4.0s h3
[ ]  392437       0       0  392437 / 1000000     4.1s h3
[ ]  401594       0       0  401594 / 1000000     4.2s h3
[ ]  411101       0       0  411101 / 1000000     4.3s h3
[ ]  420757       0       0  420757 / 1000000     4.4s h3
[ ]  430488       0       0  430488 / 1000000     4.5s h3
[ ]  440028       0       0  440028 / 1000000     4.6s h3
[ ]  449561       0       0  449561 / 1000000     4.7s h3 (collecting)
[ ]  459198       0       0  459198 / 1000000     4.8s h3
[ ]  468815       0       0  468815 / 1000000     4.9s h3
[ ]  478469       0       0  478469 / 1000000     5.0s h3
[ ]  488193       0       0  488193 / 1000000     5.1s h3
[ ]  498093       0       0  498093 / 1000000     5.2s h3
[ ]  507446       0       0  507446 / 1000000     5.3s h3
[ ]  516947       0       0  516947 / 1000000     5.4s h3 (collecting)
[ ]  526604       0       0  526604 / 1000000     5.5s h3
[ ]  536234       0       0  536234 / 1000000     5.6s h3
[ ]  545715       0       0  545715 / 1000000     5.7s h3
[ ]  555244       0       0  555244 / 1000000     5.8s h3
[ ]  564559       0       0  564559 / 1000000     5.9s h3
[ ]  574108       0       0  574108 / 1000000     6.0s h3
[ ]  583962       0       0  583962 / 1000000     6.1s h3
[ ]  593489       0       0  593489 / 1000000     6.2s h3
[ ]  602874       0       0  602874 / 1000000     6.3s h3
[ ]  612403       0       0  612403 / 1000000     6.4s h3
[ ]  622009       0       0  622009 / 1000000     6.5s h3
[ ]  631657       0       0  631657 / 1000000     6.6s h3
[ ]  641109       0       0  641109 / 1000000     6.7s h3
[ ]  650389       0       0  650389 / 1000000     6.8s h3
[ ]  660057       0       0  660057 / 1000000     6.9s h3
[ ]  668700       0       0  668700 / 1000000     7.0s h3 (   testing)
[ ]  677844       0       0  677844 / 1000000     7.1s h3
[ ]  688192       0       0  688192 / 1000000     7.2s h3
[ ]  696806       0       0  696806 / 1000000     7.3s h3
[ ]  706326       0       0  706326 / 1000000     7.4s h3
[ ]  715987       0       0  715987 / 1000000     7.5s h3
[ ]  725516       0       0  725516 / 1000000     7.6s h3
[ ]  734956       0       0  734956 / 1000000     7.7s h3
[ ]  744231       0       0  744231 / 1000000     7.8s h3
[ ]  753727       0       0  753727 / 1000000     7.9s h3
[ ]  763232       0       0  763232 / 1000000     8.0s h3
[ ]  772724       0       0  772724 / 1000000     8.1s h3
[ ]  782319       0       0  782319 / 1000000     8.2s h3
[ ]  791877       0       0  791877 / 1000000     8.3s h3
[ ]  801574       0       0  801574 / 1000000     8.4s h3
[ ]  809659       0       0  809659 / 1000000     8.5s h3
[ ]  818688       0       0  818688 / 1000000     8.6s h3
[ ]  828682       0       0  828682 / 1000000     8.7s h3
[ ]  837913       0       0  837913 / 1000000     8.8s h3
[ ]  847323       0       0  847323 / 1000000     8.9s h3
[ ]  856799       0       0  856799 / 1000000     9.0s h3
[ ]  866174       0       0  866174 / 1000000     9.1s h3
[ ]  876048       0       0  876048 / 1000000     9.2s h3
[ ]  885938       0       0  885938 / 1000000     9.3s h3
[ ]  895757       0       0  895757 / 1000000     9.4s h3
[ ]  905626       0       0  905626 / 1000000     9.5s h3
[ ]  915563       0       0  915563 / 1000000     9.6s h3
[ ]  925427       0       0  925427 / 1000000     9.7s h3 (collecting)
[ ]  935213       0       0  935213 / 1000000     9.8s h3
[ ]  945056       0       0  945056 / 1000000     9.9s h3
[ ]  954864       0       0  954864 / 1000000    10.0s h3
[ ]  964758       0       0  964758 / 1000000    10.1s h3
[ ]  974613       0       0  974613 / 1000000    10.2s h3 (collecting)
[ ]  984538       0       0  984538 / 1000000    10.3s h3
[ ]  994412       0       0  994412 / 1000000    10.4s h3
[✓] 1000000       0       0 1000000 / 1000000    10.5s h3
- 
[ ]       0       0       0       0 / 1000000     0.0s h4
[ ]    3543       0       0    3543 / 1000000     0.1s h4
[ ]    7138       0       0    7138 / 1000000     0.2s h4
[ ]   10757       0       0   10757 / 1000000     0.3s h4
[ ]   14195       0       0   14195 / 1000000     0.4s h4
[ ]   17689       0       0   17689 / 1000000     0.5s h4
[ ]   21209       0       0   21209 / 1000000     0.6s h4
[ ]   24791       0       0   24791 / 1000000     0.7s h4
[ ]   28280       0       0   28280 / 1000000     0.8s h4
[ ]   31801       0       0   31801 / 1000000     0.9s h4
[ ]   35349       0       0   35349 / 1000000     1.0s h4
[ ]   38908       0       0   38908 / 1000000     1.1s h4
[ ]   42382       0       0   42382 / 1000000     1.2s h4
[ ]   45918       0       0   45918 / 1000000     1.3s h4
[ ]   49452       0       0   49452 / 1000000     1.4s h4
[ ]   53015       0       0   53015 / 1000000     1.5s h4
[ ]   56506       0       0   56506 / 1000000     1.6s h4
[ ]   60034       0       0   60034 / 1000000     1.7s h4
[ ]   63596       0       0   63596 / 1000000     1.8s h4
[ ]   67162       0       0   67162 / 1000000     1.9s h4
[ ]   70640       0       0   70640 / 1000000     2.0s h4
[ ]   74145       0       0   74145 / 1000000     2.1s h4
[ ]   77711       0       0   77711 / 1000000     2.2s h4
[ ]   81224       0       0   81224 / 1000000     2.3s h4
[ ]   84722       0       0   84722 / 1000000     2.4s h4
[ ]   88224       0       0   88224 / 1000000     2.5s h4
[ ]   91742       0       0   91742 / 1000000     2.6s h4
[ ]   95193       0       0   95193 / 1000000     2.7s h4
[ ]   98720       0       0   98720 / 1000000     2.8s h4
[ ]  102155       0       0  102155 / 1000000     2.9s h4
[ ]  105636       0       0  105636 / 1000000     3.0s h4
[ ]  109137       0       0  109137 / 1000000     3.1s h4
[ ]  112683       0       0  112683 / 1000000     3.2s h4
[ ]  116180       0       0  116180 / 1000000     3.3s h4
[ ]  119708       0       0  119708 / 1000000     3.4s h4
[ ]  123256       0       0  123256 / 1000000     3.5s h4
[ ]  126786       0       0  126786 / 1000000     3.6s h4
[ ]  130423       0       0  130423 / 1000000     3.7s h4
[ ]  133938       0       0  133938 / 1000000     3.8s h4
[ ]  137413       0       0  137413 / 1000000     3.9s h4
[ ]  140916       0       0  140916 / 1000000     4.0s h4
[ ]  144403       0       0  144403 / 1000000     4.1s h4
[ ]  147942       0       0  147942 / 1000000     4.2s h4
[ ]  151501       0       0  151501 / 1000000     4.3s h4
[ ]  155198       0       0  155198 / 1000000     4.4s h4
[ ]  158756       0       0  158756 / 1000000     4.5s h4
[ ]  162339       0       0  162339 / 1000000     4.6s h4
[ ]  165724       0       0  165724 / 1000000     4.7s h4
[ ]  169106       0       0  169106 / 1000000     4.8s h4
[ ]  172505       0       0  172505 / 1000000     4.9s h4
[ ]  175915       0       0  175915 / 1000000     5.0s h4
[ ]  179390       0       0  179390 / 1000000     5.1s h4
[ ]  182846       0       0  182846 / 1000000     5.2s h4
[ ]  186251       0       0  186251 / 1000000     5.3s h4
[ ]  189700       0       0  189700 / 1000000     5.4s h4
[ ]  193152       0       0  193152 / 1000000     5.5s h4
[ ]  196675       0       0  196675 / 1000000     5.6s h4
[ ]  200074       0       0  200074 / 1000000     5.7s h4
[ ]  203575       0       0  203575 / 1000000     5.8s h4
[ ]  206988       0       0  206988 / 1000000     5.9s h4
[ ]  210445       0       0  210445 / 1000000     6.0s h4
[ ]  213846       0       0  213846 / 1000000     6.1s h4
[ ]  217367       0       0  217367 / 1000000     6.2s h4
[ ]  221297       0       0  221297 / 1000000     6.3s h4
[ ]  224797       0       0  224797 / 1000000     6.4s h4
[ ]  228574       0       0  228574 / 1000000     6.5s h4
[ ]  232592       0       0  232592 / 1000000     6.6s h4
[ ]  236084       0       0  236084 / 1000000     6.7s h4
[ ]  239718       0       0  239718 / 1000000     6.8s h4
[ ]  243644       0       0  243644 / 1000000     6.9s h4
[ ]  247073       0       0  247073 / 1000000     7.0s h4
[ ]  250484       0       0  250484 / 1000000     7.1s h4
[ ]  254107       0       0  254107 / 1000000     7.2s h4 (collecting)
[ ]  257642       0       0  257642 / 1000000     7.3s h4
[ ]  261047       0       0  261047 / 1000000     7.4s h4
[ ]  264490       0       0  264490 / 1000000     7.5s h4
[ ]  267932       0       0  267932 / 1000000     7.6s h4
[ ]  271321       0       0  271321 / 1000000     7.7s h4
[ ]  274816       0       0  274816 / 1000000     7.8s h4
[ ]  278256       0       0  278256 / 1000000     7.9s h4
[ ]  282157       0       0  282157 / 1000000     8.0s h4
[ ]  286088       0       0  286088 / 1000000     8.1s h4
[ ]  289693       0       0  289693 / 1000000     8.2s h4
[ ]  293547       0       0  293547 / 1000000     8.3s h4
[ ]  297633       0       0  297633 / 1000000     8.4s h4
[ ]  301122       0       0  301122 / 1000000     8.5s h4
[ ]  304661       0       0  304661 / 1000000     8.6s h4
[ ]  308035       0       0  308035 / 1000000     8.7s h4
[ ]  311516       0       0  311516 / 1000000     8.8s h4
[ ]  315385       0       0  315385 / 1000000     8.9s h4
[ ]  319038       0       0  319038 / 1000000     9.0s h4
[ ]  322433       0       0  322433 / 1000000     9.1s h4
[ ]  325871       0       0  325871 / 1000000     9.2s h4
[ ]  329229       0       0  329229 / 1000000     9.3s h4
[ ]  332801       0       0  332801 / 1000000     9.4s h4
[ ]  338384       0       0  338384 / 1000000     9.5s h4
[ ]  343034       0       0  343034 / 1000000     9.6s h4
[ ]  346757       0       0  346757 / 1000000     9.7s h4
[ ]  350229       0       0  350229 / 1000000     9.8s h4
[ ]  353869       0       0  353869 / 1000000     9.9s h4
[ ]  357275       0       0  357275 / 1000000    10.0s h4
[ ]  360892       0       0  360892 / 1000000    10.1s h4
[ ]  364823       0       0  364823 / 1000000    10.2s h4
[ ]  368391       0       0  368391 / 1000000    10.3s h4
[ ]  371733       0       0  371733 / 1000000    10.4s h4
[ ]  375089       0       0  375089 / 1000000    10.5s h4
[ ]  378788       0       0  378788 / 1000000    10.6s h4
[ ]  382203       0       0  382203 / 1000000    10.7s h4
[ ]  385580       0       0  385580 / 1000000    10.8s h4
[ ]  389024       0       0  389024 / 1000000    10.9s h4
[ ]  392560       0       0  392560 / 1000000    11.0s h4
[ ]  396663       0       0  396663 / 1000000    11.1s h4
[ ]  400075       0       0  400075 / 1000000    11.2s h4
[ ]  403599       0       0  403599 / 1000000    11.3s h4
[ ]  407127       0       0  407127 / 1000000    11.4s h4 (generating)
[ ]  410732       0       0  410732 / 1000000    11.5s h4
[ ]  414348       0       0  414348 / 1000000    11.6s h4
[ ]  418167       0       0  418167 / 1000000    11.7s h4
[ ]  421691       0       0  421691 / 1000000    11.8s h4
[ ]  425308       0       0  425308 / 1000000    11.9s h4
[ ]  428691       0       0  428691 / 1000000    12.0s h4
[ ]  432117       0       0  432117 / 1000000    12.1s h4
[ ]  435686       0       0  435686 / 1000000    12.2s h4
[ ]  439589       0       0  439589 / 1000000    12.3s h4
[ ]  443111       0       0  443111 / 1000000    12.4s h4
[ ]  446494       0       0  446494 / 1000000    12.5s h4
[ ]  449942       0       0  449942 / 1000000    12.6s h4
[ ]  453326       0       0  453326 / 1000000    12.7s h4
[ ]  456645       0       0  456645 / 1000000    12.8s h4
[ ]  460077       0       0  460077 / 1000000    12.9s h4
[ ]  463383       0       0  463383 / 1000000    13.0s h4
[ ]  466617       0       0  466617 / 1000000    13.1s h4
[ ]  469987       0       0  469987 / 1000000    13.2s h4
[ ]  473415       0       0  473415 / 1000000    13.3s h4
[ ]  476909       0       0  476909 / 1000000    13.4s h4
[ ]  480261       0       0  480261 / 1000000    13.5s h4
[ ]  483669       0       0  483669 / 1000000    13.6s h4
[ ]  487153       0       0  487153 / 1000000    13.7s h4
[ ]  490623       0       0  490623 / 1000000    13.8s h4
[ ]  494106       0       0  494106 / 1000000    13.9s h4
[ ]  497522       0       0  497522 / 1000000    14.0s h4
[ ]  501688       0       0  501688 / 1000000    14.1s h4
[ ]  505501       0       0  505501 / 1000000    14.2s h4
[ ]  510618       0       0  510618 / 1000000    14.3s h4
[ ]  515852       0       0  515852 / 1000000    14.4s h4
[ ]  519326       0       0  519326 / 1000000    14.5s h4
[ ]  523247       0       0  523247 / 1000000    14.6s h4
[ ]  526651       0       0  526651 / 1000000    14.7s h4
[ ]  530080       0       0  530080 / 1000000    14.8s h4
[ ]  533545       0       0  533545 / 1000000    14.9s h4
[ ]  537028       0       0  537028 / 1000000    15.0s h4
[ ]  540484       0       0  540484 / 1000000    15.1s h4
[ ]  544810       0       0  544810 / 1000000    15.2s h4
[ ]  549607       0       0  549607 / 1000000    15.3s h4
[ ]  554139       0       0  554139 / 1000000    15.4s h4
[ ]  557875       0       0  557875 / 1000000    15.5s h4
[ ]  561705       0       0  561705 / 1000000    15.6s h4
[ ]  566194       0       0  566194 / 1000000    15.7s h4
[ ]  569616       0       0  569616 / 1000000    15.8s h4
[ ]  573197       0       0  573197 / 1000000    15.9s h4
[ ]  576981       0       0  576981 / 1000000    16.0s h4
[ ]  580412       0       0  580412 / 1000000    16.1s h4
[ ]  585465       0       0  585465 / 1000000    16.2s h4
[ ]  589220       0       0  589220 / 1000000    16.3s h4
[ ]  592639       0       0  592639 / 1000000    16.4s h4
[ ]  596832       0       0  596832 / 1000000    16.5s h4
[ ]  600256       0       0  600256 / 1000000    16.6s h4
[ ]  603657       0       0  603657 / 1000000    16.7s h4
[ ]  607089       0       0  607089 / 1000000    16.8s h4
[ ]  610475       0       0  610475 / 1000000    16.9s h4
[ ]  614022       0       0  614022 / 1000000    17.0s h4
[ ]  617607       0       0  617607 / 1000000    17.1s h4
[ ]  621265       0       0  621265 / 1000000    17.2s h4
[ ]  624923       0       0  624923 / 1000000    17.3s h4
[ ]  628580       0       0  628580 / 1000000    17.4s h4
[ ]  632187       0       0  632187 / 1000000    17.5s h4
[ ]  635756       0       0  635756 / 1000000    17.6s h4
[ ]  639296       0       0  639296 / 1000000    17.7s h4
[ ]  642863       0       0  642863 / 1000000    17.8s h4
[ ]  646377       0       0  646377 / 1000000    17.9s h4
[ ]  649776       0       0  649776 / 1000000    18.0s h4
[ ]  653186       0       0  653186 / 1000000    18.1s h4
[ ]  656629       0       0  656629 / 1000000    18.2s h4
[ ]  660096       0       0  660096 / 1000000    18.3s h4
[ ]  663602       0       0  663602 / 1000000    18.4s h4
[ ]  667124       0       0  667124 / 1000000    18.5s h4
[ ]  670634       0       0  670634 / 1000000    18.6s h4
[ ]  674130       0       0  674130 / 1000000    18.7s h4
[ ]  677546       0       0  677546 / 1000000    18.8s h4
[ ]  681061       0       0  681061 / 1000000    18.9s h4
[ ]  684575       0       0  684575 / 1000000    19.0s h4
[ ]  688192       0       0  688192 / 1000000    19.1s h4
[ ]  691812       0       0  691812 / 1000000    19.2s h4
[ ]  695384       0       0  695384 / 1000000    19.3s h4
[ ]  698798       0       0  698798 / 1000000    19.4s h4
[ ]  702309       0       0  702309 / 1000000    19.5s h4
[ ]  705867       0       0  705867 / 1000000    19.6s h4
[ ]  709335       0       0  709335 / 1000000    19.7s h4
[ ]  712770       0       0  712770 / 1000000    19.8s h4
[ ]  716304       0       0  716304 / 1000000    19.9s h4
[ ]  719624       0       0  719624 / 1000000    20.0s h4
[ ]  722952       0       0  722952 / 1000000    20.1s h4
[ ]  726454       0       0  726454 / 1000000    20.2s h4
[ ]  730069       0       0  730069 / 1000000    20.3s h4
[ ]  733875       0       0  733875 / 1000000    20.4s h4
[ ]  737242       0       0  737242 / 1000000    20.5s h4
[ ]  740409       0       0  740409 / 1000000    20.6s h4
[ ]  743587       0       0  743587 / 1000000    20.7s h4
[ ]  746785       0       0  746785 / 1000000    20.8s h4
[ ]  750273       0       0  750273 / 1000000    20.9s h4
[ ]  753241       0       0  753241 / 1000000    21.0s h4
[ ]  756468       0       0  756468 / 1000000    21.1s h4
[ ]  760980       0       0  760980 / 1000000    21.2s h4
[ ]  766436       0       0  766436 / 1000000    21.3s h4
[ ]  769957       0       0  769957 / 1000000    21.4s h4
[ ]  773485       0       0  773485 / 1000000    21.5s h4
[ ]  777072       0       0  777072 / 1000000    21.6s h4
[ ]  780548       0       0  780548 / 1000000    21.7s h4
[ ]  783975       0       0  783975 / 1000000    21.8s h4
[ ]  787313       0       0  787313 / 1000000    21.9s h4
[ ]  790733       0       0  790733 / 1000000    22.0s h4
[ ]  794744       0       0  794744 / 1000000    22.1s h4
[ ]  798466       0       0  798466 / 1000000    22.2s h4
[ ]  801975       0       0  801975 / 1000000    22.3s h4
[ ]  805345       0       0  805345 / 1000000    22.4s h4
[ ]  809999       0       0  809999 / 1000000    22.5s h4
[ ]  814476       0       0  814476 / 1000000    22.6s h4
[ ]  817806       0       0  817806 / 1000000    22.7s h4
[ ]  821129       0       0  821129 / 1000000    22.8s h4
[ ]  824537       0       0  824537 / 1000000    22.9s h4
[ ]  828157       0       0  828157 / 1000000    23.0s h4
[ ]  831802       0       0  831802 / 1000000    23.1s h4
[ ]  835293       0       0  835293 / 1000000    23.2s h4
[ ]  838729       0       0  838729 / 1000000    23.3s h4
[ ]  842256       0       0  842256 / 1000000    23.4s h4
[ ]  845828       0       0  845828 / 1000000    23.5s h4
[ ]  849271       0       0  849271 / 1000000    23.6s h4
[ ]  852693       0       0  852693 / 1000000    23.7s h4
[ ]  856101       0       0  856101 / 1000000    23.8s h4
[ ]  859428       0       0  859428 / 1000000    23.9s h4
[ ]  862963       0       0  862963 / 1000000    24.0s h4
[ ]  866375       0       0  866375 / 1000000    24.1s h4
[ ]  870007       0       0  870007 / 1000000    24.2s h4
[ ]  873429       0       0  873429 / 1000000    24.3s h4
[ ]  877000       0       0  877000 / 1000000    24.4s h4
[ ]  882414       0       0  882414 / 1000000    24.5s h4
[ ]  888162       0       0  888162 / 1000000    24.6s h4
[ ]  894038       0       0  894038 / 1000000    24.7s h4
[ ]  897989       0       0  897989 / 1000000    24.8s h4
[ ]  902733       0       0  902733 / 1000000    24.9s h4
[ ]  908614       0       0  908614 / 1000000    25.0s h4
[ ]  913929       0       0  913929 / 1000000    25.1s h4
[ ]  919031       0       0  919031 / 1000000    25.2s h4
[ ]  923934       0       0  923934 / 1000000    25.3s h4
[ ]  929254       0       0  929254 / 1000000    25.4s h4
[ ]  934077       0       0  934077 / 1000000    25.5s h4
[ ]  937649       0       0  937649 / 1000000    25.6s h4
[ ]  941072       0       0  941072 / 1000000    25.7s h4
[ ]  944529       0       0  944529 / 1000000    25.8s h4
[ ]  948043       0       0  948043 / 1000000    25.9s h4
[ ]  951644       0       0  951644 / 1000000    26.0s h4
[ ]  955173       0       0  955173 / 1000000    26.1s h4
[ ]  958707       0       0  958707 / 1000000    26.2s h4
[ ]  962182       0       0  962182 / 1000000    26.3s h4
[ ]  965600       0       0  965600 / 1000000    26.4s h4
[ ]  969167       0       0  969167 / 1000000    26.5s h4
[ ]  973339       0       0  973339 / 1000000    26.6s h4
[ ]  977660       0       0  977660 / 1000000    26.7s h4
[ ]  981190       0       0  981190 / 1000000    26.8s h4
[ ]  984585       0       0  984585 / 1000000    26.9s h4
[ ]  988079       0       0  988079 / 1000000    27.0s h4
[ ]  991439       0       0  991439 / 1000000    27.1s h4
[ ]  995147       0       0  995147 / 1000000    27.2s h4
[ ]  998765       0       0  998765 / 1000000    27.3s h4
[✓] 1000000       0       0 1000000 / 1000000    27.3s h4
- ================================================================================
- success (ran 6 tests)
-> compiled  dates_calc.0.0.4
-> removed   dates_calc.0.0.4
-> installed dates_calc.0.0.4
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-26 00:01.50 ---> saved as "85e42500bdc8d9ace5c756bd0d19329755ac452f3e523b3ed56f0ccec5b09140"
Job succeeded
2026-03-26 00:02.07: Job succeeded