(for PR #29582)

2026-03-25 23:09.43: New job: test dates_calc.0.0.5 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.5; \
    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.5' && 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.5) || true
RUN opam reinstall --with-test --verbose dates_calc.0.0.5; \
    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.5' && 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.5-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.5;\
             \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.5' && 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.5) || true"))
 (run (shell  "opam reinstall --with-test --verbose dates_calc.0.0.5;\
             \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.5' && 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.09: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
Updating files:  78% (14481/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.
Auto packing the repository in the background for optimum performance.
See "git help gc" for manual housekeeping.
warning: The last gc run reported the following. Please correct the root cause
and remove .git/gc.log
Automatic cleanup will not be performed until the file is removed.

warning: There are too many unreachable loose objects; run 'git prune' to remove them.

 packages/ocaml-compiler/ocaml-compiler.5.3.0/opam      |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.3/opam        |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4.0/opam      |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.4.0~alpha1/opam    |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.4.0~beta1/opam     |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.4.0~beta2/opam     |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4.0~rc1/opam  |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4.1/opam      |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4/opam        |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.5.0~alpha1/opam    |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.5/opam        |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.6/opam        |  5 ++++-
 packages/ocaml-option-llvm/ocaml-option-llvm.1/opam    | 18 ++++++++++++++++++
 .../ocaml-options-vanilla/ocaml-options-vanilla.1/opam |  1 +
 packages/ocaml-variants/ocaml-variants.5.2.0+msvc/opam |  2 ++
 15 files changed, 69 insertions(+), 12 deletions(-)
 create mode 100644 packages/ocaml-option-llvm/ocaml-option-llvm.1/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
2026-03-25 23:58.09 ---> 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:58.09 ---> 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.

Continue? [Y/n] y
Format upgrade done.
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.


<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-25 23:58.09 ---> 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:58.09 ---> 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:58.09 ---> using "04a48515eea40c32b96da0c71328b4bba0edb66eed83d4f78554b39097cf1f25" from cache

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

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-25 23:58.11 ---> 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 (6957 kB/s)
- Reading package lists...
- 
2026-03-25 23:58.11 ---> 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:58.11 ---> 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:58.11 ---> 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.5;\
                        \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.5' && 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.5 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 2 packages
  - install dates_calc 0.0.5
  - install dune       3.22.0 [required by dates_calc]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dates_calc.0.0.5  (cached)
-> retrieved dune.3.22.0  (cached)
-> installed dune.3.22.0
-> installed dates_calc.0.0.5
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-26 00:00.07 ---> saved as "14aa3526e52bf95657765ec89a98b26574c3cd8b74697a38654352668445a243"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test dates_calc.0.0.5) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile dates_calc         0.0.5
=== 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.5  (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 qcheck-core.0.91
-> installed ounit2.2.2.7
-> installed qcheck-ounit.0.91
-> installed qcheck.0.91
-> installed cmdliner.2.1.0
-> installed ocamlfind.1.9.8
-> removed   dates_calc.0.0.5
-> 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.5
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-26 00:02.16 ---> saved as "bdb5aeff545299ab4e8063e937e0111b743e498e8ee43302f35dcf16adeb9e9d"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [dates_calc.0.0.5: extract]
-> retrieved dates_calc.0.0.5  (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.5)
- (cd _build/default/test && ./unit.exe)
- Testing `unit'.
- This run has ID `AG207396'.
- 
-   [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.5/_build/default/test/_build/_tests/unit'.
- Test Successful in 0.005s. 3 tests run.
- (cd _build/default/test && ./prop.exe)
- 
random seed: 414484985
-   generated   error    fail    pass /   total     time test name
- 
[ ]       0       0       0       0 /    1000     0.0s anon_test_1
[ ]     214       0       0     214 /    1000     0.1s anon_test_1
[ ]     473       0       0     473 /    1000     0.2s anon_test_1
[ ]     749       0       0     749 /    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
[ ]      12       0       0      12 /    1000     0.1s anon_test_2
[ ]      24       0       0      24 /    1000     0.2s anon_test_2
[ ]      33       0       0      33 /    1000     0.3s anon_test_2
[ ]      43       0       0      43 /    1000     0.4s anon_test_2
[ ]      53       0       0      53 /    1000     0.5s anon_test_2
[ ]      68       0       0      68 /    1000     0.6s anon_test_2
[ ]      77       0       0      77 /    1000     0.7s anon_test_2
[ ]      88       0       0      88 /    1000     0.8s anon_test_2
[ ]     105       0       0     105 /    1000     0.9s anon_test_2
[ ]     115       0       0     115 /    1000     1.1s anon_test_2
[ ]     130       0       0     130 /    1000     1.2s anon_test_2
[ ]     146       0       0     146 /    1000     1.3s anon_test_2
[ ]     162       0       0     162 /    1000     1.4s anon_test_2
[ ]     175       0       0     175 /    1000     1.5s anon_test_2
[ ]     187       0       0     187 /    1000     1.6s anon_test_2
[ ]     197       0       0     197 /    1000     1.7s anon_test_2
[ ]     207       0       0     207 /    1000     1.8s anon_test_2
[ ]     217       0       0     217 /    1000     1.9s anon_test_2
[ ]     230       0       0     230 /    1000     2.0s anon_test_2
[ ]     240       0       0     240 /    1000     2.1s anon_test_2
[ ]     256       0       0     256 /    1000     2.2s anon_test_2
[ ]     267       0       0     267 /    1000     2.3s anon_test_2
[ ]     285       0       0     285 /    1000     2.4s anon_test_2
[ ]     303       0       0     303 /    1000     2.5s anon_test_2
[ ]     311       0       0     311 /    1000     2.6s anon_test_2
[ ]     324       0       0     324 /    1000     2.7s anon_test_2
[ ]     339       0       0     339 /    1000     2.9s anon_test_2
[ ]     355       0       0     355 /    1000     3.0s anon_test_2
[ ]     371       0       0     371 /    1000     3.1s anon_test_2
[ ]     387       0       0     387 /    1000     3.2s anon_test_2
[ ]     410       0       0     410 /    1000     3.3s anon_test_2
[ ]     422       0       0     422 /    1000     3.4s anon_test_2
[ ]     436       0       0     436 /    1000     3.5s anon_test_2
[ ]     448       0       0     448 /    1000     3.6s anon_test_2
[ ]     462       0       0     462 /    1000     3.7s anon_test_2
[ ]     476       0       0     476 /    1000     3.8s anon_test_2
[ ]     491       0       0     491 /    1000     3.9s anon_test_2
[ ]     500       0       0     500 /    1000     4.0s anon_test_2
[ ]     512       0       0     512 /    1000     4.1s anon_test_2
[ ]     523       0       0     523 /    1000     4.3s anon_test_2
[ ]     535       0       0     535 /    1000     4.4s anon_test_2
[ ]     544       0       0     544 /    1000     4.5s anon_test_2
[ ]     558       0       0     558 /    1000     4.6s anon_test_2
[ ]     574       0       0     574 /    1000     4.7s anon_test_2
[ ]     590       0       0     590 /    1000     4.8s anon_test_2
[ ]     604       0       0     604 /    1000     4.9s anon_test_2
[ ]     620       0       0     620 /    1000     5.0s anon_test_2
[ ]     638       0       0     638 /    1000     5.1s anon_test_2
[ ]     650       0       0     650 /    1000     5.2s anon_test_2
[ ]     660       0       0     660 /    1000     5.3s anon_test_2
[ ]     673       0       0     673 /    1000     5.4s anon_test_2
[ ]     687       0       0     687 /    1000     5.6s anon_test_2
[ ]     697       0       0     697 /    1000     5.7s anon_test_2
[ ]     705       0       0     705 /    1000     5.8s anon_test_2
[ ]     718       0       0     718 /    1000     5.9s anon_test_2
[ ]     727       0       0     727 /    1000     6.0s anon_test_2
[ ]     738       0       0     738 /    1000     6.1s anon_test_2
[ ]     747       0       0     747 /    1000     6.2s anon_test_2
[ ]     756       0       0     756 /    1000     6.3s anon_test_2
[ ]     768       0       0     768 /    1000     6.4s anon_test_2
[ ]     785       0       0     785 /    1000     6.5s anon_test_2
[ ]     796       0       0     796 /    1000     6.6s anon_test_2
[ ]     807       0       0     807 /    1000     6.7s anon_test_2
[ ]     822       0       0     822 /    1000     6.8s anon_test_2
[ ]     834       0       0     834 /    1000     6.9s anon_test_2
[ ]     849       0       0     849 /    1000     7.0s anon_test_2
[ ]     861       0       0     861 /    1000     7.1s anon_test_2
[ ]     878       0       0     878 /    1000     7.2s anon_test_2
[ ]     892       0       0     892 /    1000     7.3s anon_test_2
[ ]     908       0       0     908 /    1000     7.4s anon_test_2
[ ]     921       0       0     921 /    1000     7.5s anon_test_2
[ ]     933       0       0     933 /    1000     7.7s anon_test_2
[ ]     947       0       0     947 /    1000     7.8s anon_test_2
[ ]     958       0       0     958 /    1000     7.9s anon_test_2
[ ]     973       0       0     973 /    1000     8.0s anon_test_2
[ ]     987       0       0     987 /    1000     8.1s anon_test_2
[ ]     999       0       0     999 /    1000     8.2s anon_test_2
[✓]    1000       0       0    1000 /    1000     8.2s anon_test_2
- 
[ ]       0       0       0       0 / 1000000     0.0s h1
[ ]    9547       0       0    9547 / 1000000     0.1s h1
[ ]   19107       0       0   19107 / 1000000     0.2s h1
[ ]   28338       0       0   28338 / 1000000     0.3s h1
[ ]   37628       0       0   37628 / 1000000     0.4s h1
[ ]   47156       0       0   47156 / 1000000     0.5s h1 (   testing)
[ ]   56673       0       0   56673 / 1000000     0.6s h1
[ ]   66210       0       0   66210 / 1000000     0.7s h1
[ ]   75581       0       0   75581 / 1000000     0.8s h1
[ ]   85125       0       0   85125 / 1000000     0.9s h1
[ ]   94718       0       0   94718 / 1000000     1.0s h1
[ ]  104459       0       0  104459 / 1000000     1.1s h1
[ ]  114002       0       0  114002 / 1000000     1.2s h1
[ ]  123525       0       0  123525 / 1000000     1.3s h1
[ ]  132918       0       0  132918 / 1000000     1.4s h1
[ ]  142517       0       0  142517 / 1000000     1.5s h1
[ ]  152053       0       0  152053 / 1000000     1.6s h1
[ ]  161607       0       0  161607 / 1000000     1.7s h1
[ ]  171182       0       0  171182 / 1000000     1.8s h1
[ ]  180712       0       0  180712 / 1000000     1.9s h1
[ ]  190204       0       0  190204 / 1000000     2.0s h1
[ ]  199823       0       0  199823 / 1000000     2.1s h1
[ ]  209534       0       0  209534 / 1000000     2.2s h1
[ ]  219270       0       0  219270 / 1000000     2.3s h1
[ ]  228932       0       0  228932 / 1000000     2.4s h1 (collecting)
[ ]  238360       0       0  238360 / 1000000     2.5s h1
[ ]  247757       0       0  247757 / 1000000     2.6s h1
[ ]  257333       0       0  257333 / 1000000     2.7s h1
[ ]  266942       0       0  266942 / 1000000     2.8s h1
[ ]  276350       0       0  276350 / 1000000     2.9s h1 (collecting)
[ ]  286050       0       0  286050 / 1000000     3.0s h1
[ ]  295621       0       0  295621 / 1000000     3.1s h1
[ ]  305243       0       0  305243 / 1000000     3.2s h1
[ ]  314617       0       0  314617 / 1000000     3.3s h1
[ ]  324108       0       0  324108 / 1000000     3.4s h1
[ ]  333637       0       0  333637 / 1000000     3.5s h1
[ ]  343318       0       0  343318 / 1000000     3.6s h1
[ ]  353160       0       0  353160 / 1000000     3.7s h1
[ ]  362963       0       0  362963 / 1000000     3.8s h1
[ ]  372609       0       0  372609 / 1000000     3.9s h1
[ ]  382411       0       0  382411 / 1000000     4.0s h1
[ ]  392295       0       0  392295 / 1000000     4.1s h1
[ ]  402033       0       0  402033 / 1000000     4.2s h1
[ ]  411513       0       0  411513 / 1000000     4.3s h1
[ ]  420634       0       0  420634 / 1000000     4.4s h1
[ ]  430575       0       0  430575 / 1000000     4.5s h1
[ ]  439379       0       0  439379 / 1000000     4.6s h1
[ ]  449158       0       0  449158 / 1000000     4.7s h1
[ ]  457518       0       0  457518 / 1000000     4.8s h1
[ ]  466537       0       0  466537 / 1000000     4.9s h1
[ ]  475981       0       0  475981 / 1000000     5.0s h1
[ ]  485373       0       0  485373 / 1000000     5.1s h1
[ ]  494987       0       0  494987 / 1000000     5.2s h1
[ ]  504618       0       0  504618 / 1000000     5.3s h1
[ ]  513789       0       0  513789 / 1000000     5.4s h1
[ ]  523267       0       0  523267 / 1000000     5.5s h1
[ ]  532560       0       0  532560 / 1000000     5.6s h1
[ ]  542090       0       0  542090 / 1000000     5.7s h1
[ ]  551426       0       0  551426 / 1000000     5.8s h1
[ ]  560972       0       0  560972 / 1000000     5.9s h1
[ ]  570265       0       0  570265 / 1000000     6.0s h1
[ ]  579722       0       0  579722 / 1000000     6.1s h1
[ ]  589092       0       0  589092 / 1000000     6.2s h1
[ ]  598554       0       0  598554 / 1000000     6.3s h1
[ ]  607820       0       0  607820 / 1000000     6.4s h1
[ ]  617224       0       0  617224 / 1000000     6.5s h1
[ ]  626540       0       0  626540 / 1000000     6.6s h1
[ ]  635993       0       0  635993 / 1000000     6.7s h1
[ ]  645322       0       0  645322 / 1000000     6.8s h1
[ ]  654578       0       0  654578 / 1000000     6.9s h1
[ ]  664071       0       0  664071 / 1000000     7.0s h1
[ ]  673641       0       0  673641 / 1000000     7.1s h1
[ ]  685930       0       0  685930 / 1000000     7.2s h1
[ ]  695332       0       0  695332 / 1000000     7.3s h1
[ ]  704743       0       0  704743 / 1000000     7.4s h1
[ ]  714348       0       0  714348 / 1000000     7.5s h1
[ ]  724012       0       0  724012 / 1000000     7.6s h1
[ ]  734819       0       0  734819 / 1000000     7.7s h1
[ ]  744578       0       0  744578 / 1000000     7.8s h1
[ ]  753918       0       0  753918 / 1000000     7.9s h1
[ ]  763531       0       0  763531 / 1000000     8.0s h1 (collecting)
[ ]  772963       0       0  772963 / 1000000     8.1s h1
[ ]  782249       0       0  782249 / 1000000     8.2s h1
[ ]  791776       0       0  791776 / 1000000     8.3s h1
[ ]  801386       0       0  801386 / 1000000     8.4s h1
[ ]  810868       0       0  810868 / 1000000     8.5s h1
[ ]  820379       0       0  820379 / 1000000     8.6s h1
[ ]  829991       0       0  829991 / 1000000     8.7s h1
[ ]  839403       0       0  839403 / 1000000     8.8s h1
[ ]  848950       0       0  848950 / 1000000     8.9s h1
[ ]  858474       0       0  858474 / 1000000     9.0s h1
[ ]  868747       0       0  868747 / 1000000     9.1s h1
[ ]  879023       0       0  879023 / 1000000     9.2s h1
[ ]  888956       0       0  888956 / 1000000     9.3s h1
[ ]  902295       0       0  902295 / 1000000     9.4s h1
[ ]  913430       0       0  913430 / 1000000     9.5s h1
[ ]  923577       0       0  923577 / 1000000     9.6s h1
[ ]  933946       0       0  933946 / 1000000     9.7s h1
[ ]  943870       0       0  943870 / 1000000     9.8s h1
[ ]  953402       0       0  953402 / 1000000     9.9s h1
[ ]  963260       0       0  963260 / 1000000    10.0s h1
[ ]  975001       0       0  975001 / 1000000    10.1s h1
[ ]  990139       0       0  990139 / 1000000    10.2s h1
[ ]  999719       0       0  999719 / 1000000    10.3s h1
[✓] 1000000       0       0 1000000 / 1000000    10.3s h1
- 
[ ]       0       0       0       0 / 1000000     0.0s h2
[ ]    6482       0       0    6482 / 1000000     0.1s h2
[ ]   11498       0       0   11498 / 1000000     0.2s h2
[ ]   16287       0       0   16287 / 1000000     0.3s h2
[ ]   21073       0       0   21073 / 1000000     0.4s h2
[ ]   25884       0       0   25884 / 1000000     0.5s h2
[ ]   30632       0       0   30632 / 1000000     0.6s h2
[ ]   35459       0       0   35459 / 1000000     0.7s h2
[ ]   40225       0       0   40225 / 1000000     0.8s h2
[ ]   45139       0       0   45139 / 1000000     0.9s h2
[ ]   50055       0       0   50055 / 1000000     1.0s h2
[ ]   54960       0       0   54960 / 1000000     1.1s h2
[ ]   59771       0       0   59771 / 1000000     1.2s h2
[ ]   64549       0       0   64549 / 1000000     1.3s h2
[ ]   69353       0       0   69353 / 1000000     1.4s h2
[ ]   74217       0       0   74217 / 1000000     1.5s h2
[ ]   79036       0       0   79036 / 1000000     1.6s h2
[ ]   84037       0       0   84037 / 1000000     1.7s h2
[ ]   89045       0       0   89045 / 1000000     1.8s h2
[ ]   93877       0       0   93877 / 1000000     1.9s h2
[ ]   98750       0       0   98750 / 1000000     2.0s h2
[ ]  103640       0       0  103640 / 1000000     2.1s h2
[ ]  108678       0       0  108678 / 1000000     2.2s h2
[ ]  113599       0       0  113599 / 1000000     2.3s h2
[ ]  118579       0       0  118579 / 1000000     2.4s h2
[ ]  123368       0       0  123368 / 1000000     2.5s h2
[ ]  128218       0       0  128218 / 1000000     2.6s h2
[ ]  132622       0       0  132622 / 1000000     2.7s h2
[ ]  137474       0       0  137474 / 1000000     2.8s h2
[ ]  142348       0       0  142348 / 1000000     2.9s h2
[ ]  147154       0       0  147154 / 1000000     3.0s h2
[ ]  151852       0       0  151852 / 1000000     3.1s h2 (collecting)
[ ]  156722       0       0  156722 / 1000000     3.2s h2
[ ]  161638       0       0  161638 / 1000000     3.3s h2
[ ]  166612       0       0  166612 / 1000000     3.4s h2
[ ]  171551       0       0  171551 / 1000000     3.5s h2
[ ]  175510       0       0  175510 / 1000000     3.6s h2 (collecting)
[ ]  179308       0       0  179308 / 1000000     3.7s h2
[ ]  184035       0       0  184035 / 1000000     3.8s h2
[ ]  188537       0       0  188537 / 1000000     3.9s h2
[ ]  193399       0       0  193399 / 1000000     4.0s h2
[ ]  198334       0       0  198334 / 1000000     4.1s h2
[ ]  203243       0       0  203243 / 1000000     4.2s h2
[ ]  208197       0       0  208197 / 1000000     4.3s h2
[ ]  213031       0       0  213031 / 1000000     4.4s h2
[ ]  217531       0       0  217531 / 1000000     4.5s h2
[ ]  222299       0       0  222299 / 1000000     4.6s h2
[ ]  227219       0       0  227219 / 1000000     4.7s h2
[ ]  232086       0       0  232086 / 1000000     4.8s h2
[ ]  236958       0       0  236958 / 1000000     4.9s h2
[ ]  241848       0       0  241848 / 1000000     5.0s h2
[ ]  246638       0       0  246638 / 1000000     5.1s h2
[ ]  251411       0       0  251411 / 1000000     5.2s h2
[ ]  256291       0       0  256291 / 1000000     5.3s h2
[ ]  261072       0       0  261072 / 1000000     5.4s h2
[ ]  265919       0       0  265919 / 1000000     5.5s h2
[ ]  270817       0       0  270817 / 1000000     5.6s h2
[ ]  275762       0       0  275762 / 1000000     5.7s h2
[ ]  280584       0       0  280584 / 1000000     5.8s h2
[ ]  285302       0       0  285302 / 1000000     5.9s h2
[ ]  290207       0       0  290207 / 1000000     6.0s h2
[ ]  295244       0       0  295244 / 1000000     6.1s h2
[ ]  300250       0       0  300250 / 1000000     6.2s h2
[ ]  305203       0       0  305203 / 1000000     6.3s h2
[ ]  310011       0       0  310011 / 1000000     6.4s h2
[ ]  314832       0       0  314832 / 1000000     6.5s h2
[ ]  319645       0       0  319645 / 1000000     6.6s h2
[ ]  324505       0       0  324505 / 1000000     6.7s h2
[ ]  329305       0       0  329305 / 1000000     6.8s h2
[ ]  334087       0       0  334087 / 1000000     6.9s h2
[ ]  338999       0       0  338999 / 1000000     7.0s h2
[ ]  343827       0       0  343827 / 1000000     7.1s h2
[ ]  348713       0       0  348713 / 1000000     7.2s h2
[ ]  353518       0       0  353518 / 1000000     7.3s h2
[ ]  358468       0       0  358468 / 1000000     7.4s h2
[ ]  363301       0       0  363301 / 1000000     7.5s h2 (collecting)
[ ]  368156       0       0  368156 / 1000000     7.6s h2
[ ]  373158       0       0  373158 / 1000000     7.7s h2 (collecting)
[ ]  378123       0       0  378123 / 1000000     7.8s h2
[ ]  382820       0       0  382820 / 1000000     7.9s h2
[ ]  387590       0       0  387590 / 1000000     8.0s h2
[ ]  392469       0       0  392469 / 1000000     8.1s h2
[ ]  397515       0       0  397515 / 1000000     8.2s h2
[ ]  402937       0       0  402937 / 1000000     8.3s h2
[ ]  407575       0       0  407575 / 1000000     8.4s h2
[ ]  412445       0       0  412445 / 1000000     8.5s h2
[ ]  417160       0       0  417160 / 1000000     8.6s h2
[ ]  422045       0       0  422045 / 1000000     8.7s h2
[ ]  426909       0       0  426909 / 1000000     8.8s h2
[ ]  431812       0       0  431812 / 1000000     8.9s h2
[ ]  436869       0       0  436869 / 1000000     9.0s h2
[ ]  441701       0       0  441701 / 1000000     9.1s h2
[ ]  446417       0       0  446417 / 1000000     9.2s h2
[ ]  451202       0       0  451202 / 1000000     9.3s h2
[ ]  456303       0       0  456303 / 1000000     9.4s h2
[ ]  461092       0       0  461092 / 1000000     9.5s h2
[ ]  465956       0       0  465956 / 1000000     9.6s h2
[ ]  470703       0       0  470703 / 1000000     9.7s h2
[ ]  475568       0       0  475568 / 1000000     9.8s h2
[ ]  480554       0       0  480554 / 1000000     9.9s h2
[ ]  485350       0       0  485350 / 1000000    10.0s h2 (collecting)
[ ]  490219       0       0  490219 / 1000000    10.1s h2
[ ]  495167       0       0  495167 / 1000000    10.2s h2
[ ]  500098       0       0  500098 / 1000000    10.3s h2
[ ]  505103       0       0  505103 / 1000000    10.4s h2
[ ]  509994       0       0  509994 / 1000000    10.5s h2
[ ]  514938       0       0  514938 / 1000000    10.6s h2
[ ]  519935       0       0  519935 / 1000000    10.7s h2
[ ]  524860       0       0  524860 / 1000000    10.8s h2
[ ]  529747       0       0  529747 / 1000000    10.9s h2
[ ]  534739       0       0  534739 / 1000000    11.0s h2
[ ]  539746       0       0  539746 / 1000000    11.1s h2
[ ]  544713       0       0  544713 / 1000000    11.2s h2
[ ]  549664       0       0  549664 / 1000000    11.3s h2 (collecting)
[ ]  554645       0       0  554645 / 1000000    11.4s h2
[ ]  559651       0       0  559651 / 1000000    11.5s h2
[ ]  564724       0       0  564724 / 1000000    11.6s h2
[ ]  569899       0       0  569899 / 1000000    11.7s h2
[ ]  574958       0       0  574958 / 1000000    11.8s h2
[ ]  580006       0       0  580006 / 1000000    11.9s h2 (collecting)
[ ]  584995       0       0  584995 / 1000000    12.0s h2
[ ]  590020       0       0  590020 / 1000000    12.1s h2
[ ]  595061       0       0  595061 / 1000000    12.2s h2
[ ]  599992       0       0  599992 / 1000000    12.3s h2
[ ]  604930       0       0  604930 / 1000000    12.4s h2
[ ]  609874       0       0  609874 / 1000000    12.5s h2
[ ]  614900       0       0  614900 / 1000000    12.6s h2
[ ]  619711       0       0  619711 / 1000000    12.7s h2
[ ]  624615       0       0  624615 / 1000000    12.8s h2
[ ]  629468       0       0  629468 / 1000000    12.9s h2
[ ]  634275       0       0  634275 / 1000000    13.0s h2
[ ]  639138       0       0  639138 / 1000000    13.1s h2
[ ]  644180       0       0  644180 / 1000000    13.2s h2
[ ]  649230       0       0  649230 / 1000000    13.3s h2
[ ]  654182       0       0  654182 / 1000000    13.4s h2
[ ]  659162       0       0  659162 / 1000000    13.5s h2
[ ]  664241       0       0  664241 / 1000000    13.6s h2
[ ]  669344       0       0  669344 / 1000000    13.7s h2
[ ]  674399       0       0  674399 / 1000000    13.8s h2
[ ]  679495       0       0  679495 / 1000000    13.9s h2 (collecting)
[ ]  684443       0       0  684443 / 1000000    14.0s h2
[ ]  689430       0       0  689430 / 1000000    14.1s h2
[ ]  694434       0       0  694434 / 1000000    14.2s h2
[ ]  699455       0       0  699455 / 1000000    14.3s h2
[ ]  704490       0       0  704490 / 1000000    14.4s h2
[ ]  709607       0       0  709607 / 1000000    14.5s h2
[ ]  714648       0       0  714648 / 1000000    14.6s h2
[ ]  719608       0       0  719608 / 1000000    14.7s h2
[ ]  724608       0       0  724608 / 1000000    14.8s h2
[ ]  729617       0       0  729617 / 1000000    14.9s h2 (collecting)
[ ]  734568       0       0  734568 / 1000000    15.0s h2
[ ]  739547       0       0  739547 / 1000000    15.1s h2
[ ]  744509       0       0  744509 / 1000000    15.2s h2
[ ]  749664       0       0  749664 / 1000000    15.3s h2
[ ]  754836       0       0  754836 / 1000000    15.4s h2
[ ]  759789       0       0  759789 / 1000000    15.5s h2
[ ]  764723       0       0  764723 / 1000000    15.6s h2
[ ]  769937       0       0  769937 / 1000000    15.7s h2
[ ]  775120       0       0  775120 / 1000000    15.8s h2
[ ]  780255       0       0  780255 / 1000000    15.9s h2
[ ]  785409       0       0  785409 / 1000000    16.0s h2
[ ]  790551       0       0  790551 / 1000000    16.1s h2
[ ]  795443       0       0  795443 / 1000000    16.2s h2
[ ]  800415       0       0  800415 / 1000000    16.3s h2
[ ]  805591       0       0  805591 / 1000000    16.4s h2
[ ]  810732       0       0  810732 / 1000000    16.5s h2
[ ]  815695       0       0  815695 / 1000000    16.6s h2
[ ]  820662       0       0  820662 / 1000000    16.7s h2
[ ]  825661       0       0  825661 / 1000000    16.8s h2
[ ]  830714       0       0  830714 / 1000000    16.9s h2
[ ]  835681       0       0  835681 / 1000000    17.0s h2
[ ]  840656       0       0  840656 / 1000000    17.1s h2
[ ]  845674       0       0  845674 / 1000000    17.2s h2
[ ]  850827       0       0  850827 / 1000000    17.3s h2
[ ]  855664       0       0  855664 / 1000000    17.4s h2
[ ]  860445       0       0  860445 / 1000000    17.5s h2
[ ]  865245       0       0  865245 / 1000000    17.6s h2
[ ]  870077       0       0  870077 / 1000000    17.7s h2
[ ]  874877       0       0  874877 / 1000000    17.8s h2
[ ]  879763       0       0  879763 / 1000000    17.9s h2
[ ]  884671       0       0  884671 / 1000000    18.0s h2
[ ]  889554       0       0  889554 / 1000000    18.1s h2
[ ]  894489       0       0  894489 / 1000000    18.2s h2
[ ]  899227       0       0  899227 / 1000000    18.3s h2
[ ]  904096       0       0  904096 / 1000000    18.4s h2
[ ]  908985       0       0  908985 / 1000000    18.5s h2
[ ]  913916       0       0  913916 / 1000000    18.6s h2
[ ]  918778       0       0  918778 / 1000000    18.7s h2
[ ]  923680       0       0  923680 / 1000000    18.8s h2
[ ]  928514       0       0  928514 / 1000000    18.9s h2
[ ]  933425       0       0  933425 / 1000000    19.0s h2
[ ]  938329       0       0  938329 / 1000000    19.1s h2
[ ]  943246       0       0  943246 / 1000000    19.2s h2
[ ]  948214       0       0  948214 / 1000000    19.3s h2
[ ]  953158       0       0  953158 / 1000000    19.4s h2
[ ]  958223       0       0  958223 / 1000000    19.5s h2
[ ]  963231       0       0  963231 / 1000000    19.6s h2
[ ]  968154       0       0  968154 / 1000000    19.7s h2
[ ]  973087       0       0  973087 / 1000000    19.8s h2
[ ]  977984       0       0  977984 / 1000000    19.9s h2
[ ]  982914       0       0  982914 / 1000000    20.0s h2
[ ]  987752       0       0  987752 / 1000000    20.1s h2
[ ]  992671       0       0  992671 / 1000000    20.2s h2
[ ]  997634       0       0  997634 / 1000000    20.3s h2
[✓] 1000000       0       0 1000000 / 1000000    20.4s h2
- 
[ ]       0       0       0       0 / 1000000     0.0s h3
[ ]    9712       0       0    9712 / 1000000     0.1s h3
[ ]   19574       0       0   19574 / 1000000     0.2s h3
[ ]   29476       0       0   29476 / 1000000     0.3s h3
[ ]   39119       0       0   39119 / 1000000     0.4s h3
[ ]   48778       0       0   48778 / 1000000     0.5s h3
[ ]   58560       0       0   58560 / 1000000     0.6s h3
[ ]   68414       0       0   68414 / 1000000     0.7s h3
[ ]   78262       0       0   78262 / 1000000     0.8s h3
[ ]   88080       0       0   88080 / 1000000     0.9s h3
[ ]   97862       0       0   97862 / 1000000     1.0s h3
[ ]  107756       0       0  107756 / 1000000     1.1s h3
[ ]  117556       0       0  117556 / 1000000     1.2s h3
[ ]  127552       0       0  127552 / 1000000     1.3s h3
[ ]  137339       0       0  137339 / 1000000     1.4s h3
[ ]  147277       0       0  147277 / 1000000     1.5s h3 (collecting)
[ ]  157282       0       0  157282 / 1000000     1.6s h3
[ ]  167324       0       0  167324 / 1000000     1.7s h3
[ ]  177343       0       0  177343 / 1000000     1.8s h3
[ ]  187311       0       0  187311 / 1000000     1.9s h3 (   testing)
[ ]  197154       0       0  197154 / 1000000     2.0s h3
[ ]  206563       0       0  206563 / 1000000     2.1s h3
[ ]  215615       0       0  215615 / 1000000     2.2s h3
[ ]  224867       0       0  224867 / 1000000     2.3s h3
[ ]  234243       0       0  234243 / 1000000     2.4s h3
[ ]  244028       0       0  244028 / 1000000     2.5s h3
[ ]  254031       0       0  254031 / 1000000     2.6s h3
[ ]  263962       0       0  263962 / 1000000     2.7s h3
[ ]  273973       0       0  273973 / 1000000     2.8s h3
[ ]  283949       0       0  283949 / 1000000     2.9s h3
[ ]  293467       0       0  293467 / 1000000     3.0s h3
[ ]  303417       0       0  303417 / 1000000     3.1s h3
[ ]  313376       0       0  313376 / 1000000     3.2s h3
[ ]  323391       0       0  323391 / 1000000     3.3s h3
[ ]  333378       0       0  333378 / 1000000     3.4s h3
[ ]  343594       0       0  343594 / 1000000     3.5s h3
[ ]  353457       0       0  353457 / 1000000     3.6s h3
[ ]  363492       0       0  363492 / 1000000     3.7s h3
[ ]  373009       0       0  373009 / 1000000     3.8s h3
[ ]  382480       0       0  382480 / 1000000     3.9s h3
[ ]  392233       0       0  392233 / 1000000     4.0s h3
[ ]  401613       0       0  401613 / 1000000     4.1s h3
[ ]  411227       0       0  411227 / 1000000     4.2s h3
[ ]  420776       0       0  420776 / 1000000     4.3s h3
[ ]  430277       0       0  430277 / 1000000     4.4s h3 (collecting)
[ ]  440145       0       0  440145 / 1000000     4.5s h3
[ ]  450260       0       0  450260 / 1000000     4.6s h3
[ ]  460422       0       0  460422 / 1000000     4.7s h3
[ ]  470586       0       0  470586 / 1000000     4.8s h3
[ ]  480028       0       0  480028 / 1000000     4.9s h3
[ ]  489914       0       0  489914 / 1000000     5.0s h3
[ ]  499723       0       0  499723 / 1000000     5.1s h3
[ ]  509106       0       0  509106 / 1000000     5.2s h3
[ ]  518786       0       0  518786 / 1000000     5.3s h3
[ ]  528351       0       0  528351 / 1000000     5.4s h3
[ ]  537810       0       0  537810 / 1000000     5.5s h3
[ ]  546881       0       0  546881 / 1000000     5.6s h3
[ ]  556519       0       0  556519 / 1000000     5.7s h3
[ ]  565977       0       0  565977 / 1000000     5.8s h3
[ ]  575123       0       0  575123 / 1000000     5.9s h3
[ ]  584434       0       0  584434 / 1000000     6.0s h3
[ ]  593646       0       0  593646 / 1000000     6.1s h3
[ ]  603055       0       0  603055 / 1000000     6.2s h3
[ ]  612488       0       0  612488 / 1000000     6.3s h3
[ ]  622018       0       0  622018 / 1000000     6.4s h3
[ ]  631612       0       0  631612 / 1000000     6.5s h3
[ ]  641191       0       0  641191 / 1000000     6.6s h3
[ ]  650546       0       0  650546 / 1000000     6.7s h3 (collecting)
[ ]  660066       0       0  660066 / 1000000     6.8s h3
[ ]  669606       0       0  669606 / 1000000     6.9s h3
[ ]  679153       0       0  679153 / 1000000     7.0s h3
[ ]  688813       0       0  688813 / 1000000     7.1s h3
[ ]  698517       0       0  698517 / 1000000     7.2s h3
[ ]  708125       0       0  708125 / 1000000     7.3s h3
[ ]  717715       0       0  717715 / 1000000     7.4s h3
[ ]  727326       0       0  727326 / 1000000     7.5s h3
[ ]  737017       0       0  737017 / 1000000     7.6s h3
[ ]  746591       0       0  746591 / 1000000     7.7s h3
[ ]  756565       0       0  756565 / 1000000     7.8s h3
[ ]  766245       0       0  766245 / 1000000     7.9s h3
[ ]  776396       0       0  776396 / 1000000     8.0s h3
[ ]  785900       0       0  785900 / 1000000     8.1s h3
[ ]  796051       0       0  796051 / 1000000     8.2s h3
[ ]  805522       0       0  805522 / 1000000     8.3s h3
[ ]  815147       0       0  815147 / 1000000     8.4s h3
[ ]  824857       0       0  824857 / 1000000     8.5s h3
[ ]  834574       0       0  834574 / 1000000     8.6s h3
[ ]  844027       0       0  844027 / 1000000     8.7s h3
[ ]  853224       0       0  853224 / 1000000     8.8s h3 (collecting)
[ ]  862642       0       0  862642 / 1000000     8.9s h3
[ ]  872410       0       0  872410 / 1000000     9.0s h3
[ ]  882257       0       0  882257 / 1000000     9.1s h3
[ ]  891333       0       0  891333 / 1000000     9.2s h3
[ ]  900698       0       0  900698 / 1000000     9.3s h3
[ ]  909898       0       0  909898 / 1000000     9.4s h3
[ ]  919540       0       0  919540 / 1000000     9.5s h3
[ ]  929027       0       0  929027 / 1000000     9.6s h3
[ ]  938516       0       0  938516 / 1000000     9.7s h3
[ ]  947735       0       0  947735 / 1000000     9.8s h3
[ ]  957356       0       0  957356 / 1000000     9.9s h3
[ ]  966830       0       0  966830 / 1000000    10.0s h3
[ ]  976196       0       0  976196 / 1000000    10.1s h3
[ ]  985731       0       0  985731 / 1000000    10.2s h3
[ ]  995201       0       0  995201 / 1000000    10.3s h3
[✓] 1000000       0       0 1000000 / 1000000    10.4s h3
- 
[ ]       0       0       0       0 / 1000000     0.0s h4
[ ]    3333       0       0    3333 / 1000000     0.1s h4
[ ]    6703       0       0    6703 / 1000000     0.2s h4
[ ]    9971       0       0    9971 / 1000000     0.3s h4
[ ]   13248       0       0   13248 / 1000000     0.4s h4
[ ]   16599       0       0   16599 / 1000000     0.5s h4
[ ]   20004       0       0   20004 / 1000000     0.6s h4 (collecting)
[ ]   23401       0       0   23401 / 1000000     0.7s h4
[ ]   26757       0       0   26757 / 1000000     0.8s h4
[ ]   30148       0       0   30148 / 1000000     0.9s h4
[ ]   33478       0       0   33478 / 1000000     1.0s h4
[ ]   36797       0       0   36797 / 1000000     1.1s h4
[ ]   40126       0       0   40126 / 1000000     1.2s h4
[ ]   43502       0       0   43502 / 1000000     1.3s h4
[ ]   46890       0       0   46890 / 1000000     1.4s h4
[ ]   50296       0       0   50296 / 1000000     1.5s h4
[ ]   53637       0       0   53637 / 1000000     1.6s h4
[ ]   56932       0       0   56932 / 1000000     1.7s h4
[ ]   60349       0       0   60349 / 1000000     1.8s h4
[ ]   63745       0       0   63745 / 1000000     1.9s h4
[ ]   67071       0       0   67071 / 1000000     2.0s h4
[ ]   70416       0       0   70416 / 1000000     2.1s h4
[ ]   73763       0       0   73763 / 1000000     2.2s h4
[ ]   77101       0       0   77101 / 1000000     2.3s h4
[ ]   80458       0       0   80458 / 1000000     2.4s h4
[ ]   83781       0       0   83781 / 1000000     2.5s h4
[ ]   87110       0       0   87110 / 1000000     2.6s h4
[ ]   90413       0       0   90413 / 1000000     2.7s h4
[ ]   93698       0       0   93698 / 1000000     2.8s h4
[ ]   96940       0       0   96940 / 1000000     2.9s h4
[ ]  100217       0       0  100217 / 1000000     3.0s h4
[ ]  103385       0       0  103385 / 1000000     3.1s h4
[ ]  106722       0       0  106722 / 1000000     3.2s h4
[ ]  110045       0       0  110045 / 1000000     3.3s h4
[ ]  113477       0       0  113477 / 1000000     3.4s h4
[ ]  116863       0       0  116863 / 1000000     3.5s h4
[ ]  120306       0       0  120306 / 1000000     3.6s h4
[ ]  123685       0       0  123685 / 1000000     3.7s h4
[ ]  127075       0       0  127075 / 1000000     3.8s h4
[ ]  130424       0       0  130424 / 1000000     3.9s h4
[ ]  133707       0       0  133707 / 1000000     4.0s h4
[ ]  137272       0       0  137272 / 1000000     4.1s h4
[ ]  140752       0       0  140752 / 1000000     4.2s h4
[ ]  144260       0       0  144260 / 1000000     4.3s h4
[ ]  147699       0       0  147699 / 1000000     4.4s h4
[ ]  151136       0       0  151136 / 1000000     4.5s h4
[ ]  154237       0       0  154237 / 1000000     4.6s h4
[ ]  157422       0       0  157422 / 1000000     4.7s h4
[ ]  160729       0       0  160729 / 1000000     4.8s h4
[ ]  163981       0       0  163981 / 1000000     4.9s h4
[ ]  167333       0       0  167333 / 1000000     5.0s h4
[ ]  170795       0       0  170795 / 1000000     5.1s h4
[ ]  174515       0       0  174515 / 1000000     5.2s h4
[ ]  178320       0       0  178320 / 1000000     5.3s h4
[ ]  182111       0       0  182111 / 1000000     5.4s h4
[ ]  185709       0       0  185709 / 1000000     5.5s h4
[ ]  189439       0       0  189439 / 1000000     5.6s h4
[ ]  192893       0       0  192893 / 1000000     5.7s h4
[ ]  196500       0       0  196500 / 1000000     5.8s h4
[ ]  200145       0       0  200145 / 1000000     5.9s h4
[ ]  203849       0       0  203849 / 1000000     6.0s h4
[ ]  207338       0       0  207338 / 1000000     6.1s h4
[ ]  210658       0       0  210658 / 1000000     6.2s h4
[ ]  213966       0       0  213966 / 1000000     6.3s h4
[ ]  217295       0       0  217295 / 1000000     6.4s h4
[ ]  220491       0       0  220491 / 1000000     6.5s h4
[ ]  223847       0       0  223847 / 1000000     6.6s h4
[ ]  227228       0       0  227228 / 1000000     6.7s h4
[ ]  230531       0       0  230531 / 1000000     6.8s h4
[ ]  233865       0       0  233865 / 1000000     6.9s h4
[ ]  237258       0       0  237258 / 1000000     7.0s h4
[ ]  240635       0       0  240635 / 1000000     7.1s h4
[ ]  244021       0       0  244021 / 1000000     7.2s h4
[ ]  247450       0       0  247450 / 1000000     7.3s h4
[ ]  250996       0       0  250996 / 1000000     7.4s h4
[ ]  254392       0       0  254392 / 1000000     7.5s h4
[ ]  257838       0       0  257838 / 1000000     7.6s h4
[ ]  261112       0       0  261112 / 1000000     7.7s h4
[ ]  264362       0       0  264362 / 1000000     7.8s h4
[ ]  267690       0       0  267690 / 1000000     7.9s h4
[ ]  270914       0       0  270914 / 1000000     8.0s h4
[ ]  274150       0       0  274150 / 1000000     8.1s h4
[ ]  277499       0       0  277499 / 1000000     8.2s h4
[ ]  280795       0       0  280795 / 1000000     8.3s h4
[ ]  284009       0       0  284009 / 1000000     8.4s h4
[ ]  287304       0       0  287304 / 1000000     8.5s h4
[ ]  290679       0       0  290679 / 1000000     8.6s h4
[ ]  293880       0       0  293880 / 1000000     8.7s h4
[ ]  297263       0       0  297263 / 1000000     8.8s h4
[ ]  300683       0       0  300683 / 1000000     8.9s h4
[ ]  304063       0       0  304063 / 1000000     9.0s h4
[ ]  307374       0       0  307374 / 1000000     9.1s h4
[ ]  310658       0       0  310658 / 1000000     9.2s h4
[ ]  313939       0       0  313939 / 1000000     9.3s h4
[ ]  317347       0       0  317347 / 1000000     9.4s h4
[ ]  320696       0       0  320696 / 1000000     9.5s h4
[ ]  324062       0       0  324062 / 1000000     9.6s h4
[ ]  327435       0       0  327435 / 1000000     9.7s h4
[ ]  330541       0       0  330541 / 1000000     9.8s h4
[ ]  333696       0       0  333696 / 1000000     9.9s h4
[ ]  337065       0       0  337065 / 1000000    10.0s h4
[ ]  340444       0       0  340444 / 1000000    10.1s h4
[ ]  343774       0       0  343774 / 1000000    10.2s h4
[ ]  347102       0       0  347102 / 1000000    10.3s h4
[ ]  350398       0       0  350398 / 1000000    10.4s h4
[ ]  353683       0       0  353683 / 1000000    10.5s h4
[ ]  357094       0       0  357094 / 1000000    10.6s h4
[ ]  360480       0       0  360480 / 1000000    10.7s h4
[ ]  363899       0       0  363899 / 1000000    10.8s h4
[ ]  367380       0       0  367380 / 1000000    10.9s h4
[ ]  370795       0       0  370795 / 1000000    11.0s h4
[ ]  374095       0       0  374095 / 1000000    11.1s h4
[ ]  377362       0       0  377362 / 1000000    11.2s h4
[ ]  380683       0       0  380683 / 1000000    11.3s h4
[ ]  384083       0       0  384083 / 1000000    11.4s h4
[ ]  387365       0       0  387365 / 1000000    11.5s h4
[ ]  390494       0       0  390494 / 1000000    11.6s h4
[ ]  393701       0       0  393701 / 1000000    11.7s h4
[ ]  397076       0       0  397076 / 1000000    11.8s h4
[ ]  400349       0       0  400349 / 1000000    11.9s h4
[ ]  403619       0       0  403619 / 1000000    12.0s h4
[ ]  406938       0       0  406938 / 1000000    12.1s h4
[ ]  410342       0       0  410342 / 1000000    12.2s h4
[ ]  413752       0       0  413752 / 1000000    12.3s h4
[ ]  417203       0       0  417203 / 1000000    12.4s h4
[ ]  420543       0       0  420543 / 1000000    12.5s h4 (collecting)
[ ]  423904       0       0  423904 / 1000000    12.6s h4
[ ]  427408       0       0  427408 / 1000000    12.7s h4
[ ]  430825       0       0  430825 / 1000000    12.8s h4
[ ]  434255       0       0  434255 / 1000000    12.9s h4
[ ]  437699       0       0  437699 / 1000000    13.0s h4
[ ]  441128       0       0  441128 / 1000000    13.1s h4
[ ]  444622       0       0  444622 / 1000000    13.2s h4
[ ]  448065       0       0  448065 / 1000000    13.3s h4
[ ]  451494       0       0  451494 / 1000000    13.4s h4
[ ]  455035       0       0  455035 / 1000000    13.5s h4
[ ]  458488       0       0  458488 / 1000000    13.6s h4
[ ]  461844       0       0  461844 / 1000000    13.7s h4
[ ]  465383       0       0  465383 / 1000000    13.8s h4
[ ]  468825       0       0  468825 / 1000000    13.9s h4
[ ]  472307       0       0  472307 / 1000000    14.0s h4
[ ]  475734       0       0  475734 / 1000000    14.1s h4
[ ]  479170       0       0  479170 / 1000000    14.2s h4
[ ]  482653       0       0  482653 / 1000000    14.3s h4
[ ]  486162       0       0  486162 / 1000000    14.4s h4
[ ]  489528       0       0  489528 / 1000000    14.5s h4
[ ]  492919       0       0  492919 / 1000000    14.6s h4
[ ]  496320       0       0  496320 / 1000000    14.7s h4
[ ]  499725       0       0  499725 / 1000000    14.8s h4
[ ]  503232       0       0  503232 / 1000000    14.9s h4
[ ]  506655       0       0  506655 / 1000000    15.0s h4
[ ]  510093       0       0  510093 / 1000000    15.1s h4
[ ]  513476       0       0  513476 / 1000000    15.2s h4
[ ]  516890       0       0  516890 / 1000000    15.3s h4
[ ]  520267       0       0  520267 / 1000000    15.4s h4
[ ]  523667       0       0  523667 / 1000000    15.5s h4
[ ]  527116       0       0  527116 / 1000000    15.6s h4
[ ]  530600       0       0  530600 / 1000000    15.7s h4
[ ]  534028       0       0  534028 / 1000000    15.8s h4
[ ]  537632       0       0  537632 / 1000000    15.9s h4
[ ]  541062       0       0  541062 / 1000000    16.0s h4
[ ]  544539       0       0  544539 / 1000000    16.1s h4
[ ]  548034       0       0  548034 / 1000000    16.2s h4
[ ]  551541       0       0  551541 / 1000000    16.3s h4
[ ]  555089       0       0  555089 / 1000000    16.4s h4
[ ]  558604       0       0  558604 / 1000000    16.5s h4
[ ]  562024       0       0  562024 / 1000000    16.6s h4
[ ]  565424       0       0  565424 / 1000000    16.7s h4
[ ]  568853       0       0  568853 / 1000000    16.8s h4
[ ]  572207       0       0  572207 / 1000000    16.9s h4
[ ]  575680       0       0  575680 / 1000000    17.0s h4
[ ]  579121       0       0  579121 / 1000000    17.1s h4
[ ]  582512       0       0  582512 / 1000000    17.2s h4
[ ]  585944       0       0  585944 / 1000000    17.3s h4
[ ]  589254       0       0  589254 / 1000000    17.4s h4
[ ]  592634       0       0  592634 / 1000000    17.5s h4
[ ]  596086       0       0  596086 / 1000000    17.6s h4
[ ]  599499       0       0  599499 / 1000000    17.7s h4
[ ]  602864       0       0  602864 / 1000000    17.8s h4
[ ]  606270       0       0  606270 / 1000000    17.9s h4
[ ]  609688       0       0  609688 / 1000000    18.0s h4
[ ]  613072       0       0  613072 / 1000000    18.1s h4
[ ]  616342       0       0  616342 / 1000000    18.2s h4 (collecting)
[ ]  619687       0       0  619687 / 1000000    18.3s h4
[ ]  623054       0       0  623054 / 1000000    18.4s h4
[ ]  626188       0       0  626188 / 1000000    18.5s h4
[ ]  629517       0       0  629517 / 1000000    18.6s h4
[ ]  632823       0       0  632823 / 1000000    18.7s h4
[ ]  636122       0       0  636122 / 1000000    18.8s h4
[ ]  639460       0       0  639460 / 1000000    18.9s h4
[ ]  642852       0       0  642852 / 1000000    19.0s h4
[ ]  646172       0       0  646172 / 1000000    19.1s h4
[ ]  649455       0       0  649455 / 1000000    19.2s h4
[ ]  652704       0       0  652704 / 1000000    19.3s h4
[ ]  656044       0       0  656044 / 1000000    19.4s h4
[ ]  659379       0       0  659379 / 1000000    19.5s h4
[ ]  662704       0       0  662704 / 1000000    19.6s h4
[ ]  666088       0       0  666088 / 1000000    19.7s h4
[ ]  669488       0       0  669488 / 1000000    19.8s h4
[ ]  672799       0       0  672799 / 1000000    19.9s h4
[ ]  676190       0       0  676190 / 1000000    20.0s h4
[ ]  679566       0       0  679566 / 1000000    20.1s h4
[ ]  682940       0       0  682940 / 1000000    20.2s h4
[ ]  686281       0       0  686281 / 1000000    20.3s h4
[ ]  689543       0       0  689543 / 1000000    20.4s h4
[ ]  692933       0       0  692933 / 1000000    20.5s h4 (collecting)
[ ]  696289       0       0  696289 / 1000000    20.6s h4 (   testing)
[ ]  699661       0       0  699661 / 1000000    20.7s h4
[ ]  703003       0       0  703003 / 1000000    20.8s h4
[ ]  706315       0       0  706315 / 1000000    20.9s h4
[ ]  709682       0       0  709682 / 1000000    21.0s h4
[ ]  713019       0       0  713019 / 1000000    21.1s h4
[ ]  716321       0       0  716321 / 1000000    21.2s h4
[ ]  719565       0       0  719565 / 1000000    21.3s h4
[ ]  722929       0       0  722929 / 1000000    21.4s h4
[ ]  726428       0       0  726428 / 1000000    21.5s h4
[ ]  729778       0       0  729778 / 1000000    21.6s h4
[ ]  733124       0       0  733124 / 1000000    21.7s h4
[ ]  736630       0       0  736630 / 1000000    21.8s h4
[ ]  740000       0       0  740000 / 1000000    21.9s h4
[ ]  743440       0       0  743440 / 1000000    22.0s h4
[ ]  746795       0       0  746795 / 1000000    22.1s h4
[ ]  750132       0       0  750132 / 1000000    22.2s h4
[ ]  753380       0       0  753380 / 1000000    22.3s h4
[ ]  756197       0       0  756197 / 1000000    22.4s h4
[ ]  759295       0       0  759295 / 1000000    22.5s h4
[ ]  762501       0       0  762501 / 1000000    22.6s h4
[ ]  765937       0       0  765937 / 1000000    22.7s h4
[ ]  769334       0       0  769334 / 1000000    22.8s h4
[ ]  772703       0       0  772703 / 1000000    22.9s h4
[ ]  776113       0       0  776113 / 1000000    23.0s h4
[ ]  779356       0       0  779356 / 1000000    23.1s h4
[ ]  782736       0       0  782736 / 1000000    23.2s h4
[ ]  786109       0       0  786109 / 1000000    23.3s h4
[ ]  789566       0       0  789566 / 1000000    23.4s h4
[ ]  792995       0       0  792995 / 1000000    23.5s h4
[ ]  796461       0       0  796461 / 1000000    23.6s h4
[ ]  799874       0       0  799874 / 1000000    23.7s h4
[ ]  803349       0       0  803349 / 1000000    23.8s h4
[ ]  806772       0       0  806772 / 1000000    23.9s h4
[ ]  810185       0       0  810185 / 1000000    24.0s h4
[ ]  813656       0       0  813656 / 1000000    24.1s h4
[ ]  817089       0       0  817089 / 1000000    24.2s h4
[ ]  820594       0       0  820594 / 1000000    24.3s h4
[ ]  824057       0       0  824057 / 1000000    24.4s h4
[ ]  827393       0       0  827393 / 1000000    24.5s h4
[ ]  830806       0       0  830806 / 1000000    24.6s h4
[ ]  834170       0       0  834170 / 1000000    24.7s h4
[ ]  837468       0       0  837468 / 1000000    24.8s h4
[ ]  840839       0       0  840839 / 1000000    24.9s h4
[ ]  844338       0       0  844338 / 1000000    25.0s h4
[ ]  847633       0       0  847633 / 1000000    25.1s h4
[ ]  850994       0       0  850994 / 1000000    25.2s h4
[ ]  854476       0       0  854476 / 1000000    25.3s h4
[ ]  857846       0       0  857846 / 1000000    25.4s h4
[ ]  861235       0       0  861235 / 1000000    25.5s h4
[ ]  864598       0       0  864598 / 1000000    25.6s h4
[ ]  868027       0       0  868027 / 1000000    25.7s h4
[ ]  871454       0       0  871454 / 1000000    25.8s h4
[ ]  874862       0       0  874862 / 1000000    25.9s h4
[ ]  878262       0       0  878262 / 1000000    26.0s h4
[ ]  881615       0       0  881615 / 1000000    26.1s h4
[ ]  885024       0       0  885024 / 1000000    26.2s h4
[ ]  888364       0       0  888364 / 1000000    26.3s h4
[ ]  891657       0       0  891657 / 1000000    26.4s h4
[ ]  895033       0       0  895033 / 1000000    26.5s h4
[ ]  898417       0       0  898417 / 1000000    26.6s h4
[ ]  901793       0       0  901793 / 1000000    26.7s h4
[ ]  905221       0       0  905221 / 1000000    26.8s h4
[ ]  908553       0       0  908553 / 1000000    26.9s h4
[ ]  911981       0       0  911981 / 1000000    27.0s h4
[ ]  915222       0       0  915222 / 1000000    27.1s h4
[ ]  918572       0       0  918572 / 1000000    27.2s h4
[ ]  921901       0       0  921901 / 1000000    27.3s h4
[ ]  925241       0       0  925241 / 1000000    27.4s h4
[ ]  928619       0       0  928619 / 1000000    27.5s h4
[ ]  931956       0       0  931956 / 1000000    27.6s h4
[ ]  935281       0       0  935281 / 1000000    27.7s h4
[ ]  938695       0       0  938695 / 1000000    27.8s h4
[ ]  942221       0       0  942221 / 1000000    27.9s h4
[ ]  945583       0       0  945583 / 1000000    28.0s h4
[ ]  948889       0       0  948889 / 1000000    28.1s h4
[ ]  952198       0       0  952198 / 1000000    28.2s h4
[ ]  955543       0       0  955543 / 1000000    28.3s h4
[ ]  958918       0       0  958918 / 1000000    28.4s h4
[ ]  962245       0       0  962245 / 1000000    28.5s h4
[ ]  965673       0       0  965673 / 1000000    28.6s h4
[ ]  969029       0       0  969029 / 1000000    28.7s h4
[ ]  972274       0       0  972274 / 1000000    28.8s h4
[ ]  975640       0       0  975640 / 1000000    28.9s h4
[ ]  978977       0       0  978977 / 1000000    29.0s h4
[ ]  982340       0       0  982340 / 1000000    29.1s h4
[ ]  985724       0       0  985724 / 1000000    29.2s h4
[ ]  989148       0       0  989148 / 1000000    29.3s h4
[ ]  992492       0       0  992492 / 1000000    29.4s h4
[ ]  995859       0       0  995859 / 1000000    29.5s h4
[ ]  999262       0       0  999262 / 1000000    29.6s h4
[✓] 1000000       0       0 1000000 / 1000000    29.6s h4
- ================================================================================
- success (ran 6 tests)
-> compiled  dates_calc.0.0.5
-> removed   dates_calc.0.0.5
-> installed dates_calc.0.0.5
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-26 00:03.46 ---> saved as "750d167ced73bdcce8fd16ec22eb4adaf562cb8cbfb1d66f05a0f295b3a42866"
Job succeeded
2026-03-26 00:04.11: Job succeeded