(not at the head of any monitored branch or PR)
2026-04-10 17:47.56: New job: test dates_calc.0.0.4 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.4; \
    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.4' && 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.4) || true
RUN opam reinstall --with-test --verbose dates_calc.0.0.4; \
    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.4' && 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.4-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.4;\
             \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.4' && 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.4) || true"))
 (run (shell  "opam reinstall --with-test --verbose dates_calc.0.0.4;\
             \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.4' && 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 phoebe.caelum.ci.dev
All commits already cached
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.55 ---> 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.55 ---> 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.55 ---> 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.55 ---> 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.55 ---> using "8be7be6786c965fdad4454d936ba98cc5fa516f8de8fee90f280618661533faa" from cache

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

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-11 01:39.56 ---> 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 (692 kB/s)
- Reading package lists...
- 
2026-04-11 01:39.56 ---> 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.56 ---> 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.56 ---> 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.4;\
                        \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.4' && 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.4 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
  - install dates_calc 0.0.4

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

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test dates_calc.0.0.4) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile dates_calc         0.0.4
=== 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.4  (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
-> installed ocaml-syntax-shims.1.0.0
-> 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 re.1.14.0
-> installed qcheck-core.0.91
-> installed ounit2.2.2.7
-> installed qcheck-ounit.0.91
-> installed qcheck.0.91
-> installed ocamlfind.1.9.8
-> installed cmdliner.2.1.0
-> removed   dates_calc.0.0.4
-> 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.4
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 01:41.47 ---> saved as "0ac9c4dfc9b83d1452e6dbf2e0cc454c3ce3cee249cc32e1dec238e07b9c50b1"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [dates_calc.0.0.4: extract]
-> retrieved dates_calc.0.0.4  (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.4)
- (cd _build/default/test && ./unit.exe)
- Testing `unit'.
- This run has ID `WXT29ZWF'.
- 
-   [OK]          add_dates                        0   days.
-   [OK]          add_dates                        1   months_exact.
-   [OK]          add_dates                        2   months_ambig.
-   [OK]          add_dates                        3   years_exact.
-   [OK]          add_dates                        4   years_ambig.
-   [OK]          first_last_day_of_month          0   all.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/dates_calc.0.0.4/_build/default/test/_build/_tests/unit'.
- Test Successful in 0.004s. 6 tests run.
- (cd _build/default/test && ./prop.exe)
- 
random seed: 360723664
-   generated   error    fail    pass /   total     time test name
- 
[ ]       0       0       0       0 /    1000     0.0s anon_test_1
[ ]     413       0       0     413 /    1000     0.1s anon_test_1
[ ]     813       0       0     813 /    1000     0.2s anon_test_1
[✓]    1000       0       0    1000 /    1000     0.2s anon_test_1
- 
[ ]       0       0       0       0 /    1000     0.0s anon_test_2
[ ]      17       0       0      17 /    1000     0.1s anon_test_2
[ ]      33       0       0      33 /    1000     0.2s anon_test_2
[ ]      42       0       0      42 /    1000     0.3s anon_test_2
[ ]      58       0       0      58 /    1000     0.4s anon_test_2
[ ]      70       0       0      70 /    1000     0.6s anon_test_2
[ ]      87       0       0      87 /    1000     0.7s anon_test_2
[ ]     104       0       0     104 /    1000     0.8s anon_test_2
[ ]     118       0       0     118 /    1000     0.9s anon_test_2
[ ]     137       0       0     137 /    1000     1.0s anon_test_2
[ ]     144       0       0     144 /    1000     1.1s anon_test_2
[ ]     157       0       0     157 /    1000     1.2s anon_test_2
[ ]     167       0       0     167 /    1000     1.3s anon_test_2
[ ]     180       0       0     180 /    1000     1.4s anon_test_2
[ ]     199       0       0     199 /    1000     1.5s anon_test_2
[ ]     217       0       0     217 /    1000     1.6s anon_test_2
[ ]     239       0       0     239 /    1000     1.7s anon_test_2
[ ]     254       0       0     254 /    1000     1.8s anon_test_2
[ ]     275       0       0     275 /    1000     1.9s anon_test_2
[ ]     293       0       0     293 /    1000     2.0s anon_test_2
[ ]     303       0       0     303 /    1000     2.1s anon_test_2
[ ]     319       0       0     319 /    1000     2.2s anon_test_2
[ ]     327       0       0     327 /    1000     2.4s anon_test_2
[ ]     340       0       0     340 /    1000     2.5s anon_test_2
[ ]     357       0       0     357 /    1000     2.6s anon_test_2
[ ]     374       0       0     374 /    1000     2.7s anon_test_2
[ ]     396       0       0     396 /    1000     2.8s anon_test_2
[ ]     414       0       0     414 /    1000     2.9s anon_test_2
[ ]     432       0       0     432 /    1000     3.0s anon_test_2
[ ]     452       0       0     452 /    1000     3.1s anon_test_2
[ ]     461       0       0     461 /    1000     3.2s anon_test_2
[ ]     478       0       0     478 /    1000     3.3s anon_test_2
[ ]     489       0       0     489 /    1000     3.4s anon_test_2
[ ]     503       0       0     503 /    1000     3.6s anon_test_2
[ ]     512       0       0     512 /    1000     3.7s anon_test_2
[ ]     528       0       0     528 /    1000     3.8s anon_test_2
[ ]     537       0       0     537 /    1000     3.9s anon_test_2
[ ]     547       0       0     547 /    1000     4.0s anon_test_2
[ ]     563       0       0     563 /    1000     4.1s anon_test_2
[ ]     575       0       0     575 /    1000     4.2s anon_test_2
[ ]     587       0       0     587 /    1000     4.3s anon_test_2
[ ]     597       0       0     597 /    1000     4.4s anon_test_2
[ ]     611       0       0     611 /    1000     4.5s anon_test_2
[ ]     629       0       0     629 /    1000     4.6s anon_test_2
[ ]     643       0       0     643 /    1000     4.8s anon_test_2
[ ]     657       0       0     657 /    1000     4.9s anon_test_2
[ ]     670       0       0     670 /    1000     5.0s anon_test_2
[ ]     681       0       0     681 /    1000     5.1s anon_test_2
[ ]     692       0       0     692 /    1000     5.2s anon_test_2
[ ]     704       0       0     704 /    1000     5.3s anon_test_2
[ ]     720       0       0     720 /    1000     5.4s anon_test_2
[ ]     734       0       0     734 /    1000     5.5s anon_test_2
[ ]     746       0       0     746 /    1000     5.6s anon_test_2
[ ]     761       0       0     761 /    1000     5.7s anon_test_2
[ ]     772       0       0     772 /    1000     5.8s anon_test_2
[ ]     787       0       0     787 /    1000     5.9s anon_test_2
[ ]     803       0       0     803 /    1000     6.0s anon_test_2
[ ]     820       0       0     820 /    1000     6.1s anon_test_2
[ ]     835       0       0     835 /    1000     6.2s anon_test_2
[ ]     849       0       0     849 /    1000     6.3s anon_test_2
[ ]     869       0       0     869 /    1000     6.4s anon_test_2
[ ]     883       0       0     883 /    1000     6.5s anon_test_2
[ ]     899       0       0     899 /    1000     6.7s anon_test_2
[ ]     911       0       0     911 /    1000     6.8s anon_test_2
[ ]     935       0       0     935 /    1000     6.9s anon_test_2
[ ]     952       0       0     952 /    1000     7.0s anon_test_2
[ ]     967       0       0     967 /    1000     7.1s anon_test_2
[ ]     981       0       0     981 /    1000     7.2s anon_test_2
[ ]     993       0       0     993 /    1000     7.3s anon_test_2
[✓]    1000       0       0    1000 /    1000     7.3s anon_test_2
- 
[ ]       0       0       0       0 / 1000000     0.0s h1
[ ]    9842       0       0    9842 / 1000000     0.1s h1 (   testing)
[ ]   18695       0       0   18695 / 1000000     0.2s h1
[ ]   28398       0       0   28398 / 1000000     0.3s h1
[ ]   44140       0       0   44140 / 1000000     0.4s h1 (collecting)
[ ]   57028       0       0   57028 / 1000000     0.5s h1
[ ]   66692       0       0   66692 / 1000000     0.6s h1
[ ]   76388       0       0   76388 / 1000000     0.7s h1
[ ]   86256       0       0   86256 / 1000000     0.8s h1
[ ]   96413       0       0   96413 / 1000000     0.9s h1
[ ]  106481       0       0  106481 / 1000000     1.0s h1
[ ]  116662       0       0  116662 / 1000000     1.1s h1
[ ]  128397       0       0  128397 / 1000000     1.2s h1
[ ]  143566       0       0  143566 / 1000000     1.3s h1
[ ]  153822       0       0  153822 / 1000000     1.4s h1
[ ]  163395       0       0  163395 / 1000000     1.5s h1
[ ]  173077       0       0  173077 / 1000000     1.6s h1
[ ]  182732       0       0  182732 / 1000000     1.7s h1
[ ]  194143       0       0  194143 / 1000000     1.8s h1
[ ]  204679       0       0  204679 / 1000000     1.9s h1
[ ]  214703       0       0  214703 / 1000000     2.0s h1
[ ]  224396       0       0  224396 / 1000000     2.1s h1
[ ]  234213       0       0  234213 / 1000000     2.2s h1
[ ]  244071       0       0  244071 / 1000000     2.3s h1
[ ]  259823       0       0  259823 / 1000000     2.4s h1 (   testing)
[ ]  273109       0       0  273109 / 1000000     2.5s h1
[ ]  282990       0       0  282990 / 1000000     2.6s h1 (collecting)
[ ]  292662       0       0  292662 / 1000000     2.7s h1 (collecting)
[ ]  303098       0       0  303098 / 1000000     2.8s h1
[ ]  313490       0       0  313490 / 1000000     2.9s h1
[ ]  326203       0       0  326203 / 1000000     3.0s h1
[ ]  335637       0       0  335637 / 1000000     3.1s h1
[ ]  346057       0       0  346057 / 1000000     3.2s h1
[ ]  356137       0       0  356137 / 1000000     3.3s h1
[ ]  366070       0       0  366070 / 1000000     3.4s h1
[ ]  375883       0       0  375883 / 1000000     3.5s h1
[ ]  385943       0       0  385943 / 1000000     3.6s h1
[ ]  395832       0       0  395832 / 1000000     3.7s h1
[ ]  405614       0       0  405614 / 1000000     3.8s h1 (generating)
[ ]  415606       0       0  415606 / 1000000     3.9s h1
[ ]  425840       0       0  425840 / 1000000     4.0s h1
[ ]  436100       0       0  436100 / 1000000     4.1s h1 (collecting)
[ ]  445933       0       0  445933 / 1000000     4.2s h1
[ ]  455696       0       0  455696 / 1000000     4.3s h1
[ ]  465564       0       0  465564 / 1000000     4.4s h1
[ ]  475646       0       0  475646 / 1000000     4.5s h1
[ ]  486025       0       0  486025 / 1000000     4.6s h1
[ ]  501395       0       0  501395 / 1000000     4.7s h1
[ ]  515344       0       0  515344 / 1000000     4.8s h1
[ ]  532038       0       0  532038 / 1000000     4.9s h1
[ ]  547575       0       0  547575 / 1000000     5.0s h1
[ ]  564285       0       0  564285 / 1000000     5.1s h1
[ ]  574936       0       0  574936 / 1000000     5.2s h1
[ ]  588364       0       0  588364 / 1000000     5.3s h1
[ ]  599129       0       0  599129 / 1000000     5.4s h1
[ ]  608196       0       0  608196 / 1000000     5.5s h1
[ ]  618301       0       0  618301 / 1000000     5.6s h1 (generating)
[ ]  628311       0       0  628311 / 1000000     5.7s h1
[ ]  638386       0       0  638386 / 1000000     5.8s h1
[ ]  647925       0       0  647925 / 1000000     5.9s h1
[ ]  657765       0       0  657765 / 1000000     6.0s h1
[ ]  671151       0       0  671151 / 1000000     6.1s h1
[ ]  681487       0       0  681487 / 1000000     6.2s h1
[ ]  695270       0       0  695270 / 1000000     6.3s h1
[ ]  705895       0       0  705895 / 1000000     6.4s h1
[ ]  715409       0       0  715409 / 1000000     6.5s h1
[ ]  727604       0       0  727604 / 1000000     6.6s h1
[ ]  737301       0       0  737301 / 1000000     6.7s h1
[ ]  747314       0       0  747314 / 1000000     6.8s h1
[ ]  757335       0       0  757335 / 1000000     6.9s h1
[ ]  767360       0       0  767360 / 1000000     7.0s h1
[ ]  777402       0       0  777402 / 1000000     7.1s h1
[ ]  787225       0       0  787225 / 1000000     7.2s h1
[ ]  796937       0       0  796937 / 1000000     7.3s h1
[ ]  806335       0       0  806335 / 1000000     7.4s h1
[ ]  816177       0       0  816177 / 1000000     7.5s h1
[ ]  826005       0       0  826005 / 1000000     7.6s h1
[ ]  835970       0       0  835970 / 1000000     7.7s h1
[ ]  845849       0       0  845849 / 1000000     7.8s h1
[ ]  855832       0       0  855832 / 1000000     7.9s h1
[ ]  865849       0       0  865849 / 1000000     8.0s h1
[ ]  875555       0       0  875555 / 1000000     8.1s h1
[ ]  886255       0       0  886255 / 1000000     8.2s h1
[ ]  896817       0       0  896817 / 1000000     8.3s h1
[ ]  913086       0       0  913086 / 1000000     8.4s h1
[ ]  926576       0       0  926576 / 1000000     8.5s h1
[ ]  940167       0       0  940167 / 1000000     8.6s h1
[ ]  953392       0       0  953392 / 1000000     8.7s h1
[ ]  963156       0       0  963156 / 1000000     8.8s h1
[ ]  972964       0       0  972964 / 1000000     8.9s h1
[ ]  982754       0       0  982754 / 1000000     9.0s h1
[ ]  991973       0       0  991973 / 1000000     9.1s h1
[✓] 1000000       0       0 1000000 / 1000000     9.2s h1
- 
[ ]       0       0       0       0 / 1000000     0.0s h2
[ ]    4976       0       0    4976 / 1000000     0.1s h2
[ ]    9889       0       0    9889 / 1000000     0.2s h2
[ ]   15827       0       0   15827 / 1000000     0.3s h2
[ ]   21032       0       0   21032 / 1000000     0.4s h2
[ ]   26643       0       0   26643 / 1000000     0.5s h2
[ ]   35327       0       0   35327 / 1000000     0.6s h2
[ ]   43878       0       0   43878 / 1000000     0.7s h2
[ ]   51756       0       0   51756 / 1000000     0.8s h2
[ ]   60342       0       0   60342 / 1000000     0.9s h2 (collecting)
[ ]   67408       0       0   67408 / 1000000     1.0s h2
[ ]   72650       0       0   72650 / 1000000     1.1s h2
[ ]   78466       0       0   78466 / 1000000     1.2s h2
[ ]   84044       0       0   84044 / 1000000     1.3s h2
[ ]   89802       0       0   89802 / 1000000     1.4s h2
[ ]   95984       0       0   95984 / 1000000     1.5s h2
[ ]  101361       0       0  101361 / 1000000     1.6s h2
[ ]  106441       0       0  106441 / 1000000     1.7s h2
[ ]  111699       0       0  111699 / 1000000     1.8s h2
[ ]  116899       0       0  116899 / 1000000     1.9s h2
[ ]  122060       0       0  122060 / 1000000     2.0s h2
[ ]  127122       0       0  127122 / 1000000     2.1s h2
[ ]  132126       0       0  132126 / 1000000     2.2s h2
[ ]  137330       0       0  137330 / 1000000     2.3s h2
[ ]  142476       0       0  142476 / 1000000     2.4s h2
[ ]  147859       0       0  147859 / 1000000     2.5s h2 (collecting)
[ ]  152960       0       0  152960 / 1000000     2.6s h2
[ ]  157982       0       0  157982 / 1000000     2.7s h2
[ ]  163062       0       0  163062 / 1000000     2.8s h2
[ ]  167718       0       0  167718 / 1000000     2.9s h2
[ ]  172382       0       0  172382 / 1000000     3.0s h2
[ ]  177374       0       0  177374 / 1000000     3.1s h2
[ ]  182070       0       0  182070 / 1000000     3.2s h2
[ ]  186906       0       0  186906 / 1000000     3.3s h2
[ ]  191612       0       0  191612 / 1000000     3.4s h2
[ ]  196415       0       0  196415 / 1000000     3.5s h2
[ ]  201245       0       0  201245 / 1000000     3.6s h2
[ ]  206147       0       0  206147 / 1000000     3.7s h2
[ ]  210892       0       0  210892 / 1000000     3.8s h2
[ ]  215490       0       0  215490 / 1000000     3.9s h2
[ ]  220184       0       0  220184 / 1000000     4.0s h2
[ ]  225012       0       0  225012 / 1000000     4.1s h2
[ ]  229901       0       0  229901 / 1000000     4.2s h2
[ ]  234825       0       0  234825 / 1000000     4.3s h2
[ ]  239861       0       0  239861 / 1000000     4.4s h2
[ ]  244884       0       0  244884 / 1000000     4.5s h2
[ ]  249769       0       0  249769 / 1000000     4.6s h2
[ ]  254049       0       0  254049 / 1000000     4.7s h2
[ ]  258775       0       0  258775 / 1000000     4.8s h2
[ ]  263691       0       0  263691 / 1000000     4.9s h2
[ ]  268633       0       0  268633 / 1000000     5.0s h2
[ ]  272992       0       0  272992 / 1000000     5.1s h2
[ ]  278200       0       0  278200 / 1000000     5.2s h2
[ ]  283471       0       0  283471 / 1000000     5.3s h2
[ ]  288739       0       0  288739 / 1000000     5.4s h2
[ ]  294020       0       0  294020 / 1000000     5.5s h2
[ ]  299434       0       0  299434 / 1000000     5.6s h2
[ ]  304835       0       0  304835 / 1000000     5.7s h2
[ ]  310035       0       0  310035 / 1000000     5.8s h2
[ ]  315035       0       0  315035 / 1000000     5.9s h2
[ ]  320048       0       0  320048 / 1000000     6.0s h2
[ ]  325069       0       0  325069 / 1000000     6.1s h2
[ ]  330262       0       0  330262 / 1000000     6.2s h2
[ ]  335845       0       0  335845 / 1000000     6.3s h2
[ ]  340931       0       0  340931 / 1000000     6.4s h2
[ ]  345689       0       0  345689 / 1000000     6.5s h2
[ ]  350409       0       0  350409 / 1000000     6.6s h2
[ ]  355038       0       0  355038 / 1000000     6.7s h2
[ ]  359649       0       0  359649 / 1000000     6.8s h2 (collecting)
[ ]  364213       0       0  364213 / 1000000     6.9s h2
[ ]  369116       0       0  369116 / 1000000     7.0s h2
[ ]  373771       0       0  373771 / 1000000     7.1s h2
[ ]  378923       0       0  378923 / 1000000     7.2s h2
[ ]  383894       0       0  383894 / 1000000     7.3s h2
[ ]  388991       0       0  388991 / 1000000     7.4s h2
[ ]  393883       0       0  393883 / 1000000     7.5s h2
[ ]  398979       0       0  398979 / 1000000     7.6s h2
[ ]  403903       0       0  403903 / 1000000     7.7s h2
[ ]  408963       0       0  408963 / 1000000     7.8s h2
[ ]  413965       0       0  413965 / 1000000     7.9s h2
[ ]  418957       0       0  418957 / 1000000     8.0s h2
[ ]  423572       0       0  423572 / 1000000     8.1s h2
[ ]  428591       0       0  428591 / 1000000     8.2s h2
[ ]  433612       0       0  433612 / 1000000     8.3s h2
[ ]  438962       0       0  438962 / 1000000     8.4s h2
[ ]  444299       0       0  444299 / 1000000     8.5s h2
[ ]  449446       0       0  449446 / 1000000     8.6s h2
[ ]  454628       0       0  454628 / 1000000     8.7s h2
[ ]  459738       0       0  459738 / 1000000     8.8s h2
[ ]  464859       0       0  464859 / 1000000     8.9s h2
[ ]  470111       0       0  470111 / 1000000     9.0s h2
[ ]  475343       0       0  475343 / 1000000     9.1s h2
[ ]  480732       0       0  480732 / 1000000     9.2s h2
[ ]  485618       0       0  485618 / 1000000     9.3s h2
[ ]  490514       0       0  490514 / 1000000     9.4s h2
[ ]  495555       0       0  495555 / 1000000     9.5s h2 (collecting)
[ ]  500072       0       0  500072 / 1000000     9.6s h2
[ ]  505141       0       0  505141 / 1000000     9.7s h2
[ ]  510521       0       0  510521 / 1000000     9.8s h2
[ ]  515784       0       0  515784 / 1000000     9.9s h2
[ ]  521061       0       0  521061 / 1000000    10.0s h2
[ ]  526440       0       0  526440 / 1000000    10.1s h2
[ ]  531387       0       0  531387 / 1000000    10.2s h2
[ ]  536350       0       0  536350 / 1000000    10.3s h2
[ ]  541356       0       0  541356 / 1000000    10.4s h2
[ ]  546409       0       0  546409 / 1000000    10.5s h2
[ ]  551522       0       0  551522 / 1000000    10.6s h2
[ ]  556730       0       0  556730 / 1000000    10.7s h2
[ ]  561842       0       0  561842 / 1000000    10.8s h2
[ ]  567144       0       0  567144 / 1000000    10.9s h2
[ ]  572208       0       0  572208 / 1000000    11.0s h2
[ ]  577362       0       0  577362 / 1000000    11.1s h2
[ ]  582108       0       0  582108 / 1000000    11.2s h2
[ ]  587081       0       0  587081 / 1000000    11.3s h2
[ ]  591993       0       0  591993 / 1000000    11.4s h2
[ ]  597059       0       0  597059 / 1000000    11.5s h2
[ ]  602146       0       0  602146 / 1000000    11.6s h2
[ ]  607115       0       0  607115 / 1000000    11.7s h2
[ ]  611941       0       0  611941 / 1000000    11.8s h2
[ ]  617047       0       0  617047 / 1000000    11.9s h2
[ ]  621839       0       0  621839 / 1000000    12.0s h2
[ ]  626311       0       0  626311 / 1000000    12.1s h2
[ ]  631163       0       0  631163 / 1000000    12.2s h2
[ ]  636139       0       0  636139 / 1000000    12.3s h2
[ ]  640909       0       0  640909 / 1000000    12.4s h2
[ ]  645645       0       0  645645 / 1000000    12.5s h2
[ ]  650413       0       0  650413 / 1000000    12.6s h2
[ ]  655295       0       0  655295 / 1000000    12.7s h2
[ ]  660046       0       0  660046 / 1000000    12.8s h2
[ ]  664435       0       0  664435 / 1000000    12.9s h2
[ ]  669496       0       0  669496 / 1000000    13.0s h2
[ ]  674559       0       0  674559 / 1000000    13.1s h2
[ ]  679554       0       0  679554 / 1000000    13.2s h2
[ ]  684645       0       0  684645 / 1000000    13.3s h2
[ ]  689796       0       0  689796 / 1000000    13.4s h2
[ ]  694842       0       0  694842 / 1000000    13.5s h2
[ ]  699791       0       0  699791 / 1000000    13.6s h2
[ ]  704627       0       0  704627 / 1000000    13.7s h2
[ ]  709664       0       0  709664 / 1000000    13.8s h2
[ ]  714624       0       0  714624 / 1000000    13.9s h2
[ ]  719676       0       0  719676 / 1000000    14.0s h2
[ ]  724636       0       0  724636 / 1000000    14.1s h2
[ ]  729614       0       0  729614 / 1000000    14.2s h2 (collecting)
[ ]  734434       0       0  734434 / 1000000    14.3s h2
[ ]  739404       0       0  739404 / 1000000    14.4s h2
[ ]  744284       0       0  744284 / 1000000    14.5s h2
[ ]  749222       0       0  749222 / 1000000    14.6s h2
[ ]  753938       0       0  753938 / 1000000    14.7s h2
[ ]  758469       0       0  758469 / 1000000    14.8s h2
[ ]  763487       0       0  763487 / 1000000    14.9s h2
[ ]  768437       0       0  768437 / 1000000    15.0s h2
[ ]  772981       0       0  772981 / 1000000    15.1s h2 (generating)
[ ]  778194       0       0  778194 / 1000000    15.2s h2 (collecting)
[ ]  783132       0       0  783132 / 1000000    15.3s h2
[ ]  788142       0       0  788142 / 1000000    15.4s h2
[ ]  792945       0       0  792945 / 1000000    15.5s h2
[ ]  797733       0       0  797733 / 1000000    15.6s h2
[ ]  802978       0       0  802978 / 1000000    15.7s h2
[ ]  807818       0       0  807818 / 1000000    15.8s h2
[ ]  812473       0       0  812473 / 1000000    15.9s h2
[ ]  816913       0       0  816913 / 1000000    16.0s h2
[ ]  821323       0       0  821323 / 1000000    16.1s h2
[ ]  826120       0       0  826120 / 1000000    16.2s h2
[ ]  831170       0       0  831170 / 1000000    16.3s h2
[ ]  836079       0       0  836079 / 1000000    16.4s h2
[ ]  840917       0       0  840917 / 1000000    16.5s h2
[ ]  845957       0       0  845957 / 1000000    16.6s h2 (generating)
[ ]  851000       0       0  851000 / 1000000    16.7s h2
[ ]  856180       0       0  856180 / 1000000    16.8s h2
[ ]  861291       0       0  861291 / 1000000    16.9s h2
[ ]  866349       0       0  866349 / 1000000    17.0s h2
[ ]  871423       0       0  871423 / 1000000    17.1s h2
[ ]  876257       0       0  876257 / 1000000    17.2s h2
[ ]  881488       0       0  881488 / 1000000    17.3s h2
[ ]  886484       0       0  886484 / 1000000    17.4s h2
[ ]  891578       0       0  891578 / 1000000    17.5s h2
[ ]  896273       0       0  896273 / 1000000    17.6s h2
[ ]  900839       0       0  900839 / 1000000    17.7s h2
[ ]  905525       0       0  905525 / 1000000    17.8s h2
[ ]  910505       0       0  910505 / 1000000    17.9s h2
[ ]  915215       0       0  915215 / 1000000    18.0s h2
[ ]  920162       0       0  920162 / 1000000    18.1s h2
[ ]  924999       0       0  924999 / 1000000    18.2s h2
[ ]  930027       0       0  930027 / 1000000    18.3s h2
[ ]  935067       0       0  935067 / 1000000    18.4s h2
[ ]  940055       0       0  940055 / 1000000    18.5s h2 (collecting)
[ ]  945070       0       0  945070 / 1000000    18.6s h2
[ ]  950020       0       0  950020 / 1000000    18.7s h2
[ ]  954981       0       0  954981 / 1000000    18.8s h2
[ ]  960027       0       0  960027 / 1000000    18.9s h2
[ ]  964668       0       0  964668 / 1000000    19.0s h2
[ ]  969216       0       0  969216 / 1000000    19.1s h2
[ ]  974234       0       0  974234 / 1000000    19.2s h2
[ ]  979373       0       0  979373 / 1000000    19.3s h2
[ ]  984381       0       0  984381 / 1000000    19.4s h2
[ ]  989362       0       0  989362 / 1000000    19.5s h2
[ ]  994516       0       0  994516 / 1000000    19.6s h2
[ ]  999376       0       0  999376 / 1000000    19.7s h2
[✓] 1000000       0       0 1000000 / 1000000    19.7s h2
- 
[ ]       0       0       0       0 / 1000000     0.0s h3
[ ]    9775       0       0    9775 / 1000000     0.1s h3
[ ]   19109       0       0   19109 / 1000000     0.2s h3
[ ]   28958       0       0   28958 / 1000000     0.3s h3
[ ]   39023       0       0   39023 / 1000000     0.4s h3
[ ]   49028       0       0   49028 / 1000000     0.5s h3
[ ]   59043       0       0   59043 / 1000000     0.6s h3
[ ]   68705       0       0   68705 / 1000000     0.7s h3
[ ]   78344       0       0   78344 / 1000000     0.8s h3 (collecting)
[ ]   88128       0       0   88128 / 1000000     0.9s h3
[ ]   97849       0       0   97849 / 1000000     1.0s h3
[ ]  107802       0       0  107802 / 1000000     1.1s h3
[ ]  117337       0       0  117337 / 1000000     1.2s h3
[ ]  126934       0       0  126934 / 1000000     1.3s h3
[ ]  136620       0       0  136620 / 1000000     1.4s h3
[ ]  146443       0       0  146443 / 1000000     1.5s h3
[ ]  155952       0       0  155952 / 1000000     1.6s h3
[ ]  165022       0       0  165022 / 1000000     1.7s h3
[ ]  175192       0       0  175192 / 1000000     1.8s h3
[ ]  185543       0       0  185543 / 1000000     1.9s h3
[ ]  195666       0       0  195666 / 1000000     2.0s h3
[ ]  205994       0       0  205994 / 1000000     2.1s h3
[ ]  215935       0       0  215935 / 1000000     2.2s h3
[ ]  225779       0       0  225779 / 1000000     2.3s h3
[ ]  235618       0       0  235618 / 1000000     2.4s h3
[ ]  244990       0       0  244990 / 1000000     2.5s h3
[ ]  254331       0       0  254331 / 1000000     2.6s h3
[ ]  262726       0       0  262726 / 1000000     2.7s h3
[ ]  271006       0       0  271006 / 1000000     2.8s h3
[ ]  279735       0       0  279735 / 1000000     2.9s h3
[ ]  289568       0       0  289568 / 1000000     3.0s h3
[ ]  299243       0       0  299243 / 1000000     3.1s h3
[ ]  308919       0       0  308919 / 1000000     3.2s h3
[ ]  318570       0       0  318570 / 1000000     3.3s h3
[ ]  328708       0       0  328708 / 1000000     3.4s h3
[ ]  338565       0       0  338565 / 1000000     3.5s h3
[ ]  348848       0       0  348848 / 1000000     3.6s h3
[ ]  359114       0       0  359114 / 1000000     3.7s h3
[ ]  369276       0       0  369276 / 1000000     3.8s h3 (collecting)
[ ]  379028       0       0  379028 / 1000000     3.9s h3
[ ]  389023       0       0  389023 / 1000000     4.0s h3
[ ]  399196       0       0  399196 / 1000000     4.1s h3
[ ]  409162       0       0  409162 / 1000000     4.2s h3
[ ]  418963       0       0  418963 / 1000000     4.3s h3
[ ]  428615       0       0  428615 / 1000000     4.4s h3
[ ]  438417       0       0  438417 / 1000000     4.5s h3
[ ]  446258       0       0  446258 / 1000000     4.6s h3
[ ]  455582       0       0  455582 / 1000000     4.7s h3
[ ]  464884       0       0  464884 / 1000000     4.8s h3
[ ]  475062       0       0  475062 / 1000000     4.9s h3
[ ]  485365       0       0  485365 / 1000000     5.0s h3
[ ]  495355       0       0  495355 / 1000000     5.1s h3
[ ]  505315       0       0  505315 / 1000000     5.2s h3
[ ]  515321       0       0  515321 / 1000000     5.3s h3
[ ]  525476       0       0  525476 / 1000000     5.4s h3
[ ]  535244       0       0  535244 / 1000000     5.5s h3
[ ]  544354       0       0  544354 / 1000000     5.6s h3
[ ]  554099       0       0  554099 / 1000000     5.7s h3
[ ]  563993       0       0  563993 / 1000000     5.8s h3
[ ]  572900       0       0  572900 / 1000000     5.9s h3
[ ]  581105       0       0  581105 / 1000000     6.0s h3
[ ]  589591       0       0  589591 / 1000000     6.1s h3
[ ]  598461       0       0  598461 / 1000000     6.2s h3
[ ]  607771       0       0  607771 / 1000000     6.3s h3
[ ]  617266       0       0  617266 / 1000000     6.4s h3
[ ]  626782       0       0  626782 / 1000000     6.5s h3
[ ]  636092       0       0  636092 / 1000000     6.6s h3
[ ]  644936       0       0  644936 / 1000000     6.7s h3
[ ]  653681       0       0  653681 / 1000000     6.8s h3
[ ]  662679       0       0  662679 / 1000000     6.9s h3
[ ]  672038       0       0  672038 / 1000000     7.0s h3
[ ]  681726       0       0  681726 / 1000000     7.1s h3
[ ]  691669       0       0  691669 / 1000000     7.2s h3
[ ]  701641       0       0  701641 / 1000000     7.3s h3
[ ]  711794       0       0  711794 / 1000000     7.4s h3
[ ]  721332       0       0  721332 / 1000000     7.5s h3
[ ]  731007       0       0  731007 / 1000000     7.6s h3
[ ]  740734       0       0  740734 / 1000000     7.7s h3
[ ]  750335       0       0  750335 / 1000000     7.8s h3
[ ]  759763       0       0  759763 / 1000000     7.9s h3
[ ]  769197       0       0  769197 / 1000000     8.0s h3
[ ]  779210       0       0  779210 / 1000000     8.1s h3
[ ]  788459       0       0  788459 / 1000000     8.2s h3
[ ]  796919       0       0  796919 / 1000000     8.3s h3 (collecting)
[ ]  805351       0       0  805351 / 1000000     8.4s h3
[ ]  815180       0       0  815180 / 1000000     8.5s h3
[ ]  825088       0       0  825088 / 1000000     8.6s h3
[ ]  835016       0       0  835016 / 1000000     8.7s h3
[ ]  845031       0       0  845031 / 1000000     8.8s h3
[ ]  855084       0       0  855084 / 1000000     8.9s h3
[ ]  865025       0       0  865025 / 1000000     9.0s h3
[ ]  875092       0       0  875092 / 1000000     9.1s h3
[ ]  885025       0       0  885025 / 1000000     9.2s h3
[ ]  894815       0       0  894815 / 1000000     9.3s h3
[ ]  904901       0       0  904901 / 1000000     9.4s h3
[ ]  914721       0       0  914721 / 1000000     9.5s h3
[ ]  925068       0       0  925068 / 1000000     9.6s h3
[ ]  935073       0       0  935073 / 1000000     9.7s h3
[ ]  944975       0       0  944975 / 1000000     9.8s h3
[ ]  954876       0       0  954876 / 1000000     9.9s h3
[ ]  965145       0       0  965145 / 1000000    10.0s h3
[ ]  975587       0       0  975587 / 1000000    10.1s h3 (generating)
[ ]  985190       0       0  985190 / 1000000    10.2s h3 (collecting)
[ ]  994759       0       0  994759 / 1000000    10.3s h3
[✓] 1000000       0       0 1000000 / 1000000    10.4s h3
- 
[ ]       0       0       0       0 / 1000000     0.0s h4
[ ]    3450       0       0    3450 / 1000000     0.1s h4
[ ]    7077       0       0    7077 / 1000000     0.2s h4
[ ]   10518       0       0   10518 / 1000000     0.3s h4
[ ]   13796       0       0   13796 / 1000000     0.4s h4
[ ]   17284       0       0   17284 / 1000000     0.5s h4
[ ]   20801       0       0   20801 / 1000000     0.6s h4 (collecting)
[ ]   24316       0       0   24316 / 1000000     0.7s h4 (generating)
[ ]   27739       0       0   27739 / 1000000     0.8s h4
[ ]   31151       0       0   31151 / 1000000     0.9s h4
[ ]   34491       0       0   34491 / 1000000     1.0s h4
[ ]   37610       0       0   37610 / 1000000     1.1s h4
[ ]   40971       0       0   40971 / 1000000     1.2s h4
[ ]   44413       0       0   44413 / 1000000     1.3s h4
[ ]   47779       0       0   47779 / 1000000     1.4s h4
[ ]   51147       0       0   51147 / 1000000     1.5s h4
[ ]   54531       0       0   54531 / 1000000     1.6s h4
[ ]   57808       0       0   57808 / 1000000     1.7s h4
[ ]   61134       0       0   61134 / 1000000     1.8s h4
[ ]   64652       0       0   64652 / 1000000     1.9s h4
[ ]   68107       0       0   68107 / 1000000     2.0s h4
[ ]   71726       0       0   71726 / 1000000     2.1s h4
[ ]   75559       0       0   75559 / 1000000     2.2s h4
[ ]   79220       0       0   79220 / 1000000     2.3s h4
[ ]   82838       0       0   82838 / 1000000     2.4s h4
[ ]   86344       0       0   86344 / 1000000     2.5s h4
[ ]   89889       0       0   89889 / 1000000     2.6s h4
[ ]   93197       0       0   93197 / 1000000     2.7s h4
[ ]   96698       0       0   96698 / 1000000     2.8s h4
[ ]  100228       0       0  100228 / 1000000     2.9s h4
[ ]  103804       0       0  103804 / 1000000     3.0s h4
[ ]  107310       0       0  107310 / 1000000     3.1s h4
[ ]  110867       0       0  110867 / 1000000     3.2s h4
[ ]  114407       0       0  114407 / 1000000     3.3s h4
[ ]  117951       0       0  117951 / 1000000     3.4s h4
[ ]  121461       0       0  121461 / 1000000     3.5s h4
[ ]  124871       0       0  124871 / 1000000     3.6s h4
[ ]  128322       0       0  128322 / 1000000     3.7s h4
[ ]  131804       0       0  131804 / 1000000     3.8s h4
[ ]  135457       0       0  135457 / 1000000     3.9s h4
[ ]  139155       0       0  139155 / 1000000     4.0s h4
[ ]  142752       0       0  142752 / 1000000     4.1s h4
[ ]  146230       0       0  146230 / 1000000     4.2s h4
[ ]  149942       0       0  149942 / 1000000     4.3s h4
[ ]  153352       0       0  153352 / 1000000     4.4s h4
[ ]  156857       0       0  156857 / 1000000     4.5s h4
[ ]  160412       0       0  160412 / 1000000     4.6s h4
[ ]  163957       0       0  163957 / 1000000     4.7s h4
[ ]  167516       0       0  167516 / 1000000     4.8s h4
[ ]  170829       0       0  170829 / 1000000     4.9s h4
[ ]  174280       0       0  174280 / 1000000     5.0s h4
[ ]  177815       0       0  177815 / 1000000     5.1s h4
[ ]  181295       0       0  181295 / 1000000     5.2s h4
[ ]  184862       0       0  184862 / 1000000     5.3s h4
[ ]  188334       0       0  188334 / 1000000     5.4s h4
[ ]  191820       0       0  191820 / 1000000     5.5s h4 (   testing)
[ ]  195358       0       0  195358 / 1000000     5.6s h4
[ ]  198949       0       0  198949 / 1000000     5.7s h4
[ ]  202514       0       0  202514 / 1000000     5.8s h4
[ ]  206084       0       0  206084 / 1000000     5.9s h4
[ ]  209667       0       0  209667 / 1000000     6.0s h4
[ ]  213066       0       0  213066 / 1000000     6.1s h4
[ ]  216468       0       0  216468 / 1000000     6.2s h4
[ ]  219894       0       0  219894 / 1000000     6.3s h4
[ ]  223314       0       0  223314 / 1000000     6.4s h4 (collecting)
[ ]  226778       0       0  226778 / 1000000     6.5s h4
[ ]  230185       0       0  230185 / 1000000     6.6s h4
[ ]  233758       0       0  233758 / 1000000     6.7s h4
[ ]  237316       0       0  237316 / 1000000     6.8s h4
[ ]  240926       0       0  240926 / 1000000     6.9s h4
[ ]  244652       0       0  244652 / 1000000     7.0s h4
[ ]  248325       0       0  248325 / 1000000     7.1s h4
[ ]  251655       0       0  251655 / 1000000     7.2s h4
[ ]  254978       0       0  254978 / 1000000     7.3s h4
[ ]  258316       0       0  258316 / 1000000     7.4s h4
[ ]  261725       0       0  261725 / 1000000     7.5s h4
[ ]  265171       0       0  265171 / 1000000     7.6s h4
[ ]  268743       0       0  268743 / 1000000     7.7s h4
[ ]  272300       0       0  272300 / 1000000     7.8s h4
[ ]  276368       0       0  276368 / 1000000     7.9s h4
[ ]  281129       0       0  281129 / 1000000     8.0s h4
[ ]  285171       0       0  285171 / 1000000     8.1s h4
[ ]  288614       0       0  288614 / 1000000     8.2s h4
[ ]  292309       0       0  292309 / 1000000     8.3s h4
[ ]  296025       0       0  296025 / 1000000     8.4s h4
[ ]  300728       0       0  300728 / 1000000     8.5s h4
[ ]  304401       0       0  304401 / 1000000     8.6s h4
[ ]  308419       0       0  308419 / 1000000     8.7s h4
[ ]  312562       0       0  312562 / 1000000     8.8s h4
[ ]  316035       0       0  316035 / 1000000     8.9s h4
[ ]  319642       0       0  319642 / 1000000     9.0s h4
[ ]  323574       0       0  323574 / 1000000     9.1s h4
[ ]  329130       0       0  329130 / 1000000     9.2s h4
[ ]  332721       0       0  332721 / 1000000     9.3s h4
[ ]  336200       0       0  336200 / 1000000     9.4s h4
[ ]  339655       0       0  339655 / 1000000     9.5s h4
[ ]  343174       0       0  343174 / 1000000     9.6s h4
[ ]  346989       0       0  346989 / 1000000     9.7s h4
[ ]  350924       0       0  350924 / 1000000     9.8s h4
[ ]  354590       0       0  354590 / 1000000     9.9s h4
[ ]  358396       0       0  358396 / 1000000    10.0s h4
[ ]  361980       0       0  361980 / 1000000    10.1s h4
[ ]  365404       0       0  365404 / 1000000    10.2s h4
[ ]  368909       0       0  368909 / 1000000    10.3s h4
[ ]  372468       0       0  372468 / 1000000    10.4s h4
[ ]  376057       0       0  376057 / 1000000    10.5s h4
[ ]  379532       0       0  379532 / 1000000    10.6s h4
[ ]  382990       0       0  382990 / 1000000    10.7s h4
[ ]  386422       0       0  386422 / 1000000    10.8s h4
[ ]  389849       0       0  389849 / 1000000    10.9s h4
[ ]  393299       0       0  393299 / 1000000    11.0s h4
[ ]  397972       0       0  397972 / 1000000    11.1s h4
[ ]  401465       0       0  401465 / 1000000    11.2s h4
[ ]  404886       0       0  404886 / 1000000    11.3s h4
[ ]  408332       0       0  408332 / 1000000    11.4s h4
[ ]  411757       0       0  411757 / 1000000    11.5s h4
[ ]  415327       0       0  415327 / 1000000    11.6s h4
[ ]  418726       0       0  418726 / 1000000    11.7s h4
[ ]  422191       0       0  422191 / 1000000    11.8s h4
[ ]  425721       0       0  425721 / 1000000    11.9s h4
[ ]  429357       0       0  429357 / 1000000    12.0s h4
[ ]  432964       0       0  432964 / 1000000    12.1s h4
[ ]  436469       0       0  436469 / 1000000    12.2s h4
[ ]  439872       0       0  439872 / 1000000    12.3s h4
[ ]  443454       0       0  443454 / 1000000    12.4s h4
[ ]  447241       0       0  447241 / 1000000    12.5s h4
[ ]  450827       0       0  450827 / 1000000    12.6s h4
[ ]  454425       0       0  454425 / 1000000    12.7s h4
[ ]  458081       0       0  458081 / 1000000    12.8s h4
[ ]  461773       0       0  461773 / 1000000    12.9s h4
[ ]  465368       0       0  465368 / 1000000    13.0s h4
[ ]  469104       0       0  469104 / 1000000    13.1s h4
[ ]  472804       0       0  472804 / 1000000    13.2s h4
[ ]  476210       0       0  476210 / 1000000    13.3s h4
[ ]  479825       0       0  479825 / 1000000    13.4s h4
[ ]  483443       0       0  483443 / 1000000    13.5s h4
[ ]  486907       0       0  486907 / 1000000    13.6s h4
[ ]  490525       0       0  490525 / 1000000    13.7s h4
[ ]  494009       0       0  494009 / 1000000    13.8s h4
[ ]  497497       0       0  497497 / 1000000    13.9s h4
[ ]  501160       0       0  501160 / 1000000    14.0s h4
[ ]  504686       0       0  504686 / 1000000    14.1s h4
[ ]  508267       0       0  508267 / 1000000    14.2s h4
[ ]  511719       0       0  511719 / 1000000    14.3s h4
[ ]  515276       0       0  515276 / 1000000    14.4s h4
[ ]  518747       0       0  518747 / 1000000    14.5s h4
[ ]  522356       0       0  522356 / 1000000    14.6s h4
[ ]  525861       0       0  525861 / 1000000    14.7s h4
[ ]  529399       0       0  529399 / 1000000    14.8s h4
[ ]  532858       0       0  532858 / 1000000    14.9s h4
[ ]  537566       0       0  537566 / 1000000    15.0s h4
[ ]  541250       0       0  541250 / 1000000    15.1s h4
[ ]  545235       0       0  545235 / 1000000    15.2s h4
[ ]  548790       0       0  548790 / 1000000    15.3s h4
[ ]  553438       0       0  553438 / 1000000    15.4s h4
[ ]  556969       0       0  556969 / 1000000    15.5s h4
[ ]  560585       0       0  560585 / 1000000    15.6s h4
[ ]  564024       0       0  564024 / 1000000    15.7s h4
[ ]  567419       0       0  567419 / 1000000    15.8s h4
[ ]  570758       0       0  570758 / 1000000    15.9s h4
[ ]  574284       0       0  574284 / 1000000    16.0s h4
[ ]  577857       0       0  577857 / 1000000    16.1s h4
[ ]  581300       0       0  581300 / 1000000    16.2s h4
[ ]  584750       0       0  584750 / 1000000    16.3s h4
[ ]  588156       0       0  588156 / 1000000    16.4s h4
[ ]  591676       0       0  591676 / 1000000    16.5s h4
[ ]  595040       0       0  595040 / 1000000    16.6s h4
[ ]  598624       0       0  598624 / 1000000    16.7s h4
[ ]  602187       0       0  602187 / 1000000    16.8s h4
[ ]  605730       0       0  605730 / 1000000    16.9s h4
[ ]  609193       0       0  609193 / 1000000    17.0s h4
[ ]  612761       0       0  612761 / 1000000    17.1s h4 (collecting)
[ ]  617239       0       0  617239 / 1000000    17.2s h4
[ ]  621141       0       0  621141 / 1000000    17.3s h4
[ ]  624683       0       0  624683 / 1000000    17.4s h4
[ ]  628282       0       0  628282 / 1000000    17.5s h4
[ ]  631970       0       0  631970 / 1000000    17.6s h4
[ ]  635561       0       0  635561 / 1000000    17.7s h4
[ ]  639079       0       0  639079 / 1000000    17.8s h4
[ ]  642531       0       0  642531 / 1000000    17.9s h4
[ ]  645882       0       0  645882 / 1000000    18.0s h4
[ ]  649309       0       0  649309 / 1000000    18.1s h4
[ ]  652883       0       0  652883 / 1000000    18.2s h4
[ ]  656417       0       0  656417 / 1000000    18.3s h4
[ ]  659858       0       0  659858 / 1000000    18.4s h4
[ ]  663281       0       0  663281 / 1000000    18.5s h4
[ ]  666734       0       0  666734 / 1000000    18.6s h4
[ ]  670235       0       0  670235 / 1000000    18.7s h4
[ ]  673566       0       0  673566 / 1000000    18.8s h4
[ ]  677170       0       0  677170 / 1000000    18.9s h4
[ ]  680646       0       0  680646 / 1000000    19.0s h4
[ ]  684058       0       0  684058 / 1000000    19.1s h4
[ ]  687502       0       0  687502 / 1000000    19.2s h4
[ ]  690891       0       0  690891 / 1000000    19.3s h4
[ ]  694412       0       0  694412 / 1000000    19.4s h4
[ ]  697946       0       0  697946 / 1000000    19.5s h4
[ ]  701455       0       0  701455 / 1000000    19.6s h4
[ ]  704939       0       0  704939 / 1000000    19.7s h4
[ ]  708440       0       0  708440 / 1000000    19.8s h4
[ ]  711974       0       0  711974 / 1000000    19.9s h4
[ ]  715506       0       0  715506 / 1000000    20.0s h4
[ ]  719122       0       0  719122 / 1000000    20.1s h4
[ ]  722656       0       0  722656 / 1000000    20.2s h4
[ ]  726223       0       0  726223 / 1000000    20.3s h4
[ ]  729695       0       0  729695 / 1000000    20.4s h4
[ ]  733102       0       0  733102 / 1000000    20.5s h4
[ ]  736503       0       0  736503 / 1000000    20.6s h4
[ ]  739976       0       0  739976 / 1000000    20.7s h4
[ ]  743390       0       0  743390 / 1000000    20.8s h4 (   testing)
[ ]  746751       0       0  746751 / 1000000    20.9s h4
[ ]  750245       0       0  750245 / 1000000    21.0s h4
[ ]  753721       0       0  753721 / 1000000    21.1s h4
[ ]  757183       0       0  757183 / 1000000    21.2s h4
[ ]  760679       0       0  760679 / 1000000    21.3s h4
[ ]  764200       0       0  764200 / 1000000    21.4s h4
[ ]  767754       0       0  767754 / 1000000    21.5s h4
[ ]  771271       0       0  771271 / 1000000    21.6s h4
[ ]  774835       0       0  774835 / 1000000    21.7s h4
[ ]  778388       0       0  778388 / 1000000    21.8s h4
[ ]  781769       0       0  781769 / 1000000    21.9s h4
[ ]  785189       0       0  785189 / 1000000    22.0s h4
[ ]  788926       0       0  788926 / 1000000    22.1s h4
[ ]  792370       0       0  792370 / 1000000    22.2s h4
[ ]  795839       0       0  795839 / 1000000    22.3s h4
[ ]  799505       0       0  799505 / 1000000    22.4s h4
[ ]  803035       0       0  803035 / 1000000    22.5s h4
[ ]  806788       0       0  806788 / 1000000    22.6s h4
[ ]  810229       0       0  810229 / 1000000    22.7s h4
[ ]  813791       0       0  813791 / 1000000    22.8s h4
[ ]  817326       0       0  817326 / 1000000    22.9s h4
[ ]  820680       0       0  820680 / 1000000    23.0s h4
[ ]  823902       0       0  823902 / 1000000    23.1s h4
[ ]  827037       0       0  827037 / 1000000    23.2s h4
[ ]  830399       0       0  830399 / 1000000    23.3s h4
[ ]  834078       0       0  834078 / 1000000    23.4s h4
[ ]  837659       0       0  837659 / 1000000    23.5s h4
[ ]  840972       0       0  840972 / 1000000    23.6s h4
[ ]  844429       0       0  844429 / 1000000    23.7s h4
[ ]  847976       0       0  847976 / 1000000    23.8s h4
[ ]  851433       0       0  851433 / 1000000    23.9s h4
[ ]  854815       0       0  854815 / 1000000    24.0s h4
[ ]  858275       0       0  858275 / 1000000    24.1s h4
[ ]  861632       0       0  861632 / 1000000    24.2s h4
[ ]  865064       0       0  865064 / 1000000    24.3s h4
[ ]  868574       0       0  868574 / 1000000    24.4s h4
[ ]  872054       0       0  872054 / 1000000    24.5s h4
[ ]  875557       0       0  875557 / 1000000    24.6s h4
[ ]  879074       0       0  879074 / 1000000    24.7s h4
[ ]  882639       0       0  882639 / 1000000    24.8s h4
[ ]  886272       0       0  886272 / 1000000    24.9s h4
[ ]  889895       0       0  889895 / 1000000    25.0s h4
[ ]  893571       0       0  893571 / 1000000    25.1s h4
[ ]  897355       0       0  897355 / 1000000    25.2s h4
[ ]  900942       0       0  900942 / 1000000    25.3s h4
[ ]  904365       0       0  904365 / 1000000    25.4s h4
[ ]  907694       0       0  907694 / 1000000    25.5s h4
[ ]  911083       0       0  911083 / 1000000    25.6s h4
[ ]  914371       0       0  914371 / 1000000    25.7s h4
[ ]  917611       0       0  917611 / 1000000    25.8s h4
[ ]  920992       0       0  920992 / 1000000    25.9s h4 (collecting)
[ ]  924345       0       0  924345 / 1000000    26.0s h4
[ ]  927670       0       0  927670 / 1000000    26.1s h4
[ ]  931064       0       0  931064 / 1000000    26.2s h4
[ ]  934324       0       0  934324 / 1000000    26.3s h4
[ ]  937750       0       0  937750 / 1000000    26.4s h4
[ ]  941224       0       0  941224 / 1000000    26.5s h4
[ ]  944679       0       0  944679 / 1000000    26.6s h4
[ ]  948183       0       0  948183 / 1000000    26.7s h4
[ ]  951675       0       0  951675 / 1000000    26.8s h4
[ ]  955364       0       0  955364 / 1000000    26.9s h4
[ ]  959177       0       0  959177 / 1000000    27.0s h4
[ ]  962634       0       0  962634 / 1000000    27.1s h4
[ ]  965714       0       0  965714 / 1000000    27.2s h4
[ ]  968871       0       0  968871 / 1000000    27.3s h4
[ ]  972773       0       0  972773 / 1000000    27.4s h4
[ ]  976617       0       0  976617 / 1000000    27.5s h4
[ ]  980423       0       0  980423 / 1000000    27.6s h4
[ ]  983725       0       0  983725 / 1000000    27.7s h4
[ ]  986970       0       0  986970 / 1000000    27.8s h4
[ ]  990197       0       0  990197 / 1000000    27.9s h4
[ ]  993494       0       0  993494 / 1000000    28.0s h4
[ ]  996679       0       0  996679 / 1000000    28.1s h4
[✓] 1000000       0       0 1000000 / 1000000    28.2s h4
- ================================================================================
- success (ran 6 tests)
-> compiled  dates_calc.0.0.4
-> removed   dates_calc.0.0.4
-> installed dates_calc.0.0.4
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 01:43.12 ---> saved as "b89528ac7abfcc1611535b71f0239ca0eda116ec6ab5ddddafc7420266994088"
Job succeeded
2026-04-11 01:44.28: Job succeeded