(for PR #29582)

2026-03-25 23:09.43: New job: test dates_calc.0.0.6 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.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 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.6-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.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 23:09.43: Waiting for resource in pool OCluster
2026-03-25 23:54.59: Waiting for worker…
2026-03-25 23:57.08: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
Updating files:  74% (13805/18536)
Updating files:  75% (13902/18536)
Updating files:  76% (14088/18536)
Updating files:  77% (14273/18536)
Updating files:  78% (14459/18536)
Updating files:  79% (14644/18536)
Updating files:  80% (14829/18536)
Updating files:  81% (15015/18536)
Updating files:  82% (15200/18536)
Updating files:  83% (15385/18536)
Updating files:  84% (15571/18536)
Updating files:  85% (15756/18536)
Updating files:  86% (15941/18536)
Updating files:  87% (16127/18536)
Updating files:  88% (16312/18536)
Updating files:  89% (16498/18536)
Updating files:  90% (16683/18536)
Updating files:  91% (16868/18536)
Updating files:  92% (17054/18536)
Updating files:  93% (17239/18536)
Updating files:  94% (17424/18536)
Updating files:  95% (17610/18536)
Updating files:  96% (17795/18536)
Updating files:  97% (17980/18536)
Updating files:  98% (18166/18536)
Updating files:  99% (18351/18536)
Updating files: 100% (18536/18536)
Updating files: 100% (18536/18536), done.
HEAD is now at 40ee9f8d41 Merge pull request #29587 from astrada/gdfuse08
Merge made by the 'ort' strategy.
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.03 ---> 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.03 ---> 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.03 ---> 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.03 ---> 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.03 ---> using "04a48515eea40c32b96da0c71328b4bba0edb66eed83d4f78554b39097cf1f25" from cache

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

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-25 23:58.05 ---> 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.05 ---> 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.05 ---> 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.05 ---> 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.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-26 00:00.03 ---> saved as "f595025b2192438686187216268bea4f5ffb74cdf4737346493727a7676b2062"

/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 stdlib-shims.0.3.0
-> installed ocaml-syntax-shims.1.0.0
-> installed ounit2.2.2.7
-> installed re.1.14.0
-> 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-26 00:02.10 ---> saved as "f25969fd2c32343b7002d6eb145ef4e2bdb3c6796f763f943229491a88f93ae6"

/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 `5ZR5NRZM'.
- 
-   [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: 497697144
-   generated   error    fail    pass /   total     time test name
- 
[ ]       0       0       0       0 /    1000     0.0s anon_test_1
[ ]     269       0       0     269 /    1000     0.1s anon_test_1
[ ]     542       0       0     542 /    1000     0.2s anon_test_1
[ ]     832       0       0     832 /    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
[ ]       8       0       0       8 /    1000     0.1s anon_test_2
[ ]      23       0       0      23 /    1000     0.2s anon_test_2
[ ]      41       0       0      41 /    1000     0.3s anon_test_2
[ ]      49       0       0      49 /    1000     0.4s anon_test_2
[ ]      64       0       0      64 /    1000     0.6s anon_test_2
[ ]      79       0       0      79 /    1000     0.7s anon_test_2
[ ]      90       0       0      90 /    1000     0.8s anon_test_2
[ ]      98       0       0      98 /    1000     0.9s anon_test_2
[ ]     111       0       0     111 /    1000     1.0s anon_test_2
[ ]     120       0       0     120 /    1000     1.1s anon_test_2
[ ]     140       0       0     140 /    1000     1.2s anon_test_2
[ ]     153       0       0     153 /    1000     1.3s anon_test_2
[ ]     167       0       0     167 /    1000     1.4s anon_test_2
[ ]     184       0       0     184 /    1000     1.5s anon_test_2
[ ]     193       0       0     193 /    1000     1.6s anon_test_2
[ ]     207       0       0     207 /    1000     1.8s anon_test_2
[ ]     224       0       0     224 /    1000     1.9s anon_test_2
[ ]     235       0       0     235 /    1000     2.0s anon_test_2
[ ]     246       0       0     246 /    1000     2.1s anon_test_2
[ ]     257       0       0     257 /    1000     2.2s anon_test_2
[ ]     271       0       0     271 /    1000     2.3s anon_test_2
[ ]     279       0       0     279 /    1000     2.4s anon_test_2
[ ]     296       0       0     296 /    1000     2.5s anon_test_2
[ ]     310       0       0     310 /    1000     2.6s anon_test_2
[ ]     320       0       0     320 /    1000     2.7s anon_test_2
[ ]     330       0       0     330 /    1000     2.8s anon_test_2
[ ]     342       0       0     342 /    1000     2.9s anon_test_2
[ ]     360       0       0     360 /    1000     3.0s anon_test_2
[ ]     375       0       0     375 /    1000     3.1s anon_test_2
[ ]     387       0       0     387 /    1000     3.2s anon_test_2
[ ]     397       0       0     397 /    1000     3.3s anon_test_2
[ ]     411       0       0     411 /    1000     3.4s anon_test_2
[ ]     424       0       0     424 /    1000     3.6s anon_test_2
[ ]     432       0       0     432 /    1000     3.7s anon_test_2
[ ]     444       0       0     444 /    1000     3.8s anon_test_2
[ ]     454       0       0     454 /    1000     3.9s anon_test_2
[ ]     474       0       0     474 /    1000     4.0s anon_test_2
[ ]     484       0       0     484 /    1000     4.1s anon_test_2
[ ]     495       0       0     495 /    1000     4.2s anon_test_2
[ ]     505       0       0     505 /    1000     4.3s anon_test_2
[ ]     519       0       0     519 /    1000     4.4s anon_test_2
[ ]     527       0       0     527 /    1000     4.5s anon_test_2
[ ]     537       0       0     537 /    1000     4.6s anon_test_2
[ ]     549       0       0     549 /    1000     4.7s anon_test_2
[ ]     563       0       0     563 /    1000     4.8s anon_test_2
[ ]     576       0       0     576 /    1000     4.9s anon_test_2
[ ]     588       0       0     588 /    1000     5.0s anon_test_2
[ ]     607       0       0     607 /    1000     5.1s anon_test_2
[ ]     621       0       0     621 /    1000     5.2s anon_test_2
[ ]     632       0       0     632 /    1000     5.3s anon_test_2
[ ]     646       0       0     646 /    1000     5.4s anon_test_2
[ ]     660       0       0     660 /    1000     5.5s anon_test_2
[ ]     674       0       0     674 /    1000     5.6s anon_test_2
[ ]     692       0       0     692 /    1000     5.7s anon_test_2
[ ]     705       0       0     705 /    1000     5.8s anon_test_2
[ ]     716       0       0     716 /    1000     5.9s anon_test_2
[ ]     728       0       0     728 /    1000     6.1s anon_test_2
[ ]     739       0       0     739 /    1000     6.2s anon_test_2
[ ]     748       0       0     748 /    1000     6.3s anon_test_2
[ ]     765       0       0     765 /    1000     6.4s anon_test_2
[ ]     775       0       0     775 /    1000     6.5s anon_test_2
[ ]     789       0       0     789 /    1000     6.6s anon_test_2
[ ]     802       0       0     802 /    1000     6.7s anon_test_2
[ ]     813       0       0     813 /    1000     6.8s anon_test_2
[ ]     825       0       0     825 /    1000     6.9s anon_test_2
[ ]     834       0       0     834 /    1000     7.0s anon_test_2
[ ]     848       0       0     848 /    1000     7.1s anon_test_2
[ ]     857       0       0     857 /    1000     7.2s anon_test_2
[ ]     868       0       0     868 /    1000     7.3s anon_test_2
[ ]     877       0       0     877 /    1000     7.4s anon_test_2
[ ]     894       0       0     894 /    1000     7.5s anon_test_2
[ ]     905       0       0     905 /    1000     7.6s anon_test_2
[ ]     917       0       0     917 /    1000     7.7s anon_test_2
[ ]     927       0       0     927 /    1000     7.9s anon_test_2
[ ]     944       0       0     944 /    1000     8.0s anon_test_2
[ ]     956       0       0     956 /    1000     8.1s anon_test_2
[ ]     967       0       0     967 /    1000     8.2s anon_test_2
[ ]     980       0       0     980 /    1000     8.3s anon_test_2
[ ]     992       0       0     992 /    1000     8.4s anon_test_2
[✓]    1000       0       0    1000 /    1000     8.5s anon_test_2
- 
[ ]       0       0       0       0 / 1000000     0.0s h1
[ ]    9649       0       0    9649 / 1000000     0.1s h1
[ ]   19119       0       0   19119 / 1000000     0.2s h1
[ ]   28711       0       0   28711 / 1000000     0.3s h1
[ ]   37878       0       0   37878 / 1000000     0.4s h1
[ ]   47284       0       0   47284 / 1000000     0.5s h1
[ ]   56351       0       0   56351 / 1000000     0.6s h1
[ ]   65695       0       0   65695 / 1000000     0.7s h1
[ ]   75090       0       0   75090 / 1000000     0.8s h1
[ ]   84525       0       0   84525 / 1000000     0.9s h1
[ ]   94190       0       0   94190 / 1000000     1.0s h1
[ ]  103632       0       0  103632 / 1000000     1.1s h1
[ ]  113088       0       0  113088 / 1000000     1.2s h1
[ ]  122434       0       0  122434 / 1000000     1.3s h1
[ ]  131946       0       0  131946 / 1000000     1.4s h1
[ ]  141339       0       0  141339 / 1000000     1.5s h1
[ ]  150751       0       0  150751 / 1000000     1.6s h1
[ ]  160181       0       0  160181 / 1000000     1.7s h1
[ ]  169586       0       0  169586 / 1000000     1.8s h1
[ ]  179150       0       0  179150 / 1000000     1.9s h1
[ ]  188884       0       0  188884 / 1000000     2.0s h1
[ ]  198157       0       0  198157 / 1000000     2.1s h1
[ ]  207445       0       0  207445 / 1000000     2.2s h1
[ ]  216943       0       0  216943 / 1000000     2.3s h1
[ ]  226421       0       0  226421 / 1000000     2.4s h1
[ ]  236220       0       0  236220 / 1000000     2.5s h1
[ ]  245504       0       0  245504 / 1000000     2.6s h1
[ ]  255121       0       0  255121 / 1000000     2.7s h1
[ ]  264452       0       0  264452 / 1000000     2.8s h1
[ ]  273945       0       0  273945 / 1000000     2.9s h1
[ ]  283321       0       0  283321 / 1000000     3.0s h1
[ ]  292099       0       0  292099 / 1000000     3.1s h1
[ ]  300885       0       0  300885 / 1000000     3.2s h1
[ ]  310264       0       0  310264 / 1000000     3.3s h1
[ ]  319887       0       0  319887 / 1000000     3.4s h1
[ ]  329506       0       0  329506 / 1000000     3.5s h1
[ ]  338964       0       0  338964 / 1000000     3.6s h1
[ ]  348267       0       0  348267 / 1000000     3.7s h1
[ ]  357481       0       0  357481 / 1000000     3.8s h1
[ ]  367032       0       0  367032 / 1000000     3.9s h1
[ ]  376491       0       0  376491 / 1000000     4.0s h1
[ ]  385842       0       0  385842 / 1000000     4.1s h1
[ ]  395214       0       0  395214 / 1000000     4.2s h1
[ ]  404716       0       0  404716 / 1000000     4.3s h1
[ ]  414260       0       0  414260 / 1000000     4.4s h1
[ ]  423796       0       0  423796 / 1000000     4.5s h1
[ ]  432592       0       0  432592 / 1000000     4.6s h1 (collecting)
[ ]  441672       0       0  441672 / 1000000     4.7s h1
[ ]  451041       0       0  451041 / 1000000     4.8s h1
[ ]  460549       0       0  460549 / 1000000     4.9s h1
[ ]  469930       0       0  469930 / 1000000     5.0s h1
[ ]  479236       0       0  479236 / 1000000     5.1s h1
[ ]  488693       0       0  488693 / 1000000     5.2s h1 (collecting)
[ ]  498084       0       0  498084 / 1000000     5.3s h1
[ ]  507566       0       0  507566 / 1000000     5.4s h1
[ ]  516970       0       0  516970 / 1000000     5.5s h1
[ ]  526282       0       0  526282 / 1000000     5.6s h1
[ ]  535636       0       0  535636 / 1000000     5.7s h1
[ ]  544884       0       0  544884 / 1000000     5.8s h1
[ ]  554290       0       0  554290 / 1000000     5.9s h1
[ ]  559986       0       0  559986 / 1000000     6.0s h1
[ ]  568949       0       0  568949 / 1000000     6.1s h1
[ ]  578442       0       0  578442 / 1000000     6.2s h1
[ ]  587961       0       0  587961 / 1000000     6.3s h1
[ ]  597349       0       0  597349 / 1000000     6.4s h1
[ ]  606797       0       0  606797 / 1000000     6.5s h1
[ ]  616285       0       0  616285 / 1000000     6.6s h1
[ ]  625695       0       0  625695 / 1000000     6.7s h1
[ ]  635209       0       0  635209 / 1000000     6.8s h1
[ ]  644815       0       0  644815 / 1000000     6.9s h1
[ ]  654546       0       0  654546 / 1000000     7.0s h1
[ ]  664312       0       0  664312 / 1000000     7.1s h1
[ ]  673880       0       0  673880 / 1000000     7.2s h1 (collecting)
[ ]  683414       0       0  683414 / 1000000     7.3s h1
[ ]  693076       0       0  693076 / 1000000     7.4s h1
[ ]  702864       0       0  702864 / 1000000     7.5s h1
[ ]  712381       0       0  712381 / 1000000     7.6s h1
[ ]  721931       0       0  721931 / 1000000     7.7s h1
[ ]  731533       0       0  731533 / 1000000     7.8s h1
[ ]  741142       0       0  741142 / 1000000     7.9s h1
[ ]  750931       0       0  750931 / 1000000     8.0s h1
[ ]  760645       0       0  760645 / 1000000     8.1s h1
[ ]  770377       0       0  770377 / 1000000     8.2s h1
[ ]  780178       0       0  780178 / 1000000     8.3s h1
[ ]  790046       0       0  790046 / 1000000     8.4s h1
[ ]  799803       0       0  799803 / 1000000     8.5s h1
[ ]  809633       0       0  809633 / 1000000     8.6s h1
[ ]  819201       0       0  819201 / 1000000     8.7s h1
[ ]  828946       0       0  828946 / 1000000     8.8s h1
[ ]  838732       0       0  838732 / 1000000     8.9s h1
[ ]  848626       0       0  848626 / 1000000     9.0s h1
[ ]  858448       0       0  858448 / 1000000     9.1s h1 (collecting)
[ ]  867982       0       0  867982 / 1000000     9.2s h1
[ ]  877386       0       0  877386 / 1000000     9.3s h1
[ ]  886845       0       0  886845 / 1000000     9.4s h1
[ ]  896218       0       0  896218 / 1000000     9.5s h1
[ ]  905554       0       0  905554 / 1000000     9.6s h1
[ ]  914991       0       0  914991 / 1000000     9.7s h1
[ ]  924595       0       0  924595 / 1000000     9.8s h1 (collecting)
[ ]  933881       0       0  933881 / 1000000     9.9s h1
[ ]  943480       0       0  943480 / 1000000    10.0s h1
[ ]  952915       0       0  952915 / 1000000    10.1s h1
[ ]  962210       0       0  962210 / 1000000    10.2s h1
[ ]  971674       0       0  971674 / 1000000    10.3s h1
[ ]  980985       0       0  980985 / 1000000    10.4s h1
[ ]  990269       0       0  990269 / 1000000    10.5s h1
[✓] 1000000       0       0 1000000 / 1000000    10.6s h1
- 
[ ]       0       0       0       0 / 1000000     0.0s h2
[ ]    5158       0       0    5158 / 1000000     0.1s h2
[ ]   10281       0       0   10281 / 1000000     0.2s h2
[ ]   15397       0       0   15397 / 1000000     0.3s h2
[ ]   20520       0       0   20520 / 1000000     0.4s h2
[ ]   25613       0       0   25613 / 1000000     0.5s h2
[ ]   30713       0       0   30713 / 1000000     0.6s h2
[ ]   35742       0       0   35742 / 1000000     0.7s h2
[ ]   40823       0       0   40823 / 1000000     0.8s h2
[ ]   45777       0       0   45777 / 1000000     0.9s h2
[ ]   50736       0       0   50736 / 1000000     1.0s h2
[ ]   55753       0       0   55753 / 1000000     1.1s h2
[ ]   60740       0       0   60740 / 1000000     1.2s h2
[ ]   65743       0       0   65743 / 1000000     1.3s h2
[ ]   70758       0       0   70758 / 1000000     1.4s h2
[ ]   75711       0       0   75711 / 1000000     1.5s h2
[ ]   80642       0       0   80642 / 1000000     1.6s h2
[ ]   85625       0       0   85625 / 1000000     1.7s h2
[ ]   90537       0       0   90537 / 1000000     1.8s h2 (generating)
[ ]   95469       0       0   95469 / 1000000     1.9s h2
[ ]  100414       0       0  100414 / 1000000     2.0s h2
[ ]  105363       0       0  105363 / 1000000     2.1s h2
[ ]  110337       0       0  110337 / 1000000     2.2s h2
[ ]  115288       0       0  115288 / 1000000     2.3s h2
[ ]  120139       0       0  120139 / 1000000     2.4s h2
[ ]  125029       0       0  125029 / 1000000     2.5s h2
[ ]  129802       0       0  129802 / 1000000     2.6s h2
[ ]  134590       0       0  134590 / 1000000     2.7s h2
[ ]  139607       0       0  139607 / 1000000     2.8s h2
[ ]  144596       0       0  144596 / 1000000     2.9s h2
[ ]  149473       0       0  149473 / 1000000     3.0s h2
[ ]  154346       0       0  154346 / 1000000     3.1s h2
[ ]  159253       0       0  159253 / 1000000     3.2s h2
[ ]  164266       0       0  164266 / 1000000     3.3s h2 (collecting)
[ ]  169306       0       0  169306 / 1000000     3.4s h2
[ ]  174287       0       0  174287 / 1000000     3.5s h2
[ ]  179316       0       0  179316 / 1000000     3.6s h2
[ ]  184350       0       0  184350 / 1000000     3.7s h2
[ ]  189219       0       0  189219 / 1000000     3.8s h2
[ ]  194231       0       0  194231 / 1000000     3.9s h2
[ ]  199279       0       0  199279 / 1000000     4.0s h2
[ ]  204141       0       0  204141 / 1000000     4.1s h2 (collecting)
[ ]  209086       0       0  209086 / 1000000     4.2s h2
[ ]  213935       0       0  213935 / 1000000     4.3s h2
[ ]  218770       0       0  218770 / 1000000     4.4s h2 (collecting)
[ ]  223669       0       0  223669 / 1000000     4.5s h2
[ ]  228632       0       0  228632 / 1000000     4.6s h2
[ ]  233537       0       0  233537 / 1000000     4.7s h2 (   testing)
[ ]  238504       0       0  238504 / 1000000     4.8s h2
[ ]  243361       0       0  243361 / 1000000     4.9s h2
[ ]  248363       0       0  248363 / 1000000     5.0s h2
[ ]  253416       0       0  253416 / 1000000     5.1s h2
[ ]  258457       0       0  258457 / 1000000     5.2s h2
[ ]  264088       0       0  264088 / 1000000     5.3s h2
[ ]  269675       0       0  269675 / 1000000     5.4s h2
[ ]  274431       0       0  274431 / 1000000     5.5s h2
[ ]  279356       0       0  279356 / 1000000     5.6s h2
[ ]  284124       0       0  284124 / 1000000     5.7s h2
[ ]  288797       0       0  288797 / 1000000     5.8s h2
[ ]  293497       0       0  293497 / 1000000     5.9s h2
[ ]  298122       0       0  298122 / 1000000     6.0s h2
[ ]  303453       0       0  303453 / 1000000     6.1s h2
[ ]  308346       0       0  308346 / 1000000     6.2s h2
[ ]  313255       0       0  313255 / 1000000     6.3s h2
[ ]  318532       0       0  318532 / 1000000     6.4s h2
[ ]  323340       0       0  323340 / 1000000     6.5s h2
[ ]  328243       0       0  328243 / 1000000     6.6s h2
[ ]  333109       0       0  333109 / 1000000     6.7s h2
[ ]  338011       0       0  338011 / 1000000     6.8s h2
[ ]  342897       0       0  342897 / 1000000     6.9s h2
[ ]  348131       0       0  348131 / 1000000     7.0s h2
[ ]  353637       0       0  353637 / 1000000     7.1s h2
[ ]  359125       0       0  359125 / 1000000     7.2s h2
[ ]  364620       0       0  364620 / 1000000     7.3s h2
[ ]  370174       0       0  370174 / 1000000     7.4s h2
[ ]  375696       0       0  375696 / 1000000     7.5s h2
[ ]  381429       0       0  381429 / 1000000     7.6s h2
[ ]  386399       0       0  386399 / 1000000     7.7s h2
[ ]  391887       0       0  391887 / 1000000     7.8s h2
[ ]  397261       0       0  397261 / 1000000     7.9s h2
[ ]  402580       0       0  402580 / 1000000     8.0s h2
[ ]  407764       0       0  407764 / 1000000     8.1s h2
[ ]  412888       0       0  412888 / 1000000     8.2s h2
[ ]  417826       0       0  417826 / 1000000     8.3s h2
[ ]  422771       0       0  422771 / 1000000     8.4s h2
[ ]  427400       0       0  427400 / 1000000     8.5s h2
[ ]  432141       0       0  432141 / 1000000     8.6s h2
[ ]  436990       0       0  436990 / 1000000     8.7s h2
[ ]  441857       0       0  441857 / 1000000     8.8s h2
[ ]  446868       0       0  446868 / 1000000     8.9s h2
[ ]  451769       0       0  451769 / 1000000     9.0s h2
[ ]  456625       0       0  456625 / 1000000     9.1s h2
[ ]  461331       0       0  461331 / 1000000     9.2s h2
[ ]  466184       0       0  466184 / 1000000     9.3s h2
[ ]  471131       0       0  471131 / 1000000     9.4s h2
[ ]  476073       0       0  476073 / 1000000     9.5s h2
[ ]  480961       0       0  480961 / 1000000     9.6s h2
[ ]  485695       0       0  485695 / 1000000     9.7s h2
[ ]  490422       0       0  490422 / 1000000     9.8s h2
[ ]  495255       0       0  495255 / 1000000     9.9s h2
[ ]  499889       0       0  499889 / 1000000    10.0s h2
[ ]  504810       0       0  504810 / 1000000    10.1s h2
[ ]  509683       0       0  509683 / 1000000    10.2s h2
[ ]  514573       0       0  514573 / 1000000    10.3s h2
[ ]  519430       0       0  519430 / 1000000    10.4s h2
[ ]  524413       0       0  524413 / 1000000    10.5s h2 (   testing)
[ ]  529268       0       0  529268 / 1000000    10.6s h2
[ ]  534152       0       0  534152 / 1000000    10.7s h2
[ ]  538986       0       0  538986 / 1000000    10.8s h2
[ ]  543751       0       0  543751 / 1000000    10.9s h2
[ ]  548604       0       0  548604 / 1000000    11.0s h2
[ ]  553515       0       0  553515 / 1000000    11.1s h2
[ ]  558285       0       0  558285 / 1000000    11.2s h2
[ ]  563311       0       0  563311 / 1000000    11.3s h2
[ ]  568312       0       0  568312 / 1000000    11.4s h2
[ ]  573294       0       0  573294 / 1000000    11.5s h2
[ ]  577977       0       0  577977 / 1000000    11.6s h2 (collecting)
[ ]  582846       0       0  582846 / 1000000    11.7s h2
[ ]  587712       0       0  587712 / 1000000    11.8s h2
[ ]  592643       0       0  592643 / 1000000    11.9s h2
[ ]  597479       0       0  597479 / 1000000    12.0s h2
[ ]  602272       0       0  602272 / 1000000    12.1s h2
[ ]  607245       0       0  607245 / 1000000    12.2s h2
[ ]  612224       0       0  612224 / 1000000    12.3s h2
[ ]  617042       0       0  617042 / 1000000    12.4s h2
[ ]  622005       0       0  622005 / 1000000    12.5s h2
[ ]  626942       0       0  626942 / 1000000    12.6s h2
[ ]  631843       0       0  631843 / 1000000    12.7s h2
[ ]  636704       0       0  636704 / 1000000    12.8s h2
[ ]  641554       0       0  641554 / 1000000    12.9s h2
[ ]  646434       0       0  646434 / 1000000    13.0s h2
[ ]  651350       0       0  651350 / 1000000    13.1s h2
[ ]  656238       0       0  656238 / 1000000    13.2s h2
[ ]  661186       0       0  661186 / 1000000    13.3s h2
[ ]  666209       0       0  666209 / 1000000    13.4s h2
[ ]  671028       0       0  671028 / 1000000    13.5s h2 (collecting)
[ ]  676016       0       0  676016 / 1000000    13.6s h2
[ ]  681063       0       0  681063 / 1000000    13.7s h2
[ ]  686012       0       0  686012 / 1000000    13.8s h2
[ ]  691284       0       0  691284 / 1000000    13.9s h2
[ ]  696175       0       0  696175 / 1000000    14.0s h2 (collecting)
[ ]  700964       0       0  700964 / 1000000    14.1s h2
[ ]  705159       0       0  705159 / 1000000    14.2s h2
[ ]  709356       0       0  709356 / 1000000    14.3s h2
[ ]  713607       0       0  713607 / 1000000    14.4s h2 (collecting)
[ ]  718030       0       0  718030 / 1000000    14.5s h2
[ ]  722178       0       0  722178 / 1000000    14.6s h2
[ ]  726416       0       0  726416 / 1000000    14.7s h2
[ ]  730681       0       0  730681 / 1000000    14.8s h2
[ ]  735533       0       0  735533 / 1000000    14.9s h2
[ ]  740620       0       0  740620 / 1000000    15.0s h2
[ ]  745686       0       0  745686 / 1000000    15.1s h2
[ ]  750703       0       0  750703 / 1000000    15.2s h2
[ ]  755641       0       0  755641 / 1000000    15.3s h2
[ ]  760665       0       0  760665 / 1000000    15.4s h2
[ ]  765830       0       0  765830 / 1000000    15.5s h2
[ ]  771002       0       0  771002 / 1000000    15.6s h2
[ ]  776087       0       0  776087 / 1000000    15.7s h2
[ ]  781141       0       0  781141 / 1000000    15.8s h2
[ ]  786151       0       0  786151 / 1000000    15.9s h2
[ ]  791170       0       0  791170 / 1000000    16.0s h2
[ ]  796067       0       0  796067 / 1000000    16.1s h2
[ ]  800940       0       0  800940 / 1000000    16.2s h2
[ ]  806037       0       0  806037 / 1000000    16.3s h2
[ ]  811073       0       0  811073 / 1000000    16.4s h2
[ ]  816193       0       0  816193 / 1000000    16.5s h2
[ ]  821313       0       0  821313 / 1000000    16.6s h2
[ ]  826355       0       0  826355 / 1000000    16.7s h2
[ ]  831324       0       0  831324 / 1000000    16.8s h2
[ ]  836316       0       0  836316 / 1000000    16.9s h2
[ ]  841299       0       0  841299 / 1000000    17.0s h2 (   testing)
[ ]  846358       0       0  846358 / 1000000    17.1s h2
[ ]  851373       0       0  851373 / 1000000    17.2s h2
[ ]  856404       0       0  856404 / 1000000    17.3s h2
[ ]  861473       0       0  861473 / 1000000    17.4s h2
[ ]  866545       0       0  866545 / 1000000    17.5s h2
[ ]  871532       0       0  871532 / 1000000    17.6s h2
[ ]  876575       0       0  876575 / 1000000    17.7s h2
[ ]  881691       0       0  881691 / 1000000    17.8s h2
[ ]  886780       0       0  886780 / 1000000    17.9s h2
[ ]  891809       0       0  891809 / 1000000    18.0s h2
[ ]  896677       0       0  896677 / 1000000    18.1s h2
[ ]  901488       0       0  901488 / 1000000    18.2s h2
[ ]  906679       0       0  906679 / 1000000    18.3s h2
[ ]  911851       0       0  911851 / 1000000    18.4s h2
[ ]  917020       0       0  917020 / 1000000    18.5s h2
[ ]  922086       0       0  922086 / 1000000    18.6s h2 (collecting)
[ ]  927264       0       0  927264 / 1000000    18.7s h2
[ ]  932482       0       0  932482 / 1000000    18.8s h2
[ ]  937673       0       0  937673 / 1000000    18.9s h2
[ ]  942850       0       0  942850 / 1000000    19.0s h2
[ ]  948090       0       0  948090 / 1000000    19.1s h2
[ ]  953173       0       0  953173 / 1000000    19.2s h2
[ ]  958368       0       0  958368 / 1000000    19.3s h2
[ ]  963586       0       0  963586 / 1000000    19.4s h2
[ ]  968819       0       0  968819 / 1000000    19.5s h2
[ ]  974046       0       0  974046 / 1000000    19.6s h2
[ ]  979181       0       0  979181 / 1000000    19.7s h2 (collecting)
[ ]  984380       0       0  984380 / 1000000    19.8s h2
[ ]  989554       0       0  989554 / 1000000    19.9s h2
[ ]  994608       0       0  994608 / 1000000    20.0s h2
[ ]  999717       0       0  999717 / 1000000    20.1s h2
[✓] 1000000       0       0 1000000 / 1000000    20.1s h2
- 
[ ]       0       0       0       0 / 1000000     0.0s h3
[ ]   10318       0       0   10318 / 1000000     0.1s h3
[ ]   20806       0       0   20806 / 1000000     0.2s h3
[ ]   30965       0       0   30965 / 1000000     0.3s h3
[ ]   40938       0       0   40938 / 1000000     0.4s h3
[ ]   50762       0       0   50762 / 1000000     0.5s h3
[ ]   60480       0       0   60480 / 1000000     0.6s h3
[ ]   70161       0       0   70161 / 1000000     0.7s h3
[ ]   79775       0       0   79775 / 1000000     0.8s h3
[ ]   89409       0       0   89409 / 1000000     0.9s h3
[ ]   98931       0       0   98931 / 1000000     1.0s h3
[ ]  108692       0       0  108692 / 1000000     1.1s h3
[ ]  118831       0       0  118831 / 1000000     1.2s h3
[ ]  128616       0       0  128616 / 1000000     1.3s h3
[ ]  138583       0       0  138583 / 1000000     1.4s h3
[ ]  148490       0       0  148490 / 1000000     1.5s h3
[ ]  158531       0       0  158531 / 1000000     1.6s h3
[ ]  168572       0       0  168572 / 1000000     1.7s h3
[ ]  178412       0       0  178412 / 1000000     1.8s h3
[ ]  188426       0       0  188426 / 1000000     1.9s h3
[ ]  198598       0       0  198598 / 1000000     2.0s h3
[ ]  207792       0       0  207792 / 1000000     2.1s h3
[ ]  216687       0       0  216687 / 1000000     2.2s h3
[ ]  225706       0       0  225706 / 1000000     2.3s h3
[ ]  235017       0       0  235017 / 1000000     2.4s h3
[ ]  244718       0       0  244718 / 1000000     2.5s h3
[ ]  254147       0       0  254147 / 1000000     2.6s h3
[ ]  262861       0       0  262861 / 1000000     2.7s h3
[ ]  272166       0       0  272166 / 1000000     2.8s h3
[ ]  281382       0       0  281382 / 1000000     2.9s h3
[ ]  290523       0       0  290523 / 1000000     3.0s h3
[ ]  299546       0       0  299546 / 1000000     3.1s h3 (   testing)
[ ]  308654       0       0  308654 / 1000000     3.2s h3
[ ]  317572       0       0  317572 / 1000000     3.3s h3
[ ]  326119       0       0  326119 / 1000000     3.4s h3
[ ]  334518       0       0  334518 / 1000000     3.5s h3
[ ]  343254       0       0  343254 / 1000000     3.6s h3
[ ]  352283       0       0  352283 / 1000000     3.7s h3
[ ]  360807       0       0  360807 / 1000000     3.8s h3
[ ]  369007       0       0  369007 / 1000000     3.9s h3
[ ]  377359       0       0  377359 / 1000000     4.0s h3
[ ]  386712       0       0  386712 / 1000000     4.1s h3
[ ]  396357       0       0  396357 / 1000000     4.2s h3
[ ]  406088       0       0  406088 / 1000000     4.3s h3
[ ]  415144       0       0  415144 / 1000000     4.4s h3
[ ]  424191       0       0  424191 / 1000000     4.5s h3 (collecting)
[ ]  433873       0       0  433873 / 1000000     4.6s h3
[ ]  443685       0       0  443685 / 1000000     4.7s h3
[ ]  454006       0       0  454006 / 1000000     4.8s h3 (collecting)
[ ]  463946       0       0  463946 / 1000000     4.9s h3
[ ]  474077       0       0  474077 / 1000000     5.0s h3
[ ]  484208       0       0  484208 / 1000000     5.1s h3
[ ]  494390       0       0  494390 / 1000000     5.2s h3
[ ]  504599       0       0  504599 / 1000000     5.3s h3
[ ]  514574       0       0  514574 / 1000000     5.4s h3
[ ]  524574       0       0  524574 / 1000000     5.5s h3 (collecting)
[ ]  534583       0       0  534583 / 1000000     5.6s h3
[ ]  544811       0       0  544811 / 1000000     5.7s h3
[ ]  554768       0       0  554768 / 1000000     5.8s h3 (   testing)
[ ]  564478       0       0  564478 / 1000000     5.9s h3
[ ]  574252       0       0  574252 / 1000000     6.0s h3
[ ]  583813       0       0  583813 / 1000000     6.1s h3
[ ]  593460       0       0  593460 / 1000000     6.2s h3
[ ]  602749       0       0  602749 / 1000000     6.3s h3
[ ]  612149       0       0  612149 / 1000000     6.4s h3
[ ]  621205       0       0  621205 / 1000000     6.5s h3
[ ]  630858       0       0  630858 / 1000000     6.6s h3
[ ]  640368       0       0  640368 / 1000000     6.7s h3 (collecting)
[ ]  649751       0       0  649751 / 1000000     6.8s h3
[ ]  659613       0       0  659613 / 1000000     6.9s h3
[ ]  670656       0       0  670656 / 1000000     7.0s h3 (   testing)
[ ]  681718       0       0  681718 / 1000000     7.1s h3
[ ]  692692       0       0  692692 / 1000000     7.2s h3
[ ]  703543       0       0  703543 / 1000000     7.3s h3
[ ]  714465       0       0  714465 / 1000000     7.4s h3
[ ]  725577       0       0  725577 / 1000000     7.5s h3
[ ]  736550       0       0  736550 / 1000000     7.6s h3
[ ]  747611       0       0  747611 / 1000000     7.7s h3
[ ]  758685       0       0  758685 / 1000000     7.8s h3
[ ]  769953       0       0  769953 / 1000000     7.9s h3
[ ]  781169       0       0  781169 / 1000000     8.0s h3
[ ]  792343       0       0  792343 / 1000000     8.1s h3 (collecting)
[ ]  803384       0       0  803384 / 1000000     8.2s h3
[ ]  814411       0       0  814411 / 1000000     8.3s h3
[ ]  825347       0       0  825347 / 1000000     8.4s h3
[ ]  836281       0       0  836281 / 1000000     8.5s h3
[ ]  847234       0       0  847234 / 1000000     8.6s h3
[ ]  858350       0       0  858350 / 1000000     8.7s h3
[ ]  869398       0       0  869398 / 1000000     8.8s h3
[ ]  880466       0       0  880466 / 1000000     8.9s h3
[ ]  891204       0       0  891204 / 1000000     9.0s h3
[ ]  902073       0       0  902073 / 1000000     9.1s h3 (collecting)
[ ]  912980       0       0  912980 / 1000000     9.2s h3
[ ]  923819       0       0  923819 / 1000000     9.3s h3
[ ]  934494       0       0  934494 / 1000000     9.4s h3
[ ]  945127       0       0  945127 / 1000000     9.5s h3
[ ]  956103       0       0  956103 / 1000000     9.6s h3
[ ]  966957       0       0  966957 / 1000000     9.7s h3
[ ]  976936       0       0  976936 / 1000000     9.8s h3
[ ]  986554       0       0  986554 / 1000000     9.9s h3
[ ]  996599       0       0  996599 / 1000000    10.0s h3
[✓] 1000000       0       0 1000000 / 1000000    10.0s h3
- 
[ ]       0       0       0       0 / 1000000     0.0s h4
[ ]    3450       0       0    3450 / 1000000     0.1s h4
[ ]    6875       0       0    6875 / 1000000     0.2s h4
[ ]   10311       0       0   10311 / 1000000     0.3s h4
[ ]   13768       0       0   13768 / 1000000     0.4s h4
[ ]   17215       0       0   17215 / 1000000     0.5s h4
[ ]   20699       0       0   20699 / 1000000     0.6s h4
[ ]   24090       0       0   24090 / 1000000     0.7s h4
[ ]   27534       0       0   27534 / 1000000     0.8s h4
[ ]   30877       0       0   30877 / 1000000     0.9s h4
[ ]   34316       0       0   34316 / 1000000     1.0s h4
[ ]   37720       0       0   37720 / 1000000     1.1s h4
[ ]   41118       0       0   41118 / 1000000     1.2s h4
[ ]   44581       0       0   44581 / 1000000     1.3s h4
[ ]   48018       0       0   48018 / 1000000     1.4s h4
[ ]   51209       0       0   51209 / 1000000     1.5s h4
[ ]   54424       0       0   54424 / 1000000     1.6s h4
[ ]   57603       0       0   57603 / 1000000     1.7s h4
[ ]   60840       0       0   60840 / 1000000     1.8s h4
[ ]   64191       0       0   64191 / 1000000     1.9s h4
[ ]   67417       0       0   67417 / 1000000     2.0s h4
[ ]   70680       0       0   70680 / 1000000     2.1s h4
[ ]   73893       0       0   73893 / 1000000     2.2s h4
[ ]   77167       0       0   77167 / 1000000     2.3s h4
[ ]   80381       0       0   80381 / 1000000     2.4s h4
[ ]   83618       0       0   83618 / 1000000     2.5s h4
[ ]   86887       0       0   86887 / 1000000     2.6s h4
[ ]   89972       0       0   89972 / 1000000     2.7s h4
[ ]   93054       0       0   93054 / 1000000     2.8s h4
[ ]   96292       0       0   96292 / 1000000     2.9s h4
[ ]   99302       0       0   99302 / 1000000     3.0s h4
[ ]  102539       0       0  102539 / 1000000     3.1s h4
[ ]  105726       0       0  105726 / 1000000     3.2s h4
[ ]  108978       0       0  108978 / 1000000     3.3s h4
[ ]  112322       0       0  112322 / 1000000     3.4s h4
[ ]  115616       0       0  115616 / 1000000     3.5s h4
[ ]  118874       0       0  118874 / 1000000     3.6s h4
[ ]  122216       0       0  122216 / 1000000     3.7s h4
[ ]  125496       0       0  125496 / 1000000     3.8s h4
[ ]  128871       0       0  128871 / 1000000     3.9s h4
[ ]  132209       0       0  132209 / 1000000     4.0s h4
[ ]  135629       0       0  135629 / 1000000     4.1s h4
[ ]  139052       0       0  139052 / 1000000     4.2s h4
[ ]  142304       0       0  142304 / 1000000     4.3s h4
[ ]  145670       0       0  145670 / 1000000     4.4s h4
[ ]  148917       0       0  148917 / 1000000     4.5s h4
[ ]  152302       0       0  152302 / 1000000     4.6s h4
[ ]  155786       0       0  155786 / 1000000     4.7s h4
[ ]  159227       0       0  159227 / 1000000     4.8s h4
[ ]  162709       0       0  162709 / 1000000     4.9s h4
[ ]  166209       0       0  166209 / 1000000     5.0s h4
[ ]  169730       0       0  169730 / 1000000     5.1s h4
[ ]  173225       0       0  173225 / 1000000     5.2s h4
[ ]  176624       0       0  176624 / 1000000     5.3s h4
[ ]  180017       0       0  180017 / 1000000     5.4s h4
[ ]  183448       0       0  183448 / 1000000     5.5s h4
[ ]  186761       0       0  186761 / 1000000     5.6s h4
[ ]  190151       0       0  190151 / 1000000     5.7s h4
[ ]  193605       0       0  193605 / 1000000     5.8s h4 (collecting)
[ ]  197101       0       0  197101 / 1000000     5.9s h4
[ ]  200567       0       0  200567 / 1000000     6.0s h4
[ ]  204075       0       0  204075 / 1000000     6.1s h4
[ ]  207574       0       0  207574 / 1000000     6.2s h4
[ ]  211079       0       0  211079 / 1000000     6.3s h4
[ ]  214489       0       0  214489 / 1000000     6.4s h4
[ ]  217907       0       0  217907 / 1000000     6.5s h4
[ ]  221381       0       0  221381 / 1000000     6.6s h4
[ ]  224796       0       0  224796 / 1000000     6.7s h4
[ ]  228158       0       0  228158 / 1000000     6.8s h4
[ ]  231520       0       0  231520 / 1000000     6.9s h4
[ ]  234891       0       0  234891 / 1000000     7.0s h4
[ ]  238289       0       0  238289 / 1000000     7.1s h4
[ ]  241609       0       0  241609 / 1000000     7.2s h4
[ ]  244912       0       0  244912 / 1000000     7.3s h4
[ ]  248367       0       0  248367 / 1000000     7.4s h4
[ ]  251763       0       0  251763 / 1000000     7.5s h4
[ ]  255170       0       0  255170 / 1000000     7.6s h4
[ ]  258491       0       0  258491 / 1000000     7.7s h4
[ ]  261879       0       0  261879 / 1000000     7.8s h4
[ ]  265322       0       0  265322 / 1000000     7.9s h4
[ ]  268733       0       0  268733 / 1000000     8.0s h4
[ ]  272428       0       0  272428 / 1000000     8.1s h4
[ ]  275575       0       0  275575 / 1000000     8.2s h4
[ ]  278812       0       0  278812 / 1000000     8.3s h4
[ ]  282125       0       0  282125 / 1000000     8.4s h4
[ ]  284923       0       0  284923 / 1000000     8.5s h4
[ ]  288131       0       0  288131 / 1000000     8.6s h4
[ ]  290917       0       0  290917 / 1000000     8.7s h4
[ ]  293943       0       0  293943 / 1000000     8.8s h4
[ ]  297193       0       0  297193 / 1000000     8.9s h4
[ ]  300400       0       0  300400 / 1000000     9.0s h4
[ ]  303335       0       0  303335 / 1000000     9.1s h4
[ ]  306382       0       0  306382 / 1000000     9.2s h4
[ ]  309630       0       0  309630 / 1000000     9.3s h4
[ ]  312915       0       0  312915 / 1000000     9.4s h4
[ ]  316161       0       0  316161 / 1000000     9.5s h4
[ ]  319405       0       0  319405 / 1000000     9.6s h4
[ ]  322680       0       0  322680 / 1000000     9.7s h4
[ ]  325940       0       0  325940 / 1000000     9.8s h4
[ ]  329191       0       0  329191 / 1000000     9.9s h4
[ ]  332425       0       0  332425 / 1000000    10.0s h4
[ ]  335639       0       0  335639 / 1000000    10.1s h4
[ ]  338892       0       0  338892 / 1000000    10.2s h4
[ ]  342097       0       0  342097 / 1000000    10.3s h4
[ ]  345303       0       0  345303 / 1000000    10.4s h4
[ ]  348513       0       0  348513 / 1000000    10.5s h4
[ ]  351716       0       0  351716 / 1000000    10.6s h4
[ ]  354954       0       0  354954 / 1000000    10.7s h4
[ ]  358195       0       0  358195 / 1000000    10.8s h4
[ ]  361410       0       0  361410 / 1000000    10.9s h4
[ ]  364423       0       0  364423 / 1000000    11.0s h4
[ ]  367882       0       0  367882 / 1000000    11.1s h4
[ ]  370903       0       0  370903 / 1000000    11.2s h4
[ ]  374197       0       0  374197 / 1000000    11.3s h4
[ ]  377542       0       0  377542 / 1000000    11.4s h4
[ ]  380949       0       0  380949 / 1000000    11.5s h4
[ ]  384315       0       0  384315 / 1000000    11.6s h4
[ ]  387619       0       0  387619 / 1000000    11.7s h4
[ ]  391030       0       0  391030 / 1000000    11.8s h4
[ ]  394420       0       0  394420 / 1000000    11.9s h4
[ ]  397768       0       0  397768 / 1000000    12.0s h4
[ ]  401213       0       0  401213 / 1000000    12.1s h4
[ ]  404624       0       0  404624 / 1000000    12.2s h4
[ ]  408051       0       0  408051 / 1000000    12.3s h4
[ ]  411357       0       0  411357 / 1000000    12.4s h4
[ ]  414813       0       0  414813 / 1000000    12.5s h4
[ ]  418463       0       0  418463 / 1000000    12.6s h4
[ ]  421765       0       0  421765 / 1000000    12.7s h4
[ ]  425329       0       0  425329 / 1000000    12.8s h4
[ ]  428551       0       0  428551 / 1000000    12.9s h4
[ ]  432149       0       0  432149 / 1000000    13.0s h4
[ ]  435466       0       0  435466 / 1000000    13.1s h4
[ ]  438919       0       0  438919 / 1000000    13.2s h4
[ ]  441909       0       0  441909 / 1000000    13.3s h4
[ ]  445316       0       0  445316 / 1000000    13.4s h4
[ ]  448823       0       0  448823 / 1000000    13.5s h4
[ ]  452314       0       0  452314 / 1000000    13.6s h4
[ ]  455771       0       0  455771 / 1000000    13.7s h4
[ ]  459274       0       0  459274 / 1000000    13.8s h4
[ ]  462709       0       0  462709 / 1000000    13.9s h4
[ ]  466058       0       0  466058 / 1000000    14.0s h4
[ ]  469618       0       0  469618 / 1000000    14.1s h4
[ ]  473078       0       0  473078 / 1000000    14.2s h4
[ ]  476459       0       0  476459 / 1000000    14.3s h4
[ ]  479870       0       0  479870 / 1000000    14.4s h4
[ ]  483327       0       0  483327 / 1000000    14.5s h4
[ ]  486667       0       0  486667 / 1000000    14.6s h4
[ ]  490105       0       0  490105 / 1000000    14.7s h4
[ ]  493625       0       0  493625 / 1000000    14.8s h4
[ ]  496893       0       0  496893 / 1000000    14.9s h4
[ ]  500438       0       0  500438 / 1000000    15.0s h4
[ ]  503942       0       0  503942 / 1000000    15.1s h4
[ ]  507448       0       0  507448 / 1000000    15.2s h4
[ ]  511068       0       0  511068 / 1000000    15.3s h4
[ ]  514736       0       0  514736 / 1000000    15.4s h4
[ ]  518182       0       0  518182 / 1000000    15.5s h4
[ ]  521689       0       0  521689 / 1000000    15.6s h4
[ ]  524396       0       0  524396 / 1000000    15.7s h4
[ ]  527509       0       0  527509 / 1000000    15.8s h4
[ ]  530800       0       0  530800 / 1000000    15.9s h4
[ ]  534105       0       0  534105 / 1000000    16.0s h4
[ ]  537246       0       0  537246 / 1000000    16.1s h4
[ ]  540844       0       0  540844 / 1000000    16.2s h4
[ ]  544423       0       0  544423 / 1000000    16.3s h4
[ ]  547711       0       0  547711 / 1000000    16.4s h4
[ ]  551348       0       0  551348 / 1000000    16.5s h4
[ ]  553987       0       0  553987 / 1000000    16.6s h4
[ ]  557457       0       0  557457 / 1000000    16.7s h4
[ ]  560936       0       0  560936 / 1000000    16.8s h4
[ ]  564313       0       0  564313 / 1000000    16.9s h4
[ ]  567551       0       0  567551 / 1000000    17.0s h4
[ ]  570912       0       0  570912 / 1000000    17.1s h4
[ ]  574074       0       0  574074 / 1000000    17.2s h4
[ ]  577453       0       0  577453 / 1000000    17.3s h4
[ ]  580787       0       0  580787 / 1000000    17.4s h4
[ ]  584116       0       0  584116 / 1000000    17.5s h4
[ ]  587461       0       0  587461 / 1000000    17.6s h4
[ ]  590803       0       0  590803 / 1000000    17.7s h4
[ ]  594197       0       0  594197 / 1000000    17.8s h4
[ ]  597626       0       0  597626 / 1000000    17.9s h4
[ ]  600992       0       0  600992 / 1000000    18.0s h4
[ ]  604310       0       0  604310 / 1000000    18.1s h4
[ ]  607635       0       0  607635 / 1000000    18.2s h4
[ ]  611049       0       0  611049 / 1000000    18.3s h4
[ ]  614401       0       0  614401 / 1000000    18.4s h4
[ ]  617813       0       0  617813 / 1000000    18.5s h4
[ ]  621173       0       0  621173 / 1000000    18.6s h4
[ ]  624363       0       0  624363 / 1000000    18.7s h4
[ ]  627580       0       0  627580 / 1000000    18.8s h4
[ ]  630870       0       0  630870 / 1000000    18.9s h4
[ ]  634231       0       0  634231 / 1000000    19.0s h4
[ ]  637573       0       0  637573 / 1000000    19.1s h4
[ ]  640985       0       0  640985 / 1000000    19.2s h4
[ ]  644313       0       0  644313 / 1000000    19.3s h4
[ ]  647562       0       0  647562 / 1000000    19.4s h4
[ ]  650732       0       0  650732 / 1000000    19.5s h4
[ ]  654043       0       0  654043 / 1000000    19.6s h4
[ ]  657256       0       0  657256 / 1000000    19.7s h4
[ ]  660660       0       0  660660 / 1000000    19.8s h4
[ ]  663709       0       0  663709 / 1000000    19.9s h4
[ ]  667063       0       0  667063 / 1000000    20.0s h4
[ ]  670470       0       0  670470 / 1000000    20.1s h4
[ ]  673826       0       0  673826 / 1000000    20.2s h4
[ ]  677190       0       0  677190 / 1000000    20.3s h4
[ ]  680511       0       0  680511 / 1000000    20.4s h4
[ ]  683856       0       0  683856 / 1000000    20.5s h4
[ ]  687245       0       0  687245 / 1000000    20.6s h4
[ ]  690560       0       0  690560 / 1000000    20.7s h4
[ ]  693958       0       0  693958 / 1000000    20.8s h4
[ ]  697178       0       0  697178 / 1000000    20.9s h4
[ ]  700319       0       0  700319 / 1000000    21.0s h4
[ ]  703167       0       0  703167 / 1000000    21.1s h4
[ ]  706269       0       0  706269 / 1000000    21.2s h4
[ ]  709394       0       0  709394 / 1000000    21.3s h4
[ ]  712582       0       0  712582 / 1000000    21.4s h4
[ ]  715989       0       0  715989 / 1000000    21.5s h4
[ ]  719259       0       0  719259 / 1000000    21.6s h4
[ ]  722602       0       0  722602 / 1000000    21.7s h4
[ ]  726029       0       0  726029 / 1000000    21.8s h4
[ ]  729413       0       0  729413 / 1000000    21.9s h4
[ ]  732765       0       0  732765 / 1000000    22.0s h4
[ ]  735676       0       0  735676 / 1000000    22.1s h4
[ ]  738969       0       0  738969 / 1000000    22.2s h4
[ ]  742183       0       0  742183 / 1000000    22.3s h4
[ ]  745471       0       0  745471 / 1000000    22.4s h4
[ ]  748819       0       0  748819 / 1000000    22.5s h4
[ ]  752113       0       0  752113 / 1000000    22.6s h4
[ ]  755557       0       0  755557 / 1000000    22.7s h4
[ ]  759020       0       0  759020 / 1000000    22.8s h4
[ ]  762139       0       0  762139 / 1000000    22.9s h4
[ ]  765214       0       0  765214 / 1000000    23.0s h4 (   testing)
[ ]  768265       0       0  768265 / 1000000    23.1s h4
[ ]  771381       0       0  771381 / 1000000    23.2s h4
[ ]  774657       0       0  774657 / 1000000    23.3s h4
[ ]  777803       0       0  777803 / 1000000    23.4s h4
[ ]  781134       0       0  781134 / 1000000    23.5s h4
[ ]  784411       0       0  784411 / 1000000    23.6s h4
[ ]  787674       0       0  787674 / 1000000    23.7s h4
[ ]  791020       0       0  791020 / 1000000    23.8s h4
[ ]  794347       0       0  794347 / 1000000    23.9s h4
[ ]  797581       0       0  797581 / 1000000    24.0s h4
[ ]  800825       0       0  800825 / 1000000    24.1s h4
[ ]  804024       0       0  804024 / 1000000    24.2s h4
[ ]  807352       0       0  807352 / 1000000    24.3s h4
[ ]  810694       0       0  810694 / 1000000    24.4s h4
[ ]  814017       0       0  814017 / 1000000    24.5s h4
[ ]  817301       0       0  817301 / 1000000    24.6s h4
[ ]  820702       0       0  820702 / 1000000    24.7s h4
[ ]  824089       0       0  824089 / 1000000    24.8s h4
[ ]  827407       0       0  827407 / 1000000    24.9s h4
[ ]  830678       0       0  830678 / 1000000    25.0s h4
[ ]  833930       0       0  833930 / 1000000    25.1s h4
[ ]  837231       0       0  837231 / 1000000    25.2s h4
[ ]  840496       0       0  840496 / 1000000    25.3s h4
[ ]  843716       0       0  843716 / 1000000    25.4s h4
[ ]  847067       0       0  847067 / 1000000    25.5s h4
[ ]  850410       0       0  850410 / 1000000    25.6s h4
[ ]  853720       0       0  853720 / 1000000    25.7s h4
[ ]  857118       0       0  857118 / 1000000    25.8s h4
[ ]  860400       0       0  860400 / 1000000    25.9s h4
[ ]  863854       0       0  863854 / 1000000    26.0s h4
[ ]  867253       0       0  867253 / 1000000    26.1s h4
[ ]  870750       0       0  870750 / 1000000    26.2s h4
[ ]  874139       0       0  874139 / 1000000    26.3s h4
[ ]  877576       0       0  877576 / 1000000    26.4s h4
[ ]  881033       0       0  881033 / 1000000    26.5s h4
[ ]  884583       0       0  884583 / 1000000    26.6s h4
[ ]  888019       0       0  888019 / 1000000    26.7s h4
[ ]  891447       0       0  891447 / 1000000    26.8s h4
[ ]  894857       0       0  894857 / 1000000    26.9s h4
[ ]  898257       0       0  898257 / 1000000    27.0s h4
[ ]  901574       0       0  901574 / 1000000    27.1s h4
[ ]  904893       0       0  904893 / 1000000    27.2s h4
[ ]  908228       0       0  908228 / 1000000    27.3s h4
[ ]  911333       0       0  911333 / 1000000    27.4s h4
[ ]  914652       0       0  914652 / 1000000    27.5s h4
[ ]  917658       0       0  917658 / 1000000    27.6s h4
[ ]  920750       0       0  920750 / 1000000    27.7s h4
[ ]  924000       0       0  924000 / 1000000    27.8s h4
[ ]  927139       0       0  927139 / 1000000    27.9s h4
[ ]  930310       0       0  930310 / 1000000    28.0s h4
[ ]  933542       0       0  933542 / 1000000    28.1s h4
[ ]  936779       0       0  936779 / 1000000    28.2s h4
[ ]  940018       0       0  940018 / 1000000    28.3s h4
[ ]  943258       0       0  943258 / 1000000    28.4s h4
[ ]  946516       0       0  946516 / 1000000    28.5s h4
[ ]  949809       0       0  949809 / 1000000    28.6s h4
[ ]  953095       0       0  953095 / 1000000    28.7s h4
[ ]  956311       0       0  956311 / 1000000    28.8s h4
[ ]  959426       0       0  959426 / 1000000    28.9s h4
[ ]  962325       0       0  962325 / 1000000    29.0s h4
[ ]  965593       0       0  965593 / 1000000    29.1s h4
[ ]  968605       0       0  968605 / 1000000    29.2s h4
[ ]  971931       0       0  971931 / 1000000    29.3s h4
[ ]  975040       0       0  975040 / 1000000    29.4s h4
[ ]  978446       0       0  978446 / 1000000    29.5s h4
[ ]  981791       0       0  981791 / 1000000    29.6s h4
[ ]  985167       0       0  985167 / 1000000    29.7s h4
[ ]  988535       0       0  988535 / 1000000    29.8s h4
[ ]  991871       0       0  991871 / 1000000    29.9s h4
[ ]  995366       0       0  995366 / 1000000    30.0s h4
[ ]  998864       0       0  998864 / 1000000    30.1s h4
[✓] 1000000       0       0 1000000 / 1000000    30.1s 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-26 00:03.39 ---> saved as "0338b34338031cf6219b4ca16a89c5d9dfd09f3a08e9f7e19fc56ba2408db435"
Job succeeded
2026-03-26 00:03.49: Job succeeded