(not at the head of any monitored branch or PR)
2026-04-10 17:47.56: New job: test dates_calc.0.0.5 with dune.3.22.2, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29704/head (3e0c395e7b1393a792367f8edca3654dac71e6fd)
                              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/29704/head" && git reset --hard 3e0c395e
git fetch origin master
git merge --no-edit 9d8ceab8e9f49f5671cf459997c8a47cf0e675ca
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:a32e708a4134e2a41db640ce8876b2475794c7cd5c0ce822b17aeaf65592bf03
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 dune.3.22.2 3.22.2
RUN opam reinstall dune.3.22.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" != 'dune.3.22.2' && 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-04-10 17:47.56: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:a32e708a4134e2a41db640ce8876b2475794c7cd5c0ce822b17aeaf65592bf03-dune.3.22.2-dates_calc.0.0.5-3e0c395e7b1393a792367f8edca3654dac71e6fd"
2026-04-10 17:47.56: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:a32e708a4134e2a41db640ce8876b2475794c7cd5c0ce822b17aeaf65592bf03)
 (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 dune.3.22.2 3.22.2"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dune.3.22.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\" != 'dune.3.22.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 (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-04-10 17:47.56: Waiting for resource in pool OCluster
2026-04-11 01:37.40: Waiting for worker…
2026-04-11 01:39.45: Got resource from pool OCluster
Building on bremusa.ocamllabs.io
All commits already cached
Updating files:  85% (15940/18686)
Updating files:  86% (16070/18686)
Updating files:  87% (16257/18686)
Updating files:  88% (16444/18686)
Updating files:  89% (16631/18686)
Updating files:  90% (16818/18686)
Updating files:  91% (17005/18686)
Updating files:  92% (17192/18686)
Updating files:  93% (17378/18686)
Updating files:  94% (17565/18686)
Updating files:  95% (17752/18686)
Updating files:  96% (17939/18686)
Updating files:  97% (18126/18686)
Updating files:  98% (18313/18686)
Updating files:  99% (18500/18686)
Updating files: 100% (18686/18686)
Updating files: 100% (18686/18686), done.
HEAD is now at 9d8ceab8e9 Merge pull request #29697 from filipeom/opam-publish-smtml.0.25.0
Updating 9d8ceab8e9..3e0c395e7b
Fast-forward
 packages/chrome-trace/chrome-trace.3.22.2/opam     | 39 +++++++++++
 .../dune-action-plugin.3.22.2/opam                 | 52 +++++++++++++++
 .../dune-action-trace.3.22.2/opam                  | 39 +++++++++++
 .../dune-build-info/dune-build-info.3.22.2/opam    | 45 +++++++++++++
 .../dune-configurator.3.22.2/opam                  | 49 ++++++++++++++
 packages/dune-glob/dune-glob.3.22.2/opam           | 42 ++++++++++++
 .../dune-private-libs.3.22.2/opam                  | 50 +++++++++++++++
 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam     | 41 ++++++++++++
 packages/dune-rpc/dune-rpc.3.22.2/opam             | 44 +++++++++++++
 packages/dune-site/dune-site.3.22.2/opam           | 37 +++++++++++
 packages/dune/dune.3.22.2/opam                     | 75 ++++++++++++++++++++++
 packages/dyn/dyn.3.22.2/opam                       | 40 ++++++++++++
 packages/fs-io/fs-io.3.22.2/opam                   | 39 +++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam         | 43 +++++++++++++
 packages/ordering/ordering.3.22.2/opam             | 38 +++++++++++
 packages/stdune/stdune.3.22.2/opam                 | 46 +++++++++++++
 packages/top-closure/top-closure.3.22.2/opam       | 38 +++++++++++
 packages/xdg/xdg.3.22.2/opam                       | 39 +++++++++++
 18 files changed, 796 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.22.2/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.2/opam
 create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.2/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.22.2/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.22.2/opam
 create mode 100644 packages/dune-glob/dune-glob.3.22.2/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.2/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.22.2/opam
 create mode 100644 packages/dune-site/dune-site.3.22.2/opam
 create mode 100644 packages/dune/dune.3.22.2/opam
 create mode 100644 packages/dyn/dyn.3.22.2/opam
 create mode 100644 packages/fs-io/fs-io.3.22.2/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam
 create mode 100644 packages/ordering/ordering.3.22.2/opam
 create mode 100644 packages/stdune/stdune.3.22.2/opam
 create mode 100644 packages/top-closure/top-closure.3.22.2/opam
 create mode 100644 packages/xdg/xdg.3.22.2/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:a32e708a4134e2a41db640ce8876b2475794c7cd5c0ce822b17aeaf65592bf03)
2026-04-11 01:39.47 ---> using "4e852d2e6c9ac39a43c0cb8d1ef92ecff46d16da630bff560bb4811e0bb278c3" 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-04-11 01:39.47 ---> using "c82a131037ae9ff29ac79f02306f126bd36264ccb683d2324f553289b0d4a496" 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-04-11 01:39.47 ---> using "983e4dc58d26f7046c0fe6fbe642bc66995d2abecd6409a14b0c538d3f1a7bd2" 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.1"}]
# compiler-packages    ocaml-base-compiler.5.4.1, ocaml-compiler.5.4.1, 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.1
2026-04-11 01:39.47 ---> using "8b346866360ce3a934df95a88d3a1520ccbf589f659a7e26aa97be0b96b1083a" 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-04-11 01:39.47 ---> using "8be7be6786c965fdad4454d936ba98cc5fa516f8de8fee90f280618661533faa" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-11 01:39.49 ---> using "c0553ba1781e82471f38f012874b6b7341f662c325cc75285bfd7972f7a6ff87" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-11 01:39.49 ---> using "e05b19873f9cb2918bf114246a81e8bf23cb51c80d627ed2b044915e44a942dd" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- 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-security trixie-security/main amd64 Packages [121 kB]
- Fetched 211 kB in 0s (1725 kB/s)
- Reading package lists...
- 
2026-04-11 01:39.49 ---> using "dc69cd977951bdc4dffcc68622bf3ea65b4d02db568ca1f8bd5ab395f414a24f" from cache

/home/opam: (run (shell "opam pin add -k version -yn dune.3.22.2 3.22.2"))
dune is now pinned to version 3.22.2
2026-04-11 01:39.49 ---> using "d2dbab2e673d61aa25772ad855c91b371a83246b8bcc8859d8fc280f9fcf9826" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dune.3.22.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\" != 'dune.3.22.2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
dune.3.22.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
  - install dune 3.22.2 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.2  (cached)
-> installed dune.3.22.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 01:39.49 ---> using "6f94ccb4a18327fa9742ec042c4183209005d455af95ec03af9e9453c8a8c9d1" 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 1 package
  - install dates_calc 0.0.5

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dates_calc.0.0.5  (https://opam.ocaml.org/cache)
-> installed dates_calc.0.0.5
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 01:39.56 ---> saved as "07a83902b2ae678a5754359ffa9e74c375eb1ac127759cfce8028eb9bbbdc8e1"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1  (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5  (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.0  (https://opam.ocaml.org/cache)
-> retrieved dates_calc.0.0.5  (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0  (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0  (https://opam.ocaml.org/cache)
-> retrieved ocamlbuild.0.16.1  (https://opam.ocaml.org/cache)
-> retrieved ocamlfind.1.9.8  (https://opam.ocaml.org/cache)
-> retrieved ounit2.2.2.7  (https://opam.ocaml.org/cache)
-> retrieved qcheck.0.91, qcheck-core.0.91, qcheck-ounit.0.91  (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> retrieved seq.base  (2 extra sources)
-> retrieved seq.base  (2 extra sources)
-> installed seq.base
-> retrieved stdlib-shims.0.3.0  (https://opam.ocaml.org/cache)
-> retrieved topkg.1.1.1  (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> installed ocaml-syntax-shims.1.0.0
-> installed re.1.14.0
-> installed 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-04-11 01:41.47 ---> saved as "8246702045fccf36f6455bc6b8787b9c45eb85c612b6cfce0f1a7894e2c87c1e"

/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 `6JYMWLWQ'.
- 
-   [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.012s. 3 tests run.
- (cd _build/default/test && ./prop.exe)
- 
random seed: 94008970
-   generated   error    fail    pass /   total     time test name
- 
[ ]       0       0       0       0 /    1000     0.0s anon_test_1
[ ]     232       0       0     232 /    1000     0.1s anon_test_1
[ ]     527       0       0     527 /    1000     0.2s anon_test_1
[ ]     799       0       0     799 /    1000     0.3s anon_test_1
[✓]    1000       0       0    1000 /    1000     0.4s anon_test_1
- 
[ ]       0       0       0       0 /    1000     0.0s anon_test_2
[ ]      13       0       0      13 /    1000     0.1s anon_test_2
[ ]      17       0       0      17 /    1000     0.2s anon_test_2
[ ]      31       0       0      31 /    1000     0.3s anon_test_2
[ ]      45       0       0      45 /    1000     0.4s anon_test_2
[ ]      54       0       0      54 /    1000     0.5s anon_test_2
[ ]      57       0       0      57 /    1000     0.7s anon_test_2
[ ]      66       0       0      66 /    1000     0.8s anon_test_2
[ ]      72       0       0      72 /    1000     0.9s anon_test_2
[ ]      78       0       0      78 /    1000     1.1s anon_test_2
[ ]      82       0       0      82 /    1000     1.2s anon_test_2
[ ]      88       0       0      88 /    1000     1.3s anon_test_2
[ ]      92       0       0      92 /    1000     1.4s anon_test_2
[ ]      95       0       0      95 /    1000     1.6s anon_test_2
[ ]      96       0       0      96 /    1000     1.7s anon_test_2
[ ]      99       0       0      99 /    1000     1.8s anon_test_2
[ ]     100       0       0     100 /    1000     1.9s anon_test_2
[ ]     105       0       0     105 /    1000     2.0s anon_test_2
[ ]     109       0       0     109 /    1000     2.1s anon_test_2
[ ]     113       0       0     113 /    1000     2.2s anon_test_2
[ ]     119       0       0     119 /    1000     2.4s anon_test_2
[ ]     122       0       0     122 /    1000     2.5s anon_test_2
[ ]     130       0       0     130 /    1000     2.7s anon_test_2
[ ]     136       0       0     136 /    1000     2.8s anon_test_2
[ ]     140       0       0     140 /    1000     2.9s anon_test_2
[ ]     146       0       0     146 /    1000     3.1s anon_test_2
[ ]     150       0       0     150 /    1000     3.2s anon_test_2
[ ]     152       0       0     152 /    1000     3.3s anon_test_2
[ ]     155       0       0     155 /    1000     3.5s anon_test_2
[ ]     162       0       0     162 /    1000     3.6s anon_test_2
[ ]     170       0       0     170 /    1000     3.7s anon_test_2
[ ]     179       0       0     179 /    1000     3.8s anon_test_2
[ ]     190       0       0     190 /    1000     3.9s anon_test_2
[ ]     202       0       0     202 /    1000     4.0s anon_test_2
[ ]     221       0       0     221 /    1000     4.1s anon_test_2
[ ]     228       0       0     228 /    1000     4.2s anon_test_2
[ ]     249       0       0     249 /    1000     4.4s anon_test_2
[ ]     267       0       0     267 /    1000     4.5s anon_test_2
[ ]     282       0       0     282 /    1000     4.6s anon_test_2
[ ]     294       0       0     294 /    1000     4.7s anon_test_2
[ ]     300       0       0     300 /    1000     4.8s anon_test_2
[ ]     313       0       0     313 /    1000     4.9s anon_test_2
[ ]     324       0       0     324 /    1000     5.0s anon_test_2
[ ]     329       0       0     329 /    1000     5.1s anon_test_2
[ ]     342       0       0     342 /    1000     5.3s anon_test_2
[ ]     354       0       0     354 /    1000     5.4s anon_test_2
[ ]     366       0       0     366 /    1000     5.5s anon_test_2
[ ]     377       0       0     377 /    1000     5.6s anon_test_2
[ ]     395       0       0     395 /    1000     5.7s anon_test_2
[ ]     404       0       0     404 /    1000     5.8s anon_test_2
[ ]     416       0       0     416 /    1000     5.9s anon_test_2
[ ]     424       0       0     424 /    1000     6.0s anon_test_2
[ ]     435       0       0     435 /    1000     6.1s anon_test_2
[ ]     442       0       0     442 /    1000     6.2s anon_test_2
[ ]     453       0       0     453 /    1000     6.3s anon_test_2
[ ]     461       0       0     461 /    1000     6.5s anon_test_2
[ ]     479       0       0     479 /    1000     6.6s anon_test_2
[ ]     488       0       0     488 /    1000     6.7s anon_test_2
[ ]     504       0       0     504 /    1000     6.8s anon_test_2
[ ]     515       0       0     515 /    1000     6.9s anon_test_2
[ ]     531       0       0     531 /    1000     7.0s anon_test_2
[ ]     543       0       0     543 /    1000     7.1s anon_test_2
[ ]     554       0       0     554 /    1000     7.2s anon_test_2
[ ]     563       0       0     563 /    1000     7.3s anon_test_2
[ ]     569       0       0     569 /    1000     7.4s anon_test_2
[ ]     584       0       0     584 /    1000     7.5s anon_test_2
[ ]     597       0       0     597 /    1000     7.6s anon_test_2
[ ]     609       0       0     609 /    1000     7.8s anon_test_2
[ ]     619       0       0     619 /    1000     7.9s anon_test_2
[ ]     626       0       0     626 /    1000     8.0s anon_test_2
[ ]     635       0       0     635 /    1000     8.1s anon_test_2
[ ]     647       0       0     647 /    1000     8.2s anon_test_2
[ ]     660       0       0     660 /    1000     8.3s anon_test_2
[ ]     670       0       0     670 /    1000     8.4s anon_test_2
[ ]     681       0       0     681 /    1000     8.5s anon_test_2
[ ]     692       0       0     692 /    1000     8.6s anon_test_2
[ ]     699       0       0     699 /    1000     8.8s anon_test_2
[ ]     710       0       0     710 /    1000     8.9s anon_test_2
[ ]     716       0       0     716 /    1000     9.0s anon_test_2
[ ]     720       0       0     720 /    1000     9.1s anon_test_2
[ ]     729       0       0     729 /    1000     9.2s anon_test_2
[ ]     736       0       0     736 /    1000     9.3s anon_test_2
[ ]     746       0       0     746 /    1000     9.4s anon_test_2
[ ]     751       0       0     751 /    1000     9.6s anon_test_2
[ ]     762       0       0     762 /    1000     9.7s anon_test_2
[ ]     767       0       0     767 /    1000     9.8s anon_test_2
[ ]     773       0       0     773 /    1000    10.0s anon_test_2
[ ]     784       0       0     784 /    1000    10.1s anon_test_2
[ ]     788       0       0     788 /    1000    10.2s anon_test_2
[ ]     795       0       0     795 /    1000    10.3s anon_test_2
[ ]     801       0       0     801 /    1000    10.4s anon_test_2
[ ]     810       0       0     810 /    1000    10.5s anon_test_2
[ ]     827       0       0     827 /    1000    10.7s anon_test_2
[ ]     835       0       0     835 /    1000    10.8s anon_test_2
[ ]     845       0       0     845 /    1000    10.9s anon_test_2
[ ]     849       0       0     849 /    1000    11.0s anon_test_2
[ ]     859       0       0     859 /    1000    11.1s anon_test_2
[ ]     865       0       0     865 /    1000    11.3s anon_test_2
[ ]     874       0       0     874 /    1000    11.4s anon_test_2
[ ]     890       0       0     890 /    1000    11.5s anon_test_2
[ ]     911       0       0     911 /    1000    11.6s anon_test_2
[ ]     920       0       0     920 /    1000    11.7s anon_test_2
[ ]     932       0       0     932 /    1000    11.9s anon_test_2
[ ]     942       0       0     942 /    1000    12.0s anon_test_2
[ ]     951       0       0     951 /    1000    12.1s anon_test_2
[ ]     963       0       0     963 /    1000    12.2s anon_test_2
[ ]     982       0       0     982 /    1000    12.3s anon_test_2
[ ]     996       0       0     996 /    1000    12.4s anon_test_2
[✓]    1000       0       0    1000 /    1000    12.5s anon_test_2
- 
[ ]       0       0       0       0 / 1000000     0.0s h1
[ ]   12307       0       0   12307 / 1000000     0.1s h1
[ ]   26059       0       0   26059 / 1000000     0.2s h1
[ ]   36317       0       0   36317 / 1000000     0.3s h1
[ ]   46061       0       0   46061 / 1000000     0.4s h1 (collecting)
[ ]   55478       0       0   55478 / 1000000     0.5s h1
[ ]   66582       0       0   66582 / 1000000     0.6s h1 (collecting)
[ ]   77394       0       0   77394 / 1000000     0.7s h1
[ ]   87045       0       0   87045 / 1000000     0.8s h1
[ ]   98699       0       0   98699 / 1000000     0.9s h1
[ ]  108807       0       0  108807 / 1000000     1.0s h1
[ ]  120040       0       0  120040 / 1000000     1.1s h1
[ ]  129775       0       0  129775 / 1000000     1.2s h1
[ ]  143492       0       0  143492 / 1000000     1.3s h1
[ ]  155011       0       0  155011 / 1000000     1.4s h1
[ ]  165575       0       0  165575 / 1000000     1.5s h1
[ ]  176017       0       0  176017 / 1000000     1.6s h1
[ ]  187086       0       0  187086 / 1000000     1.7s h1
[ ]  199005       0       0  199005 / 1000000     1.8s h1
[ ]  209557       0       0  209557 / 1000000     1.9s h1
[ ]  219849       0       0  219849 / 1000000     2.0s h1
[ ]  228085       0       0  228085 / 1000000     2.1s h1
[ ]  237456       0       0  237456 / 1000000     2.2s h1
[ ]  246683       0       0  246683 / 1000000     2.3s h1
[ ]  256219       0       0  256219 / 1000000     2.4s h1
[ ]  265653       0       0  265653 / 1000000     2.5s h1
[ ]  275417       0       0  275417 / 1000000     2.6s h1
[ ]  284959       0       0  284959 / 1000000     2.7s h1
[ ]  294343       0       0  294343 / 1000000     2.8s h1 (generating)
[ ]  303470       0       0  303470 / 1000000     2.9s h1
[ ]  312772       0       0  312772 / 1000000     3.0s h1
[ ]  322065       0       0  322065 / 1000000     3.1s h1
[ ]  331587       0       0  331587 / 1000000     3.2s h1
[ ]  341145       0       0  341145 / 1000000     3.3s h1
[ ]  350139       0       0  350139 / 1000000     3.4s h1
[ ]  359082       0       0  359082 / 1000000     3.5s h1
[ ]  368771       0       0  368771 / 1000000     3.6s h1
[ ]  378142       0       0  378142 / 1000000     3.7s h1
[ ]  387640       0       0  387640 / 1000000     3.8s h1
[ ]  396753       0       0  396753 / 1000000     3.9s h1
[ ]  405711       0       0  405711 / 1000000     4.0s h1
[ ]  415958       0       0  415958 / 1000000     4.1s h1
[ ]  425202       0       0  425202 / 1000000     4.2s h1
[ ]  434168       0       0  434168 / 1000000     4.3s h1
[ ]  443147       0       0  443147 / 1000000     4.4s h1
[ ]  454809       0       0  454809 / 1000000     4.5s h1
[ ]  463860       0       0  463860 / 1000000     4.6s h1
[ ]  473329       0       0  473329 / 1000000     4.7s h1
[ ]  482862       0       0  482862 / 1000000     4.8s h1
[ ]  493516       0       0  493516 / 1000000     4.9s h1
[ ]  502700       0       0  502700 / 1000000     5.0s h1
[ ]  514857       0       0  514857 / 1000000     5.1s h1
[ ]  524086       0       0  524086 / 1000000     5.2s h1
[ ]  534849       0       0  534849 / 1000000     5.3s h1
[ ]  545566       0       0  545566 / 1000000     5.4s h1
[ ]  556270       0       0  556270 / 1000000     5.5s h1
[ ]  566799       0       0  566799 / 1000000     5.6s h1 (collecting)
[ ]  577456       0       0  577456 / 1000000     5.7s h1
[ ]  589370       0       0  589370 / 1000000     5.8s h1
[ ]  599042       0       0  599042 / 1000000     5.9s h1
[ ]  611783       0       0  611783 / 1000000     6.0s h1
[ ]  620946       0       0  620946 / 1000000     6.1s h1
[ ]  633535       0       0  633535 / 1000000     6.2s h1
[ ]  642802       0       0  642802 / 1000000     6.3s h1
[ ]  653144       0       0  653144 / 1000000     6.4s h1
[ ]  663008       0       0  663008 / 1000000     6.5s h1
[ ]  672380       0       0  672380 / 1000000     6.6s h1
[ ]  681796       0       0  681796 / 1000000     6.7s h1
[ ]  691479       0       0  691479 / 1000000     6.8s h1
[ ]  701878       0       0  701878 / 1000000     6.9s h1
[ ]  714579       0       0  714579 / 1000000     7.0s h1
[ ]  724578       0       0  724578 / 1000000     7.1s h1 (collecting)
[ ]  733622       0       0  733622 / 1000000     7.2s h1
[ ]  744719       0       0  744719 / 1000000     7.3s h1
[ ]  754198       0       0  754198 / 1000000     7.4s h1
[ ]  765202       0       0  765202 / 1000000     7.5s h1
[ ]  775224       0       0  775224 / 1000000     7.6s h1
[ ]  785758       0       0  785758 / 1000000     7.7s h1
[ ]  796043       0       0  796043 / 1000000     7.8s h1
[ ]  806298       0       0  806298 / 1000000     7.9s h1
[ ]  818052       0       0  818052 / 1000000     8.0s h1
[ ]  831661       0       0  831661 / 1000000     8.1s h1
[ ]  841108       0       0  841108 / 1000000     8.2s h1
[ ]  850523       0       0  850523 / 1000000     8.3s h1
[ ]  860466       0       0  860466 / 1000000     8.4s h1
[ ]  869837       0       0  869837 / 1000000     8.5s h1
[ ]  879375       0       0  879375 / 1000000     8.6s h1
[ ]  890205       0       0  890205 / 1000000     8.7s h1
[ ]  899256       0       0  899256 / 1000000     8.8s h1
[ ]  909857       0       0  909857 / 1000000     8.9s h1
[ ]  919381       0       0  919381 / 1000000     9.0s h1
[ ]  929162       0       0  929162 / 1000000     9.1s h1 (collecting)
[ ]  939961       0       0  939961 / 1000000     9.2s h1
[ ]  948719       0       0  948719 / 1000000     9.3s h1
[ ]  957639       0       0  957639 / 1000000     9.4s h1 (collecting)
[ ]  966481       0       0  966481 / 1000000     9.5s h1
[ ]  975157       0       0  975157 / 1000000     9.6s h1
[ ]  984127       0       0  984127 / 1000000     9.7s h1
[ ]  993119       0       0  993119 / 1000000     9.8s h1
[✓] 1000000       0       0 1000000 / 1000000     9.9s h1
- 
[ ]       0       0       0       0 / 1000000     0.0s h2
[ ]    4535       0       0    4535 / 1000000     0.1s h2
[ ]    9491       0       0    9491 / 1000000     0.2s h2
[ ]   14346       0       0   14346 / 1000000     0.3s h2
[ ]   19117       0       0   19117 / 1000000     0.4s h2
[ ]   23967       0       0   23967 / 1000000     0.5s h2
[ ]   28699       0       0   28699 / 1000000     0.6s h2
[ ]   33657       0       0   33657 / 1000000     0.7s h2
[ ]   38343       0       0   38343 / 1000000     0.8s h2
[ ]   43123       0       0   43123 / 1000000     0.9s h2
[ ]   47904       0       0   47904 / 1000000     1.0s h2
[ ]   52870       0       0   52870 / 1000000     1.1s h2
[ ]   57943       0       0   57943 / 1000000     1.2s h2
[ ]   62936       0       0   62936 / 1000000     1.3s h2
[ ]   67722       0       0   67722 / 1000000     1.4s h2
[ ]   72505       0       0   72505 / 1000000     1.5s h2
[ ]   77448       0       0   77448 / 1000000     1.6s h2
[ ]   82326       0       0   82326 / 1000000     1.7s h2
[ ]   87154       0       0   87154 / 1000000     1.8s h2
[ ]   92050       0       0   92050 / 1000000     1.9s h2
[ ]   96998       0       0   96998 / 1000000     2.0s h2
[ ]  101799       0       0  101799 / 1000000     2.1s h2 (collecting)
[ ]  106644       0       0  106644 / 1000000     2.2s h2
[ ]  111522       0       0  111522 / 1000000     2.3s h2
[ ]  116349       0       0  116349 / 1000000     2.4s h2
[ ]  121032       0       0  121032 / 1000000     2.5s h2
[ ]  125895       0       0  125895 / 1000000     2.6s h2
[ ]  130555       0       0  130555 / 1000000     2.7s h2
[ ]  135325       0       0  135325 / 1000000     2.8s h2
[ ]  140703       0       0  140703 / 1000000     2.9s h2
[ ]  145517       0       0  145517 / 1000000     3.0s h2
[ ]  150191       0       0  150191 / 1000000     3.1s h2
[ ]  155205       0       0  155205 / 1000000     3.2s h2
[ ]  160022       0       0  160022 / 1000000     3.3s h2
[ ]  164722       0       0  164722 / 1000000     3.4s h2
[ ]  169424       0       0  169424 / 1000000     3.5s h2
[ ]  174299       0       0  174299 / 1000000     3.6s h2
[ ]  179176       0       0  179176 / 1000000     3.7s h2
[ ]  184057       0       0  184057 / 1000000     3.8s h2
[ ]  189129       0       0  189129 / 1000000     3.9s h2
[ ]  194081       0       0  194081 / 1000000     4.0s h2
[ ]  199158       0       0  199158 / 1000000     4.1s h2
[ ]  204134       0       0  204134 / 1000000     4.2s h2
[ ]  208711       0       0  208711 / 1000000     4.3s h2
[ ]  213468       0       0  213468 / 1000000     4.4s h2
[ ]  218388       0       0  218388 / 1000000     4.5s h2
[ ]  223315       0       0  223315 / 1000000     4.6s h2
[ ]  228205       0       0  228205 / 1000000     4.7s h2
[ ]  233072       0       0  233072 / 1000000     4.8s h2
[ ]  237868       0       0  237868 / 1000000     4.9s h2
[ ]  243418       0       0  243418 / 1000000     5.0s h2
[ ]  247966       0       0  247966 / 1000000     5.1s h2
[ ]  252620       0       0  252620 / 1000000     5.2s h2
[ ]  258337       0       0  258337 / 1000000     5.3s h2
[ ]  263162       0       0  263162 / 1000000     5.4s h2
[ ]  268569       0       0  268569 / 1000000     5.5s h2
[ ]  274624       0       0  274624 / 1000000     5.6s h2
[ ]  279518       0       0  279518 / 1000000     5.7s h2
[ ]  284326       0       0  284326 / 1000000     5.8s h2 (collecting)
[ ]  289576       0       0  289576 / 1000000     5.9s h2
[ ]  294424       0       0  294424 / 1000000     6.0s h2
[ ]  299205       0       0  299205 / 1000000     6.1s h2
[ ]  304161       0       0  304161 / 1000000     6.2s h2
[ ]  308998       0       0  308998 / 1000000     6.3s h2
[ ]  313890       0       0  313890 / 1000000     6.4s h2
[ ]  318971       0       0  318971 / 1000000     6.5s h2
[ ]  323889       0       0  323889 / 1000000     6.6s h2
[ ]  329161       0       0  329161 / 1000000     6.7s h2
[ ]  334097       0       0  334097 / 1000000     6.8s h2
[ ]  338911       0       0  338911 / 1000000     6.9s h2
[ ]  343841       0       0  343841 / 1000000     7.0s h2
[ ]  348910       0       0  348910 / 1000000     7.1s h2
[ ]  353547       0       0  353547 / 1000000     7.2s h2
[ ]  358528       0       0  358528 / 1000000     7.3s h2
[ ]  363813       0       0  363813 / 1000000     7.4s h2
[ ]  368854       0       0  368854 / 1000000     7.5s h2
[ ]  373695       0       0  373695 / 1000000     7.6s h2
[ ]  379199       0       0  379199 / 1000000     7.7s h2 (collecting)
[ ]  384632       0       0  384632 / 1000000     7.8s h2
[ ]  389301       0       0  389301 / 1000000     7.9s h2
[ ]  395009       0       0  395009 / 1000000     8.0s h2
[ ]  399671       0       0  399671 / 1000000     8.1s h2
[ ]  404640       0       0  404640 / 1000000     8.2s h2 (collecting)
[ ]  409861       0       0  409861 / 1000000     8.3s h2
[ ]  414639       0       0  414639 / 1000000     8.4s h2
[ ]  420162       0       0  420162 / 1000000     8.5s h2
[ ]  424954       0       0  424954 / 1000000     8.6s h2
[ ]  429043       0       0  429043 / 1000000     8.7s h2
[ ]  433457       0       0  433457 / 1000000     8.8s h2
[ ]  438456       0       0  438456 / 1000000     8.9s h2
[ ]  443271       0       0  443271 / 1000000     9.0s h2
[ ]  447805       0       0  447805 / 1000000     9.1s h2
[ ]  452273       0       0  452273 / 1000000     9.2s h2
[ ]  456576       0       0  456576 / 1000000     9.3s h2
[ ]  460919       0       0  460919 / 1000000     9.4s h2
[ ]  465330       0       0  465330 / 1000000     9.5s h2
[ ]  469793       0       0  469793 / 1000000     9.6s h2
[ ]  474270       0       0  474270 / 1000000     9.7s h2
[ ]  478877       0       0  478877 / 1000000     9.8s h2
[ ]  484271       0       0  484271 / 1000000     9.9s h2
[ ]  489293       0       0  489293 / 1000000    10.0s h2
[ ]  494414       0       0  494414 / 1000000    10.1s h2
[ ]  499175       0       0  499175 / 1000000    10.2s h2
[ ]  503731       0       0  503731 / 1000000    10.3s h2
[ ]  508282       0       0  508282 / 1000000    10.4s h2
[ ]  513060       0       0  513060 / 1000000    10.5s h2
[ ]  517743       0       0  517743 / 1000000    10.6s h2
[ ]  522414       0       0  522414 / 1000000    10.7s h2
[ ]  527182       0       0  527182 / 1000000    10.8s h2
[ ]  531895       0       0  531895 / 1000000    10.9s h2
[ ]  536619       0       0  536619 / 1000000    11.0s h2
[ ]  541258       0       0  541258 / 1000000    11.1s h2
[ ]  546021       0       0  546021 / 1000000    11.2s h2 (generating)
[ ]  550916       0       0  550916 / 1000000    11.3s h2
[ ]  555472       0       0  555472 / 1000000    11.4s h2
[ ]  560084       0       0  560084 / 1000000    11.5s h2
[ ]  564992       0       0  564992 / 1000000    11.6s h2
[ ]  569692       0       0  569692 / 1000000    11.7s h2
[ ]  574340       0       0  574340 / 1000000    11.8s h2 (collecting)
[ ]  579276       0       0  579276 / 1000000    11.9s h2
[ ]  584279       0       0  584279 / 1000000    12.0s h2
[ ]  589463       0       0  589463 / 1000000    12.1s h2
[ ]  594432       0       0  594432 / 1000000    12.2s h2
[ ]  598902       0       0  598902 / 1000000    12.3s h2
[ ]  603652       0       0  603652 / 1000000    12.4s h2
[ ]  608793       0       0  608793 / 1000000    12.5s h2
[ ]  613466       0       0  613466 / 1000000    12.6s h2
[ ]  618079       0       0  618079 / 1000000    12.7s h2
[ ]  623294       0       0  623294 / 1000000    12.8s h2
[ ]  627875       0       0  627875 / 1000000    12.9s h2
[ ]  633112       0       0  633112 / 1000000    13.0s h2
[ ]  638001       0       0  638001 / 1000000    13.1s h2
[ ]  642655       0       0  642655 / 1000000    13.2s h2
[ ]  648881       0       0  648881 / 1000000    13.3s h2
[ ]  653899       0       0  653899 / 1000000    13.4s h2
[ ]  658684       0       0  658684 / 1000000    13.5s h2
[ ]  663485       0       0  663485 / 1000000    13.6s h2
[ ]  668516       0       0  668516 / 1000000    13.7s h2
[ ]  673721       0       0  673721 / 1000000    13.8s h2
[ ]  679239       0       0  679239 / 1000000    13.9s h2
[ ]  684218       0       0  684218 / 1000000    14.0s h2
[ ]  689359       0       0  689359 / 1000000    14.1s h2
[ ]  694451       0       0  694451 / 1000000    14.2s h2
[ ]  700190       0       0  700190 / 1000000    14.3s h2
[ ]  705069       0       0  705069 / 1000000    14.4s h2
[ ]  709776       0       0  709776 / 1000000    14.5s h2 (collecting)
[ ]  715272       0       0  715272 / 1000000    14.6s h2
[ ]  719698       0       0  719698 / 1000000    14.7s h2
[ ]  725594       0       0  725594 / 1000000    14.8s h2
[ ]  730113       0       0  730113 / 1000000    14.9s h2
[ ]  735340       0       0  735340 / 1000000    15.0s h2
[ ]  740136       0       0  740136 / 1000000    15.1s h2
[ ]  744682       0       0  744682 / 1000000    15.2s h2
[ ]  749131       0       0  749131 / 1000000    15.3s h2
[ ]  753746       0       0  753746 / 1000000    15.4s h2
[ ]  758642       0       0  758642 / 1000000    15.5s h2
[ ]  763880       0       0  763880 / 1000000    15.6s h2
[ ]  768482       0       0  768482 / 1000000    15.7s h2
[ ]  773504       0       0  773504 / 1000000    15.8s h2
[ ]  778517       0       0  778517 / 1000000    15.9s h2 (collecting)
[ ]  783595       0       0  783595 / 1000000    16.0s h2
[ ]  789121       0       0  789121 / 1000000    16.1s h2
[ ]  793643       0       0  793643 / 1000000    16.2s h2
[ ]  798620       0       0  798620 / 1000000    16.3s h2 (collecting)
[ ]  803372       0       0  803372 / 1000000    16.4s h2 (collecting)
[ ]  808352       0       0  808352 / 1000000    16.5s h2
[ ]  813852       0       0  813852 / 1000000    16.6s h2
[ ]  818692       0       0  818692 / 1000000    16.7s h2
[ ]  823812       0       0  823812 / 1000000    16.8s h2
[ ]  828832       0       0  828832 / 1000000    16.9s h2
[ ]  833710       0       0  833710 / 1000000    17.0s h2
[ ]  838760       0       0  838760 / 1000000    17.1s h2
[ ]  843895       0       0  843895 / 1000000    17.2s h2
[ ]  849517       0       0  849517 / 1000000    17.3s h2
[ ]  854954       0       0  854954 / 1000000    17.4s h2
[ ]  860478       0       0  860478 / 1000000    17.5s h2
[ ]  865364       0       0  865364 / 1000000    17.6s h2
[ ]  869802       0       0  869802 / 1000000    17.7s h2
[ ]  875131       0       0  875131 / 1000000    17.8s h2
[ ]  881174       0       0  881174 / 1000000    17.9s h2
[ ]  888608       0       0  888608 / 1000000    18.0s h2
[ ]  896402       0       0  896402 / 1000000    18.1s h2
[ ]  902493       0       0  902493 / 1000000    18.2s h2
[ ]  910085       0       0  910085 / 1000000    18.3s h2
[ ]  917649       0       0  917649 / 1000000    18.4s h2
[ ]  924125       0       0  924125 / 1000000    18.5s h2
[ ]  930617       0       0  930617 / 1000000    18.6s h2
[ ]  938067       0       0  938067 / 1000000    18.7s h2
[ ]  943888       0       0  943888 / 1000000    18.8s h2
[ ]  949648       0       0  949648 / 1000000    18.9s h2
[ ]  957077       0       0  957077 / 1000000    19.0s h2
[ ]  964341       0       0  964341 / 1000000    19.1s h2
[ ]  969889       0       0  969889 / 1000000    19.2s h2
[ ]  975146       0       0  975146 / 1000000    19.3s h2
[ ]  980788       0       0  980788 / 1000000    19.4s h2
[ ]  986484       0       0  986484 / 1000000    19.5s h2
[ ]  991400       0       0  991400 / 1000000    19.6s h2
[ ]  996484       0       0  996484 / 1000000    19.7s h2
[✓] 1000000       0       0 1000000 / 1000000    19.8s h2
- 
[ ]       0       0       0       0 / 1000000     0.0s h3
[ ]   10569       0       0   10569 / 1000000     0.1s h3
[ ]   22521       0       0   22521 / 1000000     0.2s h3
[ ]   32925       0       0   32925 / 1000000     0.3s h3
[ ]   44440       0       0   44440 / 1000000     0.4s h3
[ ]   54038       0       0   54038 / 1000000     0.5s h3
[ ]   63866       0       0   63866 / 1000000     0.6s h3
[ ]   73790       0       0   73790 / 1000000     0.7s h3 (generating)
[ ]   83618       0       0   83618 / 1000000     0.8s h3
[ ]   92957       0       0   92957 / 1000000     0.9s h3
[ ]  102162       0       0  102162 / 1000000     1.0s h3
[ ]  112617       0       0  112617 / 1000000     1.1s h3
[ ]  121669       0       0  121669 / 1000000     1.2s h3
[ ]  131815       0       0  131815 / 1000000     1.3s h3
[ ]  141032       0       0  141032 / 1000000     1.4s h3
[ ]  152023       0       0  152023 / 1000000     1.5s h3
[ ]  162902       0       0  162902 / 1000000     1.6s h3
[ ]  173254       0       0  173254 / 1000000     1.7s h3
[ ]  183271       0       0  183271 / 1000000     1.8s h3 (collecting)
[ ]  195473       0       0  195473 / 1000000     1.9s h3
[ ]  205587       0       0  205587 / 1000000     2.0s h3
[ ]  216763       0       0  216763 / 1000000     2.1s h3
[ ]  228346       0       0  228346 / 1000000     2.2s h3
[ ]  241837       0       0  241837 / 1000000     2.3s h3
[ ]  254693       0       0  254693 / 1000000     2.4s h3
[ ]  269339       0       0  269339 / 1000000     2.5s h3
[ ]  282458       0       0  282458 / 1000000     2.6s h3
[ ]  294133       0       0  294133 / 1000000     2.7s h3
[ ]  306164       0       0  306164 / 1000000     2.8s h3
[ ]  317995       0       0  317995 / 1000000     2.9s h3
[ ]  328002       0       0  328002 / 1000000     3.0s h3
[ ]  340542       0       0  340542 / 1000000     3.1s h3
[ ]  356731       0       0  356731 / 1000000     3.2s h3
[ ]  374063       0       0  374063 / 1000000     3.3s h3
[ ]  391410       0       0  391410 / 1000000     3.4s h3
[ ]  408643       0       0  408643 / 1000000     3.5s h3
[ ]  425768       0       0  425768 / 1000000     3.6s h3
[ ]  443043       0       0  443043 / 1000000     3.7s h3
[ ]  460367       0       0  460367 / 1000000     3.8s h3
[ ]  477458       0       0  477458 / 1000000     3.9s h3
[ ]  494726       0       0  494726 / 1000000     4.0s h3
[ ]  506508       0       0  506508 / 1000000     4.1s h3
[ ]  519894       0       0  519894 / 1000000     4.2s h3
[ ]  534939       0       0  534939 / 1000000     4.3s h3
[ ]  547747       0       0  547747 / 1000000     4.4s h3
[ ]  564621       0       0  564621 / 1000000     4.5s h3
[ ]  575761       0       0  575761 / 1000000     4.6s h3
[ ]  591961       0       0  591961 / 1000000     4.7s h3
[ ]  607886       0       0  607886 / 1000000     4.8s h3
[ ]  619657       0       0  619657 / 1000000     4.9s h3
[ ]  636147       0       0  636147 / 1000000     5.0s h3
[ ]  651777       0       0  651777 / 1000000     5.1s h3
[ ]  662933       0       0  662933 / 1000000     5.2s h3
[ ]  673657       0       0  673657 / 1000000     5.3s h3
[ ]  685105       0       0  685105 / 1000000     5.4s h3
[ ]  695394       0       0  695394 / 1000000     5.5s h3
[ ]  706158       0       0  706158 / 1000000     5.6s h3
[ ]  719436       0       0  719436 / 1000000     5.7s h3
[ ]  731641       0       0  731641 / 1000000     5.8s h3
[ ]  742332       0       0  742332 / 1000000     5.9s h3
[ ]  752219       0       0  752219 / 1000000     6.0s h3
[ ]  763010       0       0  763010 / 1000000     6.1s h3
[ ]  773470       0       0  773470 / 1000000     6.2s h3
[ ]  783017       0       0  783017 / 1000000     6.3s h3
[ ]  793816       0       0  793816 / 1000000     6.4s h3
[ ]  806833       0       0  806833 / 1000000     6.5s h3
[ ]  815797       0       0  815797 / 1000000     6.6s h3
[ ]  828964       0       0  828964 / 1000000     6.7s h3 (collecting)
[ ]  838085       0       0  838085 / 1000000     6.8s h3
[ ]  852477       0       0  852477 / 1000000     6.9s h3
[ ]  864838       0       0  864838 / 1000000     7.0s h3
[ ]  877404       0       0  877404 / 1000000     7.1s h3
[ ]  887528       0       0  887528 / 1000000     7.2s h3
[ ]  899760       0       0  899760 / 1000000     7.3s h3
[ ]  912499       0       0  912499 / 1000000     7.4s h3
[ ]  921993       0       0  921993 / 1000000     7.5s h3
[ ]  933156       0       0  933156 / 1000000     7.6s h3 (collecting)
[ ]  943736       0       0  943736 / 1000000     7.7s h3
[ ]  953969       0       0  953969 / 1000000     7.8s h3
[ ]  965534       0       0  965534 / 1000000     7.9s h3
[ ]  978442       0       0  978442 / 1000000     8.0s h3
[ ]  987578       0       0  987578 / 1000000     8.1s h3
[ ]  997056       0       0  997056 / 1000000     8.2s h3
[✓] 1000000       0       0 1000000 / 1000000     8.2s h3
- 
[ ]       0       0       0       0 / 1000000     0.0s h4
[ ]    4008       0       0    4008 / 1000000     0.1s h4
[ ]    7867       0       0    7867 / 1000000     0.2s h4
[ ]   11501       0       0   11501 / 1000000     0.3s h4
[ ]   15252       0       0   15252 / 1000000     0.4s h4
[ ]   18625       0       0   18625 / 1000000     0.5s h4
[ ]   22431       0       0   22431 / 1000000     0.6s h4
[ ]   25855       0       0   25855 / 1000000     0.7s h4
[ ]   29279       0       0   29279 / 1000000     0.8s h4
[ ]   32761       0       0   32761 / 1000000     0.9s h4
[ ]   36262       0       0   36262 / 1000000     1.0s h4
[ ]   39762       0       0   39762 / 1000000     1.1s h4
[ ]   43126       0       0   43126 / 1000000     1.2s h4
[ ]   46932       0       0   46932 / 1000000     1.3s h4
[ ]   50831       0       0   50831 / 1000000     1.4s h4
[ ]   55102       0       0   55102 / 1000000     1.5s h4
[ ]   59123       0       0   59123 / 1000000     1.6s h4
[ ]   63394       0       0   63394 / 1000000     1.7s h4
[ ]   67842       0       0   67842 / 1000000     1.8s h4
[ ]   72149       0       0   72149 / 1000000     1.9s h4
[ ]   76550       0       0   76550 / 1000000     2.0s h4
[ ]   81312       0       0   81312 / 1000000     2.1s h4
[ ]   85940       0       0   85940 / 1000000     2.2s h4
[ ]   90390       0       0   90390 / 1000000     2.3s h4
[ ]   94281       0       0   94281 / 1000000     2.4s h4
[ ]   98515       0       0   98515 / 1000000     2.5s h4
[ ]  102312       0       0  102312 / 1000000     2.6s h4
[ ]  105830       0       0  105830 / 1000000     2.7s h4
[ ]  110262       0       0  110262 / 1000000     2.8s h4
[ ]  115059       0       0  115059 / 1000000     2.9s h4
[ ]  118786       0       0  118786 / 1000000     3.0s h4
[ ]  122764       0       0  122764 / 1000000     3.1s h4
[ ]  127400       0       0  127400 / 1000000     3.2s h4
[ ]  131302       0       0  131302 / 1000000     3.3s h4
[ ]  135737       0       0  135737 / 1000000     3.4s h4
[ ]  139421       0       0  139421 / 1000000     3.5s h4
[ ]  143008       0       0  143008 / 1000000     3.6s h4
[ ]  148118       0       0  148118 / 1000000     3.7s h4
[ ]  153670       0       0  153670 / 1000000     3.8s h4
[ ]  158404       0       0  158404 / 1000000     3.9s h4
[ ]  164180       0       0  164180 / 1000000     4.0s h4
[ ]  169183       0       0  169183 / 1000000     4.1s h4
[ ]  174846       0       0  174846 / 1000000     4.2s h4
[ ]  179982       0       0  179982 / 1000000     4.3s h4
[ ]  184766       0       0  184766 / 1000000     4.4s h4
[ ]  188604       0       0  188604 / 1000000     4.5s h4
[ ]  192095       0       0  192095 / 1000000     4.6s h4
[ ]  195931       0       0  195931 / 1000000     4.7s h4
[ ]  200920       0       0  200920 / 1000000     4.8s h4
[ ]  206766       0       0  206766 / 1000000     4.9s h4
[ ]  211797       0       0  211797 / 1000000     5.0s h4
[ ]  217396       0       0  217396 / 1000000     5.1s h4
[ ]  221372       0       0  221372 / 1000000     5.2s h4
[ ]  227438       0       0  227438 / 1000000     5.3s h4
[ ]  231318       0       0  231318 / 1000000     5.4s h4
[ ]  236988       0       0  236988 / 1000000     5.5s h4
[ ]  240902       0       0  240902 / 1000000     5.6s h4
[ ]  245360       0       0  245360 / 1000000     5.7s h4
[ ]  248748       0       0  248748 / 1000000     5.8s h4
[ ]  252056       0       0  252056 / 1000000     5.9s h4
[ ]  255487       0       0  255487 / 1000000     6.0s h4
[ ]  261185       0       0  261185 / 1000000     6.1s h4
[ ]  267159       0       0  267159 / 1000000     6.2s h4
[ ]  270800       0       0  270800 / 1000000     6.3s h4
[ ]  275372       0       0  275372 / 1000000     6.4s h4
[ ]  280362       0       0  280362 / 1000000     6.5s h4
[ ]  284849       0       0  284849 / 1000000     6.6s h4
[ ]  288517       0       0  288517 / 1000000     6.7s h4
[ ]  292123       0       0  292123 / 1000000     6.8s h4
[ ]  296179       0       0  296179 / 1000000     6.9s h4
[ ]  299963       0       0  299963 / 1000000     7.0s h4
[ ]  303487       0       0  303487 / 1000000     7.1s h4
[ ]  306908       0       0  306908 / 1000000     7.2s h4
[ ]  310211       0       0  310211 / 1000000     7.3s h4
[ ]  314040       0       0  314040 / 1000000     7.4s h4
[ ]  317429       0       0  317429 / 1000000     7.5s h4 (generating)
[ ]  321029       0       0  321029 / 1000000     7.6s h4
[ ]  325142       0       0  325142 / 1000000     7.7s h4
[ ]  328509       0       0  328509 / 1000000     7.8s h4
[ ]  331914       0       0  331914 / 1000000     7.9s h4
[ ]  335276       0       0  335276 / 1000000     8.0s h4
[ ]  338907       0       0  338907 / 1000000     8.1s h4
[ ]  342183       0       0  342183 / 1000000     8.2s h4
[ ]  345793       0       0  345793 / 1000000     8.3s h4
[ ]  349523       0       0  349523 / 1000000     8.4s h4
[ ]  353409       0       0  353409 / 1000000     8.5s h4
[ ]  358133       0       0  358133 / 1000000     8.6s h4
[ ]  361769       0       0  361769 / 1000000     8.7s h4
[ ]  365474       0       0  365474 / 1000000     8.8s h4
[ ]  369167       0       0  369167 / 1000000     8.9s h4
[ ]  372373       0       0  372373 / 1000000     9.0s h4
[ ]  376100       0       0  376100 / 1000000     9.1s h4
[ ]  380296       0       0  380296 / 1000000     9.2s h4
[ ]  384230       0       0  384230 / 1000000     9.3s h4
[ ]  387669       0       0  387669 / 1000000     9.4s h4
[ ]  391121       0       0  391121 / 1000000     9.5s h4
[ ]  394817       0       0  394817 / 1000000     9.6s h4
[ ]  398043       0       0  398043 / 1000000     9.7s h4
[ ]  401305       0       0  401305 / 1000000     9.8s h4
[ ]  404568       0       0  404568 / 1000000     9.9s h4
[ ]  408141       0       0  408141 / 1000000    10.0s h4
[ ]  413384       0       0  413384 / 1000000    10.1s h4
[ ]  417945       0       0  417945 / 1000000    10.2s h4
[ ]  421657       0       0  421657 / 1000000    10.3s h4
[ ]  426105       0       0  426105 / 1000000    10.4s h4
[ ]  430865       0       0  430865 / 1000000    10.5s h4
[ ]  434418       0       0  434418 / 1000000    10.6s h4
[ ]  437663       0       0  437663 / 1000000    10.7s h4
[ ]  440881       0       0  440881 / 1000000    10.8s h4
[ ]  444170       0       0  444170 / 1000000    10.9s h4
[ ]  447978       0       0  447978 / 1000000    11.0s h4
[ ]  451853       0       0  451853 / 1000000    11.1s h4
[ ]  456506       0       0  456506 / 1000000    11.2s h4
[ ]  459936       0       0  459936 / 1000000    11.3s h4
[ ]  463198       0       0  463198 / 1000000    11.4s h4
[ ]  466574       0       0  466574 / 1000000    11.5s h4
[ ]  471107       0       0  471107 / 1000000    11.6s h4
[ ]  474821       0       0  474821 / 1000000    11.7s h4
[ ]  479609       0       0  479609 / 1000000    11.8s h4
[ ]  485213       0       0  485213 / 1000000    11.9s h4
[ ]  488785       0       0  488785 / 1000000    12.0s h4
[ ]  493307       0       0  493307 / 1000000    12.1s h4
[ ]  497047       0       0  497047 / 1000000    12.2s h4
[ ]  500739       0       0  500739 / 1000000    12.3s h4
[ ]  504464       0       0  504464 / 1000000    12.4s h4
[ ]  507833       0       0  507833 / 1000000    12.5s h4
[ ]  511282       0       0  511282 / 1000000    12.6s h4
[ ]  515126       0       0  515126 / 1000000    12.7s h4
[ ]  518405       0       0  518405 / 1000000    12.8s h4
[ ]  522007       0       0  522007 / 1000000    12.9s h4
[ ]  525568       0       0  525568 / 1000000    13.0s h4
[ ]  529023       0       0  529023 / 1000000    13.1s h4
[ ]  532876       0       0  532876 / 1000000    13.2s h4
[ ]  536140       0       0  536140 / 1000000    13.3s h4
[ ]  539978       0       0  539978 / 1000000    13.4s h4
[ ]  543163       0       0  543163 / 1000000    13.5s h4
[ ]  546827       0       0  546827 / 1000000    13.6s h4
[ ]  550063       0       0  550063 / 1000000    13.7s h4
[ ]  553635       0       0  553635 / 1000000    13.8s h4
[ ]  556907       0       0  556907 / 1000000    13.9s h4
[ ]  560395       0       0  560395 / 1000000    14.0s h4
[ ]  564190       0       0  564190 / 1000000    14.1s h4
[ ]  567507       0       0  567507 / 1000000    14.2s h4 (collecting)
[ ]  570896       0       0  570896 / 1000000    14.3s h4
[ ]  574452       0       0  574452 / 1000000    14.4s h4
[ ]  577750       0       0  577750 / 1000000    14.5s h4
[ ]  581099       0       0  581099 / 1000000    14.6s h4
[ ]  584513       0       0  584513 / 1000000    14.7s h4
[ ]  587840       0       0  587840 / 1000000    14.8s h4
[ ]  591255       0       0  591255 / 1000000    14.9s h4
[ ]  594777       0       0  594777 / 1000000    15.0s h4
[ ]  597671       0       0  597671 / 1000000    15.1s h4
[ ]  600938       0       0  600938 / 1000000    15.2s h4
[ ]  604209       0       0  604209 / 1000000    15.3s h4
[ ]  607589       0       0  607589 / 1000000    15.4s h4
[ ]  611094       0       0  611094 / 1000000    15.5s h4
[ ]  614640       0       0  614640 / 1000000    15.6s h4
[ ]  617982       0       0  617982 / 1000000    15.7s h4
[ ]  621388       0       0  621388 / 1000000    15.8s h4
[ ]  625097       0       0  625097 / 1000000    15.9s h4
[ ]  628451       0       0  628451 / 1000000    16.0s h4
[ ]  631941       0       0  631941 / 1000000    16.1s h4
[ ]  635393       0       0  635393 / 1000000    16.2s h4
[ ]  638823       0       0  638823 / 1000000    16.3s h4
[ ]  642226       0       0  642226 / 1000000    16.4s h4
[ ]  645756       0       0  645756 / 1000000    16.5s h4
[ ]  649450       0       0  649450 / 1000000    16.6s h4
[ ]  652948       0       0  652948 / 1000000    16.7s h4
[ ]  656333       0       0  656333 / 1000000    16.8s h4
[ ]  659751       0       0  659751 / 1000000    16.9s h4
[ ]  663249       0       0  663249 / 1000000    17.0s h4
[ ]  666592       0       0  666592 / 1000000    17.1s h4
[ ]  669999       0       0  669999 / 1000000    17.2s h4
[ ]  673292       0       0  673292 / 1000000    17.3s h4
[ ]  676757       0       0  676757 / 1000000    17.4s h4
[ ]  680306       0       0  680306 / 1000000    17.5s h4
[ ]  683930       0       0  683930 / 1000000    17.6s h4
[ ]  687578       0       0  687578 / 1000000    17.7s h4
[ ]  690975       0       0  690975 / 1000000    17.8s h4
[ ]  694680       0       0  694680 / 1000000    17.9s h4
[ ]  698260       0       0  698260 / 1000000    18.0s h4
[ ]  701743       0       0  701743 / 1000000    18.1s h4
[ ]  705340       0       0  705340 / 1000000    18.2s h4
[ ]  709027       0       0  709027 / 1000000    18.3s h4
[ ]  712563       0       0  712563 / 1000000    18.4s h4
[ ]  716016       0       0  716016 / 1000000    18.5s h4
[ ]  719662       0       0  719662 / 1000000    18.6s h4
[ ]  723262       0       0  723262 / 1000000    18.7s h4
[ ]  726897       0       0  726897 / 1000000    18.8s h4
[ ]  730702       0       0  730702 / 1000000    18.9s h4
[ ]  734468       0       0  734468 / 1000000    19.0s h4
[ ]  738051       0       0  738051 / 1000000    19.1s h4
[ ]  741633       0       0  741633 / 1000000    19.2s h4
[ ]  745169       0       0  745169 / 1000000    19.3s h4
[ ]  748738       0       0  748738 / 1000000    19.4s h4
[ ]  752236       0       0  752236 / 1000000    19.5s h4
[ ]  755677       0       0  755677 / 1000000    19.6s h4
[ ]  759159       0       0  759159 / 1000000    19.7s h4
[ ]  762561       0       0  762561 / 1000000    19.8s h4
[ ]  766170       0       0  766170 / 1000000    19.9s h4
[ ]  769622       0       0  769622 / 1000000    20.0s h4
[ ]  773224       0       0  773224 / 1000000    20.1s h4
[ ]  776696       0       0  776696 / 1000000    20.2s h4
[ ]  780299       0       0  780299 / 1000000    20.3s h4
[ ]  783818       0       0  783818 / 1000000    20.4s h4
[ ]  787500       0       0  787500 / 1000000    20.5s h4
[ ]  791095       0       0  791095 / 1000000    20.6s h4
[ ]  794661       0       0  794661 / 1000000    20.7s h4
[ ]  798396       0       0  798396 / 1000000    20.8s h4
[ ]  801989       0       0  801989 / 1000000    20.9s h4
[ ]  805521       0       0  805521 / 1000000    21.0s h4
[ ]  809002       0       0  809002 / 1000000    21.1s h4
[ ]  812493       0       0  812493 / 1000000    21.2s h4
[ ]  815918       0       0  815918 / 1000000    21.3s h4
[ ]  819449       0       0  819449 / 1000000    21.4s h4
[ ]  822967       0       0  822967 / 1000000    21.5s h4
[ ]  826634       0       0  826634 / 1000000    21.6s h4
[ ]  830256       0       0  830256 / 1000000    21.7s h4
[ ]  833784       0       0  833784 / 1000000    21.8s h4
[ ]  837366       0       0  837366 / 1000000    21.9s h4
[ ]  840787       0       0  840787 / 1000000    22.0s h4
[ ]  844278       0       0  844278 / 1000000    22.1s h4
[ ]  847721       0       0  847721 / 1000000    22.2s h4
[ ]  850915       0       0  850915 / 1000000    22.3s h4
[ ]  854217       0       0  854217 / 1000000    22.4s h4
[ ]  857530       0       0  857530 / 1000000    22.5s h4
[ ]  860923       0       0  860923 / 1000000    22.6s h4
[ ]  864293       0       0  864293 / 1000000    22.7s h4
[ ]  867538       0       0  867538 / 1000000    22.8s h4
[ ]  871042       0       0  871042 / 1000000    22.9s h4
[ ]  874512       0       0  874512 / 1000000    23.0s h4
[ ]  878084       0       0  878084 / 1000000    23.1s h4
[ ]  881653       0       0  881653 / 1000000    23.2s h4
[ ]  885409       0       0  885409 / 1000000    23.3s h4
[ ]  889042       0       0  889042 / 1000000    23.4s h4
[ ]  892711       0       0  892711 / 1000000    23.5s h4
[ ]  896503       0       0  896503 / 1000000    23.6s h4
[ ]  900298       0       0  900298 / 1000000    23.7s h4
[ ]  903942       0       0  903942 / 1000000    23.8s h4 (generating)
[ ]  907599       0       0  907599 / 1000000    23.9s h4
[ ]  911264       0       0  911264 / 1000000    24.0s h4 (generating)
[ ]  914930       0       0  914930 / 1000000    24.1s h4
[ ]  918534       0       0  918534 / 1000000    24.2s h4
[ ]  922085       0       0  922085 / 1000000    24.3s h4
[ ]  925919       0       0  925919 / 1000000    24.4s h4
[ ]  929431       0       0  929431 / 1000000    24.5s h4
[ ]  933105       0       0  933105 / 1000000    24.6s h4
[ ]  936604       0       0  936604 / 1000000    24.7s h4
[ ]  940157       0       0  940157 / 1000000    24.8s h4
[ ]  943753       0       0  943753 / 1000000    24.9s h4
[ ]  947548       0       0  947548 / 1000000    25.0s h4
[ ]  951187       0       0  951187 / 1000000    25.1s h4
[ ]  954817       0       0  954817 / 1000000    25.2s h4
[ ]  958566       0       0  958566 / 1000000    25.3s h4
[ ]  963289       0       0  963289 / 1000000    25.4s h4
[ ]  966912       0       0  966912 / 1000000    25.5s h4
[ ]  970262       0       0  970262 / 1000000    25.6s h4 (collecting)
[ ]  973983       0       0  973983 / 1000000    25.7s h4
[ ]  978129       0       0  978129 / 1000000    25.8s h4
[ ]  983201       0       0  983201 / 1000000    25.9s h4
[ ]  986675       0       0  986675 / 1000000    26.0s h4
[ ]  990488       0       0  990488 / 1000000    26.1s h4
[ ]  993772       0       0  993772 / 1000000    26.2s h4
[ ]  997189       0       0  997189 / 1000000    26.3s h4
[✓] 1000000       0       0 1000000 / 1000000    26.4s 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-04-11 01:43.17 ---> saved as "22c1c0886270dbf5f94e5234d9ed782adcf54e892d530f83f85dc6158135c43b"
Job succeeded
2026-04-11 01:43.25: Job succeeded