(for PR #29582)

2026-03-25 23:09.43: New job: test dates_calc.0.0.2 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.2; \
    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.2' && 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.2) || true
RUN opam reinstall --with-test --verbose dates_calc.0.0.2; \
    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.2' && 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.2-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.2;\
             \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.2' && 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.2) || true"))
 (run (shell  "opam reinstall --with-test --verbose dates_calc.0.0.2;\
             \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.2' && 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.13: Got resource from pool OCluster
Building on clete.caelum.ci.dev
All commits already cached
Updating files:  70% (13073/18536)
Updating files:  71% (13161/18536)
Updating files:  72% (13346/18536)
Updating files:  73% (13532/18536)
Updating files:  74% (13717/18536)
Updating files:  75% (13902/18536)
Updating files:  76% (14088/18536)
Updating files:  77% (14273/18536)
Updating files:  78% (14459/18536)
Updating files:  79% (14644/18536)
Updating files:  80% (14829/18536)
Updating files:  81% (15015/18536)
Updating files:  82% (15200/18536)
Updating files:  83% (15385/18536)
Updating files:  84% (15571/18536)
Updating files:  85% (15756/18536)
Updating files:  86% (15941/18536)
Updating files:  87% (16127/18536)
Updating files:  88% (16312/18536)
Updating files:  89% (16498/18536)
Updating files:  90% (16683/18536)
Updating files:  91% (16868/18536)
Updating files:  92% (17054/18536)
Updating files:  93% (17239/18536)
Updating files:  94% (17424/18536)
Updating files:  95% (17610/18536)
Updating files:  96% (17795/18536)
Updating files:  97% (17980/18536)
Updating files:  98% (18166/18536)
Updating files:  99% (18351/18536)
Updating files: 100% (18536/18536)
Updating files: 100% (18536/18536), done.
HEAD is now at 40ee9f8d41 Merge pull request #29587 from astrada/gdfuse08
Merge made by the 'ort' strategy.
 packages/ocaml-compiler/ocaml-compiler.5.3.0/opam      |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.3/opam        |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4.0/opam      |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.4.0~alpha1/opam    |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.4.0~beta1/opam     |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.4.0~beta2/opam     |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4.0~rc1/opam  |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4.1/opam      |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4/opam        |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.5.0~alpha1/opam    |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.5/opam        |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.6/opam        |  5 ++++-
 packages/ocaml-option-llvm/ocaml-option-llvm.1/opam    | 18 ++++++++++++++++++
 .../ocaml-options-vanilla/ocaml-options-vanilla.1/opam |  1 +
 packages/ocaml-variants/ocaml-variants.5.2.0+msvc/opam |  2 ++
 15 files changed, 69 insertions(+), 12 deletions(-)
 create mode 100644 packages/ocaml-option-llvm/ocaml-option-llvm.1/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
2026-03-25 23:57.17 ---> using "41eea30e3f639c18d8cf57c309ec76919ec7b2398036f7e41744cbce59a133d3" from cache

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

/: (workdir /home/opam)

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

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

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

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

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

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

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

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

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

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

/home/opam: (run (shell "opam pin add -k version -yn ocaml-compiler.5.4.0~beta1 5.4.0~beta1"))
ocaml-compiler is now pinned to version 5.4.0~beta1
2026-03-25 23:57.19 ---> using "e1c05b46f28d7574e116a5b10ba98f694969006f7796f6a98c361e246ff746c8" from cache

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocaml-compiler.5.4.0~beta1  (cached)
-> retrieved ocaml-config.3  (cached)
-> retrieved opam-depext.1.2.3  (cached)
-> removed   base-effects.base
-> removed   base-nnp.base
-> removed   base-domains.base
-> removed   opam-depext.1.2.3
-> removed   ocaml.5.4.0
-> removed   ocaml-config.3
-> removed   ocaml-base-compiler.5.4.0
-> removed   ocaml-compiler.5.4.0
-> installed ocaml-compiler.5.4.0~beta1
-> installed ocaml-variants.5.4.0~beta1+options
-> installed ocaml-config.3
-> installed ocaml.5.4.0
-> installed base-domains.base
-> installed base-effects.base
-> installed base-nnp.base
-> installed opam-depext.1.2.3
[NOTE] Switch invariant was updated to ["ocaml-variants" {= "5.4.0~beta1+options"}]
       Use `opam switch set-invariant' to change it.
Done.

<><> opam-depext.1.2.3 installed successfully <><><><><><><><><><><><><><><><><>
=> opam-depext is unnecessary when used with opam >= 2.1. Please use opam install directly instead
# To update the current shell environment, run: eval $(opam env)
2026-03-25 23:57.19 ---> 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.2;\
                        \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.2' && 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.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 2 packages
  - install dates_calc 0.0.2
  - install dune       3.22.0 [required by dates_calc]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dates_calc.0.0.2  (https://opam.ocaml.org/cache)
-> retrieved dune.3.22.0  (cached)
-> installed dune.3.22.0
-> installed dates_calc.0.0.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 23:58.28 ---> saved as "dd0d88bbe6df588b27cb5a19525dea9678dc5d5735d699e9eabe36aa00bbef7e"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test dates_calc.0.0.2) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile dates_calc         0.0.2
=== 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.2  (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0  (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0  (https://opam.ocaml.org/cache)
-> retrieved ocamlbuild.0.16.1  (https://opam.ocaml.org/cache)
-> retrieved ocamlfind.1.9.8  (https://opam.ocaml.org/cache)
-> retrieved ounit2.2.2.7  (https://opam.ocaml.org/cache)
-> retrieved qcheck.0.91, qcheck-core.0.91, qcheck-ounit.0.91  (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> retrieved seq.base  (2 extra sources)
-> retrieved seq.base  (2 extra sources)
-> installed seq.base
-> retrieved stdlib-shims.0.3.0  (https://opam.ocaml.org/cache)
-> retrieved topkg.1.1.1  (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> installed ocaml-syntax-shims.1.0.0
-> installed re.1.14.0
-> installed ounit2.2.2.7
-> installed qcheck-core.0.91
-> installed qcheck-ounit.0.91
-> installed qcheck.0.91
-> installed ocamlfind.1.9.8
-> installed cmdliner.2.1.0
-> removed   dates_calc.0.0.2
-> 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.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-26 00:00.38 ---> saved as "5cef9a7c1259a7cbf9591a1ea6c6ba72f356eb7b2ac6e589704ec67119ceeb92"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [dates_calc.0.0.2: extract]
-> retrieved dates_calc.0.0.2  (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.2)
- (cd _build/default/test && ./unit.exe)
- Testing `unit'.
- This run has ID `7UVL34XA'.
- 
-   [OK]          add_dates          0   days.
-   [OK]          add_dates          1   months_exact.
-   [OK]          add_dates          2   months_ambig.
-   [OK]          add_dates          3   years_exact.
-   [OK]          add_dates          4   years_ambig.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/dates_calc.0.0.2/_build/default/test/_build/_tests/unit'.
- Test Successful in 0.008s. 5 tests run.
- (cd _build/default/test && ./prop.exe)
- 
random seed: 457821876
-   generated   error    fail    pass /   total     time test name
- 
[ ]       0       0       0       0 /    1000     0.0s anon_test_1
[ ]     176       0       0     176 /    1000     0.1s anon_test_1
[ ]     441       0       0     441 /    1000     0.2s anon_test_1
[ ]     708       0       0     708 /    1000     0.3s anon_test_1
[ ]     989       0       0     989 /    1000     0.4s anon_test_1
[✓]    1000       0       0    1000 /    1000     0.4s anon_test_1
- 
[ ]       0       0       0       0 /    1000     0.0s anon_test_2
[ ]      15       0       0      15 /    1000     0.1s anon_test_2
[ ]      26       0       0      26 /    1000     0.2s anon_test_2
[ ]      38       0       0      38 /    1000     0.3s anon_test_2
[ ]      53       0       0      53 /    1000     0.4s anon_test_2
[ ]      64       0       0      64 /    1000     0.5s anon_test_2
[ ]      74       0       0      74 /    1000     0.7s anon_test_2
[ ]      84       0       0      84 /    1000     0.8s anon_test_2
[ ]     103       0       0     103 /    1000     0.9s anon_test_2
[ ]     115       0       0     115 /    1000     1.0s anon_test_2
[ ]     130       0       0     130 /    1000     1.1s anon_test_2
[ ]     147       0       0     147 /    1000     1.2s anon_test_2
[ ]     167       0       0     167 /    1000     1.3s anon_test_2
[ ]     178       0       0     178 /    1000     1.4s anon_test_2
[ ]     189       0       0     189 /    1000     1.5s anon_test_2
[ ]     202       0       0     202 /    1000     1.6s anon_test_2
[ ]     220       0       0     220 /    1000     1.7s anon_test_2
[ ]     234       0       0     234 /    1000     1.8s anon_test_2
[ ]     247       0       0     247 /    1000     1.9s anon_test_2
[ ]     261       0       0     261 /    1000     2.0s anon_test_2
[ ]     270       0       0     270 /    1000     2.1s anon_test_2
[ ]     285       0       0     285 /    1000     2.3s anon_test_2
[ ]     294       0       0     294 /    1000     2.4s anon_test_2
[ ]     310       0       0     310 /    1000     2.5s anon_test_2
[ ]     325       0       0     325 /    1000     2.6s anon_test_2
[ ]     335       0       0     335 /    1000     2.7s anon_test_2
[ ]     344       0       0     344 /    1000     2.8s anon_test_2
[ ]     362       0       0     362 /    1000     2.9s anon_test_2
[ ]     371       0       0     371 /    1000     3.0s anon_test_2
[ ]     378       0       0     378 /    1000     3.1s anon_test_2
[ ]     391       0       0     391 /    1000     3.2s anon_test_2
[ ]     403       0       0     403 /    1000     3.3s anon_test_2
[ ]     417       0       0     417 /    1000     3.4s anon_test_2
[ ]     428       0       0     428 /    1000     3.5s anon_test_2
[ ]     442       0       0     442 /    1000     3.6s anon_test_2
[ ]     457       0       0     457 /    1000     3.7s anon_test_2
[ ]     471       0       0     471 /    1000     3.8s anon_test_2
[ ]     490       0       0     490 /    1000     3.9s anon_test_2
[ ]     511       0       0     511 /    1000     4.0s anon_test_2
[ ]     528       0       0     528 /    1000     4.2s anon_test_2
[ ]     543       0       0     543 /    1000     4.3s anon_test_2
[ ]     556       0       0     556 /    1000     4.4s anon_test_2
[ ]     567       0       0     567 /    1000     4.5s anon_test_2
[ ]     580       0       0     580 /    1000     4.6s anon_test_2
[ ]     592       0       0     592 /    1000     4.7s anon_test_2
[ ]     604       0       0     604 /    1000     4.8s anon_test_2
[ ]     613       0       0     613 /    1000     4.9s anon_test_2
[ ]     628       0       0     628 /    1000     5.0s anon_test_2
[ ]     635       0       0     635 /    1000     5.1s anon_test_2
[ ]     645       0       0     645 /    1000     5.3s anon_test_2
[ ]     657       0       0     657 /    1000     5.4s anon_test_2
[ ]     671       0       0     671 /    1000     5.5s anon_test_2
[ ]     681       0       0     681 /    1000     5.6s anon_test_2
[ ]     697       0       0     697 /    1000     5.7s anon_test_2
[ ]     711       0       0     711 /    1000     5.8s anon_test_2
[ ]     725       0       0     725 /    1000     5.9s anon_test_2
[ ]     742       0       0     742 /    1000     6.0s anon_test_2
[ ]     751       0       0     751 /    1000     6.1s anon_test_2
[ ]     767       0       0     767 /    1000     6.2s anon_test_2
[ ]     780       0       0     780 /    1000     6.4s anon_test_2
[ ]     805       0       0     805 /    1000     6.5s anon_test_2
[ ]     818       0       0     818 /    1000     6.6s anon_test_2
[ ]     836       0       0     836 /    1000     6.7s anon_test_2
[ ]     843       0       0     843 /    1000     6.8s anon_test_2
[ ]     855       0       0     855 /    1000     6.9s anon_test_2
[ ]     869       0       0     869 /    1000     7.0s anon_test_2
[ ]     884       0       0     884 /    1000     7.1s anon_test_2
[ ]     896       0       0     896 /    1000     7.2s anon_test_2
[ ]     910       0       0     910 /    1000     7.3s anon_test_2
[ ]     925       0       0     925 /    1000     7.4s anon_test_2
[ ]     937       0       0     937 /    1000     7.6s anon_test_2
[ ]     947       0       0     947 /    1000     7.7s anon_test_2
[ ]     960       0       0     960 /    1000     7.8s anon_test_2
[ ]     976       0       0     976 /    1000     7.9s anon_test_2
[ ]     990       0       0     990 /    1000     8.0s anon_test_2
[ ]    1000       0       0    1000 /    1000     8.1s anon_test_2
[✓]    1000       0       0    1000 /    1000     8.1s anon_test_2
- 
[ ]       0       0       0       0 / 1000000     0.0s h1
[ ]    9470       0       0    9470 / 1000000     0.1s h1
[ ]   18972       0       0   18972 / 1000000     0.2s h1
[ ]   28138       0       0   28138 / 1000000     0.3s h1 (generating)
[ ]   37539       0       0   37539 / 1000000     0.4s h1
[ ]   46842       0       0   46842 / 1000000     0.5s h1
[ ]   56035       0       0   56035 / 1000000     0.6s h1
[ ]   65338       0       0   65338 / 1000000     0.7s h1
[ ]   74588       0       0   74588 / 1000000     0.8s h1
[ ]   83749       0       0   83749 / 1000000     0.9s h1
[ ]   92978       0       0   92978 / 1000000     1.0s h1
[ ]  102267       0       0  102267 / 1000000     1.1s h1
[ ]  111585       0       0  111585 / 1000000     1.2s h1
[ ]  120781       0       0  120781 / 1000000     1.3s h1
[ ]  130176       0       0  130176 / 1000000     1.4s h1
[ ]  139566       0       0  139566 / 1000000     1.5s h1
[ ]  148647       0       0  148647 / 1000000     1.6s h1
[ ]  157868       0       0  157868 / 1000000     1.7s h1
[ ]  167403       0       0  167403 / 1000000     1.8s h1
[ ]  176861       0       0  176861 / 1000000     1.9s h1
[ ]  186483       0       0  186483 / 1000000     2.0s h1 (collecting)
[ ]  195816       0       0  195816 / 1000000     2.1s h1
[ ]  205337       0       0  205337 / 1000000     2.2s h1
[ ]  214804       0       0  214804 / 1000000     2.3s h1
[ ]  224568       0       0  224568 / 1000000     2.4s h1
[ ]  234523       0       0  234523 / 1000000     2.5s h1
[ ]  243895       0       0  243895 / 1000000     2.6s h1
[ ]  253372       0       0  253372 / 1000000     2.7s h1
[ ]  262821       0       0  262821 / 1000000     2.8s h1
[ ]  272421       0       0  272421 / 1000000     2.9s h1
[ ]  281876       0       0  281876 / 1000000     3.0s h1
[ ]  291545       0       0  291545 / 1000000     3.1s h1
[ ]  301218       0       0  301218 / 1000000     3.2s h1
[ ]  310889       0       0  310889 / 1000000     3.3s h1
[ ]  320522       0       0  320522 / 1000000     3.4s h1
[ ]  330013       0       0  330013 / 1000000     3.5s h1
[ ]  339297       0       0  339297 / 1000000     3.6s h1
[ ]  348925       0       0  348925 / 1000000     3.7s h1
[ ]  358351       0       0  358351 / 1000000     3.8s h1
[ ]  367327       0       0  367327 / 1000000     3.9s h1
[ ]  376440       0       0  376440 / 1000000     4.0s h1
[ ]  385859       0       0  385859 / 1000000     4.1s h1
[ ]  395605       0       0  395605 / 1000000     4.2s h1
[ ]  404854       0       0  404854 / 1000000     4.3s h1
[ ]  414337       0       0  414337 / 1000000     4.4s h1
[ ]  424039       0       0  424039 / 1000000     4.5s h1
[ ]  433598       0       0  433598 / 1000000     4.6s h1
[ ]  443355       0       0  443355 / 1000000     4.7s h1
[ ]  453290       0       0  453290 / 1000000     4.8s h1
[ ]  463004       0       0  463004 / 1000000     4.9s h1
[ ]  472473       0       0  472473 / 1000000     5.0s h1
[ ]  482253       0       0  482253 / 1000000     5.1s h1
[ ]  491879       0       0  491879 / 1000000     5.2s h1
[ ]  501512       0       0  501512 / 1000000     5.3s h1
[ ]  511098       0       0  511098 / 1000000     5.4s h1
[ ]  520577       0       0  520577 / 1000000     5.5s h1
[ ]  529535       0       0  529535 / 1000000     5.6s h1
[ ]  538262       0       0  538262 / 1000000     5.7s h1
[ ]  547690       0       0  547690 / 1000000     5.8s h1
[ ]  557166       0       0  557166 / 1000000     5.9s h1
[ ]  566727       0       0  566727 / 1000000     6.0s h1
[ ]  576456       0       0  576456 / 1000000     6.1s h1
[ ]  586101       0       0  586101 / 1000000     6.2s h1
[ ]  595560       0       0  595560 / 1000000     6.3s h1
[ ]  605125       0       0  605125 / 1000000     6.4s h1
[ ]  614910       0       0  614910 / 1000000     6.5s h1 (generating)
[ ]  624587       0       0  624587 / 1000000     6.6s h1
[ ]  633537       0       0  633537 / 1000000     6.7s h1
[ ]  643027       0       0  643027 / 1000000     6.8s h1
[ ]  652483       0       0  652483 / 1000000     6.9s h1
[ ]  661379       0       0  661379 / 1000000     7.0s h1
[ ]  671382       0       0  671382 / 1000000     7.1s h1
[ ]  680409       0       0  680409 / 1000000     7.2s h1 (collecting)
[ ]  689463       0       0  689463 / 1000000     7.3s h1
[ ]  699013       0       0  699013 / 1000000     7.4s h1
[ ]  708649       0       0  708649 / 1000000     7.5s h1
[ ]  718412       0       0  718412 / 1000000     7.6s h1
[ ]  726664       0       0  726664 / 1000000     7.7s h1
[ ]  735106       0       0  735106 / 1000000     7.8s h1
[ ]  743729       0       0  743729 / 1000000     7.9s h1
[ ]  753452       0       0  753452 / 1000000     8.0s h1
[ ]  763201       0       0  763201 / 1000000     8.1s h1
[ ]  772863       0       0  772863 / 1000000     8.2s h1
[ ]  782451       0       0  782451 / 1000000     8.3s h1
[ ]  792005       0       0  792005 / 1000000     8.4s h1
[ ]  801376       0       0  801376 / 1000000     8.5s h1
[ ]  810532       0       0  810532 / 1000000     8.6s h1
[ ]  819828       0       0  819828 / 1000000     8.7s h1
[ ]  829065       0       0  829065 / 1000000     8.8s h1
[ ]  838477       0       0  838477 / 1000000     8.9s h1
[ ]  848085       0       0  848085 / 1000000     9.0s h1
[ ]  857875       0       0  857875 / 1000000     9.1s h1
[ ]  867717       0       0  867717 / 1000000     9.2s h1
[ ]  877661       0       0  877661 / 1000000     9.3s h1
[ ]  887620       0       0  887620 / 1000000     9.4s h1
[ ]  897358       0       0  897358 / 1000000     9.5s h1
[ ]  907106       0       0  907106 / 1000000     9.6s h1
[ ]  916717       0       0  916717 / 1000000     9.7s h1
[ ]  926511       0       0  926511 / 1000000     9.8s h1
[ ]  936372       0       0  936372 / 1000000     9.9s h1
[ ]  946244       0       0  946244 / 1000000    10.0s h1
[ ]  956185       0       0  956185 / 1000000    10.1s h1
[ ]  965787       0       0  965787 / 1000000    10.2s h1
[ ]  975559       0       0  975559 / 1000000    10.3s h1 (collecting)
[ ]  985647       0       0  985647 / 1000000    10.4s h1
[ ]  995320       0       0  995320 / 1000000    10.5s h1
[✓] 1000000       0       0 1000000 / 1000000    10.5s h1
- 
[ ]       0       0       0       0 / 1000000     0.0s h2
[ ]    5005       0       0    5005 / 1000000     0.1s h2
[ ]    9989       0       0    9989 / 1000000     0.2s h2
[ ]   15003       0       0   15003 / 1000000     0.3s h2
[ ]   20014       0       0   20014 / 1000000     0.4s h2
[ ]   24986       0       0   24986 / 1000000     0.5s h2
[ ]   30099       0       0   30099 / 1000000     0.6s h2
[ ]   35246       0       0   35246 / 1000000     0.7s h2
[ ]   40257       0       0   40257 / 1000000     0.8s h2
[ ]   45161       0       0   45161 / 1000000     0.9s h2
[ ]   50119       0       0   50119 / 1000000     1.0s h2
[ ]   55016       0       0   55016 / 1000000     1.1s h2
[ ]   59894       0       0   59894 / 1000000     1.2s h2
[ ]   64851       0       0   64851 / 1000000     1.3s h2
[ ]   69774       0       0   69774 / 1000000     1.4s h2
[ ]   74871       0       0   74871 / 1000000     1.5s h2
[ ]   79919       0       0   79919 / 1000000     1.6s h2
[ ]   85014       0       0   85014 / 1000000     1.7s h2
[ ]   90114       0       0   90114 / 1000000     1.8s h2
[ ]   95120       0       0   95120 / 1000000     1.9s h2
[ ]  100089       0       0  100089 / 1000000     2.0s h2
[ ]  105041       0       0  105041 / 1000000     2.1s h2
[ ]  110056       0       0  110056 / 1000000     2.2s h2
[ ]  115056       0       0  115056 / 1000000     2.3s h2
[ ]  119966       0       0  119966 / 1000000     2.4s h2
[ ]  124823       0       0  124823 / 1000000     2.5s h2
[ ]  129780       0       0  129780 / 1000000     2.6s h2
[ ]  134766       0       0  134766 / 1000000     2.7s h2
[ ]  139625       0       0  139625 / 1000000     2.8s h2
[ ]  144708       0       0  144708 / 1000000     2.9s h2
[ ]  149722       0       0  149722 / 1000000     3.0s h2
[ ]  154910       0       0  154910 / 1000000     3.1s h2
[ ]  160011       0       0  160011 / 1000000     3.2s h2
[ ]  164959       0       0  164959 / 1000000     3.3s h2
[ ]  169394       0       0  169394 / 1000000     3.4s h2
[ ]  173808       0       0  173808 / 1000000     3.5s h2
[ ]  178162       0       0  178162 / 1000000     3.6s h2
[ ]  182775       0       0  182775 / 1000000     3.7s h2
[ ]  187610       0       0  187610 / 1000000     3.8s h2
[ ]  192138       0       0  192138 / 1000000     3.9s h2
[ ]  196796       0       0  196796 / 1000000     4.0s h2
[ ]  201088       0       0  201088 / 1000000     4.1s h2
[ ]  203304       0       0  203304 / 1000000     4.2s h2
[ ]  206288       0       0  206288 / 1000000     4.3s h2
[ ]  211084       0       0  211084 / 1000000     4.4s h2
[ ]  215772       0       0  215772 / 1000000     4.5s h2
[ ]  220520       0       0  220520 / 1000000     4.6s h2
[ ]  225031       0       0  225031 / 1000000     4.7s h2
[ ]  230039       0       0  230039 / 1000000     4.8s h2
[ ]  234609       0       0  234609 / 1000000     4.9s h2
[ ]  239435       0       0  239435 / 1000000     5.0s h2
[ ]  244341       0       0  244341 / 1000000     5.1s h2
[ ]  249199       0       0  249199 / 1000000     5.2s h2
[ ]  254077       0       0  254077 / 1000000     5.3s h2
[ ]  258996       0       0  258996 / 1000000     5.4s h2
[ ]  263941       0       0  263941 / 1000000     5.5s h2
[ ]  268852       0       0  268852 / 1000000     5.6s h2
[ ]  273771       0       0  273771 / 1000000     5.7s h2
[ ]  278845       0       0  278845 / 1000000     5.8s h2
[ ]  283970       0       0  283970 / 1000000     5.9s h2 (collecting)
[ ]  289021       0       0  289021 / 1000000     6.0s h2
[ ]  294002       0       0  294002 / 1000000     6.1s h2
[ ]  298930       0       0  298930 / 1000000     6.2s h2 (collecting)
[ ]  303706       0       0  303706 / 1000000     6.3s h2
[ ]  308615       0       0  308615 / 1000000     6.4s h2
[ ]  313402       0       0  313402 / 1000000     6.5s h2
[ ]  318262       0       0  318262 / 1000000     6.6s h2
[ ]  323084       0       0  323084 / 1000000     6.7s h2
[ ]  327970       0       0  327970 / 1000000     6.8s h2
[ ]  333027       0       0  333027 / 1000000     6.9s h2 (collecting)
[ ]  337952       0       0  337952 / 1000000     7.0s h2
[ ]  342971       0       0  342971 / 1000000     7.1s h2
[ ]  347914       0       0  347914 / 1000000     7.2s h2
[ ]  352797       0       0  352797 / 1000000     7.3s h2
[ ]  357682       0       0  357682 / 1000000     7.4s h2
[ ]  362628       0       0  362628 / 1000000     7.5s h2
[ ]  367593       0       0  367593 / 1000000     7.6s h2
[ ]  372450       0       0  372450 / 1000000     7.7s h2
[ ]  377216       0       0  377216 / 1000000     7.8s h2
[ ]  382341       0       0  382341 / 1000000     7.9s h2
[ ]  386899       0       0  386899 / 1000000     8.0s h2
[ ]  391258       0       0  391258 / 1000000     8.1s h2
[ ]  395992       0       0  395992 / 1000000     8.2s h2
[ ]  400898       0       0  400898 / 1000000     8.3s h2
[ ]  405650       0       0  405650 / 1000000     8.4s h2
[ ]  410468       0       0  410468 / 1000000     8.5s h2
[ ]  415267       0       0  415267 / 1000000     8.6s h2
[ ]  420020       0       0  420020 / 1000000     8.7s h2
[ ]  424381       0       0  424381 / 1000000     8.8s h2
[ ]  428961       0       0  428961 / 1000000     8.9s h2
[ ]  433470       0       0  433470 / 1000000     9.0s h2
[ ]  438029       0       0  438029 / 1000000     9.1s h2
[ ]  442943       0       0  442943 / 1000000     9.2s h2
[ ]  447900       0       0  447900 / 1000000     9.3s h2
[ ]  452934       0       0  452934 / 1000000     9.4s h2
[ ]  457846       0       0  457846 / 1000000     9.5s h2
[ ]  462464       0       0  462464 / 1000000     9.6s h2
[ ]  467398       0       0  467398 / 1000000     9.7s h2
[ ]  472288       0       0  472288 / 1000000     9.8s h2
[ ]  477226       0       0  477226 / 1000000     9.9s h2
[ ]  482009       0       0  482009 / 1000000    10.0s h2
[ ]  486449       0       0  486449 / 1000000    10.1s h2
[ ]  491099       0       0  491099 / 1000000    10.2s h2 (generating)
[ ]  496353       0       0  496353 / 1000000    10.3s h2
[ ]  501537       0       0  501537 / 1000000    10.4s h2
[ ]  506034       0       0  506034 / 1000000    10.5s h2
[ ]  510193       0       0  510193 / 1000000    10.6s h2
[ ]  514591       0       0  514591 / 1000000    10.7s h2 (collecting)
[ ]  519694       0       0  519694 / 1000000    10.8s h2
[ ]  524861       0       0  524861 / 1000000    10.9s h2
[ ]  529580       0       0  529580 / 1000000    11.0s h2
[ ]  533863       0       0  533863 / 1000000    11.1s h2
[ ]  538189       0       0  538189 / 1000000    11.2s h2
[ ]  542575       0       0  542575 / 1000000    11.3s h2 (collecting)
[ ]  546938       0       0  546938 / 1000000    11.4s h2
[ ]  551576       0       0  551576 / 1000000    11.5s h2
[ ]  556293       0       0  556293 / 1000000    11.6s h2
[ ]  560580       0       0  560580 / 1000000    11.7s h2
[ ]  565400       0       0  565400 / 1000000    11.8s h2
[ ]  570338       0       0  570338 / 1000000    11.9s h2
[ ]  574890       0       0  574890 / 1000000    12.0s h2 (collecting)
[ ]  579523       0       0  579523 / 1000000    12.1s h2
[ ]  584129       0       0  584129 / 1000000    12.2s h2 (collecting)
[ ]  588867       0       0  588867 / 1000000    12.3s h2
[ ]  593677       0       0  593677 / 1000000    12.4s h2
[ ]  598476       0       0  598476 / 1000000    12.5s h2
[ ]  603300       0       0  603300 / 1000000    12.6s h2
[ ]  608126       0       0  608126 / 1000000    12.7s h2
[ ]  612859       0       0  612859 / 1000000    12.8s h2
[ ]  617648       0       0  617648 / 1000000    12.9s h2
[ ]  622504       0       0  622504 / 1000000    13.0s h2
[ ]  627330       0       0  627330 / 1000000    13.1s h2
[ ]  632140       0       0  632140 / 1000000    13.2s h2
[ ]  636691       0       0  636691 / 1000000    13.3s h2
[ ]  641425       0       0  641425 / 1000000    13.4s h2
[ ]  645309       0       0  645309 / 1000000    13.5s h2
[ ]  649523       0       0  649523 / 1000000    13.6s h2
[ ]  654173       0       0  654173 / 1000000    13.7s h2
[ ]  658667       0       0  658667 / 1000000    13.8s h2
[ ]  663093       0       0  663093 / 1000000    13.9s h2
[ ]  667565       0       0  667565 / 1000000    14.0s h2
[ ]  672399       0       0  672399 / 1000000    14.1s h2
[ ]  677191       0       0  677191 / 1000000    14.2s h2
[ ]  682087       0       0  682087 / 1000000    14.3s h2
[ ]  686970       0       0  686970 / 1000000    14.4s h2
[ ]  691843       0       0  691843 / 1000000    14.5s h2
[ ]  696778       0       0  696778 / 1000000    14.6s h2
[ ]  701613       0       0  701613 / 1000000    14.7s h2
[ ]  706302       0       0  706302 / 1000000    14.8s h2
[ ]  711135       0       0  711135 / 1000000    14.9s h2
[ ]  715976       0       0  715976 / 1000000    15.0s h2
[ ]  720850       0       0  720850 / 1000000    15.1s h2
[ ]  725700       0       0  725700 / 1000000    15.2s h2
[ ]  730641       0       0  730641 / 1000000    15.3s h2
[ ]  735565       0       0  735565 / 1000000    15.4s h2
[ ]  740569       0       0  740569 / 1000000    15.5s h2 (collecting)
[ ]  745599       0       0  745599 / 1000000    15.6s h2 (collecting)
[ ]  750598       0       0  750598 / 1000000    15.7s h2
[ ]  755575       0       0  755575 / 1000000    15.8s h2
[ ]  760541       0       0  760541 / 1000000    15.9s h2
[ ]  765459       0       0  765459 / 1000000    16.0s h2
[ ]  770456       0       0  770456 / 1000000    16.1s h2
[ ]  775348       0       0  775348 / 1000000    16.2s h2
[ ]  780369       0       0  780369 / 1000000    16.3s h2
[ ]  785351       0       0  785351 / 1000000    16.4s h2
[ ]  790253       0       0  790253 / 1000000    16.5s h2
[ ]  795163       0       0  795163 / 1000000    16.6s h2
[ ]  800125       0       0  800125 / 1000000    16.7s h2
[ ]  805176       0       0  805176 / 1000000    16.8s h2
[ ]  810115       0       0  810115 / 1000000    16.9s h2
[ ]  815105       0       0  815105 / 1000000    17.0s h2
[ ]  820186       0       0  820186 / 1000000    17.1s h2
[ ]  825326       0       0  825326 / 1000000    17.2s h2
[ ]  830226       0       0  830226 / 1000000    17.3s h2
[ ]  835167       0       0  835167 / 1000000    17.4s h2
[ ]  840052       0       0  840052 / 1000000    17.5s h2 (collecting)
[ ]  845014       0       0  845014 / 1000000    17.6s h2
[ ]  850103       0       0  850103 / 1000000    17.7s h2
[ ]  855136       0       0  855136 / 1000000    17.8s h2
[ ]  860182       0       0  860182 / 1000000    17.9s h2
[ ]  865284       0       0  865284 / 1000000    18.0s h2
[ ]  870301       0       0  870301 / 1000000    18.1s h2
[ ]  875319       0       0  875319 / 1000000    18.2s h2
[ ]  879843       0       0  879843 / 1000000    18.3s h2
[ ]  883078       0       0  883078 / 1000000    18.4s h2
[ ]  886907       0       0  886907 / 1000000    18.5s h2
[ ]  891716       0       0  891716 / 1000000    18.6s h2
[ ]  896705       0       0  896705 / 1000000    18.7s h2
[ ]  901268       0       0  901268 / 1000000    18.8s h2
[ ]  906012       0       0  906012 / 1000000    18.9s h2
[ ]  910960       0       0  910960 / 1000000    19.0s h2
[ ]  915958       0       0  915958 / 1000000    19.1s h2
[ ]  920951       0       0  920951 / 1000000    19.2s h2
[ ]  925861       0       0  925861 / 1000000    19.3s h2
[ ]  930756       0       0  930756 / 1000000    19.4s h2
[ ]  935693       0       0  935693 / 1000000    19.5s h2
[ ]  940607       0       0  940607 / 1000000    19.6s h2
[ ]  945214       0       0  945214 / 1000000    19.7s h2 (   testing)
[ ]  950123       0       0  950123 / 1000000    19.8s h2
[ ]  955081       0       0  955081 / 1000000    19.9s h2
[ ]  960021       0       0  960021 / 1000000    20.0s h2
[ ]  964984       0       0  964984 / 1000000    20.1s h2
[ ]  970039       0       0  970039 / 1000000    20.2s h2
[ ]  975021       0       0  975021 / 1000000    20.3s h2
[ ]  980032       0       0  980032 / 1000000    20.4s h2
[ ]  985046       0       0  985046 / 1000000    20.5s h2
[ ]  989864       0       0  989864 / 1000000    20.6s h2
[ ]  994613       0       0  994613 / 1000000    20.7s h2
[ ]  999432       0       0  999432 / 1000000    20.8s h2
[✓] 1000000       0       0 1000000 / 1000000    20.8s h2
- 
[ ]       0       0       0       0 / 1000000     0.0s h3
[ ]    9455       0       0    9455 / 1000000     0.1s h3
[ ]   19140       0       0   19140 / 1000000     0.2s h3
[ ]   29118       0       0   29118 / 1000000     0.3s h3
[ ]   39141       0       0   39141 / 1000000     0.4s h3
[ ]   49194       0       0   49194 / 1000000     0.5s h3 (collecting)
[ ]   59263       0       0   59263 / 1000000     0.6s h3
[ ]   69264       0       0   69264 / 1000000     0.7s h3
[ ]   79203       0       0   79203 / 1000000     0.8s h3
[ ]   89168       0       0   89168 / 1000000     0.9s h3
[ ]   99198       0       0   99198 / 1000000     1.0s h3
[ ]  109083       0       0  109083 / 1000000     1.1s h3
[ ]  119112       0       0  119112 / 1000000     1.2s h3
[ ]  129350       0       0  129350 / 1000000     1.3s h3
[ ]  139456       0       0  139456 / 1000000     1.4s h3 (collecting)
[ ]  149201       0       0  149201 / 1000000     1.5s h3
[ ]  159057       0       0  159057 / 1000000     1.6s h3
[ ]  168974       0       0  168974 / 1000000     1.7s h3
[ ]  178735       0       0  178735 / 1000000     1.8s h3
[ ]  188572       0       0  188572 / 1000000     1.9s h3
[ ]  198616       0       0  198616 / 1000000     2.0s h3
[ ]  208871       0       0  208871 / 1000000     2.1s h3
[ ]  218562       0       0  218562 / 1000000     2.2s h3
[ ]  227413       0       0  227413 / 1000000     2.3s h3
[ ]  235525       0       0  235525 / 1000000     2.4s h3
[ ]  245045       0       0  245045 / 1000000     2.5s h3
[ ]  254457       0       0  254457 / 1000000     2.6s h3
[ ]  263601       0       0  263601 / 1000000     2.7s h3
[ ]  272869       0       0  272869 / 1000000     2.8s h3
[ ]  282144       0       0  282144 / 1000000     2.9s h3
[ ]  291686       0       0  291686 / 1000000     3.0s h3
[ ]  301385       0       0  301385 / 1000000     3.1s h3
[ ]  311013       0       0  311013 / 1000000     3.2s h3
[ ]  320630       0       0  320630 / 1000000     3.3s h3
[ ]  329829       0       0  329829 / 1000000     3.4s h3
[ ]  338995       0       0  338995 / 1000000     3.5s h3
[ ]  348023       0       0  348023 / 1000000     3.6s h3
[ ]  357732       0       0  357732 / 1000000     3.7s h3
[ ]  367171       0       0  367171 / 1000000     3.8s h3
[ ]  376610       0       0  376610 / 1000000     3.9s h3
[ ]  386165       0       0  386165 / 1000000     4.0s h3
[ ]  395998       0       0  395998 / 1000000     4.1s h3
[ ]  405642       0       0  405642 / 1000000     4.2s h3
[ ]  415158       0       0  415158 / 1000000     4.3s h3
[ ]  424778       0       0  424778 / 1000000     4.4s h3
[ ]  434436       0       0  434436 / 1000000     4.5s h3 (collecting)
[ ]  443060       0       0  443060 / 1000000     4.6s h3
[ ]  452495       0       0  452495 / 1000000     4.7s h3
[ ]  461737       0       0  461737 / 1000000     4.8s h3
[ ]  471286       0       0  471286 / 1000000     4.9s h3
[ ]  480426       0       0  480426 / 1000000     5.0s h3
[ ]  489808       0       0  489808 / 1000000     5.1s h3
[ ]  499514       0       0  499514 / 1000000     5.2s h3
[ ]  508611       0       0  508611 / 1000000     5.3s h3
[ ]  518047       0       0  518047 / 1000000     5.4s h3
[ ]  527232       0       0  527232 / 1000000     5.5s h3
[ ]  536618       0       0  536618 / 1000000     5.6s h3
[ ]  546199       0       0  546199 / 1000000     5.7s h3
[ ]  555691       0       0  555691 / 1000000     5.8s h3
[ ]  565163       0       0  565163 / 1000000     5.9s h3
[ ]  574602       0       0  574602 / 1000000     6.0s h3
[ ]  583885       0       0  583885 / 1000000     6.1s h3
[ ]  592910       0       0  592910 / 1000000     6.2s h3
[ ]  602915       0       0  602915 / 1000000     6.3s h3
[ ]  612013       0       0  612013 / 1000000     6.4s h3
[ ]  620802       0       0  620802 / 1000000     6.5s h3
[ ]  630261       0       0  630261 / 1000000     6.6s h3
[ ]  639877       0       0  639877 / 1000000     6.7s h3
[ ]  648985       0       0  648985 / 1000000     6.8s h3
[ ]  657814       0       0  657814 / 1000000     6.9s h3
[ ]  666742       0       0  666742 / 1000000     7.0s h3
[ ]  675691       0       0  675691 / 1000000     7.1s h3
[ ]  684582       0       0  684582 / 1000000     7.2s h3
[ ]  693463       0       0  693463 / 1000000     7.3s h3 (collecting)
[ ]  702473       0       0  702473 / 1000000     7.4s h3
[ ]  711466       0       0  711466 / 1000000     7.5s h3
[ ]  720401       0       0  720401 / 1000000     7.6s h3
[ ]  729374       0       0  729374 / 1000000     7.7s h3
[ ]  738244       0       0  738244 / 1000000     7.8s h3
[ ]  747211       0       0  747211 / 1000000     7.9s h3
[ ]  755572       0       0  755572 / 1000000     8.0s h3
[ ]  764436       0       0  764436 / 1000000     8.1s h3
[ ]  773349       0       0  773349 / 1000000     8.2s h3
[ ]  782476       0       0  782476 / 1000000     8.3s h3
[ ]  790677       0       0  790677 / 1000000     8.4s h3
[ ]  800840       0       0  800840 / 1000000     8.5s h3
[ ]  810192       0       0  810192 / 1000000     8.6s h3
[ ]  819450       0       0  819450 / 1000000     8.7s h3
[ ]  828830       0       0  828830 / 1000000     8.8s h3
[ ]  838353       0       0  838353 / 1000000     8.9s h3
[ ]  847450       0       0  847450 / 1000000     9.0s h3
[ ]  857201       0       0  857201 / 1000000     9.1s h3
[ ]  866803       0       0  866803 / 1000000     9.2s h3
[ ]  876550       0       0  876550 / 1000000     9.3s h3
[ ]  886212       0       0  886212 / 1000000     9.4s h3
[ ]  895805       0       0  895805 / 1000000     9.5s h3
[ ]  905272       0       0  905272 / 1000000     9.6s h3
[ ]  914756       0       0  914756 / 1000000     9.7s h3
[ ]  924500       0       0  924500 / 1000000     9.8s h3
[ ]  934119       0       0  934119 / 1000000     9.9s h3
[ ]  943745       0       0  943745 / 1000000    10.0s h3
[ ]  953203       0       0  953203 / 1000000    10.1s h3
[ ]  962628       0       0  962628 / 1000000    10.2s h3
[ ]  971929       0       0  971929 / 1000000    10.3s h3
[ ]  981420       0       0  981420 / 1000000    10.4s h3 (collecting)
[ ]  990955       0       0  990955 / 1000000    10.5s h3
[✓] 1000000       0       0 1000000 / 1000000    10.6s h3
- 
[ ]       0       0       0       0 / 1000000     0.0s h4
[ ]    3377       0       0    3377 / 1000000     0.1s h4
[ ]    6802       0       0    6802 / 1000000     0.2s h4
[ ]   10228       0       0   10228 / 1000000     0.3s h4
[ ]   13661       0       0   13661 / 1000000     0.4s h4
[ ]   17086       0       0   17086 / 1000000     0.5s h4
[ ]   20497       0       0   20497 / 1000000     0.6s h4
[ ]   23852       0       0   23852 / 1000000     0.7s h4
[ ]   27178       0       0   27178 / 1000000     0.8s h4
[ ]   30472       0       0   30472 / 1000000     0.9s h4
[ ]   33819       0       0   33819 / 1000000     1.0s h4
[ ]   37136       0       0   37136 / 1000000     1.1s h4
[ ]   40463       0       0   40463 / 1000000     1.2s h4
[ ]   43832       0       0   43832 / 1000000     1.3s h4
[ ]   47247       0       0   47247 / 1000000     1.4s h4
[ ]   50584       0       0   50584 / 1000000     1.5s h4
[ ]   54035       0       0   54035 / 1000000     1.6s h4
[ ]   57292       0       0   57292 / 1000000     1.7s h4
[ ]   60522       0       0   60522 / 1000000     1.8s h4
[ ]   63867       0       0   63867 / 1000000     1.9s h4
[ ]   67146       0       0   67146 / 1000000     2.0s h4
[ ]   70386       0       0   70386 / 1000000     2.1s h4 (   testing)
[ ]   73766       0       0   73766 / 1000000     2.2s h4 (collecting)
[ ]   77083       0       0   77083 / 1000000     2.3s h4
[ ]   80348       0       0   80348 / 1000000     2.4s h4
[ ]   83646       0       0   83646 / 1000000     2.5s h4
[ ]   86946       0       0   86946 / 1000000     2.6s h4
[ ]   90268       0       0   90268 / 1000000     2.7s h4
[ ]   93656       0       0   93656 / 1000000     2.8s h4
[ ]   97108       0       0   97108 / 1000000     2.9s h4
[ ]  100506       0       0  100506 / 1000000     3.0s h4
[ ]  103800       0       0  103800 / 1000000     3.1s h4
[ ]  107154       0       0  107154 / 1000000     3.2s h4
[ ]  110486       0       0  110486 / 1000000     3.3s h4
[ ]  113704       0       0  113704 / 1000000     3.4s h4
[ ]  116986       0       0  116986 / 1000000     3.5s h4
[ ]  120324       0       0  120324 / 1000000     3.6s h4
[ ]  123528       0       0  123528 / 1000000     3.7s h4
[ ]  126849       0       0  126849 / 1000000     3.8s h4
[ ]  130219       0       0  130219 / 1000000     3.9s h4
[ ]  133575       0       0  133575 / 1000000     4.0s h4
[ ]  136910       0       0  136910 / 1000000     4.1s h4
[ ]  140262       0       0  140262 / 1000000     4.2s h4
[ ]  143722       0       0  143722 / 1000000     4.3s h4
[ ]  147176       0       0  147176 / 1000000     4.4s h4
[ ]  150535       0       0  150535 / 1000000     4.5s h4
[ ]  153896       0       0  153896 / 1000000     4.6s h4
[ ]  157252       0       0  157252 / 1000000     4.7s h4
[ ]  160571       0       0  160571 / 1000000     4.8s h4
[ ]  164029       0       0  164029 / 1000000     4.9s h4
[ ]  167424       0       0  167424 / 1000000     5.0s h4
[ ]  170736       0       0  170736 / 1000000     5.1s h4
[ ]  174153       0       0  174153 / 1000000     5.2s h4
[ ]  177585       0       0  177585 / 1000000     5.3s h4
[ ]  180878       0       0  180878 / 1000000     5.4s h4
[ ]  184189       0       0  184189 / 1000000     5.5s h4
[ ]  187503       0       0  187503 / 1000000     5.6s h4
[ ]  190814       0       0  190814 / 1000000     5.7s h4
[ ]  194173       0       0  194173 / 1000000     5.8s h4
[ ]  197416       0       0  197416 / 1000000     5.9s h4
[ ]  200493       0       0  200493 / 1000000     6.0s h4
[ ]  203626       0       0  203626 / 1000000     6.1s h4
[ ]  207031       0       0  207031 / 1000000     6.2s h4
[ ]  210321       0       0  210321 / 1000000     6.3s h4
[ ]  213547       0       0  213547 / 1000000     6.4s h4
[ ]  216823       0       0  216823 / 1000000     6.5s h4
[ ]  219937       0       0  219937 / 1000000     6.6s h4
[ ]  223249       0       0  223249 / 1000000     6.7s h4
[ ]  226562       0       0  226562 / 1000000     6.8s h4
[ ]  229892       0       0  229892 / 1000000     6.9s h4
[ ]  233264       0       0  233264 / 1000000     7.0s h4
[ ]  236736       0       0  236736 / 1000000     7.1s h4
[ ]  240193       0       0  240193 / 1000000     7.2s h4
[ ]  243615       0       0  243615 / 1000000     7.3s h4
[ ]  247007       0       0  247007 / 1000000     7.4s h4
[ ]  250317       0       0  250317 / 1000000     7.5s h4
[ ]  253531       0       0  253531 / 1000000     7.6s h4
[ ]  256700       0       0  256700 / 1000000     7.7s h4
[ ]  259766       0       0  259766 / 1000000     7.8s h4
[ ]  262828       0       0  262828 / 1000000     7.9s h4
[ ]  266027       0       0  266027 / 1000000     8.0s h4
[ ]  269239       0       0  269239 / 1000000     8.1s h4
[ ]  272528       0       0  272528 / 1000000     8.2s h4
[ ]  275871       0       0  275871 / 1000000     8.3s h4
[ ]  279219       0       0  279219 / 1000000     8.4s h4
[ ]  282595       0       0  282595 / 1000000     8.5s h4
[ ]  285990       0       0  285990 / 1000000     8.6s h4
[ ]  289299       0       0  289299 / 1000000     8.7s h4
[ ]  292624       0       0  292624 / 1000000     8.8s h4
[ ]  296044       0       0  296044 / 1000000     8.9s h4
[ ]  299327       0       0  299327 / 1000000     9.0s h4
[ ]  302683       0       0  302683 / 1000000     9.1s h4 (collecting)
[ ]  305970       0       0  305970 / 1000000     9.2s h4
[ ]  309361       0       0  309361 / 1000000     9.3s h4
[ ]  312669       0       0  312669 / 1000000     9.4s h4
[ ]  316043       0       0  316043 / 1000000     9.5s h4
[ ]  319507       0       0  319507 / 1000000     9.6s h4
[ ]  322801       0       0  322801 / 1000000     9.7s h4
[ ]  326147       0       0  326147 / 1000000     9.8s h4
[ ]  329576       0       0  329576 / 1000000     9.9s h4
[ ]  333146       0       0  333146 / 1000000    10.0s h4
[ ]  336544       0       0  336544 / 1000000    10.1s h4 (collecting)
[ ]  339958       0       0  339958 / 1000000    10.2s h4
[ ]  343295       0       0  343295 / 1000000    10.3s h4
[ ]  346697       0       0  346697 / 1000000    10.4s h4
[ ]  350093       0       0  350093 / 1000000    10.5s h4
[ ]  353436       0       0  353436 / 1000000    10.6s h4
[ ]  356750       0       0  356750 / 1000000    10.7s h4
[ ]  360051       0       0  360051 / 1000000    10.8s h4
[ ]  363269       0       0  363269 / 1000000    10.9s h4
[ ]  366583       0       0  366583 / 1000000    11.0s h4
[ ]  369879       0       0  369879 / 1000000    11.1s h4
[ ]  373247       0       0  373247 / 1000000    11.2s h4
[ ]  376615       0       0  376615 / 1000000    11.3s h4
[ ]  379924       0       0  379924 / 1000000    11.4s h4
[ ]  383155       0       0  383155 / 1000000    11.5s h4
[ ]  386456       0       0  386456 / 1000000    11.6s h4
[ ]  389819       0       0  389819 / 1000000    11.7s h4
[ ]  393265       0       0  393265 / 1000000    11.8s h4
[ ]  396742       0       0  396742 / 1000000    11.9s h4
[ ]  400052       0       0  400052 / 1000000    12.0s h4
[ ]  403320       0       0  403320 / 1000000    12.1s h4
[ ]  406901       0       0  406901 / 1000000    12.2s h4
[ ]  410181       0       0  410181 / 1000000    12.3s h4
[ ]  413517       0       0  413517 / 1000000    12.4s h4
[ ]  416827       0       0  416827 / 1000000    12.5s h4
[ ]  420331       0       0  420331 / 1000000    12.6s h4
[ ]  423682       0       0  423682 / 1000000    12.7s h4
[ ]  426957       0       0  426957 / 1000000    12.8s h4
[ ]  430402       0       0  430402 / 1000000    12.9s h4
[ ]  433819       0       0  433819 / 1000000    13.0s h4
[ ]  437205       0       0  437205 / 1000000    13.1s h4
[ ]  440530       0       0  440530 / 1000000    13.2s h4
[ ]  443942       0       0  443942 / 1000000    13.3s h4
[ ]  447341       0       0  447341 / 1000000    13.4s h4
[ ]  450491       0       0  450491 / 1000000    13.5s h4
[ ]  453988       0       0  453988 / 1000000    13.6s h4
[ ]  457292       0       0  457292 / 1000000    13.7s h4
[ ]  460615       0       0  460615 / 1000000    13.8s h4
[ ]  463882       0       0  463882 / 1000000    13.9s h4
[ ]  467146       0       0  467146 / 1000000    14.0s h4
[ ]  470550       0       0  470550 / 1000000    14.1s h4
[ ]  473860       0       0  473860 / 1000000    14.2s h4
[ ]  477248       0       0  477248 / 1000000    14.3s h4
[ ]  480702       0       0  480702 / 1000000    14.4s h4
[ ]  484054       0       0  484054 / 1000000    14.5s h4
[ ]  487430       0       0  487430 / 1000000    14.6s h4
[ ]  490801       0       0  490801 / 1000000    14.7s h4
[ ]  494023       0       0  494023 / 1000000    14.8s h4
[ ]  497227       0       0  497227 / 1000000    14.9s h4
[ ]  500630       0       0  500630 / 1000000    15.0s h4
[ ]  503899       0       0  503899 / 1000000    15.1s h4 (collecting)
[ ]  507153       0       0  507153 / 1000000    15.2s h4
[ ]  510474       0       0  510474 / 1000000    15.3s h4
[ ]  513798       0       0  513798 / 1000000    15.4s h4
[ ]  517748       0       0  517748 / 1000000    15.5s h4
[ ]  521062       0       0  521062 / 1000000    15.6s h4
[ ]  524285       0       0  524285 / 1000000    15.7s h4
[ ]  527475       0       0  527475 / 1000000    15.8s h4
[ ]  530736       0       0  530736 / 1000000    15.9s h4
[ ]  534299       0       0  534299 / 1000000    16.0s h4
[ ]  537840       0       0  537840 / 1000000    16.1s h4
[ ]  541262       0       0  541262 / 1000000    16.2s h4
[ ]  544459       0       0  544459 / 1000000    16.3s h4
[ ]  547706       0       0  547706 / 1000000    16.4s h4
[ ]  550902       0       0  550902 / 1000000    16.5s h4
[ ]  554722       0       0  554722 / 1000000    16.6s h4
[ ]  558264       0       0  558264 / 1000000    16.7s h4
[ ]  561791       0       0  561791 / 1000000    16.8s h4
[ ]  565082       0       0  565082 / 1000000    16.9s h4
[ ]  568419       0       0  568419 / 1000000    17.0s h4
[ ]  571719       0       0  571719 / 1000000    17.1s h4
[ ]  574832       0       0  574832 / 1000000    17.2s h4
[ ]  577898       0       0  577898 / 1000000    17.3s h4
[ ]  581448       0       0  581448 / 1000000    17.4s h4
[ ]  584918       0       0  584918 / 1000000    17.5s h4
[ ]  588378       0       0  588378 / 1000000    17.6s h4
[ ]  591686       0       0  591686 / 1000000    17.7s h4
[ ]  595111       0       0  595111 / 1000000    17.8s h4
[ ]  598480       0       0  598480 / 1000000    17.9s h4
[ ]  601818       0       0  601818 / 1000000    18.0s h4
[ ]  605201       0       0  605201 / 1000000    18.1s h4
[ ]  608694       0       0  608694 / 1000000    18.2s h4
[ ]  612257       0       0  612257 / 1000000    18.3s h4
[ ]  615650       0       0  615650 / 1000000    18.4s h4
[ ]  619037       0       0  619037 / 1000000    18.5s h4
[ ]  622370       0       0  622370 / 1000000    18.6s h4
[ ]  625757       0       0  625757 / 1000000    18.7s h4
[ ]  629133       0       0  629133 / 1000000    18.8s h4
[ ]  632770       0       0  632770 / 1000000    18.9s h4
[ ]  635919       0       0  635919 / 1000000    19.0s h4
[ ]  638956       0       0  638956 / 1000000    19.1s h4
[ ]  642069       0       0  642069 / 1000000    19.2s h4
[ ]  645394       0       0  645394 / 1000000    19.3s h4
[ ]  648634       0       0  648634 / 1000000    19.4s h4
[ ]  651848       0       0  651848 / 1000000    19.5s h4
[ ]  655090       0       0  655090 / 1000000    19.6s h4
[ ]  658494       0       0  658494 / 1000000    19.7s h4
[ ]  661829       0       0  661829 / 1000000    19.8s h4
[ ]  665150       0       0  665150 / 1000000    19.9s h4
[ ]  668383       0       0  668383 / 1000000    20.0s h4
[ ]  671669       0       0  671669 / 1000000    20.1s h4
[ ]  674947       0       0  674947 / 1000000    20.2s h4
[ ]  678332       0       0  678332 / 1000000    20.3s h4
[ ]  681760       0       0  681760 / 1000000    20.4s h4
[ ]  685125       0       0  685125 / 1000000    20.5s h4
[ ]  688518       0       0  688518 / 1000000    20.6s h4
[ ]  691862       0       0  691862 / 1000000    20.7s h4
[ ]  695258       0       0  695258 / 1000000    20.8s h4
[ ]  698645       0       0  698645 / 1000000    20.9s h4
[ ]  702061       0       0  702061 / 1000000    21.0s h4
[ ]  705538       0       0  705538 / 1000000    21.1s h4
[ ]  708892       0       0  708892 / 1000000    21.2s h4
[ ]  712248       0       0  712248 / 1000000    21.3s h4
[ ]  715599       0       0  715599 / 1000000    21.4s h4
[ ]  719197       0       0  719197 / 1000000    21.5s h4
[ ]  722448       0       0  722448 / 1000000    21.6s h4
[ ]  725813       0       0  725813 / 1000000    21.7s h4
[ ]  729237       0       0  729237 / 1000000    21.8s h4
[ ]  732722       0       0  732722 / 1000000    21.9s h4
[ ]  736056       0       0  736056 / 1000000    22.0s h4
[ ]  739459       0       0  739459 / 1000000    22.1s h4
[ ]  743184       0       0  743184 / 1000000    22.2s h4
[ ]  746583       0       0  746583 / 1000000    22.3s h4
[ ]  750058       0       0  750058 / 1000000    22.4s h4
[ ]  753474       0       0  753474 / 1000000    22.5s h4
[ ]  757044       0       0  757044 / 1000000    22.6s h4
[ ]  760501       0       0  760501 / 1000000    22.7s h4
[ ]  764101       0       0  764101 / 1000000    22.8s h4
[ ]  767598       0       0  767598 / 1000000    22.9s h4
[ ]  772410       0       0  772410 / 1000000    23.0s h4
[ ]  777905       0       0  777905 / 1000000    23.1s h4
[ ]  783201       0       0  783201 / 1000000    23.2s h4
[ ]  788130       0       0  788130 / 1000000    23.3s h4
[ ]  791874       0       0  791874 / 1000000    23.4s h4
[ ]  796574       0       0  796574 / 1000000    23.5s h4
[ ]  801282       0       0  801282 / 1000000    23.6s h4
[ ]  805818       0       0  805818 / 1000000    23.7s h4
[ ]  810761       0       0  810761 / 1000000    23.8s h4
[ ]  815134       0       0  815134 / 1000000    23.9s h4
[ ]  819943       0       0  819943 / 1000000    24.0s h4
[ ]  825106       0       0  825106 / 1000000    24.1s h4
[ ]  830350       0       0  830350 / 1000000    24.2s h4
[ ]  833698       0       0  833698 / 1000000    24.3s h4
[ ]  837673       0       0  837673 / 1000000    24.4s h4
[ ]  842854       0       0  842854 / 1000000    24.5s h4
[ ]  846630       0       0  846630 / 1000000    24.6s h4
[ ]  849965       0       0  849965 / 1000000    24.7s h4
[ ]  853830       0       0  853830 / 1000000    24.8s h4
[ ]  857980       0       0  857980 / 1000000    24.9s h4
[ ]  863492       0       0  863492 / 1000000    25.0s h4
[ ]  867511       0       0  867511 / 1000000    25.1s h4
[ ]  871042       0       0  871042 / 1000000    25.2s h4
[ ]  874555       0       0  874555 / 1000000    25.3s h4
[ ]  877925       0       0  877925 / 1000000    25.4s h4
[ ]  881255       0       0  881255 / 1000000    25.5s h4
[ ]  884616       0       0  884616 / 1000000    25.6s h4
[ ]  887990       0       0  887990 / 1000000    25.7s h4
[ ]  891440       0       0  891440 / 1000000    25.8s h4
[ ]  894908       0       0  894908 / 1000000    25.9s h4
[ ]  898198       0       0  898198 / 1000000    26.0s h4
[ ]  901929       0       0  901929 / 1000000    26.1s h4
[ ]  905387       0       0  905387 / 1000000    26.2s h4
[ ]  908769       0       0  908769 / 1000000    26.3s h4
[ ]  912237       0       0  912237 / 1000000    26.4s h4
[ ]  915748       0       0  915748 / 1000000    26.5s h4
[ ]  919139       0       0  919139 / 1000000    26.6s h4
[ ]  922579       0       0  922579 / 1000000    26.7s h4
[ ]  926017       0       0  926017 / 1000000    26.8s h4
[ ]  929449       0       0  929449 / 1000000    26.9s h4
[ ]  933582       0       0  933582 / 1000000    27.0s h4
[ ]  937506       0       0  937506 / 1000000    27.1s h4
[ ]  941254       0       0  941254 / 1000000    27.2s h4
[ ]  945090       0       0  945090 / 1000000    27.3s h4
[ ]  948674       0       0  948674 / 1000000    27.4s h4
[ ]  951953       0       0  951953 / 1000000    27.5s h4
[ ]  955239       0       0  955239 / 1000000    27.6s h4
[ ]  958552       0       0  958552 / 1000000    27.7s h4
[ ]  961805       0       0  961805 / 1000000    27.8s h4
[ ]  965041       0       0  965041 / 1000000    27.9s h4
[ ]  968622       0       0  968622 / 1000000    28.0s h4
[ ]  972130       0       0  972130 / 1000000    28.1s h4
[ ]  975517       0       0  975517 / 1000000    28.2s h4
[ ]  978603       0       0  978603 / 1000000    28.3s h4
[ ]  981885       0       0  981885 / 1000000    28.4s h4
[ ]  985111       0       0  985111 / 1000000    28.5s h4
[ ]  988476       0       0  988476 / 1000000    28.6s h4
[ ]  991763       0       0  991763 / 1000000    28.7s h4
[ ]  994932       0       0  994932 / 1000000    28.8s h4
[ ]  998188       0       0  998188 / 1000000    28.9s h4
[✓] 1000000       0       0 1000000 / 1000000    29.0s h4
- ================================================================================
- success (ran 6 tests)
-> compiled  dates_calc.0.0.2
-> removed   dates_calc.0.0.2
-> installed dates_calc.0.0.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-26 00:02.07 ---> saved as "ae8eaa23073e9344bd0caeb09cd183560d349374eedadeed7718a54f902486cf"
Job succeeded
2026-03-26 00:02.21: Job succeeded