(for PR #29582)

2026-03-25 13:14.48: New job: test dates_calc.0.0.6 with ocaml-compiler.5.4.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29582/head (fa5fb3a6a806e832e4c7791145889a6bbe8b64ef)
                              on debian-13-ocaml-5.4/amd64

To reproduce locally:

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

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

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

2026-03-25 13:14.48: Waiting for resource in pool OCluster
2026-03-25 19:32.27: Waiting for worker…
2026-03-25 19:34.51: Got resource from pool OCluster
Building on eumache.caelum.ci.dev
All commits already cached
Updating files:  65% (12045/18520)
Updating files:  66% (12224/18520)
Updating files:  67% (12409/18520)
Updating files:  68% (12594/18520)
Updating files:  69% (12779/18520)
Updating files:  70% (12964/18520)
Updating files:  71% (13150/18520)
Updating files:  72% (13335/18520)
Updating files:  73% (13520/18520)
Updating files:  74% (13705/18520)
Updating files:  75% (13890/18520)
Updating files:  76% (14076/18520)
Updating files:  77% (14261/18520)
Updating files:  78% (14446/18520)
Updating files:  79% (14631/18520)
Updating files:  80% (14816/18520)
Updating files:  81% (15002/18520)
Updating files:  82% (15187/18520)
Updating files:  83% (15372/18520)
Updating files:  84% (15557/18520)
Updating files:  85% (15742/18520)
Updating files:  86% (15928/18520)
Updating files:  87% (16113/18520)
Updating files:  88% (16298/18520)
Updating files:  89% (16483/18520)
Updating files:  90% (16668/18520)
Updating files:  91% (16854/18520)
Updating files:  92% (17039/18520)
Updating files:  93% (17224/18520)
Updating files:  94% (17409/18520)
Updating files:  95% (17594/18520)
Updating files:  96% (17780/18520)
Updating files:  97% (17965/18520)
Updating files:  98% (18150/18520)
Updating files:  99% (18335/18520)
Updating files: 100% (18520/18520)
Updating files: 100% (18520/18520), done.
HEAD is now at 2f93e9d461 Merge pull request #29592 from dinosaure/release-miou-v0.5.5
Merge made by the 'ort' strategy.
 packages/ocaml-compiler/ocaml-compiler.5.3.0/opam      |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.3/opam        |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4.0/opam      |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.4.0~alpha1/opam    |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.4.0~beta1/opam     |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.4.0~beta2/opam     |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4.0~rc1/opam  |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4.1/opam      |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4/opam        |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.5.0~alpha1/opam    |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.5/opam        |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.6/opam        |  5 ++++-
 packages/ocaml-option-llvm/ocaml-option-llvm.1/opam    | 18 ++++++++++++++++++
 .../ocaml-options-vanilla/ocaml-options-vanilla.1/opam |  1 +
 packages/ocaml-variants/ocaml-variants.5.2.0+msvc/opam |  2 ++
 15 files changed, 69 insertions(+), 12 deletions(-)
 create mode 100644 packages/ocaml-option-llvm/ocaml-option-llvm.1/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
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 19:34.53 ---> using "41eea30e3f639c18d8cf57c309ec76919ec7b2398036f7e41744cbce59a133d3" from cache

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

/: (workdir /home/opam)

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

/home/opam: (run (network host)
                 (shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
  - you won't be able to use mercurial repositories unless you install the hg command on your system.
  - you won't be able to use darcs repositories unless you install the darcs command on your system.

This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.

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

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-25 19:34.53 ---> using "71fa58e52457bf6a7eac317c6a6ef1e2bdf53e533a1e4fd04b90c9349347e038" from cache

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

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2026-03-25 19:34.53 ---> using "04a48515eea40c32b96da0c71328b4bba0edb66eed83d4f78554b39097cf1f25" from cache

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

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

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

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

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall --update-invariant ocaml-compiler.5.4.0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'ocaml-compiler.5.4.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
The following actions will be performed:
=== recompile 8 packages
  - recompile base-domains        base           [uses ocaml]
  - recompile base-effects        base           [uses ocaml]
  - recompile base-nnp            base           [uses base-domains]
  - recompile ocaml               5.4.0          [uses ocaml-base-compiler]
  - recompile ocaml-base-compiler 5.4.0 (pinned) [uses ocaml-compiler]
  - recompile ocaml-compiler      5.4.0 (pinned)
  - recompile ocaml-config        3              [uses ocaml-base-compiler]
  - recompile opam-depext         1.2.3          [uses ocaml]

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

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

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dates_calc.0.0.6;\
                        \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.6' && 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.6 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 2 packages
  - install dates_calc 0.0.6
  - install dune       3.22.0 [required by dates_calc]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dates_calc.0.0.6  (cached)
-> retrieved dune.3.22.0  (cached)
-> installed dune.3.22.0
-> installed dates_calc.0.0.6
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 19:35.53 ---> saved as "ceaf906c1cbf151285dbb564ad1026954ec8211a924b55fa616810ff5ed8a34f"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test dates_calc.0.0.6) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile dates_calc         0.0.6
=== 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.6  (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 ocaml-syntax-shims.1.0.0
-> installed stdlib-shims.0.3.0
-> installed re.1.14.0
-> installed ounit2.2.2.7
-> installed qcheck-core.0.91
-> installed qcheck-ounit.0.91
-> installed qcheck.0.91
-> installed ocamlfind.1.9.8
-> installed cmdliner.2.1.0
-> removed   dates_calc.0.0.6
-> 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.6
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 19:37.44 ---> saved as "3aef0092e4e0da71d8057c1f5a9425db44619ae12ee0e4fc711d5404a7310104"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [dates_calc.0.0.6: extract]
-> retrieved dates_calc.0.0.6  (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.6)
- (cd _build/default/test && ./unit.exe)
- Testing `unit'.
- This run has ID `QMZNX9T6'.
- 
-   [OK]          add_dates                        0   exact.
-   [OK]          add_dates                        1   ambig.
-   [OK]          first_last_day_of_month          0   all.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/dates_calc.0.0.6/_build/default/test/_build/_tests/unit'.
- Test Successful in 0.003s. 3 tests run.
- (cd _build/default/test && ./prop.exe)
- 
random seed: 499302954
-   generated   error    fail    pass /   total     time test name
- 
[ ]       0       0       0       0 /    1000     0.0s anon_test_1
[ ]     197       0       0     197 /    1000     0.1s anon_test_1
[ ]     447       0       0     447 /    1000     0.2s anon_test_1
[ ]     728       0       0     728 /    1000     0.3s anon_test_1
[ ]     984       0       0     984 /    1000     0.4s anon_test_1
[✓]    1000       0       0    1000 /    1000     0.4s anon_test_1
- 
[ ]       0       0       0       0 /    1000     0.0s anon_test_2
[ ]      11       0       0      11 /    1000     0.1s anon_test_2
[ ]      23       0       0      23 /    1000     0.2s anon_test_2
[ ]      32       0       0      32 /    1000     0.3s anon_test_2
[ ]      45       0       0      45 /    1000     0.5s anon_test_2
[ ]      53       0       0      53 /    1000     0.6s anon_test_2
[ ]      63       0       0      63 /    1000     0.7s anon_test_2
[ ]      79       0       0      79 /    1000     0.8s anon_test_2
[ ]      90       0       0      90 /    1000     0.9s anon_test_2
[ ]     109       0       0     109 /    1000     1.0s anon_test_2
[ ]     124       0       0     124 /    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
[ ]     157       0       0     157 /    1000     1.4s anon_test_2
[ ]     173       0       0     173 /    1000     1.5s anon_test_2
[ ]     190       0       0     190 /    1000     1.6s anon_test_2
[ ]     201       0       0     201 /    1000     1.7s anon_test_2
[ ]     212       0       0     212 /    1000     1.8s anon_test_2
[ ]     221       0       0     221 /    1000     1.9s anon_test_2
[ ]     238       0       0     238 /    1000     2.0s anon_test_2
[ ]     251       0       0     251 /    1000     2.2s anon_test_2
[ ]     260       0       0     260 /    1000     2.3s anon_test_2
[ ]     271       0       0     271 /    1000     2.4s anon_test_2
[ ]     281       0       0     281 /    1000     2.5s anon_test_2
[ ]     300       0       0     300 /    1000     2.6s anon_test_2
[ ]     318       0       0     318 /    1000     2.7s anon_test_2
[ ]     331       0       0     331 /    1000     2.8s anon_test_2
[ ]     342       0       0     342 /    1000     2.9s anon_test_2
[ ]     354       0       0     354 /    1000     3.0s anon_test_2
[ ]     367       0       0     367 /    1000     3.1s anon_test_2
[ ]     380       0       0     380 /    1000     3.2s anon_test_2
[ ]     395       0       0     395 /    1000     3.3s anon_test_2
[ ]     412       0       0     412 /    1000     3.4s anon_test_2
[ ]     422       0       0     422 /    1000     3.5s anon_test_2
[ ]     436       0       0     436 /    1000     3.7s anon_test_2
[ ]     448       0       0     448 /    1000     3.8s anon_test_2
[ ]     461       0       0     461 /    1000     3.9s anon_test_2
[ ]     479       0       0     479 /    1000     4.0s anon_test_2
[ ]     494       0       0     494 /    1000     4.1s anon_test_2
[ ]     512       0       0     512 /    1000     4.2s anon_test_2
[ ]     526       0       0     526 /    1000     4.3s anon_test_2
[ ]     540       0       0     540 /    1000     4.4s anon_test_2
[ ]     558       0       0     558 /    1000     4.6s anon_test_2
[ ]     567       0       0     567 /    1000     4.7s anon_test_2
[ ]     586       0       0     586 /    1000     4.8s anon_test_2
[ ]     598       0       0     598 /    1000     4.9s anon_test_2
[ ]     612       0       0     612 /    1000     5.0s anon_test_2
[ ]     622       0       0     622 /    1000     5.1s anon_test_2
[ ]     640       0       0     640 /    1000     5.2s anon_test_2
[ ]     659       0       0     659 /    1000     5.3s anon_test_2
[ ]     671       0       0     671 /    1000     5.4s anon_test_2
[ ]     685       0       0     685 /    1000     5.5s anon_test_2
[ ]     696       0       0     696 /    1000     5.6s anon_test_2
[ ]     706       0       0     706 /    1000     5.8s anon_test_2
[ ]     711       0       0     711 /    1000     5.9s anon_test_2
[ ]     729       0       0     729 /    1000     6.0s anon_test_2
[ ]     741       0       0     741 /    1000     6.1s anon_test_2
[ ]     759       0       0     759 /    1000     6.2s anon_test_2
[ ]     771       0       0     771 /    1000     6.3s anon_test_2
[ ]     787       0       0     787 /    1000     6.4s anon_test_2
[ ]     796       0       0     796 /    1000     6.5s anon_test_2
[ ]     809       0       0     809 /    1000     6.6s anon_test_2
[ ]     821       0       0     821 /    1000     6.7s anon_test_2
[ ]     834       0       0     834 /    1000     6.8s anon_test_2
[ ]     840       0       0     840 /    1000     6.9s anon_test_2
[ ]     852       0       0     852 /    1000     7.0s anon_test_2
[ ]     863       0       0     863 /    1000     7.1s anon_test_2
[ ]     874       0       0     874 /    1000     7.2s anon_test_2
[ ]     883       0       0     883 /    1000     7.3s anon_test_2
[ ]     898       0       0     898 /    1000     7.4s anon_test_2
[ ]     911       0       0     911 /    1000     7.5s anon_test_2
[ ]     925       0       0     925 /    1000     7.6s anon_test_2
[ ]     935       0       0     935 /    1000     7.8s anon_test_2
[ ]     945       0       0     945 /    1000     7.9s anon_test_2
[ ]     957       0       0     957 /    1000     8.0s anon_test_2
[ ]     967       0       0     967 /    1000     8.1s anon_test_2
[ ]     975       0       0     975 /    1000     8.2s anon_test_2
[ ]     981       0       0     981 /    1000     8.3s anon_test_2
[ ]     994       0       0     994 /    1000     8.4s anon_test_2
[✓]    1000       0       0    1000 /    1000     8.4s anon_test_2
- 
[ ]       0       0       0       0 / 1000000     0.0s h1
[ ]    9170       0       0    9170 / 1000000     0.1s h1
[ ]   18130       0       0   18130 / 1000000     0.2s h1
[ ]   27290       0       0   27290 / 1000000     0.3s h1
[ ]   36621       0       0   36621 / 1000000     0.4s h1
[ ]   45714       0       0   45714 / 1000000     0.5s h1
[ ]   54739       0       0   54739 / 1000000     0.6s h1
[ ]   63998       0       0   63998 / 1000000     0.7s h1
[ ]   73597       0       0   73597 / 1000000     0.8s h1
[ ]   83225       0       0   83225 / 1000000     0.9s h1
[ ]   92609       0       0   92609 / 1000000     1.0s h1 (collecting)
[ ]  101736       0       0  101736 / 1000000     1.1s h1
[ ]  111036       0       0  111036 / 1000000     1.2s h1 (collecting)
[ ]  120425       0       0  120425 / 1000000     1.3s h1
[ ]  129508       0       0  129508 / 1000000     1.4s h1
[ ]  138957       0       0  138957 / 1000000     1.5s h1
[ ]  148326       0       0  148326 / 1000000     1.6s h1
[ ]  157858       0       0  157858 / 1000000     1.7s h1
[ ]  167190       0       0  167190 / 1000000     1.8s h1
[ ]  176680       0       0  176680 / 1000000     1.9s h1
[ ]  186115       0       0  186115 / 1000000     2.0s h1
[ ]  195609       0       0  195609 / 1000000     2.1s h1
[ ]  204838       0       0  204838 / 1000000     2.2s h1
[ ]  213981       0       0  213981 / 1000000     2.3s h1
[ ]  224129       0       0  224129 / 1000000     2.4s h1
[ ]  234194       0       0  234194 / 1000000     2.5s h1
[ ]  244738       0       0  244738 / 1000000     2.6s h1
[ ]  254081       0       0  254081 / 1000000     2.7s h1
[ ]  263476       0       0  263476 / 1000000     2.8s h1 (collecting)
[ ]  272900       0       0  272900 / 1000000     2.9s h1
[ ]  282872       0       0  282872 / 1000000     3.0s h1
[ ]  292311       0       0  292311 / 1000000     3.1s h1 (collecting)
[ ]  301982       0       0  301982 / 1000000     3.2s h1
[ ]  311559       0       0  311559 / 1000000     3.3s h1 (collecting)
[ ]  321097       0       0  321097 / 1000000     3.4s h1
[ ]  330367       0       0  330367 / 1000000     3.5s h1
[ ]  339200       0       0  339200 / 1000000     3.6s h1
[ ]  348143       0       0  348143 / 1000000     3.7s h1
[ ]  357262       0       0  357262 / 1000000     3.8s h1
[ ]  366319       0       0  366319 / 1000000     3.9s h1
[ ]  375439       0       0  375439 / 1000000     4.0s h1
[ ]  384536       0       0  384536 / 1000000     4.1s h1
[ ]  393755       0       0  393755 / 1000000     4.2s h1
[ ]  403400       0       0  403400 / 1000000     4.3s h1
[ ]  412520       0       0  412520 / 1000000     4.4s h1
[ ]  422217       0       0  422217 / 1000000     4.5s h1 (collecting)
[ ]  432016       0       0  432016 / 1000000     4.6s h1
[ ]  441540       0       0  441540 / 1000000     4.7s h1
[ ]  450489       0       0  450489 / 1000000     4.8s h1
[ ]  459861       0       0  459861 / 1000000     4.9s h1
[ ]  469339       0       0  469339 / 1000000     5.0s h1
[ ]  479093       0       0  479093 / 1000000     5.1s h1
[ ]  488435       0       0  488435 / 1000000     5.2s h1
[ ]  497626       0       0  497626 / 1000000     5.3s h1
[ ]  506748       0       0  506748 / 1000000     5.4s h1
[ ]  516197       0       0  516197 / 1000000     5.5s h1 (collecting)
[ ]  525706       0       0  525706 / 1000000     5.6s h1
[ ]  535427       0       0  535427 / 1000000     5.7s h1
[ ]  545150       0       0  545150 / 1000000     5.8s h1
[ ]  554560       0       0  554560 / 1000000     5.9s h1 (collecting)
[ ]  564100       0       0  564100 / 1000000     6.0s h1
[ ]  573573       0       0  573573 / 1000000     6.1s h1
[ ]  583120       0       0  583120 / 1000000     6.2s h1
[ ]  592554       0       0  592554 / 1000000     6.3s h1
[ ]  601791       0       0  601791 / 1000000     6.4s h1
[ ]  611109       0       0  611109 / 1000000     6.5s h1
[ ]  620640       0       0  620640 / 1000000     6.6s h1
[ ]  630105       0       0  630105 / 1000000     6.7s h1
[ ]  639592       0       0  639592 / 1000000     6.8s h1
[ ]  649030       0       0  649030 / 1000000     6.9s h1
[ ]  658436       0       0  658436 / 1000000     7.0s h1
[ ]  667975       0       0  667975 / 1000000     7.1s h1 (collecting)
[ ]  677515       0       0  677515 / 1000000     7.2s h1
[ ]  687136       0       0  687136 / 1000000     7.3s h1
[ ]  696581       0       0  696581 / 1000000     7.4s h1
[ ]  706174       0       0  706174 / 1000000     7.5s h1
[ ]  715718       0       0  715718 / 1000000     7.6s h1
[ ]  725272       0       0  725272 / 1000000     7.7s h1
[ ]  734797       0       0  734797 / 1000000     7.8s h1
[ ]  744279       0       0  744279 / 1000000     7.9s h1
[ ]  753748       0       0  753748 / 1000000     8.0s h1
[ ]  763367       0       0  763367 / 1000000     8.1s h1
[ ]  772759       0       0  772759 / 1000000     8.2s h1
[ ]  782087       0       0  782087 / 1000000     8.3s h1
[ ]  791587       0       0  791587 / 1000000     8.4s h1
[ ]  801246       0       0  801246 / 1000000     8.5s h1 (generating)
[ ]  810951       0       0  810951 / 1000000     8.6s h1
[ ]  821101       0       0  821101 / 1000000     8.7s h1
[ ]  830784       0       0  830784 / 1000000     8.8s h1
[ ]  840125       0       0  840125 / 1000000     8.9s h1
[ ]  849674       0       0  849674 / 1000000     9.0s h1 (collecting)
[ ]  859307       0       0  859307 / 1000000     9.1s h1 (collecting)
[ ]  868999       0       0  868999 / 1000000     9.2s h1
[ ]  878204       0       0  878204 / 1000000     9.3s h1
[ ]  887598       0       0  887598 / 1000000     9.4s h1
[ ]  897223       0       0  897223 / 1000000     9.5s h1
[ ]  906796       0       0  906796 / 1000000     9.6s h1
[ ]  916169       0       0  916169 / 1000000     9.7s h1
[ ]  925559       0       0  925559 / 1000000     9.8s h1
[ ]  934763       0       0  934763 / 1000000     9.9s h1
[ ]  944178       0       0  944178 / 1000000    10.0s h1
[ ]  953645       0       0  953645 / 1000000    10.1s h1
[ ]  963508       0       0  963508 / 1000000    10.2s h1
[ ]  973348       0       0  973348 / 1000000    10.3s h1
[ ]  982849       0       0  982849 / 1000000    10.4s h1
[ ]  991833       0       0  991833 / 1000000    10.5s h1
[✓] 1000000       0       0 1000000 / 1000000    10.6s h1
- 
[ ]       0       0       0       0 / 1000000     0.0s h2
[ ]    4836       0       0    4836 / 1000000     0.1s h2
[ ]    9739       0       0    9739 / 1000000     0.2s h2
[ ]   14583       0       0   14583 / 1000000     0.3s h2
[ ]   19532       0       0   19532 / 1000000     0.4s h2
[ ]   24204       0       0   24204 / 1000000     0.5s h2
[ ]   29036       0       0   29036 / 1000000     0.6s h2 (collecting)
[ ]   33833       0       0   33833 / 1000000     0.7s h2 (collecting)
[ ]   38261       0       0   38261 / 1000000     0.8s h2
[ ]   43162       0       0   43162 / 1000000     0.9s h2
[ ]   47961       0       0   47961 / 1000000     1.0s h2
[ ]   52783       0       0   52783 / 1000000     1.1s h2
[ ]   57708       0       0   57708 / 1000000     1.2s h2
[ ]   62701       0       0   62701 / 1000000     1.3s h2
[ ]   67688       0       0   67688 / 1000000     1.4s h2
[ ]   72511       0       0   72511 / 1000000     1.5s h2
[ ]   77569       0       0   77569 / 1000000     1.6s h2
[ ]   82501       0       0   82501 / 1000000     1.7s h2
[ ]   87307       0       0   87307 / 1000000     1.8s h2
[ ]   92064       0       0   92064 / 1000000     1.9s h2
[ ]   97020       0       0   97020 / 1000000     2.0s h2
[ ]  101853       0       0  101853 / 1000000     2.1s h2
[ ]  106786       0       0  106786 / 1000000     2.2s h2
[ ]  111664       0       0  111664 / 1000000     2.3s h2
[ ]  116430       0       0  116430 / 1000000     2.4s h2
[ ]  121020       0       0  121020 / 1000000     2.5s h2
[ ]  125646       0       0  125646 / 1000000     2.6s h2
[ ]  129792       0       0  129792 / 1000000     2.7s h2
[ ]  134196       0       0  134196 / 1000000     2.8s h2
[ ]  138691       0       0  138691 / 1000000     2.9s h2
[ ]  143028       0       0  143028 / 1000000     3.0s h2
[ ]  147612       0       0  147612 / 1000000     3.1s h2
[ ]  152476       0       0  152476 / 1000000     3.2s h2
[ ]  157361       0       0  157361 / 1000000     3.3s h2
[ ]  162377       0       0  162377 / 1000000     3.4s h2
[ ]  166956       0       0  166956 / 1000000     3.5s h2
[ ]  172192       0       0  172192 / 1000000     3.6s h2
[ ]  177135       0       0  177135 / 1000000     3.7s h2
[ ]  181990       0       0  181990 / 1000000     3.8s h2
[ ]  186644       0       0  186644 / 1000000     3.9s h2
[ ]  191522       0       0  191522 / 1000000     4.0s h2
[ ]  196402       0       0  196402 / 1000000     4.1s h2
[ ]  201204       0       0  201204 / 1000000     4.2s h2
[ ]  206047       0       0  206047 / 1000000     4.3s h2
[ ]  210973       0       0  210973 / 1000000     4.4s h2
[ ]  215830       0       0  215830 / 1000000     4.5s h2
[ ]  220911       0       0  220911 / 1000000     4.6s h2
[ ]  225728       0       0  225728 / 1000000     4.7s h2
[ ]  230607       0       0  230607 / 1000000     4.8s h2
[ ]  235392       0       0  235392 / 1000000     4.9s h2
[ ]  240186       0       0  240186 / 1000000     5.0s h2
[ ]  245006       0       0  245006 / 1000000     5.1s h2
[ ]  249945       0       0  249945 / 1000000     5.2s h2
[ ]  254758       0       0  254758 / 1000000     5.3s h2
[ ]  259578       0       0  259578 / 1000000     5.4s h2 (collecting)
[ ]  264526       0       0  264526 / 1000000     5.5s h2
[ ]  269351       0       0  269351 / 1000000     5.6s h2
[ ]  274235       0       0  274235 / 1000000     5.7s h2 (collecting)
[ ]  279044       0       0  279044 / 1000000     5.8s h2 (collecting)
[ ]  283854       0       0  283854 / 1000000     5.9s h2
[ ]  288747       0       0  288747 / 1000000     6.0s h2
[ ]  293613       0       0  293613 / 1000000     6.1s h2
[ ]  298461       0       0  298461 / 1000000     6.2s h2
[ ]  303283       0       0  303283 / 1000000     6.3s h2
[ ]  308169       0       0  308169 / 1000000     6.4s h2
[ ]  313076       0       0  313076 / 1000000     6.5s h2
[ ]  318094       0       0  318094 / 1000000     6.6s h2
[ ]  323064       0       0  323064 / 1000000     6.7s h2
[ ]  327911       0       0  327911 / 1000000     6.8s h2
[ ]  332760       0       0  332760 / 1000000     6.9s h2
[ ]  337543       0       0  337543 / 1000000     7.0s h2
[ ]  342433       0       0  342433 / 1000000     7.1s h2
[ ]  347278       0       0  347278 / 1000000     7.2s h2
[ ]  352130       0       0  352130 / 1000000     7.3s h2
[ ]  357147       0       0  357147 / 1000000     7.4s h2
[ ]  362139       0       0  362139 / 1000000     7.5s h2
[ ]  367101       0       0  367101 / 1000000     7.6s h2
[ ]  372081       0       0  372081 / 1000000     7.7s h2
[ ]  376736       0       0  376736 / 1000000     7.8s h2 (collecting)
[ ]  380360       0       0  380360 / 1000000     7.9s h2
[ ]  385470       0       0  385470 / 1000000     8.0s h2
[ ]  390329       0       0  390329 / 1000000     8.1s h2
[ ]  395080       0       0  395080 / 1000000     8.2s h2
[ ]  399994       0       0  399994 / 1000000     8.3s h2
[ ]  404910       0       0  404910 / 1000000     8.4s h2
[ ]  409827       0       0  409827 / 1000000     8.5s h2
[ ]  414736       0       0  414736 / 1000000     8.6s h2
[ ]  419634       0       0  419634 / 1000000     8.7s h2
[ ]  424593       0       0  424593 / 1000000     8.8s h2
[ ]  429427       0       0  429427 / 1000000     8.9s h2
[ ]  434123       0       0  434123 / 1000000     9.0s h2
[ ]  438886       0       0  438886 / 1000000     9.1s h2
[ ]  443817       0       0  443817 / 1000000     9.2s h2
[ ]  448547       0       0  448547 / 1000000     9.3s h2
[ ]  453373       0       0  453373 / 1000000     9.4s h2
[ ]  458108       0       0  458108 / 1000000     9.5s h2
[ ]  463140       0       0  463140 / 1000000     9.6s h2
[ ]  467931       0       0  467931 / 1000000     9.7s h2
[ ]  472722       0       0  472722 / 1000000     9.8s h2
[ ]  477731       0       0  477731 / 1000000     9.9s h2
[ ]  482376       0       0  482376 / 1000000    10.0s h2
[ ]  487401       0       0  487401 / 1000000    10.1s h2
[ ]  492335       0       0  492335 / 1000000    10.2s h2
[ ]  497209       0       0  497209 / 1000000    10.3s h2
[ ]  502064       0       0  502064 / 1000000    10.4s h2
[ ]  506988       0       0  506988 / 1000000    10.5s h2
[ ]  511873       0       0  511873 / 1000000    10.6s h2
[ ]  516835       0       0  516835 / 1000000    10.7s h2
[ ]  521707       0       0  521707 / 1000000    10.8s h2
[ ]  526742       0       0  526742 / 1000000    10.9s h2
[ ]  531634       0       0  531634 / 1000000    11.0s h2
[ ]  536648       0       0  536648 / 1000000    11.1s h2
[ ]  541488       0       0  541488 / 1000000    11.2s h2
[ ]  546186       0       0  546186 / 1000000    11.3s h2
[ ]  551002       0       0  551002 / 1000000    11.4s h2
[ ]  555769       0       0  555769 / 1000000    11.5s h2
[ ]  560556       0       0  560556 / 1000000    11.6s h2
[ ]  565562       0       0  565562 / 1000000    11.7s h2 (collecting)
[ ]  570655       0       0  570655 / 1000000    11.8s h2
[ ]  575459       0       0  575459 / 1000000    11.9s h2
[ ]  580490       0       0  580490 / 1000000    12.0s h2
[ ]  585518       0       0  585518 / 1000000    12.1s h2
[ ]  590323       0       0  590323 / 1000000    12.2s h2
[ ]  595007       0       0  595007 / 1000000    12.3s h2
[ ]  599739       0       0  599739 / 1000000    12.4s h2
[ ]  604625       0       0  604625 / 1000000    12.5s h2
[ ]  609556       0       0  609556 / 1000000    12.6s h2
[ ]  614489       0       0  614489 / 1000000    12.7s h2
[ ]  619323       0       0  619323 / 1000000    12.8s h2
[ ]  624157       0       0  624157 / 1000000    12.9s h2
[ ]  629057       0       0  629057 / 1000000    13.0s h2
[ ]  633499       0       0  633499 / 1000000    13.1s h2
[ ]  637269       0       0  637269 / 1000000    13.2s h2
[ ]  642364       0       0  642364 / 1000000    13.3s h2
[ ]  647044       0       0  647044 / 1000000    13.4s h2 (collecting)
[ ]  651793       0       0  651793 / 1000000    13.5s h2
[ ]  656584       0       0  656584 / 1000000    13.6s h2
[ ]  661351       0       0  661351 / 1000000    13.7s h2
[ ]  666077       0       0  666077 / 1000000    13.8s h2
[ ]  670905       0       0  670905 / 1000000    13.9s h2 (   testing)
[ ]  675756       0       0  675756 / 1000000    14.0s h2
[ ]  680567       0       0  680567 / 1000000    14.1s h2
[ ]  685511       0       0  685511 / 1000000    14.2s h2
[ ]  690352       0       0  690352 / 1000000    14.3s h2
[ ]  695069       0       0  695069 / 1000000    14.4s h2
[ ]  699807       0       0  699807 / 1000000    14.5s h2 (   testing)
[ ]  704522       0       0  704522 / 1000000    14.6s h2
[ ]  709194       0       0  709194 / 1000000    14.7s h2
[ ]  713991       0       0  713991 / 1000000    14.8s h2
[ ]  718854       0       0  718854 / 1000000    14.9s h2
[ ]  723606       0       0  723606 / 1000000    15.0s h2
[ ]  728449       0       0  728449 / 1000000    15.1s h2
[ ]  733617       0       0  733617 / 1000000    15.2s h2
[ ]  738734       0       0  738734 / 1000000    15.3s h2
[ ]  743622       0       0  743622 / 1000000    15.4s h2
[ ]  748468       0       0  748468 / 1000000    15.5s h2
[ ]  753398       0       0  753398 / 1000000    15.6s h2
[ ]  758136       0       0  758136 / 1000000    15.7s h2
[ ]  762905       0       0  762905 / 1000000    15.8s h2
[ ]  767918       0       0  767918 / 1000000    15.9s h2
[ ]  772686       0       0  772686 / 1000000    16.0s h2
[ ]  777410       0       0  777410 / 1000000    16.1s h2
[ ]  782295       0       0  782295 / 1000000    16.2s h2
[ ]  787115       0       0  787115 / 1000000    16.3s h2
[ ]  792169       0       0  792169 / 1000000    16.4s h2
[ ]  797013       0       0  797013 / 1000000    16.5s h2
[ ]  801705       0       0  801705 / 1000000    16.6s h2
[ ]  806533       0       0  806533 / 1000000    16.7s h2
[ ]  811317       0       0  811317 / 1000000    16.8s h2 (collecting)
[ ]  816256       0       0  816256 / 1000000    16.9s h2
[ ]  820981       0       0  820981 / 1000000    17.0s h2
[ ]  825787       0       0  825787 / 1000000    17.1s h2
[ ]  830571       0       0  830571 / 1000000    17.2s h2
[ ]  835380       0       0  835380 / 1000000    17.3s h2
[ ]  840239       0       0  840239 / 1000000    17.4s h2 (collecting)
[ ]  845053       0       0  845053 / 1000000    17.5s h2
[ ]  849876       0       0  849876 / 1000000    17.6s h2
[ ]  854643       0       0  854643 / 1000000    17.7s h2
[ ]  859423       0       0  859423 / 1000000    17.8s h2
[ ]  864354       0       0  864354 / 1000000    17.9s h2
[ ]  869381       0       0  869381 / 1000000    18.0s h2
[ ]  874396       0       0  874396 / 1000000    18.1s h2
[ ]  879369       0       0  879369 / 1000000    18.2s h2
[ ]  884335       0       0  884335 / 1000000    18.3s h2
[ ]  889101       0       0  889101 / 1000000    18.4s h2
[ ]  893752       0       0  893752 / 1000000    18.5s h2
[ ]  898491       0       0  898491 / 1000000    18.6s h2
[ ]  903264       0       0  903264 / 1000000    18.7s h2
[ ]  908067       0       0  908067 / 1000000    18.8s h2
[ ]  913036       0       0  913036 / 1000000    18.9s h2
[ ]  918025       0       0  918025 / 1000000    19.0s h2
[ ]  922742       0       0  922742 / 1000000    19.1s h2
[ ]  927392       0       0  927392 / 1000000    19.2s h2
[ ]  932565       0       0  932565 / 1000000    19.3s h2
[ ]  937266       0       0  937266 / 1000000    19.4s h2
[ ]  942267       0       0  942267 / 1000000    19.5s h2
[ ]  946641       0       0  946641 / 1000000    19.6s h2
[ ]  951251       0       0  951251 / 1000000    19.7s h2
[ ]  956004       0       0  956004 / 1000000    19.8s h2
[ ]  960841       0       0  960841 / 1000000    19.9s h2
[ ]  965585       0       0  965585 / 1000000    20.0s h2 (collecting)
[ ]  970340       0       0  970340 / 1000000    20.1s h2
[ ]  975114       0       0  975114 / 1000000    20.2s h2
[ ]  979885       0       0  979885 / 1000000    20.3s h2
[ ]  984452       0       0  984452 / 1000000    20.4s h2
[ ]  989277       0       0  989277 / 1000000    20.5s h2
[ ]  993244       0       0  993244 / 1000000    20.6s h2
[ ]  997705       0       0  997705 / 1000000    20.7s h2
[✓] 1000000       0       0 1000000 / 1000000    20.8s h2
- 
[ ]       0       0       0       0 / 1000000     0.0s h3
[ ]    9328       0       0    9328 / 1000000     0.1s h3 (   testing)
[ ]   18618       0       0   18618 / 1000000     0.2s h3
[ ]   28231       0       0   28231 / 1000000     0.3s h3 (collecting)
[ ]   37470       0       0   37470 / 1000000     0.4s h3
[ ]   46566       0       0   46566 / 1000000     0.5s h3
[ ]   56216       0       0   56216 / 1000000     0.6s h3
[ ]   65555       0       0   65555 / 1000000     0.7s h3
[ ]   74946       0       0   74946 / 1000000     0.8s h3
[ ]   84133       0       0   84133 / 1000000     0.9s h3
[ ]   93383       0       0   93383 / 1000000     1.0s h3
[ ]  102919       0       0  102919 / 1000000     1.1s h3
[ ]  112598       0       0  112598 / 1000000     1.2s h3
[ ]  122034       0       0  122034 / 1000000     1.3s h3
[ ]  131476       0       0  131476 / 1000000     1.4s h3
[ ]  141125       0       0  141125 / 1000000     1.5s h3
[ ]  150567       0       0  150567 / 1000000     1.6s h3
[ ]  159857       0       0  159857 / 1000000     1.7s h3
[ ]  169209       0       0  169209 / 1000000     1.8s h3
[ ]  178682       0       0  178682 / 1000000     1.9s h3
[ ]  187888       0       0  187888 / 1000000     2.0s h3
[ ]  197140       0       0  197140 / 1000000     2.1s h3
[ ]  206255       0       0  206255 / 1000000     2.2s h3
[ ]  215703       0       0  215703 / 1000000     2.3s h3
[ ]  224348       0       0  224348 / 1000000     2.4s h3
[ ]  233814       0       0  233814 / 1000000     2.5s h3
[ ]  243286       0       0  243286 / 1000000     2.6s h3
[ ]  252613       0       0  252613 / 1000000     2.7s h3
[ ]  262030       0       0  262030 / 1000000     2.8s h3
[ ]  271459       0       0  271459 / 1000000     2.9s h3
[ ]  280685       0       0  280685 / 1000000     3.0s h3 (collecting)
[ ]  289972       0       0  289972 / 1000000     3.1s h3
[ ]  298978       0       0  298978 / 1000000     3.2s h3
[ ]  308216       0       0  308216 / 1000000     3.3s h3
[ ]  317535       0       0  317535 / 1000000     3.4s h3
[ ]  327082       0       0  327082 / 1000000     3.5s h3
[ ]  336206       0       0  336206 / 1000000     3.6s h3
[ ]  345583       0       0  345583 / 1000000     3.7s h3
[ ]  355013       0       0  355013 / 1000000     3.8s h3
[ ]  363879       0       0  363879 / 1000000     3.9s h3
[ ]  373262       0       0  373262 / 1000000     4.0s h3
[ ]  383430       0       0  383430 / 1000000     4.1s h3
[ ]  393633       0       0  393633 / 1000000     4.2s h3
[ ]  402425       0       0  402425 / 1000000     4.3s h3
[ ]  411349       0       0  411349 / 1000000     4.4s h3
[ ]  420991       0       0  420991 / 1000000     4.5s h3
[ ]  430406       0       0  430406 / 1000000     4.6s h3
[ ]  439956       0       0  439956 / 1000000     4.7s h3
[ ]  449482       0       0  449482 / 1000000     4.8s h3
[ ]  458349       0       0  458349 / 1000000     4.9s h3
[ ]  467873       0       0  467873 / 1000000     5.0s h3
[ ]  477239       0       0  477239 / 1000000     5.1s h3
[ ]  486724       0       0  486724 / 1000000     5.2s h3 (collecting)
[ ]  496229       0       0  496229 / 1000000     5.3s h3
[ ]  505845       0       0  505845 / 1000000     5.4s h3
[ ]  515629       0       0  515629 / 1000000     5.5s h3
[ ]  525069       0       0  525069 / 1000000     5.6s h3
[ ]  534614       0       0  534614 / 1000000     5.7s h3
[ ]  544267       0       0  544267 / 1000000     5.8s h3
[ ]  553447       0       0  553447 / 1000000     5.9s h3
[ ]  562850       0       0  562850 / 1000000     6.0s h3
[ ]  571996       0       0  571996 / 1000000     6.1s h3
[ ]  581286       0       0  581286 / 1000000     6.2s h3 (generating)
[ ]  590596       0       0  590596 / 1000000     6.3s h3 (collecting)
[ ]  599695       0       0  599695 / 1000000     6.4s h3
[ ]  608791       0       0  608791 / 1000000     6.5s h3
[ ]  618219       0       0  618219 / 1000000     6.6s h3
[ ]  627470       0       0  627470 / 1000000     6.7s h3
[ ]  637061       0       0  637061 / 1000000     6.8s h3
[ ]  646811       0       0  646811 / 1000000     6.9s h3
[ ]  656357       0       0  656357 / 1000000     7.0s h3
[ ]  665629       0       0  665629 / 1000000     7.1s h3
[ ]  675119       0       0  675119 / 1000000     7.2s h3
[ ]  684663       0       0  684663 / 1000000     7.3s h3
[ ]  693722       0       0  693722 / 1000000     7.4s h3
[ ]  703276       0       0  703276 / 1000000     7.5s h3
[ ]  712592       0       0  712592 / 1000000     7.6s h3
[ ]  721562       0       0  721562 / 1000000     7.7s h3
[ ]  730750       0       0  730750 / 1000000     7.8s h3
[ ]  740101       0       0  740101 / 1000000     7.9s h3
[ ]  749360       0       0  749360 / 1000000     8.0s h3
[ ]  758764       0       0  758764 / 1000000     8.1s h3 (   testing)
[ ]  768186       0       0  768186 / 1000000     8.2s h3
[ ]  777141       0       0  777141 / 1000000     8.3s h3
[ ]  786698       0       0  786698 / 1000000     8.4s h3
[ ]  796170       0       0  796170 / 1000000     8.5s h3 (collecting)
[ ]  805698       0       0  805698 / 1000000     8.6s h3
[ ]  815109       0       0  815109 / 1000000     8.7s h3 (collecting)
[ ]  824367       0       0  824367 / 1000000     8.8s h3
[ ]  833934       0       0  833934 / 1000000     8.9s h3
[ ]  843157       0       0  843157 / 1000000     9.0s h3
[ ]  852473       0       0  852473 / 1000000     9.1s h3
[ ]  861979       0       0  861979 / 1000000     9.2s h3
[ ]  871157       0       0  871157 / 1000000     9.3s h3
[ ]  880401       0       0  880401 / 1000000     9.4s h3
[ ]  889150       0       0  889150 / 1000000     9.5s h3
[ ]  897927       0       0  897927 / 1000000     9.6s h3
[ ]  906752       0       0  906752 / 1000000     9.7s h3
[ ]  915670       0       0  915670 / 1000000     9.8s h3
[ ]  924683       0       0  924683 / 1000000     9.9s h3
[ ]  934121       0       0  934121 / 1000000    10.0s h3
[ ]  943578       0       0  943578 / 1000000    10.1s h3
[ ]  953104       0       0  953104 / 1000000    10.2s h3
[ ]  962577       0       0  962577 / 1000000    10.3s h3
[ ]  970988       0       0  970988 / 1000000    10.4s h3
[ ]  980425       0       0  980425 / 1000000    10.5s h3
[ ]  989792       0       0  989792 / 1000000    10.6s h3 (collecting)
[ ]  999199       0       0  999199 / 1000000    10.7s h3
[✓] 1000000       0       0 1000000 / 1000000    10.7s h3
- 
[ ]       0       0       0       0 / 1000000     0.0s h4
[ ]    3311       0       0    3311 / 1000000     0.1s h4
[ ]    6588       0       0    6588 / 1000000     0.2s h4
[ ]    9940       0       0    9940 / 1000000     0.3s h4
[ ]   13229       0       0   13229 / 1000000     0.4s h4
[ ]   16512       0       0   16512 / 1000000     0.5s h4
[ ]   19740       0       0   19740 / 1000000     0.6s h4
[ ]   22952       0       0   22952 / 1000000     0.7s h4
[ ]   26202       0       0   26202 / 1000000     0.8s h4
[ ]   29403       0       0   29403 / 1000000     0.9s h4
[ ]   32676       0       0   32676 / 1000000     1.0s h4
[ ]   35921       0       0   35921 / 1000000     1.1s h4
[ ]   39215       0       0   39215 / 1000000     1.2s h4
[ ]   42517       0       0   42517 / 1000000     1.3s h4
[ ]   45802       0       0   45802 / 1000000     1.4s h4
[ ]   49130       0       0   49130 / 1000000     1.5s h4
[ ]   52430       0       0   52430 / 1000000     1.6s h4
[ ]   55691       0       0   55691 / 1000000     1.7s h4
[ ]   59083       0       0   59083 / 1000000     1.8s h4
[ ]   62428       0       0   62428 / 1000000     1.9s h4
[ ]   65808       0       0   65808 / 1000000     2.0s h4
[ ]   69243       0       0   69243 / 1000000     2.1s h4
[ ]   72506       0       0   72506 / 1000000     2.2s h4
[ ]   75997       0       0   75997 / 1000000     2.3s h4
[ ]   79421       0       0   79421 / 1000000     2.4s h4
[ ]   82849       0       0   82849 / 1000000     2.5s h4
[ ]   86189       0       0   86189 / 1000000     2.6s h4
[ ]   89472       0       0   89472 / 1000000     2.7s h4
[ ]   92715       0       0   92715 / 1000000     2.8s h4
[ ]   96060       0       0   96060 / 1000000     2.9s h4
[ ]   99400       0       0   99400 / 1000000     3.0s h4 (collecting)
[ ]  102795       0       0  102795 / 1000000     3.1s h4
[ ]  106141       0       0  106141 / 1000000     3.2s h4
[ ]  109462       0       0  109462 / 1000000     3.3s h4
[ ]  112731       0       0  112731 / 1000000     3.4s h4
[ ]  116048       0       0  116048 / 1000000     3.5s h4
[ ]  119365       0       0  119365 / 1000000     3.6s h4
[ ]  122665       0       0  122665 / 1000000     3.7s h4
[ ]  125929       0       0  125929 / 1000000     3.8s h4
[ ]  129294       0       0  129294 / 1000000     3.9s h4
[ ]  132646       0       0  132646 / 1000000     4.0s h4
[ ]  135942       0       0  135942 / 1000000     4.1s h4
[ ]  139306       0       0  139306 / 1000000     4.2s h4
[ ]  142639       0       0  142639 / 1000000     4.3s h4
[ ]  146044       0       0  146044 / 1000000     4.4s h4
[ ]  149357       0       0  149357 / 1000000     4.5s h4
[ ]  152667       0       0  152667 / 1000000     4.6s h4
[ ]  156010       0       0  156010 / 1000000     4.7s h4
[ ]  159428       0       0  159428 / 1000000     4.8s h4
[ ]  162781       0       0  162781 / 1000000     4.9s h4
[ ]  166074       0       0  166074 / 1000000     5.0s h4
[ ]  169419       0       0  169419 / 1000000     5.1s h4
[ ]  172699       0       0  172699 / 1000000     5.2s h4
[ ]  175957       0       0  175957 / 1000000     5.3s h4
[ ]  179192       0       0  179192 / 1000000     5.4s h4
[ ]  182519       0       0  182519 / 1000000     5.5s h4
[ ]  185948       0       0  185948 / 1000000     5.6s h4
[ ]  189257       0       0  189257 / 1000000     5.7s h4
[ ]  192534       0       0  192534 / 1000000     5.8s h4
[ ]  195833       0       0  195833 / 1000000     5.9s h4
[ ]  199109       0       0  199109 / 1000000     6.0s h4
[ ]  202494       0       0  202494 / 1000000     6.1s h4
[ ]  205718       0       0  205718 / 1000000     6.2s h4
[ ]  208936       0       0  208936 / 1000000     6.3s h4
[ ]  212302       0       0  212302 / 1000000     6.4s h4
[ ]  215583       0       0  215583 / 1000000     6.5s h4
[ ]  218897       0       0  218897 / 1000000     6.6s h4
[ ]  222368       0       0  222368 / 1000000     6.7s h4
[ ]  225655       0       0  225655 / 1000000     6.8s h4
[ ]  228843       0       0  228843 / 1000000     6.9s h4
[ ]  232033       0       0  232033 / 1000000     7.0s h4
[ ]  235237       0       0  235237 / 1000000     7.1s h4
[ ]  238546       0       0  238546 / 1000000     7.2s h4
[ ]  241869       0       0  241869 / 1000000     7.3s h4
[ ]  245236       0       0  245236 / 1000000     7.4s h4
[ ]  248561       0       0  248561 / 1000000     7.5s h4
[ ]  251966       0       0  251966 / 1000000     7.6s h4
[ ]  255223       0       0  255223 / 1000000     7.7s h4
[ ]  258451       0       0  258451 / 1000000     7.8s h4
[ ]  261891       0       0  261891 / 1000000     7.9s h4
[ ]  265235       0       0  265235 / 1000000     8.0s h4
[ ]  268492       0       0  268492 / 1000000     8.1s h4
[ ]  271754       0       0  271754 / 1000000     8.2s h4
[ ]  275168       0       0  275168 / 1000000     8.3s h4
[ ]  278505       0       0  278505 / 1000000     8.4s h4
[ ]  281893       0       0  281893 / 1000000     8.5s h4
[ ]  285311       0       0  285311 / 1000000     8.6s h4
[ ]  288799       0       0  288799 / 1000000     8.7s h4
[ ]  292148       0       0  292148 / 1000000     8.8s h4
[ ]  295324       0       0  295324 / 1000000     8.9s h4
[ ]  298576       0       0  298576 / 1000000     9.0s h4
[ ]  301864       0       0  301864 / 1000000     9.1s h4
[ ]  305218       0       0  305218 / 1000000     9.2s h4
[ ]  308648       0       0  308648 / 1000000     9.3s h4
[ ]  311926       0       0  311926 / 1000000     9.4s h4
[ ]  315406       0       0  315406 / 1000000     9.5s h4
[ ]  318768       0       0  318768 / 1000000     9.6s h4
[ ]  322172       0       0  322172 / 1000000     9.7s h4
[ ]  325526       0       0  325526 / 1000000     9.8s h4
[ ]  328816       0       0  328816 / 1000000     9.9s h4
[ ]  332223       0       0  332223 / 1000000    10.0s h4
[ ]  335553       0       0  335553 / 1000000    10.1s h4
[ ]  338882       0       0  338882 / 1000000    10.2s h4
[ ]  342216       0       0  342216 / 1000000    10.3s h4
[ ]  345477       0       0  345477 / 1000000    10.4s h4
[ ]  348590       0       0  348590 / 1000000    10.5s h4
[ ]  351840       0       0  351840 / 1000000    10.6s h4
[ ]  355153       0       0  355153 / 1000000    10.7s h4
[ ]  358537       0       0  358537 / 1000000    10.8s h4
[ ]  361875       0       0  361875 / 1000000    10.9s h4
[ ]  365099       0       0  365099 / 1000000    11.0s h4
[ ]  368400       0       0  368400 / 1000000    11.1s h4
[ ]  371800       0       0  371800 / 1000000    11.2s h4
[ ]  375183       0       0  375183 / 1000000    11.3s h4
[ ]  378488       0       0  378488 / 1000000    11.4s h4
[ ]  381761       0       0  381761 / 1000000    11.5s h4
[ ]  384940       0       0  384940 / 1000000    11.6s h4
[ ]  388275       0       0  388275 / 1000000    11.7s h4
[ ]  391558       0       0  391558 / 1000000    11.8s h4
[ ]  394866       0       0  394866 / 1000000    11.9s h4
[ ]  398328       0       0  398328 / 1000000    12.0s h4
[ ]  401616       0       0  401616 / 1000000    12.1s h4 (collecting)
[ ]  404910       0       0  404910 / 1000000    12.2s h4
[ ]  408170       0       0  408170 / 1000000    12.3s h4
[ ]  411605       0       0  411605 / 1000000    12.4s h4
[ ]  414932       0       0  414932 / 1000000    12.5s h4
[ ]  418214       0       0  418214 / 1000000    12.6s h4
[ ]  421529       0       0  421529 / 1000000    12.7s h4
[ ]  424896       0       0  424896 / 1000000    12.8s h4
[ ]  428279       0       0  428279 / 1000000    12.9s h4
[ ]  431516       0       0  431516 / 1000000    13.0s h4
[ ]  434701       0       0  434701 / 1000000    13.1s h4
[ ]  437935       0       0  437935 / 1000000    13.2s h4
[ ]  441293       0       0  441293 / 1000000    13.3s h4
[ ]  444691       0       0  444691 / 1000000    13.4s h4
[ ]  448026       0       0  448026 / 1000000    13.5s h4
[ ]  451341       0       0  451341 / 1000000    13.6s h4
[ ]  454565       0       0  454565 / 1000000    13.7s h4
[ ]  457870       0       0  457870 / 1000000    13.8s h4
[ ]  461026       0       0  461026 / 1000000    13.9s h4
[ ]  464249       0       0  464249 / 1000000    14.0s h4
[ ]  467436       0       0  467436 / 1000000    14.1s h4
[ ]  470709       0       0  470709 / 1000000    14.2s h4
[ ]  473952       0       0  473952 / 1000000    14.3s h4
[ ]  477091       0       0  477091 / 1000000    14.4s h4
[ ]  480366       0       0  480366 / 1000000    14.5s h4 (collecting)
[ ]  483590       0       0  483590 / 1000000    14.6s h4
[ ]  486825       0       0  486825 / 1000000    14.7s h4
[ ]  490172       0       0  490172 / 1000000    14.8s h4
[ ]  493374       0       0  493374 / 1000000    14.9s h4
[ ]  496531       0       0  496531 / 1000000    15.0s h4
[ ]  499861       0       0  499861 / 1000000    15.1s h4
[ ]  503101       0       0  503101 / 1000000    15.2s h4
[ ]  506354       0       0  506354 / 1000000    15.3s h4
[ ]  509697       0       0  509697 / 1000000    15.4s h4
[ ]  513131       0       0  513131 / 1000000    15.5s h4
[ ]  516535       0       0  516535 / 1000000    15.6s h4
[ ]  519834       0       0  519834 / 1000000    15.7s h4
[ ]  523119       0       0  523119 / 1000000    15.8s h4
[ ]  526733       0       0  526733 / 1000000    15.9s h4
[ ]  529900       0       0  529900 / 1000000    16.0s h4
[ ]  533256       0       0  533256 / 1000000    16.1s h4
[ ]  536577       0       0  536577 / 1000000    16.2s h4
[ ]  539967       0       0  539967 / 1000000    16.3s h4
[ ]  543362       0       0  543362 / 1000000    16.4s h4
[ ]  546794       0       0  546794 / 1000000    16.5s h4
[ ]  550131       0       0  550131 / 1000000    16.6s h4
[ ]  553411       0       0  553411 / 1000000    16.7s h4
[ ]  556721       0       0  556721 / 1000000    16.8s h4
[ ]  560050       0       0  560050 / 1000000    16.9s h4
[ ]  563495       0       0  563495 / 1000000    17.0s h4
[ ]  566796       0       0  566796 / 1000000    17.1s h4
[ ]  569929       0       0  569929 / 1000000    17.2s h4
[ ]  573149       0       0  573149 / 1000000    17.3s h4
[ ]  576419       0       0  576419 / 1000000    17.4s h4 (collecting)
[ ]  579659       0       0  579659 / 1000000    17.5s h4
[ ]  582905       0       0  582905 / 1000000    17.6s h4
[ ]  586116       0       0  586116 / 1000000    17.7s h4
[ ]  589346       0       0  589346 / 1000000    17.8s h4
[ ]  592644       0       0  592644 / 1000000    17.9s h4
[ ]  595892       0       0  595892 / 1000000    18.0s h4
[ ]  599193       0       0  599193 / 1000000    18.1s h4
[ ]  602443       0       0  602443 / 1000000    18.2s h4
[ ]  605678       0       0  605678 / 1000000    18.3s h4
[ ]  609000       0       0  609000 / 1000000    18.4s h4 (generating)
[ ]  612259       0       0  612259 / 1000000    18.5s h4
[ ]  615516       0       0  615516 / 1000000    18.6s h4
[ ]  618793       0       0  618793 / 1000000    18.7s h4
[ ]  622058       0       0  622058 / 1000000    18.8s h4
[ ]  625296       0       0  625296 / 1000000    18.9s h4
[ ]  628535       0       0  628535 / 1000000    19.0s h4
[ ]  631864       0       0  631864 / 1000000    19.1s h4
[ ]  635106       0       0  635106 / 1000000    19.2s h4
[ ]  638399       0       0  638399 / 1000000    19.3s h4
[ ]  641658       0       0  641658 / 1000000    19.4s h4
[ ]  644918       0       0  644918 / 1000000    19.5s h4
[ ]  648264       0       0  648264 / 1000000    19.6s h4
[ ]  651553       0       0  651553 / 1000000    19.7s h4 (collecting)
[ ]  654815       0       0  654815 / 1000000    19.8s h4
[ ]  658121       0       0  658121 / 1000000    19.9s h4
[ ]  661402       0       0  661402 / 1000000    20.0s h4 (collecting)
[ ]  664640       0       0  664640 / 1000000    20.1s h4
[ ]  667866       0       0  667866 / 1000000    20.2s h4
[ ]  671244       0       0  671244 / 1000000    20.3s h4
[ ]  674563       0       0  674563 / 1000000    20.4s h4
[ ]  677971       0       0  677971 / 1000000    20.5s h4
[ ]  681345       0       0  681345 / 1000000    20.6s h4
[ ]  684682       0       0  684682 / 1000000    20.7s h4 (collecting)
[ ]  688042       0       0  688042 / 1000000    20.8s h4 (collecting)
[ ]  691371       0       0  691371 / 1000000    20.9s h4
[ ]  694538       0       0  694538 / 1000000    21.0s h4
[ ]  697707       0       0  697707 / 1000000    21.1s h4
[ ]  700924       0       0  700924 / 1000000    21.2s h4
[ ]  704133       0       0  704133 / 1000000    21.3s h4
[ ]  707469       0       0  707469 / 1000000    21.4s h4
[ ]  710726       0       0  710726 / 1000000    21.5s h4 (collecting)
[ ]  714053       0       0  714053 / 1000000    21.6s h4
[ ]  717285       0       0  717285 / 1000000    21.7s h4 (collecting)
[ ]  720676       0       0  720676 / 1000000    21.8s h4
[ ]  723764       0       0  723764 / 1000000    21.9s h4
[ ]  727117       0       0  727117 / 1000000    22.0s h4
[ ]  730435       0       0  730435 / 1000000    22.1s h4
[ ]  733726       0       0  733726 / 1000000    22.2s h4
[ ]  737098       0       0  737098 / 1000000    22.3s h4
[ ]  740487       0       0  740487 / 1000000    22.4s h4
[ ]  743772       0       0  743772 / 1000000    22.5s h4
[ ]  747096       0       0  747096 / 1000000    22.6s h4
[ ]  750444       0       0  750444 / 1000000    22.7s h4
[ ]  753849       0       0  753849 / 1000000    22.8s h4
[ ]  757137       0       0  757137 / 1000000    22.9s h4
[ ]  760500       0       0  760500 / 1000000    23.0s h4
[ ]  763829       0       0  763829 / 1000000    23.1s h4
[ ]  767167       0       0  767167 / 1000000    23.2s h4
[ ]  770523       0       0  770523 / 1000000    23.3s h4
[ ]  773824       0       0  773824 / 1000000    23.4s h4
[ ]  777130       0       0  777130 / 1000000    23.5s h4
[ ]  780536       0       0  780536 / 1000000    23.6s h4
[ ]  783941       0       0  783941 / 1000000    23.7s h4
[ ]  787307       0       0  787307 / 1000000    23.8s h4
[ ]  790664       0       0  790664 / 1000000    23.9s h4
[ ]  794004       0       0  794004 / 1000000    24.0s h4
[ ]  797274       0       0  797274 / 1000000    24.1s h4
[ ]  800515       0       0  800515 / 1000000    24.2s h4
[ ]  803858       0       0  803858 / 1000000    24.3s h4
[ ]  807148       0       0  807148 / 1000000    24.4s h4
[ ]  810317       0       0  810317 / 1000000    24.5s h4
[ ]  813649       0       0  813649 / 1000000    24.6s h4 (   testing)
[ ]  816963       0       0  816963 / 1000000    24.7s h4
[ ]  820254       0       0  820254 / 1000000    24.8s h4
[ ]  823514       0       0  823514 / 1000000    24.9s h4
[ ]  826793       0       0  826793 / 1000000    25.0s h4
[ ]  830072       0       0  830072 / 1000000    25.1s h4
[ ]  833459       0       0  833459 / 1000000    25.2s h4
[ ]  836895       0       0  836895 / 1000000    25.3s h4
[ ]  840067       0       0  840067 / 1000000    25.4s h4
[ ]  843449       0       0  843449 / 1000000    25.5s h4
[ ]  846974       0       0  846974 / 1000000    25.6s h4
[ ]  850552       0       0  850552 / 1000000    25.7s h4
[ ]  853892       0       0  853892 / 1000000    25.8s h4
[ ]  857159       0       0  857159 / 1000000    25.9s h4
[ ]  860460       0       0  860460 / 1000000    26.0s h4
[ ]  863742       0       0  863742 / 1000000    26.1s h4 (collecting)
[ ]  866983       0       0  866983 / 1000000    26.2s h4
[ ]  870395       0       0  870395 / 1000000    26.3s h4
[ ]  873735       0       0  873735 / 1000000    26.4s h4
[ ]  877063       0       0  877063 / 1000000    26.5s h4
[ ]  880467       0       0  880467 / 1000000    26.6s h4
[ ]  884366       0       0  884366 / 1000000    26.7s h4
[ ]  887632       0       0  887632 / 1000000    26.8s h4
[ ]  890852       0       0  890852 / 1000000    26.9s h4
[ ]  894093       0       0  894093 / 1000000    27.0s h4 (collecting)
[ ]  897297       0       0  897297 / 1000000    27.1s h4
[ ]  900711       0       0  900711 / 1000000    27.2s h4
[ ]  904109       0       0  904109 / 1000000    27.3s h4
[ ]  907490       0       0  907490 / 1000000    27.4s h4
[ ]  910801       0       0  910801 / 1000000    27.5s h4
[ ]  914060       0       0  914060 / 1000000    27.6s h4
[ ]  917334       0       0  917334 / 1000000    27.7s h4
[ ]  920798       0       0  920798 / 1000000    27.8s h4
[ ]  924066       0       0  924066 / 1000000    27.9s h4
[ ]  927339       0       0  927339 / 1000000    28.0s h4
[ ]  930589       0       0  930589 / 1000000    28.1s h4
[ ]  934009       0       0  934009 / 1000000    28.2s h4
[ ]  937243       0       0  937243 / 1000000    28.3s h4
[ ]  940515       0       0  940515 / 1000000    28.4s h4
[ ]  943831       0       0  943831 / 1000000    28.5s h4
[ ]  947201       0       0  947201 / 1000000    28.6s h4
[ ]  950512       0       0  950512 / 1000000    28.7s h4
[ ]  953861       0       0  953861 / 1000000    28.8s h4
[ ]  957166       0       0  957166 / 1000000    28.9s h4
[ ]  960474       0       0  960474 / 1000000    29.0s h4
[ ]  963645       0       0  963645 / 1000000    29.1s h4
[ ]  966912       0       0  966912 / 1000000    29.2s h4
[ ]  970299       0       0  970299 / 1000000    29.3s h4
[ ]  973588       0       0  973588 / 1000000    29.4s h4
[ ]  976917       0       0  976917 / 1000000    29.5s h4
[ ]  980230       0       0  980230 / 1000000    29.6s h4
[ ]  983565       0       0  983565 / 1000000    29.7s h4
[ ]  986997       0       0  986997 / 1000000    29.8s h4
[ ]  990302       0       0  990302 / 1000000    29.9s h4
[ ]  993629       0       0  993629 / 1000000    30.0s h4
[ ]  996887       0       0  996887 / 1000000    30.1s h4
[✓] 1000000       0       0 1000000 / 1000000    30.2s h4
- ================================================================================
- success (ran 6 tests)
-> compiled  dates_calc.0.0.6
-> removed   dates_calc.0.0.6
-> installed dates_calc.0.0.6
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 19:39.16 ---> saved as "7799de487bfdb5d84b4d6b5ae0bfd5c23d7eeacb0501a62aa513e69e77b2a01a"
Job succeeded
2026-03-25 19:39.22: Job succeeded