(for PR #29582)

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

To reproduce locally:

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

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

2026-03-25 13:13.30: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6-ocaml-compiler.5.4.0~alpha1-dates_calc.0.0.5-fa5fb3a6a806e832e4c7791145889a6bbe8b64ef"
2026-03-25 13:13.30: 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~alpha1 5.4.0~alpha1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall --update-invariant ocaml-compiler.5.4.0~alpha1;\
             \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~alpha1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dates_calc.0.0.5;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'dates_calc.0.0.5' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test dates_calc.0.0.5) || true"))
 (run (shell  "opam reinstall --with-test --verbose dates_calc.0.0.5;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'dates_calc.0.0.5' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

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

(from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
2026-03-25 17:24.48 ---> 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 17:24.48 ---> 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 17:24.48 ---> 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 17:24.48 ---> 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 17:24.48 ---> using "04a48515eea40c32b96da0c71328b4bba0edb66eed83d4f78554b39097cf1f25" from cache

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

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

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

/home/opam: (run (shell "opam pin add -k version -yn ocaml-compiler.5.4.0~alpha1 5.4.0~alpha1"))
ocaml-compiler is now pinned to version 5.4.0~alpha1
2026-03-25 17:24.50 ---> using "e88d50778e741ddee9b34c84a56e5e9e4639d3fa2f3e012374704cbfbb53ef0f" 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~alpha1;\
                        \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~alpha1' && 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~alpha1 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~alpha1 (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~alpha1+options           [required by ocaml]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocaml-compiler.5.4.0~alpha1  (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~alpha1
-> installed ocaml-variants.5.4.0~alpha1+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~alpha1+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 17:24.50 ---> using "b7d43dc4936243f5436b930db356d86affbfebfa395eb0b37eb16d2b855a3853" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dates_calc.0.0.5;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'dates_calc.0.0.5' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
dates_calc.0.0.5 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 2 packages
  - install dates_calc 0.0.5
  - install dune       3.22.0 [required by dates_calc]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dates_calc.0.0.5  (cached)
-> retrieved dune.3.22.0  (cached)
-> installed dune.3.22.0
-> installed dates_calc.0.0.5
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 17:26.22 ---> saved as "1d2bd6f0815b439100fb0158091c49854a1d8a2dd11c62b6a08432ef27851347"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1  (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5  (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.0  (https://opam.ocaml.org/cache)
-> retrieved dates_calc.0.0.5  (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0  (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0  (https://opam.ocaml.org/cache)
-> retrieved ocamlbuild.0.16.1  (https://opam.ocaml.org/cache)
-> retrieved ocamlfind.1.9.8  (https://opam.ocaml.org/cache)
-> retrieved ounit2.2.2.7  (https://opam.ocaml.org/cache)
-> retrieved qcheck.0.91, qcheck-core.0.91, qcheck-ounit.0.91  (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> retrieved seq.base  (2 extra sources)
-> retrieved seq.base  (2 extra sources)
-> installed seq.base
-> retrieved stdlib-shims.0.3.0  (https://opam.ocaml.org/cache)
-> retrieved topkg.1.1.1  (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> installed ocaml-syntax-shims.1.0.0
-> installed stdlib-shims.0.3.0
-> installed re.1.14.0
-> installed ounit2.2.2.7
-> installed qcheck-core.0.91
-> installed qcheck-ounit.0.91
-> installed qcheck.0.91
-> installed ocamlfind.1.9.8
-> installed cmdliner.2.1.0
-> removed   dates_calc.0.0.5
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed alcotest.1.9.1
-> installed dates_calc.0.0.5
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 17:28.16 ---> saved as "fdf02848241435de4e4d70a8febc0e5500cec27ce8c3564a8ed6ea765b343f96"

/home/opam: (run (shell  "opam reinstall --with-test --verbose dates_calc.0.0.5;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'dates_calc.0.0.5' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
The following actions will be performed:
=== recompile 1 package
  - recompile dates_calc 0.0.5

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [dates_calc.0.0.5: extract]
-> retrieved dates_calc.0.0.5  (cached)
Processing  2/4: [dates_calc: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "dates_calc" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/dates_calc.0.0.5)
- (cd _build/default/test && ./unit.exe)
- Testing `unit'.
- This run has ID `16BIU9VE'.
- 
-   [OK]          add_dates                        0   exact.
-   [OK]          add_dates                        1   ambig.
-   [OK]          first_last_day_of_month          0   all.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/dates_calc.0.0.5/_build/default/test/_build/_tests/unit'.
- Test Successful in 0.006s. 3 tests run.
- (cd _build/default/test && ./prop.exe)
- 
random seed: 181833920
-   generated   error    fail    pass /   total     time test name
- 
[ ]       0       0       0       0 /    1000     0.0s anon_test_1
[ ]     249       0       0     249 /    1000     0.1s anon_test_1
[ ]     521       0       0     521 /    1000     0.2s anon_test_1
[ ]     745       0       0     745 /    1000     0.3s anon_test_1
[ ]     999       0       0     999 /    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
[ ]       8       0       0       8 /    1000     0.1s anon_test_2
[ ]      22       0       0      22 /    1000     0.2s anon_test_2
[ ]      34       0       0      34 /    1000     0.4s anon_test_2
[ ]      43       0       0      43 /    1000     0.5s anon_test_2
[ ]      55       0       0      55 /    1000     0.6s anon_test_2
[ ]      66       0       0      66 /    1000     0.7s anon_test_2
[ ]      78       0       0      78 /    1000     0.8s anon_test_2
[ ]      91       0       0      91 /    1000     0.9s anon_test_2
[ ]     105       0       0     105 /    1000     1.0s anon_test_2
[ ]     114       0       0     114 /    1000     1.1s anon_test_2
[ ]     128       0       0     128 /    1000     1.3s anon_test_2
[ ]     139       0       0     139 /    1000     1.4s anon_test_2
[ ]     148       0       0     148 /    1000     1.5s anon_test_2
[ ]     158       0       0     158 /    1000     1.6s anon_test_2
[ ]     169       0       0     169 /    1000     1.7s anon_test_2
[ ]     180       0       0     180 /    1000     1.8s anon_test_2
[ ]     190       0       0     190 /    1000     1.9s anon_test_2
[ ]     206       0       0     206 /    1000     2.0s anon_test_2
[ ]     221       0       0     221 /    1000     2.2s anon_test_2
[ ]     231       0       0     231 /    1000     2.3s anon_test_2
[ ]     248       0       0     248 /    1000     2.4s anon_test_2
[ ]     267       0       0     267 /    1000     2.5s anon_test_2
[ ]     274       0       0     274 /    1000     2.6s anon_test_2
[ ]     285       0       0     285 /    1000     2.7s anon_test_2
[ ]     294       0       0     294 /    1000     2.8s anon_test_2
[ ]     305       0       0     305 /    1000     2.9s anon_test_2
[ ]     314       0       0     314 /    1000     3.0s anon_test_2
[ ]     323       0       0     323 /    1000     3.1s anon_test_2
[ ]     334       0       0     334 /    1000     3.2s anon_test_2
[ ]     344       0       0     344 /    1000     3.4s anon_test_2
[ ]     357       0       0     357 /    1000     3.5s anon_test_2
[ ]     369       0       0     369 /    1000     3.6s anon_test_2
[ ]     384       0       0     384 /    1000     3.7s anon_test_2
[ ]     390       0       0     390 /    1000     3.8s anon_test_2
[ ]     401       0       0     401 /    1000     3.9s anon_test_2
[ ]     410       0       0     410 /    1000     4.0s anon_test_2
[ ]     418       0       0     418 /    1000     4.2s anon_test_2
[ ]     423       0       0     423 /    1000     4.3s anon_test_2
[ ]     429       0       0     429 /    1000     4.4s anon_test_2
[ ]     435       0       0     435 /    1000     4.5s anon_test_2
[ ]     446       0       0     446 /    1000     4.6s anon_test_2
[ ]     454       0       0     454 /    1000     4.7s anon_test_2
[ ]     466       0       0     466 /    1000     4.8s anon_test_2
[ ]     480       0       0     480 /    1000     4.9s anon_test_2
[ ]     488       0       0     488 /    1000     5.0s anon_test_2
[ ]     494       0       0     494 /    1000     5.2s anon_test_2
[ ]     499       0       0     499 /    1000     5.3s anon_test_2
[ ]     505       0       0     505 /    1000     5.4s anon_test_2
[ ]     515       0       0     515 /    1000     5.5s anon_test_2
[ ]     521       0       0     521 /    1000     5.6s anon_test_2
[ ]     529       0       0     529 /    1000     5.7s anon_test_2
[ ]     536       0       0     536 /    1000     5.8s anon_test_2
[ ]     544       0       0     544 /    1000     5.9s anon_test_2
[ ]     547       0       0     547 /    1000     6.0s anon_test_2
[ ]     553       0       0     553 /    1000     6.2s anon_test_2
[ ]     561       0       0     561 /    1000     6.3s anon_test_2
[ ]     573       0       0     573 /    1000     6.4s anon_test_2
[ ]     585       0       0     585 /    1000     6.5s anon_test_2
[ ]     590       0       0     590 /    1000     6.6s anon_test_2
[ ]     594       0       0     594 /    1000     6.7s anon_test_2
[ ]     600       0       0     600 /    1000     6.8s anon_test_2
[ ]     605       0       0     605 /    1000     7.0s anon_test_2
[ ]     608       0       0     608 /    1000     7.1s anon_test_2
[ ]     617       0       0     617 /    1000     7.2s anon_test_2
[ ]     622       0       0     622 /    1000     7.3s anon_test_2
[ ]     629       0       0     629 /    1000     7.5s anon_test_2
[ ]     635       0       0     635 /    1000     7.6s anon_test_2
[ ]     645       0       0     645 /    1000     7.7s anon_test_2
[ ]     649       0       0     649 /    1000     7.8s anon_test_2
[ ]     656       0       0     656 /    1000     7.9s anon_test_2
[ ]     667       0       0     667 /    1000     8.1s anon_test_2
[ ]     674       0       0     674 /    1000     8.2s anon_test_2
[ ]     680       0       0     680 /    1000     8.3s anon_test_2
[ ]     690       0       0     690 /    1000     8.4s anon_test_2
[ ]     695       0       0     695 /    1000     8.5s anon_test_2
[ ]     702       0       0     702 /    1000     8.6s anon_test_2
[ ]     707       0       0     707 /    1000     8.7s anon_test_2
[ ]     714       0       0     714 /    1000     8.8s anon_test_2
[ ]     723       0       0     723 /    1000     9.0s anon_test_2
[ ]     737       0       0     737 /    1000     9.1s anon_test_2
[ ]     751       0       0     751 /    1000     9.2s anon_test_2
[ ]     762       0       0     762 /    1000     9.3s anon_test_2
[ ]     772       0       0     772 /    1000     9.4s anon_test_2
[ ]     786       0       0     786 /    1000     9.5s anon_test_2
[ ]     803       0       0     803 /    1000     9.6s anon_test_2
[ ]     818       0       0     818 /    1000     9.7s anon_test_2
[ ]     832       0       0     832 /    1000     9.8s anon_test_2
[ ]     844       0       0     844 /    1000     9.9s anon_test_2
[ ]     856       0       0     856 /    1000    10.1s anon_test_2
[ ]     865       0       0     865 /    1000    10.2s anon_test_2
[ ]     874       0       0     874 /    1000    10.3s anon_test_2
[ ]     879       0       0     879 /    1000    10.4s anon_test_2
[ ]     884       0       0     884 /    1000    10.5s anon_test_2
[ ]     890       0       0     890 /    1000    10.7s anon_test_2
[ ]     899       0       0     899 /    1000    10.8s anon_test_2
[ ]     907       0       0     907 /    1000    10.9s anon_test_2
[ ]     913       0       0     913 /    1000    11.0s anon_test_2
[ ]     919       0       0     919 /    1000    11.1s anon_test_2
[ ]     928       0       0     928 /    1000    11.2s anon_test_2
[ ]     933       0       0     933 /    1000    11.4s anon_test_2
[ ]     944       0       0     944 /    1000    11.5s anon_test_2
[ ]     954       0       0     954 /    1000    11.6s anon_test_2
[ ]     969       0       0     969 /    1000    11.7s anon_test_2
[ ]     982       0       0     982 /    1000    11.8s anon_test_2
[ ]     994       0       0     994 /    1000    11.9s anon_test_2
[✓]    1000       0       0    1000 /    1000    12.0s anon_test_2
- 
[ ]       0       0       0       0 / 1000000     0.0s h1
[ ]    9208       0       0    9208 / 1000000     0.1s h1
[ ]   18263       0       0   18263 / 1000000     0.2s h1
[ ]   27274       0       0   27274 / 1000000     0.3s h1
[ ]   36044       0       0   36044 / 1000000     0.4s h1
[ ]   44668       0       0   44668 / 1000000     0.5s h1
[ ]   53450       0       0   53450 / 1000000     0.6s h1 (collecting)
[ ]   61650       0       0   61650 / 1000000     0.7s h1
[ ]   70220       0       0   70220 / 1000000     0.8s h1
[ ]   78288       0       0   78288 / 1000000     0.9s h1
[ ]   87108       0       0   87108 / 1000000     1.0s h1
[ ]   92818       0       0   92818 / 1000000     1.1s h1 (collecting)
[ ]   99785       0       0   99785 / 1000000     1.2s h1
[ ]  107830       0       0  107830 / 1000000     1.3s h1
[ ]  116457       0       0  116457 / 1000000     1.4s h1
[ ]  123840       0       0  123840 / 1000000     1.5s h1
[ ]  132002       0       0  132002 / 1000000     1.6s h1
[ ]  140031       0       0  140031 / 1000000     1.7s h1
[ ]  148261       0       0  148261 / 1000000     1.8s h1
[ ]  157098       0       0  157098 / 1000000     1.9s h1
[ ]  166178       0       0  166178 / 1000000     2.0s h1
[ ]  175184       0       0  175184 / 1000000     2.1s h1
[ ]  184426       0       0  184426 / 1000000     2.2s h1
[ ]  193195       0       0  193195 / 1000000     2.3s h1
[ ]  203098       0       0  203098 / 1000000     2.4s h1
[ ]  213854       0       0  213854 / 1000000     2.5s h1
[ ]  222988       0       0  222988 / 1000000     2.6s h1
[ ]  232181       0       0  232181 / 1000000     2.7s h1
[ ]  241351       0       0  241351 / 1000000     2.8s h1
[ ]  250279       0       0  250279 / 1000000     2.9s h1
[ ]  259668       0       0  259668 / 1000000     3.0s h1
[ ]  268476       0       0  268476 / 1000000     3.1s h1
[ ]  277368       0       0  277368 / 1000000     3.2s h1
[ ]  285101       0       0  285101 / 1000000     3.3s h1
[ ]  293794       0       0  293794 / 1000000     3.4s h1
[ ]  303386       0       0  303386 / 1000000     3.5s h1
[ ]  312942       0       0  312942 / 1000000     3.6s h1
[ ]  322112       0       0  322112 / 1000000     3.7s h1
[ ]  330956       0       0  330956 / 1000000     3.8s h1
[ ]  339800       0       0  339800 / 1000000     3.9s h1
[ ]  348925       0       0  348925 / 1000000     4.0s h1
[ ]  358301       0       0  358301 / 1000000     4.1s h1 (collecting)
[ ]  367512       0       0  367512 / 1000000     4.2s h1
[ ]  376463       0       0  376463 / 1000000     4.3s h1
[ ]  385135       0       0  385135 / 1000000     4.4s h1
[ ]  393037       0       0  393037 / 1000000     4.5s h1
[ ]  401349       0       0  401349 / 1000000     4.6s h1
[ ]  410601       0       0  410601 / 1000000     4.7s h1
[ ]  419706       0       0  419706 / 1000000     4.8s h1
[ ]  429059       0       0  429059 / 1000000     4.9s h1
[ ]  438477       0       0  438477 / 1000000     5.0s h1
[ ]  447849       0       0  447849 / 1000000     5.1s h1
[ ]  457164       0       0  457164 / 1000000     5.2s h1
[ ]  466477       0       0  466477 / 1000000     5.3s h1
[ ]  476012       0       0  476012 / 1000000     5.4s h1 (collecting)
[ ]  484983       0       0  484983 / 1000000     5.5s h1
[ ]  494196       0       0  494196 / 1000000     5.6s h1
[ ]  503621       0       0  503621 / 1000000     5.7s h1
[ ]  512866       0       0  512866 / 1000000     5.8s h1
[ ]  521919       0       0  521919 / 1000000     5.9s h1
[ ]  530718       0       0  530718 / 1000000     6.0s h1
[ ]  539828       0       0  539828 / 1000000     6.1s h1
[ ]  548865       0       0  548865 / 1000000     6.2s h1
[ ]  558238       0       0  558238 / 1000000     6.3s h1
[ ]  567936       0       0  567936 / 1000000     6.4s h1
[ ]  577619       0       0  577619 / 1000000     6.5s h1
[ ]  587184       0       0  587184 / 1000000     6.6s h1
[ ]  596666       0       0  596666 / 1000000     6.7s h1
[ ]  606020       0       0  606020 / 1000000     6.8s h1
[ ]  614965       0       0  614965 / 1000000     6.9s h1
[ ]  623656       0       0  623656 / 1000000     7.0s h1 (   testing)
[ ]  632319       0       0  632319 / 1000000     7.1s h1
[ ]  640399       0       0  640399 / 1000000     7.2s h1
[ ]  648322       0       0  648322 / 1000000     7.3s h1
[ ]  656202       0       0  656202 / 1000000     7.4s h1
[ ]  664250       0       0  664250 / 1000000     7.5s h1
[ ]  672259       0       0  672259 / 1000000     7.6s h1
[ ]  679019       0       0  679019 / 1000000     7.7s h1
[ ]  688312       0       0  688312 / 1000000     7.8s h1
[ ]  695812       0       0  695812 / 1000000     7.9s h1
[ ]  703718       0       0  703718 / 1000000     8.0s h1
[ ]  712664       0       0  712664 / 1000000     8.1s h1
[ ]  721685       0       0  721685 / 1000000     8.2s h1
[ ]  730704       0       0  730704 / 1000000     8.3s h1
[ ]  737922       0       0  737922 / 1000000     8.4s h1
[ ]  746459       0       0  746459 / 1000000     8.5s h1
[ ]  755389       0       0  755389 / 1000000     8.6s h1
[ ]  765014       0       0  765014 / 1000000     8.7s h1
[ ]  773918       0       0  773918 / 1000000     8.8s h1
[ ]  782621       0       0  782621 / 1000000     8.9s h1
[ ]  792053       0       0  792053 / 1000000     9.0s h1
[ ]  800775       0       0  800775 / 1000000     9.1s h1
[ ]  809530       0       0  809530 / 1000000     9.2s h1
[ ]  818887       0       0  818887 / 1000000     9.3s h1
[ ]  828578       0       0  828578 / 1000000     9.4s h1
[ ]  838012       0       0  838012 / 1000000     9.5s h1
[ ]  847348       0       0  847348 / 1000000     9.6s h1
[ ]  856787       0       0  856787 / 1000000     9.7s h1
[ ]  865936       0       0  865936 / 1000000     9.8s h1
[ ]  875228       0       0  875228 / 1000000     9.9s h1
[ ]  884472       0       0  884472 / 1000000    10.0s h1 (collecting)
[ ]  893778       0       0  893778 / 1000000    10.1s h1 (collecting)
[ ]  903159       0       0  903159 / 1000000    10.2s h1
[ ]  912429       0       0  912429 / 1000000    10.3s h1
[ ]  921692       0       0  921692 / 1000000    10.4s h1
[ ]  930731       0       0  930731 / 1000000    10.5s h1
[ ]  939945       0       0  939945 / 1000000    10.6s h1
[ ]  949794       0       0  949794 / 1000000    10.7s h1
[ ]  959088       0       0  959088 / 1000000    10.8s h1
[ ]  968352       0       0  968352 / 1000000    10.9s h1
[ ]  977381       0       0  977381 / 1000000    11.0s h1 (   testing)
[ ]  986878       0       0  986878 / 1000000    11.1s h1
[ ]  996423       0       0  996423 / 1000000    11.2s h1
[✓] 1000000       0       0 1000000 / 1000000    11.2s h1
- 
[ ]       0       0       0       0 / 1000000     0.0s h2
[ ]    4677       0       0    4677 / 1000000     0.1s h2
[ ]    9392       0       0    9392 / 1000000     0.2s h2
[ ]   14190       0       0   14190 / 1000000     0.3s h2
[ ]   18976       0       0   18976 / 1000000     0.4s h2
[ ]   23217       0       0   23217 / 1000000     0.5s h2
[ ]   27519       0       0   27519 / 1000000     0.6s h2
[ ]   31694       0       0   31694 / 1000000     0.7s h2
[ ]   35637       0       0   35637 / 1000000     0.8s h2
[ ]   39039       0       0   39039 / 1000000     0.9s h2
[ ]   43011       0       0   43011 / 1000000     1.0s h2
[ ]   47302       0       0   47302 / 1000000     1.1s h2
[ ]   51749       0       0   51749 / 1000000     1.2s h2
[ ]   55905       0       0   55905 / 1000000     1.3s h2
[ ]   60683       0       0   60683 / 1000000     1.4s h2
[ ]   65251       0       0   65251 / 1000000     1.5s h2
[ ]   69992       0       0   69992 / 1000000     1.6s h2
[ ]   75165       0       0   75165 / 1000000     1.7s h2
[ ]   80242       0       0   80242 / 1000000     1.8s h2
[ ]   85310       0       0   85310 / 1000000     1.9s h2
[ ]   90277       0       0   90277 / 1000000     2.0s h2
[ ]   95156       0       0   95156 / 1000000     2.1s h2
[ ]  100262       0       0  100262 / 1000000     2.2s h2
[ ]  105302       0       0  105302 / 1000000     2.3s h2
[ ]  110177       0       0  110177 / 1000000     2.4s h2
[ ]  115419       0       0  115419 / 1000000     2.5s h2
[ ]  120538       0       0  120538 / 1000000     2.6s h2 (collecting)
[ ]  125518       0       0  125518 / 1000000     2.7s h2
[ ]  130777       0       0  130777 / 1000000     2.8s h2
[ ]  135376       0       0  135376 / 1000000     2.9s h2
[ ]  140082       0       0  140082 / 1000000     3.0s h2
[ ]  144807       0       0  144807 / 1000000     3.1s h2
[ ]  149544       0       0  149544 / 1000000     3.2s h2
[ ]  154419       0       0  154419 / 1000000     3.3s h2
[ ]  159185       0       0  159185 / 1000000     3.4s h2
[ ]  163900       0       0  163900 / 1000000     3.5s h2
[ ]  168542       0       0  168542 / 1000000     3.6s h2
[ ]  173399       0       0  173399 / 1000000     3.7s h2
[ ]  178184       0       0  178184 / 1000000     3.8s h2
[ ]  182951       0       0  182951 / 1000000     3.9s h2
[ ]  187693       0       0  187693 / 1000000     4.0s h2
[ ]  192443       0       0  192443 / 1000000     4.1s h2
[ ]  197058       0       0  197058 / 1000000     4.2s h2
[ ]  201709       0       0  201709 / 1000000     4.3s h2
[ ]  206389       0       0  206389 / 1000000     4.4s h2
[ ]  211118       0       0  211118 / 1000000     4.5s h2
[ ]  215754       0       0  215754 / 1000000     4.6s h2
[ ]  220182       0       0  220182 / 1000000     4.7s h2
[ ]  225004       0       0  225004 / 1000000     4.8s h2
[ ]  229787       0       0  229787 / 1000000     4.9s h2
[ ]  234592       0       0  234592 / 1000000     5.0s h2
[ ]  239275       0       0  239275 / 1000000     5.1s h2
[ ]  244019       0       0  244019 / 1000000     5.2s h2
[ ]  248749       0       0  248749 / 1000000     5.3s h2
[ ]  253416       0       0  253416 / 1000000     5.4s h2
[ ]  258247       0       0  258247 / 1000000     5.5s h2
[ ]  262884       0       0  262884 / 1000000     5.6s h2
[ ]  267472       0       0  267472 / 1000000     5.7s h2
[ ]  272185       0       0  272185 / 1000000     5.8s h2
[ ]  276844       0       0  276844 / 1000000     5.9s h2
[ ]  281506       0       0  281506 / 1000000     6.0s h2
[ ]  286105       0       0  286105 / 1000000     6.1s h2
[ ]  290784       0       0  290784 / 1000000     6.2s h2
[ ]  295599       0       0  295599 / 1000000     6.3s h2
[ ]  300388       0       0  300388 / 1000000     6.4s h2
[ ]  305268       0       0  305268 / 1000000     6.5s h2
[ ]  309724       0       0  309724 / 1000000     6.6s h2
[ ]  314331       0       0  314331 / 1000000     6.7s h2
[ ]  319045       0       0  319045 / 1000000     6.8s h2
[ ]  323804       0       0  323804 / 1000000     6.9s h2
[ ]  328605       0       0  328605 / 1000000     7.0s h2
[ ]  333432       0       0  333432 / 1000000     7.1s h2
[ ]  338387       0       0  338387 / 1000000     7.2s h2
[ ]  343365       0       0  343365 / 1000000     7.3s h2
[ ]  348238       0       0  348238 / 1000000     7.4s h2
[ ]  352893       0       0  352893 / 1000000     7.5s h2
[ ]  357883       0       0  357883 / 1000000     7.6s h2
[ ]  362824       0       0  362824 / 1000000     7.7s h2
[ ]  367702       0       0  367702 / 1000000     7.8s h2
[ ]  372517       0       0  372517 / 1000000     7.9s h2
[ ]  377233       0       0  377233 / 1000000     8.0s h2
[ ]  381829       0       0  381829 / 1000000     8.1s h2
[ ]  386386       0       0  386386 / 1000000     8.2s h2
[ ]  390969       0       0  390969 / 1000000     8.3s h2
[ ]  395409       0       0  395409 / 1000000     8.4s h2
[ ]  400010       0       0  400010 / 1000000     8.5s h2
[ ]  404818       0       0  404818 / 1000000     8.6s h2
[ ]  409658       0       0  409658 / 1000000     8.7s h2 (generating)
[ ]  414330       0       0  414330 / 1000000     8.8s h2
[ ]  419072       0       0  419072 / 1000000     8.9s h2
[ ]  423873       0       0  423873 / 1000000     9.0s h2
[ ]  428712       0       0  428712 / 1000000     9.1s h2
[ ]  433579       0       0  433579 / 1000000     9.2s h2
[ ]  438325       0       0  438325 / 1000000     9.3s h2
[ ]  443189       0       0  443189 / 1000000     9.4s h2
[ ]  448008       0       0  448008 / 1000000     9.5s h2
[ ]  452753       0       0  452753 / 1000000     9.6s h2
[ ]  457480       0       0  457480 / 1000000     9.7s h2
[ ]  462192       0       0  462192 / 1000000     9.8s h2
[ ]  467000       0       0  467000 / 1000000     9.9s h2
[ ]  471828       0       0  471828 / 1000000    10.0s h2 (collecting)
[ ]  476625       0       0  476625 / 1000000    10.1s h2
[ ]  481564       0       0  481564 / 1000000    10.2s h2
[ ]  485946       0       0  485946 / 1000000    10.3s h2 (collecting)
[ ]  490263       0       0  490263 / 1000000    10.4s h2 (collecting)
[ ]  494610       0       0  494610 / 1000000    10.5s h2
[ ]  499117       0       0  499117 / 1000000    10.6s h2
[ ]  503993       0       0  503993 / 1000000    10.7s h2
[ ]  508858       0       0  508858 / 1000000    10.8s h2
[ ]  513682       0       0  513682 / 1000000    10.9s h2
[ ]  518137       0       0  518137 / 1000000    11.0s h2
[ ]  522487       0       0  522487 / 1000000    11.1s h2
[ ]  527275       0       0  527275 / 1000000    11.2s h2
[ ]  532130       0       0  532130 / 1000000    11.3s h2
[ ]  536976       0       0  536976 / 1000000    11.4s h2
[ ]  541827       0       0  541827 / 1000000    11.5s h2
[ ]  546696       0       0  546696 / 1000000    11.6s h2
[ ]  551474       0       0  551474 / 1000000    11.7s h2
[ ]  556456       0       0  556456 / 1000000    11.8s h2
[ ]  561293       0       0  561293 / 1000000    11.9s h2
[ ]  566175       0       0  566175 / 1000000    12.0s h2
[ ]  571024       0       0  571024 / 1000000    12.1s h2
[ ]  575882       0       0  575882 / 1000000    12.2s h2
[ ]  580760       0       0  580760 / 1000000    12.3s h2
[ ]  585792       0       0  585792 / 1000000    12.4s h2
[ ]  590489       0       0  590489 / 1000000    12.5s h2
[ ]  595188       0       0  595188 / 1000000    12.6s h2
[ ]  599912       0       0  599912 / 1000000    12.7s h2
[ ]  604622       0       0  604622 / 1000000    12.8s h2
[ ]  609326       0       0  609326 / 1000000    12.9s h2
[ ]  614018       0       0  614018 / 1000000    13.0s h2
[ ]  618734       0       0  618734 / 1000000    13.1s h2
[ ]  623391       0       0  623391 / 1000000    13.2s h2
[ ]  628263       0       0  628263 / 1000000    13.3s h2
[ ]  633139       0       0  633139 / 1000000    13.4s h2
[ ]  637800       0       0  637800 / 1000000    13.5s h2
[ ]  642535       0       0  642535 / 1000000    13.6s h2
[ ]  647200       0       0  647200 / 1000000    13.7s h2
[ ]  651806       0       0  651806 / 1000000    13.8s h2
[ ]  656621       0       0  656621 / 1000000    13.9s h2
[ ]  661361       0       0  661361 / 1000000    14.0s h2
[ ]  666084       0       0  666084 / 1000000    14.1s h2
[ ]  670824       0       0  670824 / 1000000    14.2s h2
[ ]  675771       0       0  675771 / 1000000    14.3s h2
[ ]  680387       0       0  680387 / 1000000    14.4s h2
[ ]  685366       0       0  685366 / 1000000    14.5s h2
[ ]  690219       0       0  690219 / 1000000    14.6s h2
[ ]  695150       0       0  695150 / 1000000    14.7s h2
[ ]  699985       0       0  699985 / 1000000    14.8s h2
[ ]  704681       0       0  704681 / 1000000    14.9s h2
[ ]  709314       0       0  709314 / 1000000    15.0s h2
[ ]  714090       0       0  714090 / 1000000    15.1s h2
[ ]  718938       0       0  718938 / 1000000    15.2s h2
[ ]  723742       0       0  723742 / 1000000    15.3s h2
[ ]  728591       0       0  728591 / 1000000    15.4s h2
[ ]  733480       0       0  733480 / 1000000    15.5s h2
[ ]  738205       0       0  738205 / 1000000    15.6s h2
[ ]  743100       0       0  743100 / 1000000    15.7s h2
[ ]  748084       0       0  748084 / 1000000    15.8s h2
[ ]  753101       0       0  753101 / 1000000    15.9s h2
[ ]  757974       0       0  757974 / 1000000    16.0s h2
[ ]  762644       0       0  762644 / 1000000    16.1s h2
[ ]  767779       0       0  767779 / 1000000    16.2s h2
[ ]  772548       0       0  772548 / 1000000    16.3s h2
[ ]  777222       0       0  777222 / 1000000    16.4s h2
[ ]  782052       0       0  782052 / 1000000    16.5s h2
[ ]  786898       0       0  786898 / 1000000    16.6s h2
[ ]  791759       0       0  791759 / 1000000    16.7s h2
[ ]  796670       0       0  796670 / 1000000    16.8s h2
[ ]  801408       0       0  801408 / 1000000    16.9s h2
[ ]  806240       0       0  806240 / 1000000    17.0s h2
[ ]  811137       0       0  811137 / 1000000    17.1s h2
[ ]  815965       0       0  815965 / 1000000    17.2s h2
[ ]  820767       0       0  820767 / 1000000    17.3s h2
[ ]  825763       0       0  825763 / 1000000    17.4s h2
[ ]  830635       0       0  830635 / 1000000    17.5s h2
[ ]  835511       0       0  835511 / 1000000    17.6s h2
[ ]  840361       0       0  840361 / 1000000    17.7s h2
[ ]  845198       0       0  845198 / 1000000    17.8s h2
[ ]  850029       0       0  850029 / 1000000    17.9s h2
[ ]  854824       0       0  854824 / 1000000    18.0s h2
[ ]  859718       0       0  859718 / 1000000    18.1s h2
[ ]  864586       0       0  864586 / 1000000    18.2s h2
[ ]  869421       0       0  869421 / 1000000    18.3s h2
[ ]  874257       0       0  874257 / 1000000    18.4s h2
[ ]  879105       0       0  879105 / 1000000    18.5s h2
[ ]  884038       0       0  884038 / 1000000    18.6s h2
[ ]  888908       0       0  888908 / 1000000    18.7s h2
[ ]  893902       0       0  893902 / 1000000    18.8s h2
[ ]  898845       0       0  898845 / 1000000    18.9s h2
[ ]  903728       0       0  903728 / 1000000    19.0s h2
[ ]  908690       0       0  908690 / 1000000    19.1s h2
[ ]  913598       0       0  913598 / 1000000    19.2s h2
[ ]  918538       0       0  918538 / 1000000    19.3s h2
[ ]  923365       0       0  923365 / 1000000    19.4s h2 (collecting)
[ ]  928227       0       0  928227 / 1000000    19.5s h2
[ ]  933066       0       0  933066 / 1000000    19.6s h2
[ ]  937912       0       0  937912 / 1000000    19.7s h2
[ ]  942705       0       0  942705 / 1000000    19.8s h2
[ ]  947592       0       0  947592 / 1000000    19.9s h2
[ ]  952481       0       0  952481 / 1000000    20.0s h2
[ ]  957410       0       0  957410 / 1000000    20.1s h2
[ ]  962189       0       0  962189 / 1000000    20.2s h2
[ ]  966943       0       0  966943 / 1000000    20.3s h2
[ ]  971683       0       0  971683 / 1000000    20.4s h2
[ ]  976555       0       0  976555 / 1000000    20.5s h2 (   testing)
[ ]  981394       0       0  981394 / 1000000    20.6s h2
[ ]  986235       0       0  986235 / 1000000    20.7s h2
[ ]  990784       0       0  990784 / 1000000    20.8s h2
[ ]  995333       0       0  995333 / 1000000    20.9s h2
[ ]  999909       0       0  999909 / 1000000    21.0s h2
[✓] 1000000       0       0 1000000 / 1000000    21.0s h2
- 
[ ]       0       0       0       0 / 1000000     0.0s h3
[ ]    9274       0       0    9274 / 1000000     0.1s h3
[ ]   18340       0       0   18340 / 1000000     0.2s h3
[ ]   27632       0       0   27632 / 1000000     0.3s h3
[ ]   36845       0       0   36845 / 1000000     0.4s h3
[ ]   45962       0       0   45962 / 1000000     0.5s h3
[ ]   55178       0       0   55178 / 1000000     0.6s h3
[ ]   64390       0       0   64390 / 1000000     0.7s h3
[ ]   73801       0       0   73801 / 1000000     0.8s h3
[ ]   83038       0       0   83038 / 1000000     0.9s h3
[ ]   92237       0       0   92237 / 1000000     1.0s h3
[ ]  102021       0       0  102021 / 1000000     1.1s h3
[ ]  111524       0       0  111524 / 1000000     1.2s h3
[ ]  120283       0       0  120283 / 1000000     1.3s h3
[ ]  127427       0       0  127427 / 1000000     1.4s h3
[ ]  133832       0       0  133832 / 1000000     1.5s h3
[ ]  140603       0       0  140603 / 1000000     1.6s h3
[ ]  150000       0       0  150000 / 1000000     1.7s h3
[ ]  159281       0       0  159281 / 1000000     1.8s h3
[ ]  168490       0       0  168490 / 1000000     1.9s h3
[ ]  177768       0       0  177768 / 1000000     2.0s h3
[ ]  186838       0       0  186838 / 1000000     2.1s h3
[ ]  196118       0       0  196118 / 1000000     2.2s h3
[ ]  205458       0       0  205458 / 1000000     2.3s h3
[ ]  214798       0       0  214798 / 1000000     2.4s h3
[ ]  224370       0       0  224370 / 1000000     2.5s h3 (collecting)
[ ]  233622       0       0  233622 / 1000000     2.6s h3
[ ]  242929       0       0  242929 / 1000000     2.7s h3
[ ]  252576       0       0  252576 / 1000000     2.8s h3
[ ]  261873       0       0  261873 / 1000000     2.9s h3
[ ]  271255       0       0  271255 / 1000000     3.0s h3
[ ]  280734       0       0  280734 / 1000000     3.1s h3
[ ]  290522       0       0  290522 / 1000000     3.2s h3 (collecting)
[ ]  299401       0       0  299401 / 1000000     3.3s h3
[ ]  309332       0       0  309332 / 1000000     3.4s h3
[ ]  319015       0       0  319015 / 1000000     3.5s h3
[ ]  327947       0       0  327947 / 1000000     3.6s h3
[ ]  337331       0       0  337331 / 1000000     3.7s h3
[ ]  346347       0       0  346347 / 1000000     3.8s h3
[ ]  355690       0       0  355690 / 1000000     3.9s h3
[ ]  365029       0       0  365029 / 1000000     4.0s h3
[ ]  374456       0       0  374456 / 1000000     4.1s h3
[ ]  383942       0       0  383942 / 1000000     4.2s h3
[ ]  393409       0       0  393409 / 1000000     4.3s h3
[ ]  402874       0       0  402874 / 1000000     4.4s h3
[ ]  412285       0       0  412285 / 1000000     4.5s h3
[ ]  421750       0       0  421750 / 1000000     4.6s h3
[ ]  432441       0       0  432441 / 1000000     4.7s h3
[ ]  444210       0       0  444210 / 1000000     4.8s h3
[ ]  457844       0       0  457844 / 1000000     4.9s h3
[ ]  467571       0       0  467571 / 1000000     5.0s h3
[ ]  478427       0       0  478427 / 1000000     5.1s h3
[ ]  487433       0       0  487433 / 1000000     5.2s h3
[ ]  496839       0       0  496839 / 1000000     5.3s h3
[ ]  506285       0       0  506285 / 1000000     5.4s h3
[ ]  515616       0       0  515616 / 1000000     5.5s h3
[ ]  525105       0       0  525105 / 1000000     5.6s h3
[ ]  534475       0       0  534475 / 1000000     5.7s h3
[ ]  543770       0       0  543770 / 1000000     5.8s h3
[ ]  553249       0       0  553249 / 1000000     5.9s h3
[ ]  563054       0       0  563054 / 1000000     6.0s h3
[ ]  572759       0       0  572759 / 1000000     6.1s h3
[ ]  582602       0       0  582602 / 1000000     6.2s h3
[ ]  592656       0       0  592656 / 1000000     6.3s h3
[ ]  602691       0       0  602691 / 1000000     6.4s h3
[ ]  612350       0       0  612350 / 1000000     6.5s h3
[ ]  621865       0       0  621865 / 1000000     6.6s h3
[ ]  631623       0       0  631623 / 1000000     6.7s h3
[ ]  641560       0       0  641560 / 1000000     6.8s h3
[ ]  651143       0       0  651143 / 1000000     6.9s h3
[ ]  660797       0       0  660797 / 1000000     7.0s h3
[ ]  670478       0       0  670478 / 1000000     7.1s h3
[ ]  680311       0       0  680311 / 1000000     7.2s h3 (collecting)
[ ]  689625       0       0  689625 / 1000000     7.3s h3
[ ]  698900       0       0  698900 / 1000000     7.4s h3
[ ]  708376       0       0  708376 / 1000000     7.5s h3
[ ]  717751       0       0  717751 / 1000000     7.6s h3
[ ]  726778       0       0  726778 / 1000000     7.7s h3
[ ]  736854       0       0  736854 / 1000000     7.8s h3
[ ]  746791       0       0  746791 / 1000000     7.9s h3
[ ]  756258       0       0  756258 / 1000000     8.0s h3 (collecting)
[ ]  767153       0       0  767153 / 1000000     8.1s h3
[ ]  776249       0       0  776249 / 1000000     8.2s h3
[ ]  788269       0       0  788269 / 1000000     8.3s h3
[ ]  798054       0       0  798054 / 1000000     8.4s h3
[ ]  808523       0       0  808523 / 1000000     8.5s h3
[ ]  818294       0       0  818294 / 1000000     8.6s h3
[ ]  827696       0       0  827696 / 1000000     8.7s h3
[ ]  837168       0       0  837168 / 1000000     8.8s h3
[ ]  846537       0       0  846537 / 1000000     8.9s h3
[ ]  856007       0       0  856007 / 1000000     9.0s h3
[ ]  866207       0       0  866207 / 1000000     9.1s h3
[ ]  875021       0       0  875021 / 1000000     9.2s h3
[ ]  884119       0       0  884119 / 1000000     9.3s h3
[ ]  893995       0       0  893995 / 1000000     9.4s h3
[ ]  903369       0       0  903369 / 1000000     9.5s h3
[ ]  912874       0       0  912874 / 1000000     9.6s h3
[ ]  922123       0       0  922123 / 1000000     9.7s h3
[ ]  931025       0       0  931025 / 1000000     9.8s h3
[ ]  940555       0       0  940555 / 1000000     9.9s h3
[ ]  950055       0       0  950055 / 1000000    10.0s h3
[ ]  959457       0       0  959457 / 1000000    10.1s h3
[ ]  968933       0       0  968933 / 1000000    10.2s h3
[ ]  978268       0       0  978268 / 1000000    10.3s h3 (collecting)
[ ]  987977       0       0  987977 / 1000000    10.4s h3
[ ]  997665       0       0  997665 / 1000000    10.5s h3
[✓] 1000000       0       0 1000000 / 1000000    10.5s h3
- 
[ ]       0       0       0       0 / 1000000     0.0s h4
[ ]    3271       0       0    3271 / 1000000     0.1s h4
[ ]    6531       0       0    6531 / 1000000     0.2s h4
[ ]    9686       0       0    9686 / 1000000     0.3s h4
[ ]   13015       0       0   13015 / 1000000     0.4s h4
[ ]   16346       0       0   16346 / 1000000     0.5s h4
[ ]   19632       0       0   19632 / 1000000     0.6s h4
[ ]   23048       0       0   23048 / 1000000     0.7s h4
[ ]   26386       0       0   26386 / 1000000     0.8s h4
[ ]   29793       0       0   29793 / 1000000     0.9s h4
[ ]   33214       0       0   33214 / 1000000     1.0s h4
[ ]   36588       0       0   36588 / 1000000     1.1s h4
[ ]   40020       0       0   40020 / 1000000     1.2s h4
[ ]   43246       0       0   43246 / 1000000     1.3s h4
[ ]   46605       0       0   46605 / 1000000     1.4s h4
[ ]   50020       0       0   50020 / 1000000     1.5s h4
[ ]   53166       0       0   53166 / 1000000     1.6s h4
[ ]   56501       0       0   56501 / 1000000     1.7s h4
[ ]   59778       0       0   59778 / 1000000     1.8s h4
[ ]   63074       0       0   63074 / 1000000     1.9s h4
[ ]   66420       0       0   66420 / 1000000     2.0s h4
[ ]   69699       0       0   69699 / 1000000     2.1s h4
[ ]   72977       0       0   72977 / 1000000     2.2s h4
[ ]   76236       0       0   76236 / 1000000     2.3s h4
[ ]   79569       0       0   79569 / 1000000     2.4s h4
[ ]   82782       0       0   82782 / 1000000     2.5s h4
[ ]   85978       0       0   85978 / 1000000     2.6s h4
[ ]   89298       0       0   89298 / 1000000     2.7s h4
[ ]   92717       0       0   92717 / 1000000     2.8s h4
[ ]   96151       0       0   96151 / 1000000     2.9s h4
[ ]   99603       0       0   99603 / 1000000     3.0s h4 (   testing)
[ ]  102833       0       0  102833 / 1000000     3.1s h4
[ ]  106097       0       0  106097 / 1000000     3.2s h4
[ ]  109356       0       0  109356 / 1000000     3.3s h4
[ ]  112620       0       0  112620 / 1000000     3.4s h4
[ ]  116030       0       0  116030 / 1000000     3.5s h4
[ ]  119318       0       0  119318 / 1000000     3.6s h4
[ ]  122669       0       0  122669 / 1000000     3.7s h4
[ ]  125989       0       0  125989 / 1000000     3.8s h4
[ ]  129276       0       0  129276 / 1000000     3.9s h4
[ ]  132512       0       0  132512 / 1000000     4.0s h4
[ ]  135771       0       0  135771 / 1000000     4.1s h4
[ ]  139083       0       0  139083 / 1000000     4.2s h4
[ ]  142427       0       0  142427 / 1000000     4.3s h4
[ ]  145768       0       0  145768 / 1000000     4.4s h4
[ ]  149194       0       0  149194 / 1000000     4.5s h4
[ ]  152703       0       0  152703 / 1000000     4.6s h4
[ ]  156126       0       0  156126 / 1000000     4.7s h4
[ ]  160082       0       0  160082 / 1000000     4.8s h4
[ ]  163741       0       0  163741 / 1000000     4.9s h4 (collecting)
[ ]  167861       0       0  167861 / 1000000     5.0s h4
[ ]  171483       0       0  171483 / 1000000     5.1s h4
[ ]  174880       0       0  174880 / 1000000     5.2s h4
[ ]  178373       0       0  178373 / 1000000     5.3s h4
[ ]  181893       0       0  181893 / 1000000     5.4s h4
[ ]  184948       0       0  184948 / 1000000     5.5s h4
[ ]  188022       0       0  188022 / 1000000     5.6s h4
[ ]  191247       0       0  191247 / 1000000     5.7s h4
[ ]  194665       0       0  194665 / 1000000     5.8s h4
[ ]  199109       0       0  199109 / 1000000     5.9s h4 (collecting)
[ ]  202432       0       0  202432 / 1000000     6.0s h4
[ ]  206030       0       0  206030 / 1000000     6.1s h4 (generating)
[ ]  209275       0       0  209275 / 1000000     6.2s h4
[ ]  212499       0       0  212499 / 1000000     6.3s h4
[ ]  215809       0       0  215809 / 1000000     6.4s h4
[ ]  219057       0       0  219057 / 1000000     6.5s h4
[ ]  222658       0       0  222658 / 1000000     6.6s h4
[ ]  226208       0       0  226208 / 1000000     6.7s h4
[ ]  230674       0       0  230674 / 1000000     6.8s h4
[ ]  234602       0       0  234602 / 1000000     6.9s h4
[ ]  238560       0       0  238560 / 1000000     7.0s h4
[ ]  242839       0       0  242839 / 1000000     7.1s h4
[ ]  246378       0       0  246378 / 1000000     7.2s h4
[ ]  250943       0       0  250943 / 1000000     7.3s h4
[ ]  256220       0       0  256220 / 1000000     7.4s h4
[ ]  260246       0       0  260246 / 1000000     7.5s h4
[ ]  263561       0       0  263561 / 1000000     7.6s h4
[ ]  266978       0       0  266978 / 1000000     7.7s h4
[ ]  270367       0       0  270367 / 1000000     7.8s h4
[ ]  273695       0       0  273695 / 1000000     7.9s h4
[ ]  277001       0       0  277001 / 1000000     8.0s h4
[ ]  280276       0       0  280276 / 1000000     8.1s h4
[ ]  283528       0       0  283528 / 1000000     8.2s h4
[ ]  286831       0       0  286831 / 1000000     8.3s h4
[ ]  290259       0       0  290259 / 1000000     8.4s h4
[ ]  293502       0       0  293502 / 1000000     8.5s h4
[ ]  296638       0       0  296638 / 1000000     8.6s h4
[ ]  299803       0       0  299803 / 1000000     8.7s h4
[ ]  302978       0       0  302978 / 1000000     8.8s h4
[ ]  306138       0       0  306138 / 1000000     8.9s h4
[ ]  309282       0       0  309282 / 1000000     9.0s h4
[ ]  312759       0       0  312759 / 1000000     9.1s h4
[ ]  316140       0       0  316140 / 1000000     9.2s h4
[ ]  319320       0       0  319320 / 1000000     9.3s h4
[ ]  322776       0       0  322776 / 1000000     9.4s h4
[ ]  326176       0       0  326176 / 1000000     9.5s h4
[ ]  329418       0       0  329418 / 1000000     9.6s h4
[ ]  333071       0       0  333071 / 1000000     9.7s h4
[ ]  336304       0       0  336304 / 1000000     9.8s h4
[ ]  339605       0       0  339605 / 1000000     9.9s h4
[ ]  342924       0       0  342924 / 1000000    10.0s h4
[ ]  346234       0       0  346234 / 1000000    10.1s h4
[ ]  349556       0       0  349556 / 1000000    10.2s h4
[ ]  352961       0       0  352961 / 1000000    10.3s h4
[ ]  356306       0       0  356306 / 1000000    10.4s h4
[ ]  359659       0       0  359659 / 1000000    10.5s h4
[ ]  363041       0       0  363041 / 1000000    10.6s h4
[ ]  366431       0       0  366431 / 1000000    10.7s h4
[ ]  369872       0       0  369872 / 1000000    10.8s h4
[ ]  373240       0       0  373240 / 1000000    10.9s h4
[ ]  376695       0       0  376695 / 1000000    11.0s h4
[ ]  380099       0       0  380099 / 1000000    11.1s h4
[ ]  383516       0       0  383516 / 1000000    11.2s h4
[ ]  386946       0       0  386946 / 1000000    11.3s h4
[ ]  390417       0       0  390417 / 1000000    11.4s h4
[ ]  393781       0       0  393781 / 1000000    11.5s h4
[ ]  397173       0       0  397173 / 1000000    11.6s h4
[ ]  400585       0       0  400585 / 1000000    11.7s h4
[ ]  403986       0       0  403986 / 1000000    11.8s h4
[ ]  409072       0       0  409072 / 1000000    11.9s h4
[ ]  412384       0       0  412384 / 1000000    12.0s h4
[ ]  416306       0       0  416306 / 1000000    12.1s h4
[ ]  419915       0       0  419915 / 1000000    12.2s h4
[ ]  423597       0       0  423597 / 1000000    12.3s h4
[ ]  427256       0       0  427256 / 1000000    12.4s h4
[ ]  431189       0       0  431189 / 1000000    12.5s h4
[ ]  435248       0       0  435248 / 1000000    12.6s h4
[ ]  438795       0       0  438795 / 1000000    12.7s h4
[ ]  442498       0       0  442498 / 1000000    12.8s h4
[ ]  446797       0       0  446797 / 1000000    12.9s h4
[ ]  450367       0       0  450367 / 1000000    13.0s h4
[ ]  454314       0       0  454314 / 1000000    13.1s h4
[ ]  457617       0       0  457617 / 1000000    13.2s h4
[ ]  461134       0       0  461134 / 1000000    13.3s h4
[ ]  464418       0       0  464418 / 1000000    13.4s h4
[ ]  467792       0       0  467792 / 1000000    13.5s h4
[ ]  471279       0       0  471279 / 1000000    13.6s h4
[ ]  475297       0       0  475297 / 1000000    13.7s h4
[ ]  478871       0       0  478871 / 1000000    13.8s h4
[ ]  482228       0       0  482228 / 1000000    13.9s h4
[ ]  485511       0       0  485511 / 1000000    14.0s h4
[ ]  488770       0       0  488770 / 1000000    14.1s h4
[ ]  492269       0       0  492269 / 1000000    14.2s h4
[ ]  495714       0       0  495714 / 1000000    14.3s h4
[ ]  499298       0       0  499298 / 1000000    14.4s h4
[ ]  502656       0       0  502656 / 1000000    14.5s h4
[ ]  505981       0       0  505981 / 1000000    14.6s h4
[ ]  509390       0       0  509390 / 1000000    14.7s h4
[ ]  512774       0       0  512774 / 1000000    14.8s h4
[ ]  516138       0       0  516138 / 1000000    14.9s h4
[ ]  519545       0       0  519545 / 1000000    15.0s h4
[ ]  522862       0       0  522862 / 1000000    15.1s h4
[ ]  526267       0       0  526267 / 1000000    15.2s h4
[ ]  529672       0       0  529672 / 1000000    15.3s h4
[ ]  533063       0       0  533063 / 1000000    15.4s h4
[ ]  536499       0       0  536499 / 1000000    15.5s h4
[ ]  539885       0       0  539885 / 1000000    15.6s h4
[ ]  543166       0       0  543166 / 1000000    15.7s h4
[ ]  546532       0       0  546532 / 1000000    15.8s h4
[ ]  549831       0       0  549831 / 1000000    15.9s h4
[ ]  553090       0       0  553090 / 1000000    16.0s h4
[ ]  556336       0       0  556336 / 1000000    16.1s h4
[ ]  559482       0       0  559482 / 1000000    16.2s h4
[ ]  562744       0       0  562744 / 1000000    16.3s h4
[ ]  566004       0       0  566004 / 1000000    16.4s h4
[ ]  569333       0       0  569333 / 1000000    16.5s h4
[ ]  572721       0       0  572721 / 1000000    16.6s h4
[ ]  576013       0       0  576013 / 1000000    16.7s h4
[ ]  579389       0       0  579389 / 1000000    16.8s h4
[ ]  582755       0       0  582755 / 1000000    16.9s h4
[ ]  586071       0       0  586071 / 1000000    17.0s h4
[ ]  589444       0       0  589444 / 1000000    17.1s h4
[ ]  592727       0       0  592727 / 1000000    17.2s h4
[ ]  596056       0       0  596056 / 1000000    17.3s h4
[ ]  599331       0       0  599331 / 1000000    17.4s h4
[ ]  602736       0       0  602736 / 1000000    17.5s h4
[ ]  606024       0       0  606024 / 1000000    17.6s h4
[ ]  609333       0       0  609333 / 1000000    17.7s h4
[ ]  613160       0       0  613160 / 1000000    17.8s h4
[ ]  616411       0       0  616411 / 1000000    17.9s h4
[ ]  619874       0       0  619874 / 1000000    18.0s h4
[ ]  623506       0       0  623506 / 1000000    18.1s h4
[ ]  626815       0       0  626815 / 1000000    18.2s h4
[ ]  630197       0       0  630197 / 1000000    18.3s h4
[ ]  633625       0       0  633625 / 1000000    18.4s h4
[ ]  636818       0       0  636818 / 1000000    18.5s h4
[ ]  640153       0       0  640153 / 1000000    18.6s h4
[ ]  643572       0       0  643572 / 1000000    18.7s h4
[ ]  647090       0       0  647090 / 1000000    18.8s h4
[ ]  650489       0       0  650489 / 1000000    18.9s h4
[ ]  653954       0       0  653954 / 1000000    19.0s h4
[ ]  657433       0       0  657433 / 1000000    19.1s h4
[ ]  660907       0       0  660907 / 1000000    19.2s h4
[ ]  664492       0       0  664492 / 1000000    19.3s h4
[ ]  668114       0       0  668114 / 1000000    19.4s h4
[ ]  671732       0       0  671732 / 1000000    19.5s h4
[ ]  675394       0       0  675394 / 1000000    19.6s h4
[ ]  678838       0       0  678838 / 1000000    19.7s h4
[ ]  682261       0       0  682261 / 1000000    19.8s h4
[ ]  685678       0       0  685678 / 1000000    19.9s h4
[ ]  689068       0       0  689068 / 1000000    20.0s h4
[ ]  692422       0       0  692422 / 1000000    20.1s h4
[ ]  695810       0       0  695810 / 1000000    20.2s h4
[ ]  699227       0       0  699227 / 1000000    20.3s h4
[ ]  702452       0       0  702452 / 1000000    20.4s h4
[ ]  705787       0       0  705787 / 1000000    20.5s h4 (collecting)
[ ]  709191       0       0  709191 / 1000000    20.6s h4
[ ]  712780       0       0  712780 / 1000000    20.7s h4
[ ]  716106       0       0  716106 / 1000000    20.8s h4
[ ]  719964       0       0  719964 / 1000000    20.9s h4
[ ]  723317       0       0  723317 / 1000000    21.0s h4
[ ]  726915       0       0  726915 / 1000000    21.1s h4
[ ]  730388       0       0  730388 / 1000000    21.2s h4
[ ]  733669       0       0  733669 / 1000000    21.3s h4
[ ]  737240       0       0  737240 / 1000000    21.4s h4
[ ]  740483       0       0  740483 / 1000000    21.5s h4
[ ]  744440       0       0  744440 / 1000000    21.6s h4
[ ]  747854       0       0  747854 / 1000000    21.7s h4
[ ]  751276       0       0  751276 / 1000000    21.8s h4
[ ]  754607       0       0  754607 / 1000000    21.9s h4
[ ]  757883       0       0  757883 / 1000000    22.0s h4
[ ]  761186       0       0  761186 / 1000000    22.1s h4
[ ]  764742       0       0  764742 / 1000000    22.2s h4
[ ]  768060       0       0  768060 / 1000000    22.3s h4
[ ]  771439       0       0  771439 / 1000000    22.4s h4
[ ]  774734       0       0  774734 / 1000000    22.5s h4
[ ]  778073       0       0  778073 / 1000000    22.6s h4
[ ]  781505       0       0  781505 / 1000000    22.7s h4
[ ]  784994       0       0  784994 / 1000000    22.8s h4
[ ]  788142       0       0  788142 / 1000000    22.9s h4
[ ]  791461       0       0  791461 / 1000000    23.0s h4
[ ]  794839       0       0  794839 / 1000000    23.1s h4
[ ]  798204       0       0  798204 / 1000000    23.2s h4
[ ]  801532       0       0  801532 / 1000000    23.3s h4
[ ]  804801       0       0  804801 / 1000000    23.4s h4
[ ]  808109       0       0  808109 / 1000000    23.5s h4
[ ]  811428       0       0  811428 / 1000000    23.6s h4
[ ]  814852       0       0  814852 / 1000000    23.7s h4
[ ]  818182       0       0  818182 / 1000000    23.8s h4
[ ]  821672       0       0  821672 / 1000000    23.9s h4
[ ]  825200       0       0  825200 / 1000000    24.0s h4
[ ]  828539       0       0  828539 / 1000000    24.1s h4
[ ]  831976       0       0  831976 / 1000000    24.2s h4
[ ]  835773       0       0  835773 / 1000000    24.3s h4
[ ]  839676       0       0  839676 / 1000000    24.4s h4
[ ]  843508       0       0  843508 / 1000000    24.5s h4
[ ]  847313       0       0  847313 / 1000000    24.6s h4
[ ]  851073       0       0  851073 / 1000000    24.7s h4
[ ]  855076       0       0  855076 / 1000000    24.8s h4
[ ]  858736       0       0  858736 / 1000000    24.9s h4
[ ]  862679       0       0  862679 / 1000000    25.0s h4
[ ]  866557       0       0  866557 / 1000000    25.1s h4
[ ]  870540       0       0  870540 / 1000000    25.2s h4
[ ]  874336       0       0  874336 / 1000000    25.3s h4
[ ]  878392       0       0  878392 / 1000000    25.4s h4
[ ]  881749       0       0  881749 / 1000000    25.5s h4
[ ]  885162       0       0  885162 / 1000000    25.6s h4
[ ]  888517       0       0  888517 / 1000000    25.7s h4
[ ]  891858       0       0  891858 / 1000000    25.8s h4
[ ]  895178       0       0  895178 / 1000000    25.9s h4
[ ]  898572       0       0  898572 / 1000000    26.0s h4
[ ]  901878       0       0  901878 / 1000000    26.1s h4
[ ]  905146       0       0  905146 / 1000000    26.2s h4
[ ]  909686       0       0  909686 / 1000000    26.3s h4
[ ]  912945       0       0  912945 / 1000000    26.4s h4
[ ]  916464       0       0  916464 / 1000000    26.5s h4
[ ]  919731       0       0  919731 / 1000000    26.6s h4
[ ]  923076       0       0  923076 / 1000000    26.7s h4
[ ]  926352       0       0  926352 / 1000000    26.8s h4
[ ]  929735       0       0  929735 / 1000000    26.9s h4
[ ]  933086       0       0  933086 / 1000000    27.0s h4
[ ]  936364       0       0  936364 / 1000000    27.1s h4
[ ]  939661       0       0  939661 / 1000000    27.2s h4
[ ]  943028       0       0  943028 / 1000000    27.3s h4
[ ]  947039       0       0  947039 / 1000000    27.4s h4
[ ]  950606       0       0  950606 / 1000000    27.5s h4
[ ]  954484       0       0  954484 / 1000000    27.6s h4
[ ]  957874       0       0  957874 / 1000000    27.7s h4
[ ]  961280       0       0  961280 / 1000000    27.8s h4
[ ]  965267       0       0  965267 / 1000000    27.9s h4
[ ]  968609       0       0  968609 / 1000000    28.0s h4
[ ]  972246       0       0  972246 / 1000000    28.1s h4
[ ]  975656       0       0  975656 / 1000000    28.2s h4
[ ]  979849       0       0  979849 / 1000000    28.3s h4
[ ]  983431       0       0  983431 / 1000000    28.4s h4
[ ]  987252       0       0  987252 / 1000000    28.5s h4
[ ]  990702       0       0  990702 / 1000000    28.6s h4
[ ]  994553       0       0  994553 / 1000000    28.7s h4
[ ]  997891       0       0  997891 / 1000000    28.8s h4
[✓] 1000000       0       0 1000000 / 1000000    28.9s h4
- ================================================================================
- success (ran 6 tests)
-> compiled  dates_calc.0.0.5
-> removed   dates_calc.0.0.5
-> installed dates_calc.0.0.5
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 17:29.53 ---> saved as "f509f40d7363805085045a1f04275b20a6911771c0d1874ff1a5b2b1e2346e6d"
Job succeeded
2026-03-25 17:30.18: Job succeeded