(not at the head of any monitored branch or PR)
2026-04-30 02:03.23: New job: test dates_calc.0.0.1 with dune.3.23.0~alpha2, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29824/head (89a6ae888498500bf7c0fc05361da936fc6acacf)
                              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/29824/head" && git reset --hard 89a6ae88
git fetch origin master
git merge --no-edit d1c56642b8ca7e1166c90bfe0c74f38007bbad58
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:00f499d6f7e3b1be41e5b77f79fcd94054ac0247cdd1991aa7156482fe125d44
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.23.0~alpha2 3.23.0~alpha2
RUN opam reinstall dune.3.23.0~alpha2; \
    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.23.0~alpha2' && 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.1; \
    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.1' && 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.1) || true
RUN opam reinstall --with-test --verbose dates_calc.0.0.1; \
    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.1' && 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-30 02:03.23: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:00f499d6f7e3b1be41e5b77f79fcd94054ac0247cdd1991aa7156482fe125d44-dune.3.23.0~alpha2-dates_calc.0.0.1-89a6ae888498500bf7c0fc05361da936fc6acacf"
2026-04-30 02:03.23: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:00f499d6f7e3b1be41e5b77f79fcd94054ac0247cdd1991aa7156482fe125d44)
 (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.23.0~alpha2 3.23.0~alpha2"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dune.3.23.0~alpha2;\
             \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.23.0~alpha2' && 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.1;\
             \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.1' && 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.1) || true"))
 (run (shell  "opam reinstall --with-test --verbose dates_calc.0.0.1;\
             \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.1' && 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-30 02:03.23: Waiting for resource in pool OCluster
2026-04-30 05:55.53: Waiting for worker…
2026-04-30 05:57.55: Got resource from pool OCluster
Building on clete.caelum.ci.dev
All commits already cached
Updating files:  75% (14275/18887)
Updating files:  76% (14355/18887)
Updating files:  77% (14543/18887)
Updating files:  78% (14732/18887)
Updating files:  79% (14921/18887)
Updating files:  80% (15110/18887)
Updating files:  81% (15299/18887)
Updating files:  82% (15488/18887)
Updating files:  83% (15677/18887)
Updating files:  84% (15866/18887)
Updating files:  85% (16054/18887)
Updating files:  86% (16243/18887)
Updating files:  87% (16432/18887)
Updating files:  88% (16621/18887)
Updating files:  89% (16810/18887)
Updating files:  90% (16999/18887)
Updating files:  91% (17188/18887)
Updating files:  92% (17377/18887)
Updating files:  93% (17565/18887)
Updating files:  94% (17754/18887)
Updating files:  95% (17943/18887)
Updating files:  96% (18132/18887)
Updating files:  97% (18321/18887)
Updating files:  98% (18510/18887)
Updating files:  99% (18699/18887)
Updating files: 100% (18887/18887)
Updating files: 100% (18887/18887), done.
HEAD is now at d1c56642b8 Merge pull request #29820 from jmid/core-0.17.1-bound
Merge made by the 'ort' strategy.
 .../chrome-trace/chrome-trace.3.23.0~alpha2/opam   | 39 +++++++++++
 .../dune-action-plugin.3.23.0~alpha2/opam          | 52 ++++++++++++++
 .../dune-action-trace.3.23.0~alpha2/opam           | 39 +++++++++++
 .../dune-build-info.3.23.0~alpha2/opam             | 45 ++++++++++++
 .../dune-configurator.3.23.0~alpha2/opam           | 49 +++++++++++++
 packages/dune-glob/dune-glob.3.23.0~alpha2/opam    | 42 ++++++++++++
 .../dune-private-libs.3.23.0~alpha2/opam           | 50 ++++++++++++++
 .../dune-rpc-lwt/dune-rpc-lwt.3.23.0~alpha2/opam   | 41 +++++++++++
 packages/dune-rpc/dune-rpc.3.23.0~alpha2/opam      | 44 ++++++++++++
 packages/dune-site/dune-site.3.23.0~alpha2/opam    | 37 ++++++++++
 packages/dune/dune.3.23.0~alpha2/opam              | 80 ++++++++++++++++++++++
 packages/dyn/dyn.3.23.0~alpha2/opam                | 40 +++++++++++
 packages/fs-io/fs-io.3.23.0~alpha2/opam            | 39 +++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.23.0~alpha2/opam  | 43 ++++++++++++
 packages/ordering/ordering.3.23.0~alpha2/opam      | 38 ++++++++++
 packages/stdune/stdune.3.23.0~alpha2/opam          | 46 +++++++++++++
 .../top-closure/top-closure.3.23.0~alpha2/opam     | 38 ++++++++++
 packages/xdg/xdg.3.23.0~alpha2/opam                | 39 +++++++++++
 18 files changed, 801 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.23.0~alpha2/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.23.0~alpha2/opam
 create mode 100644 packages/dune-action-trace/dune-action-trace.3.23.0~alpha2/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.23.0~alpha2/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.23.0~alpha2/opam
 create mode 100644 packages/dune-glob/dune-glob.3.23.0~alpha2/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.23.0~alpha2/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.23.0~alpha2/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.23.0~alpha2/opam
 create mode 100644 packages/dune-site/dune-site.3.23.0~alpha2/opam
 create mode 100644 packages/dune/dune.3.23.0~alpha2/opam
 create mode 100644 packages/dyn/dyn.3.23.0~alpha2/opam
 create mode 100644 packages/fs-io/fs-io.3.23.0~alpha2/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.23.0~alpha2/opam
 create mode 100644 packages/ordering/ordering.3.23.0~alpha2/opam
 create mode 100644 packages/stdune/stdune.3.23.0~alpha2/opam
 create mode 100644 packages/top-closure/top-closure.3.23.0~alpha2/opam
 create mode 100644 packages/xdg/xdg.3.23.0~alpha2/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:00f499d6f7e3b1be41e5b77f79fcd94054ac0247cdd1991aa7156482fe125d44)
2026-04-30 05:58.02 ---> using "3ad720629c2266fa8bdd5d2923dac1e3690d78741c5f65fb1eb4d33725df507c" 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-30 05:58.02 ---> using "0d128a17914946ba4fe4852d9c905008c6396e0502e54d164cf768f35be583e7" from cache

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

Continue? [Y/n] y
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.

Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-30 05:58.02 ---> using "d70296180507e779e1710b2206cbd2ed2063f4f7ba3a5617311725a56ede5942" 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.1
# 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-30 05:58.02 ---> using "8495d51697191c14a2d936280d33309feb632049461097708f2914849f49e434" 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-30 05:58.02 ---> using "e71fcfd10a966fea9cbc39c81a8170d118ef6c5bc3e82b827a8fc5873a3b02c4" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-30 05:58.03 ---> using "1a95fcfdbe33d3db5ee6da23907452f21ceefede84b20ffd63d9951a0582315e" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-30 05:58.03 ---> using "c06cea79d066df0e24bbd5a14e3fb6af810f6c2510831dea6a3f9b3abe543bc6" 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 [129 kB]
- Fetched 219 kB in 0s (1742 kB/s)
- Reading package lists...
- 
2026-04-30 05:58.03 ---> using "79dc76009a07376b7d0a125988001bdfe429c021968c950cc37d4850b4405ed8" from cache

/home/opam: (run (shell "opam pin add -k version -yn dune.3.23.0~alpha2 3.23.0~alpha2"))
dune is now pinned to version 3.23.0~alpha2
2026-04-30 05:58.03 ---> using "0fceafb872b30d0895792b4eaa943f03be2c3da266d1c709c5e111c4f9d0ce56" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dune.3.23.0~alpha2;\
                        \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.23.0~alpha2' && 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.23.0~alpha2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
  - install dune 3.23.0~alpha2 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.23.0~alpha2  (cached)
-> installed dune.3.23.0~alpha2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 05:58.03 ---> using "33f3806b768ed3bccb769c14ec85f285cc9a11aedea3160e9b687d42e8d992f8" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dates_calc.0.0.1;\
                        \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.1' && 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.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
  - install dates_calc 0.0.1

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dates_calc.0.0.1  (https://opam.ocaml.org/cache)
-> installed dates_calc.0.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 05:58.10 ---> saved as "823b60665c01113c38d47e857876ff10b536683487751f841108aa4b31da28e9"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test dates_calc.0.0.1) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile dates_calc         0.0.1
=== install 16 packages
  - install   alcotest           1.9.1  [required by dates_calc]
  - install   astring            0.8.5  [required by alcotest]
  - install   cmdliner           2.1.1  [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.1  (https://opam.ocaml.org/cache)
-> retrieved dates_calc.0.0.1  (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0  (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0  (https://opam.ocaml.org/cache)
-> retrieved ocamlbuild.0.16.1  (https://opam.ocaml.org/cache)
-> retrieved ocamlfind.1.9.8  (https://opam.ocaml.org/cache)
-> retrieved ounit2.2.2.7  (https://opam.ocaml.org/cache)
-> retrieved qcheck.0.91, qcheck-core.0.91, qcheck-ounit.0.91  (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> retrieved seq.base  (2 extra sources)
-> retrieved seq.base  (2 extra sources)
-> installed seq.base
-> retrieved stdlib-shims.0.3.0  (https://opam.ocaml.org/cache)
-> retrieved topkg.1.1.1  (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> installed ocaml-syntax-shims.1.0.0
-> installed stdlib-shims.0.3.0
-> installed re.1.14.0
-> installed ounit2.2.2.7
-> installed qcheck-core.0.91
-> installed qcheck-ounit.0.91
-> installed qcheck.0.91
-> installed ocamlfind.1.9.8
-> installed cmdliner.2.1.1
-> removed   dates_calc.0.0.1
-> 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.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 05:59.49 ---> saved as "bd3192a998735e80b7ca245469839d85bbfa133471b79af384ac97ad281489ed"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [dates_calc.0.0.1: extract]
-> retrieved dates_calc.0.0.1  (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.1)
- (cd _build/default/test && ./unit.exe)
- Testing `unit'.
- This run has ID `MK1FD41V'.
- 
-   [OK]          add_dates          0   days.
-   [OK]          add_dates          1   months_exact.
-   [OK]          add_dates          2   months_ambig.
-   [OK]          add_dates          3   years_exact.
-   [OK]          add_dates          4   years_ambig.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/dates_calc.0.0.1/_build/default/test/_build/_tests/unit'.
- Test Successful in 0.006s. 5 tests run.
- (cd _build/default/test && ./prop.exe)
- 
random seed: 535856792
-   generated   error    fail    pass /   total     time test name
- 
[ ]       0       0       0       0 /    1000     0.0s anon_test_1
[ ]     378       0       0     378 /    1000     0.1s anon_test_1
[ ]     681       0       0     681 /    1000     0.2s anon_test_1
[ ]     977       0       0     977 /    1000     0.3s anon_test_1
[✓]    1000       0       0    1000 /    1000     0.3s anon_test_1
- 
[ ]       0       0       0       0 /    1000     0.0s anon_test_2
[ ]      15       0       0      15 /    1000     0.1s anon_test_2
[ ]      34       0       0      34 /    1000     0.2s anon_test_2
[ ]      46       0       0      46 /    1000     0.3s anon_test_2
[ ]      59       0       0      59 /    1000     0.4s anon_test_2
[ ]      72       0       0      72 /    1000     0.5s anon_test_2
[ ]      85       0       0      85 /    1000     0.6s anon_test_2
[ ]      94       0       0      94 /    1000     0.7s anon_test_2
[ ]     103       0       0     103 /    1000     0.8s anon_test_2
[ ]     116       0       0     116 /    1000     0.9s anon_test_2
[ ]     131       0       0     131 /    1000     1.0s anon_test_2
[ ]     141       0       0     141 /    1000     1.1s anon_test_2
[ ]     150       0       0     150 /    1000     1.3s anon_test_2
[ ]     160       0       0     160 /    1000     1.4s anon_test_2
[ ]     173       0       0     173 /    1000     1.5s anon_test_2
[ ]     192       0       0     192 /    1000     1.6s anon_test_2
[ ]     203       0       0     203 /    1000     1.7s anon_test_2
[ ]     222       0       0     222 /    1000     1.8s anon_test_2
[ ]     241       0       0     241 /    1000     1.9s anon_test_2
[ ]     253       0       0     253 /    1000     2.0s anon_test_2
[ ]     267       0       0     267 /    1000     2.1s anon_test_2
[ ]     278       0       0     278 /    1000     2.2s anon_test_2
[ ]     291       0       0     291 /    1000     2.3s anon_test_2
[ ]     299       0       0     299 /    1000     2.4s anon_test_2
[ ]     314       0       0     314 /    1000     2.5s anon_test_2
[ ]     333       0       0     333 /    1000     2.6s anon_test_2
[ ]     352       0       0     352 /    1000     2.7s anon_test_2
[ ]     372       0       0     372 /    1000     2.8s anon_test_2
[ ]     389       0       0     389 /    1000     3.0s anon_test_2
[ ]     400       0       0     400 /    1000     3.1s anon_test_2
[ ]     411       0       0     411 /    1000     3.2s anon_test_2
[ ]     428       0       0     428 /    1000     3.3s anon_test_2
[ ]     443       0       0     443 /    1000     3.4s anon_test_2
[ ]     457       0       0     457 /    1000     3.5s anon_test_2
[ ]     467       0       0     467 /    1000     3.6s anon_test_2
[ ]     487       0       0     487 /    1000     3.7s anon_test_2
[ ]     495       0       0     495 /    1000     3.8s anon_test_2
[ ]     511       0       0     511 /    1000     3.9s anon_test_2
[ ]     523       0       0     523 /    1000     4.0s anon_test_2
[ ]     537       0       0     537 /    1000     4.1s anon_test_2
[ ]     548       0       0     548 /    1000     4.3s anon_test_2
[ ]     561       0       0     561 /    1000     4.4s anon_test_2
[ ]     575       0       0     575 /    1000     4.5s anon_test_2
[ ]     588       0       0     588 /    1000     4.6s anon_test_2
[ ]     607       0       0     607 /    1000     4.7s anon_test_2
[ ]     623       0       0     623 /    1000     4.8s anon_test_2
[ ]     636       0       0     636 /    1000     4.9s anon_test_2
[ ]     656       0       0     656 /    1000     5.0s anon_test_2
[ ]     666       0       0     666 /    1000     5.1s anon_test_2
[ ]     678       0       0     678 /    1000     5.2s anon_test_2
[ ]     692       0       0     692 /    1000     5.3s anon_test_2
[ ]     704       0       0     704 /    1000     5.4s anon_test_2
[ ]     716       0       0     716 /    1000     5.5s anon_test_2
[ ]     726       0       0     726 /    1000     5.6s anon_test_2
[ ]     739       0       0     739 /    1000     5.7s anon_test_2
[ ]     754       0       0     754 /    1000     5.8s anon_test_2
[ ]     765       0       0     765 /    1000     5.9s anon_test_2
[ ]     777       0       0     777 /    1000     6.1s anon_test_2
[ ]     792       0       0     792 /    1000     6.2s anon_test_2
[ ]     807       0       0     807 /    1000     6.3s anon_test_2
[ ]     820       0       0     820 /    1000     6.4s anon_test_2
[ ]     837       0       0     837 /    1000     6.5s anon_test_2
[ ]     844       0       0     844 /    1000     6.6s anon_test_2
[ ]     865       0       0     865 /    1000     6.7s anon_test_2
[ ]     878       0       0     878 /    1000     6.8s anon_test_2
[ ]     890       0       0     890 /    1000     6.9s anon_test_2
[ ]     902       0       0     902 /    1000     7.0s anon_test_2
[ ]     918       0       0     918 /    1000     7.1s anon_test_2
[ ]     936       0       0     936 /    1000     7.2s anon_test_2
[ ]     946       0       0     946 /    1000     7.3s anon_test_2
[ ]     960       0       0     960 /    1000     7.4s anon_test_2
[ ]     974       0       0     974 /    1000     7.5s anon_test_2
[ ]     985       0       0     985 /    1000     7.7s anon_test_2
[ ]     998       0       0     998 /    1000     7.8s anon_test_2
[✓]    1000       0       0    1000 /    1000     7.8s anon_test_2
- 
[ ]       0       0       0       0 / 1000000     0.0s h1
[ ]    9106       0       0    9106 / 1000000     0.1s h1
[ ]   18488       0       0   18488 / 1000000     0.2s h1
[ ]   27779       0       0   27779 / 1000000     0.3s h1
[ ]   37415       0       0   37415 / 1000000     0.4s h1
[ ]   46931       0       0   46931 / 1000000     0.5s h1
[ ]   56434       0       0   56434 / 1000000     0.6s h1
[ ]   65869       0       0   65869 / 1000000     0.7s h1
[ ]   75564       0       0   75564 / 1000000     0.8s h1
[ ]   85111       0       0   85111 / 1000000     0.9s h1
[ ]   94504       0       0   94504 / 1000000     1.0s h1
[ ]  103596       0       0  103596 / 1000000     1.1s h1 (collecting)
[ ]  112954       0       0  112954 / 1000000     1.2s h1
[ ]  122339       0       0  122339 / 1000000     1.3s h1
[ ]  131715       0       0  131715 / 1000000     1.4s h1 (generating)
[ ]  141032       0       0  141032 / 1000000     1.5s h1
[ ]  150746       0       0  150746 / 1000000     1.6s h1
[ ]  160679       0       0  160679 / 1000000     1.7s h1
[ ]  170815       0       0  170815 / 1000000     1.8s h1
[ ]  180820       0       0  180820 / 1000000     1.9s h1
[ ]  190651       0       0  190651 / 1000000     2.0s h1
[ ]  200086       0       0  200086 / 1000000     2.1s h1
[ ]  209786       0       0  209786 / 1000000     2.2s h1
[ ]  219489       0       0  219489 / 1000000     2.3s h1
[ ]  228954       0       0  228954 / 1000000     2.4s h1
[ ]  238642       0       0  238642 / 1000000     2.5s h1
[ ]  248310       0       0  248310 / 1000000     2.6s h1
[ ]  257897       0       0  257897 / 1000000     2.7s h1
[ ]  267468       0       0  267468 / 1000000     2.8s h1
[ ]  276631       0       0  276631 / 1000000     2.9s h1
[ ]  285726       0       0  285726 / 1000000     3.0s h1
[ ]  295017       0       0  295017 / 1000000     3.1s h1
[ ]  304429       0       0  304429 / 1000000     3.2s h1
[ ]  313668       0       0  313668 / 1000000     3.3s h1 (collecting)
[ ]  323088       0       0  323088 / 1000000     3.4s h1
[ ]  332689       0       0  332689 / 1000000     3.5s h1
[ ]  342011       0       0  342011 / 1000000     3.6s h1 (collecting)
[ ]  351267       0       0  351267 / 1000000     3.7s h1
[ ]  360420       0       0  360420 / 1000000     3.8s h1
[ ]  370113       0       0  370113 / 1000000     3.9s h1
[ ]  379392       0       0  379392 / 1000000     4.0s h1
[ ]  388679       0       0  388679 / 1000000     4.1s h1
[ ]  398200       0       0  398200 / 1000000     4.2s h1
[ ]  407361       0       0  407361 / 1000000     4.3s h1
[ ]  416654       0       0  416654 / 1000000     4.4s h1
[ ]  427390       0       0  427390 / 1000000     4.5s h1
[ ]  436593       0       0  436593 / 1000000     4.6s h1
[ ]  446039       0       0  446039 / 1000000     4.7s h1
[ ]  455245       0       0  455245 / 1000000     4.8s h1
[ ]  464753       0       0  464753 / 1000000     4.9s h1
[ ]  473760       0       0  473760 / 1000000     5.0s h1
[ ]  482990       0       0  482990 / 1000000     5.1s h1
[ ]  492026       0       0  492026 / 1000000     5.2s h1
[ ]  501113       0       0  501113 / 1000000     5.3s h1
[ ]  510302       0       0  510302 / 1000000     5.4s h1 (collecting)
[ ]  519339       0       0  519339 / 1000000     5.5s h1
[ ]  528262       0       0  528262 / 1000000     5.6s h1
[ ]  537953       0       0  537953 / 1000000     5.7s h1
[ ]  547689       0       0  547689 / 1000000     5.8s h1
[ ]  556979       0       0  556979 / 1000000     5.9s h1
[ ]  566629       0       0  566629 / 1000000     6.0s h1
[ ]  575949       0       0  575949 / 1000000     6.1s h1
[ ]  585200       0       0  585200 / 1000000     6.2s h1
[ ]  594748       0       0  594748 / 1000000     6.3s h1
[ ]  604191       0       0  604191 / 1000000     6.4s h1
[ ]  613388       0       0  613388 / 1000000     6.5s h1
[ ]  622542       0       0  622542 / 1000000     6.6s h1
[ ]  631814       0       0  631814 / 1000000     6.7s h1
[ ]  641205       0       0  641205 / 1000000     6.8s h1
[ ]  650564       0       0  650564 / 1000000     6.9s h1
[ ]  659788       0       0  659788 / 1000000     7.0s h1
[ ]  668969       0       0  668969 / 1000000     7.1s h1
[ ]  678361       0       0  678361 / 1000000     7.2s h1
[ ]  687785       0       0  687785 / 1000000     7.3s h1
[ ]  696968       0       0  696968 / 1000000     7.4s h1
[ ]  706235       0       0  706235 / 1000000     7.5s h1
[ ]  715268       0       0  715268 / 1000000     7.6s h1
[ ]  724787       0       0  724787 / 1000000     7.7s h1
[ ]  733950       0       0  733950 / 1000000     7.8s h1
[ ]  743285       0       0  743285 / 1000000     7.9s h1
[ ]  752674       0       0  752674 / 1000000     8.0s h1
[ ]  761949       0       0  761949 / 1000000     8.1s h1
[ ]  771375       0       0  771375 / 1000000     8.2s h1
[ ]  781113       0       0  781113 / 1000000     8.3s h1
[ ]  790836       0       0  790836 / 1000000     8.4s h1
[ ]  800495       0       0  800495 / 1000000     8.5s h1
[ ]  809817       0       0  809817 / 1000000     8.6s h1
[ ]  819183       0       0  819183 / 1000000     8.7s h1
[ ]  828740       0       0  828740 / 1000000     8.8s h1
[ ]  838634       0       0  838634 / 1000000     8.9s h1
[ ]  847810       0       0  847810 / 1000000     9.0s h1
[ ]  857136       0       0  857136 / 1000000     9.1s h1
[ ]  866443       0       0  866443 / 1000000     9.2s h1
[ ]  876028       0       0  876028 / 1000000     9.3s h1 (collecting)
[ ]  885326       0       0  885326 / 1000000     9.4s h1
[ ]  894826       0       0  894826 / 1000000     9.5s h1 (generating)
[ ]  904170       0       0  904170 / 1000000     9.6s h1
[ ]  913707       0       0  913707 / 1000000     9.7s h1
[ ]  923247       0       0  923247 / 1000000     9.8s h1
[ ]  932902       0       0  932902 / 1000000     9.9s h1
[ ]  942710       0       0  942710 / 1000000    10.0s h1
[ ]  951843       0       0  951843 / 1000000    10.1s h1
[ ]  961324       0       0  961324 / 1000000    10.2s h1
[ ]  970748       0       0  970748 / 1000000    10.3s h1
[ ]  979951       0       0  979951 / 1000000    10.4s h1
[ ]  989537       0       0  989537 / 1000000    10.5s h1
[ ]  998597       0       0  998597 / 1000000    10.6s h1
[✓] 1000000       0       0 1000000 / 1000000    10.6s h1
- 
[ ]       0       0       0       0 / 1000000     0.0s h2
[ ]    4751       0       0    4751 / 1000000     0.1s h2
[ ]    9554       0       0    9554 / 1000000     0.2s h2
[ ]   14378       0       0   14378 / 1000000     0.3s h2
[ ]   19120       0       0   19120 / 1000000     0.4s h2
[ ]   23994       0       0   23994 / 1000000     0.5s h2
[ ]   28836       0       0   28836 / 1000000     0.6s h2
[ ]   33454       0       0   33454 / 1000000     0.7s h2
[ ]   38311       0       0   38311 / 1000000     0.8s h2
[ ]   43036       0       0   43036 / 1000000     0.9s h2
[ ]   47603       0       0   47603 / 1000000     1.0s h2
[ ]   52308       0       0   52308 / 1000000     1.1s h2
[ ]   56965       0       0   56965 / 1000000     1.2s h2
[ ]   61662       0       0   61662 / 1000000     1.3s h2
[ ]   66335       0       0   66335 / 1000000     1.4s h2
[ ]   71040       0       0   71040 / 1000000     1.5s h2
[ ]   75762       0       0   75762 / 1000000     1.6s h2
[ ]   80538       0       0   80538 / 1000000     1.7s h2 (collecting)
[ ]   85279       0       0   85279 / 1000000     1.8s h2
[ ]   89902       0       0   89902 / 1000000     1.9s h2
[ ]   94594       0       0   94594 / 1000000     2.0s h2
[ ]   99382       0       0   99382 / 1000000     2.1s h2
[ ]  104020       0       0  104020 / 1000000     2.2s h2
[ ]  108676       0       0  108676 / 1000000     2.3s h2
[ ]  113335       0       0  113335 / 1000000     2.4s h2
[ ]  118140       0       0  118140 / 1000000     2.5s h2
[ ]  122977       0       0  122977 / 1000000     2.6s h2
[ ]  127636       0       0  127636 / 1000000     2.7s h2
[ ]  132294       0       0  132294 / 1000000     2.8s h2
[ ]  136931       0       0  136931 / 1000000     2.9s h2
[ ]  141616       0       0  141616 / 1000000     3.0s h2
[ ]  146389       0       0  146389 / 1000000     3.1s h2
[ ]  151188       0       0  151188 / 1000000     3.2s h2
[ ]  156053       0       0  156053 / 1000000     3.3s h2
[ ]  160827       0       0  160827 / 1000000     3.4s h2
[ ]  165502       0       0  165502 / 1000000     3.5s h2 (collecting)
[ ]  170271       0       0  170271 / 1000000     3.6s h2 (collecting)
[ ]  174910       0       0  174910 / 1000000     3.7s h2
[ ]  179555       0       0  179555 / 1000000     3.8s h2
[ ]  184231       0       0  184231 / 1000000     3.9s h2
[ ]  188998       0       0  188998 / 1000000     4.0s h2
[ ]  193722       0       0  193722 / 1000000     4.1s h2
[ ]  198517       0       0  198517 / 1000000     4.2s h2
[ ]  203241       0       0  203241 / 1000000     4.3s h2
[ ]  208038       0       0  208038 / 1000000     4.4s h2
[ ]  212675       0       0  212675 / 1000000     4.5s h2
[ ]  216679       0       0  216679 / 1000000     4.6s h2
[ ]  221459       0       0  221459 / 1000000     4.7s h2
[ ]  226289       0       0  226289 / 1000000     4.8s h2
[ ]  231039       0       0  231039 / 1000000     4.9s h2
[ ]  235906       0       0  235906 / 1000000     5.0s h2
[ ]  240664       0       0  240664 / 1000000     5.1s h2
[ ]  245546       0       0  245546 / 1000000     5.2s h2
[ ]  250428       0       0  250428 / 1000000     5.3s h2
[ ]  255315       0       0  255315 / 1000000     5.4s h2
[ ]  260094       0       0  260094 / 1000000     5.5s h2
[ ]  264933       0       0  264933 / 1000000     5.6s h2
[ ]  269545       0       0  269545 / 1000000     5.7s h2
[ ]  274175       0       0  274175 / 1000000     5.8s h2
[ ]  278957       0       0  278957 / 1000000     5.9s h2
[ ]  283757       0       0  283757 / 1000000     6.0s h2
[ ]  288467       0       0  288467 / 1000000     6.1s h2
[ ]  293240       0       0  293240 / 1000000     6.2s h2
[ ]  298004       0       0  298004 / 1000000     6.3s h2
[ ]  302565       0       0  302565 / 1000000     6.4s h2
[ ]  307219       0       0  307219 / 1000000     6.5s h2
[ ]  311797       0       0  311797 / 1000000     6.6s h2
[ ]  316502       0       0  316502 / 1000000     6.7s h2
[ ]  321261       0       0  321261 / 1000000     6.8s h2
[ ]  325991       0       0  325991 / 1000000     6.9s h2
[ ]  330562       0       0  330562 / 1000000     7.0s h2
[ ]  335289       0       0  335289 / 1000000     7.1s h2 (collecting)
[ ]  339934       0       0  339934 / 1000000     7.2s h2
[ ]  344532       0       0  344532 / 1000000     7.3s h2
[ ]  349131       0       0  349131 / 1000000     7.4s h2
[ ]  353839       0       0  353839 / 1000000     7.5s h2
[ ]  358260       0       0  358260 / 1000000     7.6s h2
[ ]  362934       0       0  362934 / 1000000     7.7s h2
[ ]  367456       0       0  367456 / 1000000     7.8s h2
[ ]  372208       0       0  372208 / 1000000     7.9s h2
[ ]  376910       0       0  376910 / 1000000     8.0s h2
[ ]  381464       0       0  381464 / 1000000     8.1s h2
[ ]  386085       0       0  386085 / 1000000     8.2s h2
[ ]  391005       0       0  391005 / 1000000     8.3s h2
[ ]  395498       0       0  395498 / 1000000     8.4s h2
[ ]  400161       0       0  400161 / 1000000     8.5s h2
[ ]  404918       0       0  404918 / 1000000     8.6s h2
[ ]  409770       0       0  409770 / 1000000     8.7s h2 (collecting)
[ ]  414515       0       0  414515 / 1000000     8.8s h2
[ ]  419249       0       0  419249 / 1000000     8.9s h2
[ ]  423949       0       0  423949 / 1000000     9.0s h2
[ ]  428658       0       0  428658 / 1000000     9.1s h2
[ ]  433390       0       0  433390 / 1000000     9.2s h2
[ ]  438113       0       0  438113 / 1000000     9.3s h2
[ ]  442737       0       0  442737 / 1000000     9.4s h2
[ ]  447430       0       0  447430 / 1000000     9.5s h2
[ ]  452080       0       0  452080 / 1000000     9.6s h2 (collecting)
[ ]  456799       0       0  456799 / 1000000     9.7s h2
[ ]  461577       0       0  461577 / 1000000     9.8s h2
[ ]  466276       0       0  466276 / 1000000     9.9s h2
[ ]  471092       0       0  471092 / 1000000    10.0s h2
[ ]  475985       0       0  475985 / 1000000    10.1s h2
[ ]  480594       0       0  480594 / 1000000    10.2s h2
[ ]  485190       0       0  485190 / 1000000    10.3s h2
[ ]  489765       0       0  489765 / 1000000    10.4s h2
[ ]  494404       0       0  494404 / 1000000    10.5s h2
[ ]  499174       0       0  499174 / 1000000    10.6s h2
[ ]  503886       0       0  503886 / 1000000    10.7s h2
[ ]  508571       0       0  508571 / 1000000    10.8s h2
[ ]  513469       0       0  513469 / 1000000    10.9s h2
[ ]  518093       0       0  518093 / 1000000    11.0s h2
[ ]  522845       0       0  522845 / 1000000    11.1s h2
[ ]  527374       0       0  527374 / 1000000    11.2s h2
[ ]  532191       0       0  532191 / 1000000    11.3s h2
[ ]  537010       0       0  537010 / 1000000    11.4s h2
[ ]  541885       0       0  541885 / 1000000    11.5s h2
[ ]  546859       0       0  546859 / 1000000    11.6s h2
[ ]  551817       0       0  551817 / 1000000    11.7s h2
[ ]  556536       0       0  556536 / 1000000    11.8s h2
[ ]  561379       0       0  561379 / 1000000    11.9s h2
[ ]  566235       0       0  566235 / 1000000    12.0s h2
[ ]  571182       0       0  571182 / 1000000    12.1s h2
[ ]  575810       0       0  575810 / 1000000    12.2s h2
[ ]  580478       0       0  580478 / 1000000    12.3s h2
[ ]  585262       0       0  585262 / 1000000    12.4s h2
[ ]  590128       0       0  590128 / 1000000    12.5s h2
[ ]  594974       0       0  594974 / 1000000    12.6s h2
[ ]  599902       0       0  599902 / 1000000    12.7s h2
[ ]  604658       0       0  604658 / 1000000    12.8s h2
[ ]  609558       0       0  609558 / 1000000    12.9s h2
[ ]  614163       0       0  614163 / 1000000    13.0s h2
[ ]  618850       0       0  618850 / 1000000    13.1s h2
[ ]  623573       0       0  623573 / 1000000    13.2s h2
[ ]  628454       0       0  628454 / 1000000    13.3s h2
[ ]  633350       0       0  633350 / 1000000    13.4s h2
[ ]  638242       0       0  638242 / 1000000    13.5s h2
[ ]  643017       0       0  643017 / 1000000    13.6s h2
[ ]  647895       0       0  647895 / 1000000    13.7s h2
[ ]  652580       0       0  652580 / 1000000    13.8s h2
[ ]  657402       0       0  657402 / 1000000    13.9s h2
[ ]  662235       0       0  662235 / 1000000    14.0s h2
[ ]  667058       0       0  667058 / 1000000    14.1s h2
[ ]  671887       0       0  671887 / 1000000    14.2s h2
[ ]  676607       0       0  676607 / 1000000    14.3s h2
[ ]  681325       0       0  681325 / 1000000    14.4s h2
[ ]  686045       0       0  686045 / 1000000    14.5s h2
[ ]  690741       0       0  690741 / 1000000    14.6s h2 (collecting)
[ ]  695674       0       0  695674 / 1000000    14.7s h2
[ ]  700406       0       0  700406 / 1000000    14.8s h2
[ ]  705323       0       0  705323 / 1000000    14.9s h2
[ ]  710307       0       0  710307 / 1000000    15.0s h2
[ ]  715354       0       0  715354 / 1000000    15.1s h2
[ ]  720309       0       0  720309 / 1000000    15.2s h2 (collecting)
[ ]  724913       0       0  724913 / 1000000    15.3s h2
[ ]  729519       0       0  729519 / 1000000    15.4s h2
[ ]  734180       0       0  734180 / 1000000    15.5s h2
[ ]  738814       0       0  738814 / 1000000    15.6s h2
[ ]  743503       0       0  743503 / 1000000    15.7s h2
[ ]  748260       0       0  748260 / 1000000    15.8s h2
[ ]  753039       0       0  753039 / 1000000    15.9s h2
[ ]  757880       0       0  757880 / 1000000    16.0s h2
[ ]  762606       0       0  762606 / 1000000    16.1s h2
[ ]  767260       0       0  767260 / 1000000    16.2s h2
[ ]  771947       0       0  771947 / 1000000    16.3s h2
[ ]  776655       0       0  776655 / 1000000    16.4s h2
[ ]  781302       0       0  781302 / 1000000    16.5s h2
[ ]  786104       0       0  786104 / 1000000    16.6s h2
[ ]  790778       0       0  790778 / 1000000    16.7s h2
[ ]  795463       0       0  795463 / 1000000    16.8s h2
[ ]  799847       0       0  799847 / 1000000    16.9s h2
[ ]  804605       0       0  804605 / 1000000    17.0s h2
[ ]  809356       0       0  809356 / 1000000    17.1s h2
[ ]  814246       0       0  814246 / 1000000    17.2s h2
[ ]  819000       0       0  819000 / 1000000    17.3s h2
[ ]  823778       0       0  823778 / 1000000    17.4s h2
[ ]  828625       0       0  828625 / 1000000    17.5s h2
[ ]  833417       0       0  833417 / 1000000    17.6s h2
[ ]  838569       0       0  838569 / 1000000    17.7s h2
[ ]  843746       0       0  843746 / 1000000    17.8s h2
[ ]  848808       0       0  848808 / 1000000    17.9s h2
[ ]  853723       0       0  853723 / 1000000    18.0s h2
[ ]  858611       0       0  858611 / 1000000    18.1s h2
[ ]  863548       0       0  863548 / 1000000    18.2s h2
[ ]  868509       0       0  868509 / 1000000    18.3s h2
[ ]  873563       0       0  873563 / 1000000    18.4s h2
[ ]  878379       0       0  878379 / 1000000    18.5s h2
[ ]  883238       0       0  883238 / 1000000    18.6s h2
[ ]  887985       0       0  887985 / 1000000    18.7s h2
[ ]  892741       0       0  892741 / 1000000    18.8s h2
[ ]  897684       0       0  897684 / 1000000    18.9s h2
[ ]  902541       0       0  902541 / 1000000    19.0s h2
[ ]  907493       0       0  907493 / 1000000    19.1s h2
[ ]  912374       0       0  912374 / 1000000    19.2s h2
[ ]  917259       0       0  917259 / 1000000    19.3s h2
[ ]  922137       0       0  922137 / 1000000    19.4s h2
[ ]  926903       0       0  926903 / 1000000    19.5s h2
[ ]  931725       0       0  931725 / 1000000    19.6s h2
[ ]  936483       0       0  936483 / 1000000    19.7s h2
[ ]  941310       0       0  941310 / 1000000    19.8s h2
[ ]  946213       0       0  946213 / 1000000    19.9s h2
[ ]  951037       0       0  951037 / 1000000    20.0s h2
[ ]  955990       0       0  955990 / 1000000    20.1s h2
[ ]  960988       0       0  960988 / 1000000    20.2s h2
[ ]  965979       0       0  965979 / 1000000    20.3s h2
[ ]  970929       0       0  970929 / 1000000    20.4s h2
[ ]  975673       0       0  975673 / 1000000    20.5s h2
[ ]  980468       0       0  980468 / 1000000    20.6s h2
[ ]  985263       0       0  985263 / 1000000    20.7s h2
[ ]  990145       0       0  990145 / 1000000    20.8s h2
[ ]  995019       0       0  995019 / 1000000    20.9s h2 (   testing)
[ ]  999756       0       0  999756 / 1000000    21.0s h2
[✓] 1000000       0       0 1000000 / 1000000    21.0s h2
- 
[ ]       0       0       0       0 / 1000000     0.0s h3
[ ]    9174       0       0    9174 / 1000000     0.1s h3
[ ]   18515       0       0   18515 / 1000000     0.2s h3
[ ]   27785       0       0   27785 / 1000000     0.3s h3
[ ]   37091       0       0   37091 / 1000000     0.4s h3
[ ]   46499       0       0   46499 / 1000000     0.5s h3
[ ]   55753       0       0   55753 / 1000000     0.6s h3
[ ]   65118       0       0   65118 / 1000000     0.7s h3
[ ]   74348       0       0   74348 / 1000000     0.8s h3
[ ]   83758       0       0   83758 / 1000000     0.9s h3
[ ]   92836       0       0   92836 / 1000000     1.0s h3
[ ]  101443       0       0  101443 / 1000000     1.1s h3
[ ]  110895       0       0  110895 / 1000000     1.2s h3
[ ]  120670       0       0  120670 / 1000000     1.3s h3
[ ]  130148       0       0  130148 / 1000000     1.4s h3
[ ]  139720       0       0  139720 / 1000000     1.5s h3
[ ]  149395       0       0  149395 / 1000000     1.6s h3
[ ]  159138       0       0  159138 / 1000000     1.7s h3 (collecting)
[ ]  168606       0       0  168606 / 1000000     1.8s h3
[ ]  178204       0       0  178204 / 1000000     1.9s h3
[ ]  188092       0       0  188092 / 1000000     2.0s h3 (collecting)
[ ]  197586       0       0  197586 / 1000000     2.1s h3
[ ]  207144       0       0  207144 / 1000000     2.2s h3
[ ]  217055       0       0  217055 / 1000000     2.3s h3 (collecting)
[ ]  226820       0       0  226820 / 1000000     2.4s h3
[ ]  236639       0       0  236639 / 1000000     2.5s h3
[ ]  246430       0       0  246430 / 1000000     2.6s h3
[ ]  255873       0       0  255873 / 1000000     2.7s h3
[ ]  265580       0       0  265580 / 1000000     2.8s h3
[ ]  275391       0       0  275391 / 1000000     2.9s h3
[ ]  285168       0       0  285168 / 1000000     3.0s h3
[ ]  294981       0       0  294981 / 1000000     3.1s h3
[ ]  304759       0       0  304759 / 1000000     3.2s h3
[ ]  314514       0       0  314514 / 1000000     3.3s h3
[ ]  323827       0       0  323827 / 1000000     3.4s h3
[ ]  333414       0       0  333414 / 1000000     3.5s h3
[ ]  343137       0       0  343137 / 1000000     3.6s h3
[ ]  352428       0       0  352428 / 1000000     3.7s h3
[ ]  361945       0       0  361945 / 1000000     3.8s h3
[ ]  371103       0       0  371103 / 1000000     3.9s h3
[ ]  380285       0       0  380285 / 1000000     4.0s h3
[ ]  389669       0       0  389669 / 1000000     4.1s h3
[ ]  399098       0       0  399098 / 1000000     4.2s h3
[ ]  408730       0       0  408730 / 1000000     4.3s h3
[ ]  418369       0       0  418369 / 1000000     4.4s h3
[ ]  428188       0       0  428188 / 1000000     4.5s h3
[ ]  437551       0       0  437551 / 1000000     4.6s h3
[ ]  446924       0       0  446924 / 1000000     4.7s h3
[ ]  455962       0       0  455962 / 1000000     4.8s h3
[ ]  465430       0       0  465430 / 1000000     4.9s h3
[ ]  474844       0       0  474844 / 1000000     5.0s h3
[ ]  484227       0       0  484227 / 1000000     5.1s h3
[ ]  493281       0       0  493281 / 1000000     5.2s h3 (collecting)
[ ]  503562       0       0  503562 / 1000000     5.3s h3
[ ]  513058       0       0  513058 / 1000000     5.4s h3
[ ]  522478       0       0  522478 / 1000000     5.5s h3
[ ]  531658       0       0  531658 / 1000000     5.6s h3 (generating)
[ ]  540915       0       0  540915 / 1000000     5.7s h3
[ ]  550304       0       0  550304 / 1000000     5.8s h3
[ ]  560061       0       0  560061 / 1000000     5.9s h3
[ ]  569742       0       0  569742 / 1000000     6.0s h3
[ ]  579393       0       0  579393 / 1000000     6.1s h3
[ ]  589026       0       0  589026 / 1000000     6.2s h3
[ ]  598686       0       0  598686 / 1000000     6.3s h3
[ ]  608476       0       0  608476 / 1000000     6.4s h3
[ ]  617269       0       0  617269 / 1000000     6.5s h3
[ ]  626737       0       0  626737 / 1000000     6.6s h3
[ ]  636430       0       0  636430 / 1000000     6.7s h3
[ ]  645831       0       0  645831 / 1000000     6.8s h3
[ ]  655423       0       0  655423 / 1000000     6.9s h3
[ ]  664704       0       0  664704 / 1000000     7.0s h3
[ ]  674334       0       0  674334 / 1000000     7.1s h3
[ ]  684014       0       0  684014 / 1000000     7.2s h3
[ ]  693220       0       0  693220 / 1000000     7.3s h3
[ ]  702637       0       0  702637 / 1000000     7.4s h3
[ ]  712027       0       0  712027 / 1000000     7.5s h3
[ ]  721549       0       0  721549 / 1000000     7.6s h3
[ ]  730567       0       0  730567 / 1000000     7.7s h3
[ ]  739647       0       0  739647 / 1000000     7.8s h3
[ ]  749029       0       0  749029 / 1000000     7.9s h3
[ ]  758563       0       0  758563 / 1000000     8.0s h3
[ ]  767552       0       0  767552 / 1000000     8.1s h3
[ ]  776947       0       0  776947 / 1000000     8.2s h3
[ ]  785759       0       0  785759 / 1000000     8.3s h3
[ ]  794612       0       0  794612 / 1000000     8.4s h3
[ ]  803305       0       0  803305 / 1000000     8.5s h3 (collecting)
[ ]  813010       0       0  813010 / 1000000     8.6s h3
[ ]  822937       0       0  822937 / 1000000     8.7s h3
[ ]  832938       0       0  832938 / 1000000     8.8s h3
[ ]  842274       0       0  842274 / 1000000     8.9s h3
[ ]  851586       0       0  851586 / 1000000     9.0s h3
[ ]  861088       0       0  861088 / 1000000     9.1s h3
[ ]  870516       0       0  870516 / 1000000     9.2s h3
[ ]  880307       0       0  880307 / 1000000     9.3s h3
[ ]  889793       0       0  889793 / 1000000     9.4s h3
[ ]  899825       0       0  899825 / 1000000     9.5s h3
[ ]  910228       0       0  910228 / 1000000     9.6s h3
[ ]  919512       0       0  919512 / 1000000     9.7s h3
[ ]  927934       0       0  927934 / 1000000     9.8s h3
[ ]  936774       0       0  936774 / 1000000     9.9s h3
[ ]  947052       0       0  947052 / 1000000    10.0s h3 (collecting)
[ ]  956894       0       0  956894 / 1000000    10.1s h3
[ ]  965377       0       0  965377 / 1000000    10.2s h3
[ ]  973881       0       0  973881 / 1000000    10.3s h3
[ ]  982540       0       0  982540 / 1000000    10.4s h3
[ ]  991020       0       0  991020 / 1000000    10.5s h3
[✓] 1000000       0       0 1000000 / 1000000    10.6s h3
- 
[ ]       0       0       0       0 / 1000000     0.0s h4
[ ]    2427       0       0    2427 / 1000000     0.1s h4
[ ]    4839       0       0    4839 / 1000000     0.2s h4
[ ]    7303       0       0    7303 / 1000000     0.3s h4
[ ]    9744       0       0    9744 / 1000000     0.4s h4
[ ]   12072       0       0   12072 / 1000000     0.5s h4
[ ]   14583       0       0   14583 / 1000000     0.6s h4
[ ]   16975       0       0   16975 / 1000000     0.7s h4
[ ]   19336       0       0   19336 / 1000000     0.8s h4
[ ]   21774       0       0   21774 / 1000000     0.9s h4
[ ]   24285       0       0   24285 / 1000000     1.0s h4
[ ]   26753       0       0   26753 / 1000000     1.1s h4
[ ]   29267       0       0   29267 / 1000000     1.2s h4
[ ]   31778       0       0   31778 / 1000000     1.3s h4
[ ]   34281       0       0   34281 / 1000000     1.4s h4
[ ]   36711       0       0   36711 / 1000000     1.5s h4
[ ]   39140       0       0   39140 / 1000000     1.6s h4
[ ]   41608       0       0   41608 / 1000000     1.7s h4
[ ]   44007       0       0   44007 / 1000000     1.8s h4
[ ]   46522       0       0   46522 / 1000000     1.9s h4
[ ]   49055       0       0   49055 / 1000000     2.0s h4
[ ]   51676       0       0   51676 / 1000000     2.1s h4
[ ]   54122       0       0   54122 / 1000000     2.2s h4
[ ]   56625       0       0   56625 / 1000000     2.3s h4
[ ]   59131       0       0   59131 / 1000000     2.4s h4
[ ]   61541       0       0   61541 / 1000000     2.5s h4
[ ]   63997       0       0   63997 / 1000000     2.6s h4
[ ]   66475       0       0   66475 / 1000000     2.7s h4
[ ]   68920       0       0   68920 / 1000000     2.8s h4
[ ]   71396       0       0   71396 / 1000000     2.9s h4
[ ]   73859       0       0   73859 / 1000000     3.0s h4
[ ]   76272       0       0   76272 / 1000000     3.1s h4
[ ]   78828       0       0   78828 / 1000000     3.2s h4
[ ]   81370       0       0   81370 / 1000000     3.3s h4
[ ]   83840       0       0   83840 / 1000000     3.4s h4
[ ]   86320       0       0   86320 / 1000000     3.5s h4
[ ]   88782       0       0   88782 / 1000000     3.6s h4
[ ]   91286       0       0   91286 / 1000000     3.7s h4
[ ]   93726       0       0   93726 / 1000000     3.8s h4
[ ]   96197       0       0   96197 / 1000000     3.9s h4
[ ]   98629       0       0   98629 / 1000000     4.0s h4
[ ]  101063       0       0  101063 / 1000000     4.1s h4
[ ]  103562       0       0  103562 / 1000000     4.2s h4
[ ]  106013       0       0  106013 / 1000000     4.3s h4
[ ]  108504       0       0  108504 / 1000000     4.4s h4
[ ]  110941       0       0  110941 / 1000000     4.5s h4
[ ]  113477       0       0  113477 / 1000000     4.6s h4
[ ]  115972       0       0  115972 / 1000000     4.7s h4
[ ]  118418       0       0  118418 / 1000000     4.8s h4
[ ]  120997       0       0  120997 / 1000000     4.9s h4
[ ]  123481       0       0  123481 / 1000000     5.0s h4
[ ]  125992       0       0  125992 / 1000000     5.1s h4
[ ]  128486       0       0  128486 / 1000000     5.2s h4
[ ]  130950       0       0  130950 / 1000000     5.3s h4
[ ]  133451       0       0  133451 / 1000000     5.4s h4
[ ]  136008       0       0  136008 / 1000000     5.5s h4
[ ]  138486       0       0  138486 / 1000000     5.6s h4
[ ]  140999       0       0  140999 / 1000000     5.7s h4
[ ]  143508       0       0  143508 / 1000000     5.8s h4
[ ]  146034       0       0  146034 / 1000000     5.9s h4
[ ]  148584       0       0  148584 / 1000000     6.0s h4
[ ]  151187       0       0  151187 / 1000000     6.1s h4
[ ]  153718       0       0  153718 / 1000000     6.2s h4
[ ]  156266       0       0  156266 / 1000000     6.3s h4
[ ]  158758       0       0  158758 / 1000000     6.4s h4
[ ]  161384       0       0  161384 / 1000000     6.5s h4
[ ]  163883       0       0  163883 / 1000000     6.6s h4
[ ]  166501       0       0  166501 / 1000000     6.7s h4
[ ]  168888       0       0  168888 / 1000000     6.8s h4
[ ]  171302       0       0  171302 / 1000000     6.9s h4
[ ]  173718       0       0  173718 / 1000000     7.0s h4
[ ]  176110       0       0  176110 / 1000000     7.1s h4
[ ]  178634       0       0  178634 / 1000000     7.2s h4
[ ]  181189       0       0  181189 / 1000000     7.3s h4
[ ]  183627       0       0  183627 / 1000000     7.4s h4
[ ]  186078       0       0  186078 / 1000000     7.5s h4
[ ]  188467       0       0  188467 / 1000000     7.6s h4
[ ]  191307       0       0  191307 / 1000000     7.7s h4
[ ]  194582       0       0  194582 / 1000000     7.8s h4
[ ]  198146       0       0  198146 / 1000000     7.9s h4
[ ]  200673       0       0  200673 / 1000000     8.0s h4
[ ]  203114       0       0  203114 / 1000000     8.1s h4
[ ]  205570       0       0  205570 / 1000000     8.2s h4
[ ]  208015       0       0  208015 / 1000000     8.3s h4
[ ]  210517       0       0  210517 / 1000000     8.4s h4
[ ]  213051       0       0  213051 / 1000000     8.5s h4
[ ]  215606       0       0  215606 / 1000000     8.6s h4
[ ]  217984       0       0  217984 / 1000000     8.7s h4
[ ]  220335       0       0  220335 / 1000000     8.8s h4
[ ]  222701       0       0  222701 / 1000000     8.9s h4
[ ]  225098       0       0  225098 / 1000000     9.0s h4
[ ]  227534       0       0  227534 / 1000000     9.1s h4
[ ]  229975       0       0  229975 / 1000000     9.2s h4
[ ]  232348       0       0  232348 / 1000000     9.3s h4
[ ]  234736       0       0  234736 / 1000000     9.4s h4
[ ]  237139       0       0  237139 / 1000000     9.5s h4
[ ]  239573       0       0  239573 / 1000000     9.6s h4
[ ]  242049       0       0  242049 / 1000000     9.7s h4
[ ]  244632       0       0  244632 / 1000000     9.8s h4
[ ]  247064       0       0  247064 / 1000000     9.9s h4
[ ]  249533       0       0  249533 / 1000000    10.0s h4
[ ]  252030       0       0  252030 / 1000000    10.1s h4
[ ]  254402       0       0  254402 / 1000000    10.2s h4
[ ]  256873       0       0  256873 / 1000000    10.3s h4
[ ]  259300       0       0  259300 / 1000000    10.4s h4
[ ]  261625       0       0  261625 / 1000000    10.5s h4
[ ]  263986       0       0  263986 / 1000000    10.6s h4
[ ]  266442       0       0  266442 / 1000000    10.7s h4
[ ]  268852       0       0  268852 / 1000000    10.8s h4
[ ]  271246       0       0  271246 / 1000000    10.9s h4
[ ]  273626       0       0  273626 / 1000000    11.0s h4
[ ]  276036       0       0  276036 / 1000000    11.1s h4
[ ]  278466       0       0  278466 / 1000000    11.2s h4
[ ]  280868       0       0  280868 / 1000000    11.3s h4
[ ]  283338       0       0  283338 / 1000000    11.4s h4
[ ]  285820       0       0  285820 / 1000000    11.5s h4 (collecting)
[ ]  288216       0       0  288216 / 1000000    11.6s h4
[ ]  290520       0       0  290520 / 1000000    11.7s h4
[ ]  292863       0       0  292863 / 1000000    11.8s h4
[ ]  295260       0       0  295260 / 1000000    11.9s h4
[ ]  297637       0       0  297637 / 1000000    12.0s h4
[ ]  299977       0       0  299977 / 1000000    12.1s h4
[ ]  302460       0       0  302460 / 1000000    12.2s h4
[ ]  304893       0       0  304893 / 1000000    12.3s h4
[ ]  307317       0       0  307317 / 1000000    12.4s h4
[ ]  309737       0       0  309737 / 1000000    12.5s h4
[ ]  312092       0       0  312092 / 1000000    12.6s h4
[ ]  314533       0       0  314533 / 1000000    12.7s h4
[ ]  316966       0       0  316966 / 1000000    12.8s h4
[ ]  319343       0       0  319343 / 1000000    12.9s h4
[ ]  321741       0       0  321741 / 1000000    13.0s h4
[ ]  324149       0       0  324149 / 1000000    13.1s h4
[ ]  326574       0       0  326574 / 1000000    13.2s h4
[ ]  328949       0       0  328949 / 1000000    13.3s h4
[ ]  331388       0       0  331388 / 1000000    13.4s h4
[ ]  333887       0       0  333887 / 1000000    13.5s h4
[ ]  336298       0       0  336298 / 1000000    13.6s h4
[ ]  338762       0       0  338762 / 1000000    13.7s h4
[ ]  341188       0       0  341188 / 1000000    13.8s h4
[ ]  343658       0       0  343658 / 1000000    13.9s h4
[ ]  346139       0       0  346139 / 1000000    14.0s h4
[ ]  348594       0       0  348594 / 1000000    14.1s h4
[ ]  351015       0       0  351015 / 1000000    14.2s h4
[ ]  353495       0       0  353495 / 1000000    14.3s h4
[ ]  355982       0       0  355982 / 1000000    14.4s h4
[ ]  358416       0       0  358416 / 1000000    14.5s h4
[ ]  360859       0       0  360859 / 1000000    14.6s h4
[ ]  363343       0       0  363343 / 1000000    14.7s h4
[ ]  365857       0       0  365857 / 1000000    14.8s h4
[ ]  368339       0       0  368339 / 1000000    14.9s h4
[ ]  370845       0       0  370845 / 1000000    15.0s h4
[ ]  373293       0       0  373293 / 1000000    15.1s h4
[ ]  375731       0       0  375731 / 1000000    15.2s h4
[ ]  378182       0       0  378182 / 1000000    15.3s h4
[ ]  380605       0       0  380605 / 1000000    15.4s h4
[ ]  383015       0       0  383015 / 1000000    15.5s h4
[ ]  385585       0       0  385585 / 1000000    15.6s h4
[ ]  388021       0       0  388021 / 1000000    15.7s h4
[ ]  390465       0       0  390465 / 1000000    15.8s h4
[ ]  392930       0       0  392930 / 1000000    15.9s h4
[ ]  395373       0       0  395373 / 1000000    16.0s h4
[ ]  397813       0       0  397813 / 1000000    16.1s h4
[ ]  400244       0       0  400244 / 1000000    16.2s h4
[ ]  402683       0       0  402683 / 1000000    16.3s h4
[ ]  405110       0       0  405110 / 1000000    16.4s h4
[ ]  407498       0       0  407498 / 1000000    16.5s h4
[ ]  409946       0       0  409946 / 1000000    16.6s h4
[ ]  412389       0       0  412389 / 1000000    16.7s h4
[ ]  414818       0       0  414818 / 1000000    16.8s h4
[ ]  417282       0       0  417282 / 1000000    16.9s h4
[ ]  419629       0       0  419629 / 1000000    17.0s h4
[ ]  422103       0       0  422103 / 1000000    17.1s h4
[ ]  424557       0       0  424557 / 1000000    17.2s h4
[ ]  427032       0       0  427032 / 1000000    17.3s h4
[ ]  429394       0       0  429394 / 1000000    17.4s h4
[ ]  431930       0       0  431930 / 1000000    17.5s h4
[ ]  434679       0       0  434679 / 1000000    17.6s h4
[ ]  437328       0       0  437328 / 1000000    17.7s h4
[ ]  439915       0       0  439915 / 1000000    17.8s h4
[ ]  442625       0       0  442625 / 1000000    17.9s h4 (collecting)
[ ]  445243       0       0  445243 / 1000000    18.0s h4
[ ]  447785       0       0  447785 / 1000000    18.1s h4
[ ]  450304       0       0  450304 / 1000000    18.2s h4
[ ]  452810       0       0  452810 / 1000000    18.3s h4
[ ]  455256       0       0  455256 / 1000000    18.4s h4
[ ]  457707       0       0  457707 / 1000000    18.5s h4
[ ]  460211       0       0  460211 / 1000000    18.6s h4
[ ]  462660       0       0  462660 / 1000000    18.7s h4
[ ]  465256       0       0  465256 / 1000000    18.8s h4
[ ]  467713       0       0  467713 / 1000000    18.9s h4
[ ]  470082       0       0  470082 / 1000000    19.0s h4
[ ]  472488       0       0  472488 / 1000000    19.1s h4
[ ]  474975       0       0  474975 / 1000000    19.2s h4
[ ]  477525       0       0  477525 / 1000000    19.3s h4
[ ]  479951       0       0  479951 / 1000000    19.4s h4
[ ]  482324       0       0  482324 / 1000000    19.5s h4
[ ]  484706       0       0  484706 / 1000000    19.6s h4
[ ]  487085       0       0  487085 / 1000000    19.7s h4
[ ]  489387       0       0  489387 / 1000000    19.8s h4
[ ]  491736       0       0  491736 / 1000000    19.9s h4
[ ]  494123       0       0  494123 / 1000000    20.0s h4
[ ]  496506       0       0  496506 / 1000000    20.1s h4
[ ]  498886       0       0  498886 / 1000000    20.2s h4
[ ]  501259       0       0  501259 / 1000000    20.3s h4
[ ]  503650       0       0  503650 / 1000000    20.4s h4
[ ]  506087       0       0  506087 / 1000000    20.5s h4
[ ]  508509       0       0  508509 / 1000000    20.6s h4
[ ]  510944       0       0  510944 / 1000000    20.7s h4
[ ]  513397       0       0  513397 / 1000000    20.8s h4
[ ]  515934       0       0  515934 / 1000000    20.9s h4
[ ]  518406       0       0  518406 / 1000000    21.0s h4
[ ]  520844       0       0  520844 / 1000000    21.1s h4
[ ]  523294       0       0  523294 / 1000000    21.2s h4
[ ]  525753       0       0  525753 / 1000000    21.3s h4
[ ]  528197       0       0  528197 / 1000000    21.4s h4
[ ]  530599       0       0  530599 / 1000000    21.5s h4
[ ]  533048       0       0  533048 / 1000000    21.6s h4
[ ]  535607       0       0  535607 / 1000000    21.7s h4
[ ]  538020       0       0  538020 / 1000000    21.8s h4
[ ]  540483       0       0  540483 / 1000000    21.9s h4
[ ]  542981       0       0  542981 / 1000000    22.0s h4
[ ]  545350       0       0  545350 / 1000000    22.1s h4
[ ]  547808       0       0  547808 / 1000000    22.2s h4
[ ]  550202       0       0  550202 / 1000000    22.3s h4
[ ]  552624       0       0  552624 / 1000000    22.4s h4
[ ]  555110       0       0  555110 / 1000000    22.5s h4
[ ]  557520       0       0  557520 / 1000000    22.6s h4
[ ]  560050       0       0  560050 / 1000000    22.7s h4
[ ]  562467       0       0  562467 / 1000000    22.8s h4
[ ]  564949       0       0  564949 / 1000000    22.9s h4
[ ]  567393       0       0  567393 / 1000000    23.0s h4
[ ]  569950       0       0  569950 / 1000000    23.1s h4
[ ]  572496       0       0  572496 / 1000000    23.2s h4
[ ]  574953       0       0  574953 / 1000000    23.3s h4
[ ]  577455       0       0  577455 / 1000000    23.4s h4
[ ]  580014       0       0  580014 / 1000000    23.5s h4
[ ]  582475       0       0  582475 / 1000000    23.6s h4
[ ]  584977       0       0  584977 / 1000000    23.7s h4 (generating)
[ ]  587407       0       0  587407 / 1000000    23.8s h4
[ ]  589932       0       0  589932 / 1000000    23.9s h4
[ ]  592466       0       0  592466 / 1000000    24.0s h4
[ ]  595075       0       0  595075 / 1000000    24.1s h4
[ ]  597635       0       0  597635 / 1000000    24.2s h4
[ ]  600225       0       0  600225 / 1000000    24.3s h4
[ ]  602731       0       0  602731 / 1000000    24.4s h4
[ ]  605256       0       0  605256 / 1000000    24.5s h4
[ ]  607623       0       0  607623 / 1000000    24.6s h4
[ ]  610115       0       0  610115 / 1000000    24.7s h4
[ ]  612578       0       0  612578 / 1000000    24.8s h4
[ ]  614940       0       0  614940 / 1000000    24.9s h4
[ ]  617364       0       0  617364 / 1000000    25.0s h4
[ ]  619825       0       0  619825 / 1000000    25.1s h4
[ ]  622368       0       0  622368 / 1000000    25.2s h4
[ ]  624749       0       0  624749 / 1000000    25.3s h4
[ ]  627157       0       0  627157 / 1000000    25.4s h4
[ ]  629553       0       0  629553 / 1000000    25.5s h4
[ ]  631982       0       0  631982 / 1000000    25.6s h4
[ ]  634405       0       0  634405 / 1000000    25.7s h4
[ ]  636885       0       0  636885 / 1000000    25.8s h4
[ ]  639389       0       0  639389 / 1000000    25.9s h4
[ ]  641869       0       0  641869 / 1000000    26.0s h4
[ ]  644382       0       0  644382 / 1000000    26.1s h4
[ ]  646770       0       0  646770 / 1000000    26.2s h4
[ ]  649196       0       0  649196 / 1000000    26.3s h4
[ ]  651772       0       0  651772 / 1000000    26.4s h4
[ ]  654373       0       0  654373 / 1000000    26.5s h4
[ ]  657010       0       0  657010 / 1000000    26.6s h4
[ ]  659521       0       0  659521 / 1000000    26.7s h4
[ ]  661932       0       0  661932 / 1000000    26.8s h4 (collecting)
[ ]  664426       0       0  664426 / 1000000    26.9s h4
[ ]  666795       0       0  666795 / 1000000    27.0s h4
[ ]  669326       0       0  669326 / 1000000    27.1s h4
[ ]  671762       0       0  671762 / 1000000    27.2s h4
[ ]  674268       0       0  674268 / 1000000    27.3s h4
[ ]  676783       0       0  676783 / 1000000    27.4s h4
[ ]  679255       0       0  679255 / 1000000    27.5s h4
[ ]  681704       0       0  681704 / 1000000    27.6s h4
[ ]  684218       0       0  684218 / 1000000    27.7s h4
[ ]  686924       0       0  686924 / 1000000    27.8s h4
[ ]  689577       0       0  689577 / 1000000    27.9s h4
[ ]  692261       0       0  692261 / 1000000    28.0s h4
[ ]  694992       0       0  694992 / 1000000    28.1s h4
[ ]  697712       0       0  697712 / 1000000    28.2s h4 (collecting)
[ ]  700477       0       0  700477 / 1000000    28.3s h4
[ ]  703078       0       0  703078 / 1000000    28.4s h4
[ ]  705705       0       0  705705 / 1000000    28.5s h4
[ ]  708249       0       0  708249 / 1000000    28.6s h4 (collecting)
[ ]  710796       0       0  710796 / 1000000    28.7s h4
[ ]  713331       0       0  713331 / 1000000    28.8s h4
[ ]  715778       0       0  715778 / 1000000    28.9s h4
[ ]  718265       0       0  718265 / 1000000    29.0s h4
[ ]  720738       0       0  720738 / 1000000    29.1s h4
[ ]  723247       0       0  723247 / 1000000    29.2s h4
[ ]  725751       0       0  725751 / 1000000    29.3s h4
[ ]  728255       0       0  728255 / 1000000    29.4s h4
[ ]  730732       0       0  730732 / 1000000    29.5s h4
[ ]  733212       0       0  733212 / 1000000    29.6s h4
[ ]  735671       0       0  735671 / 1000000    29.7s h4
[ ]  738181       0       0  738181 / 1000000    29.8s h4
[ ]  740617       0       0  740617 / 1000000    29.9s h4
[ ]  743216       0       0  743216 / 1000000    30.0s h4
[ ]  746048       0       0  746048 / 1000000    30.1s h4
[ ]  748407       0       0  748407 / 1000000    30.2s h4
[ ]  750812       0       0  750812 / 1000000    30.3s h4
[ ]  753254       0       0  753254 / 1000000    30.4s h4
[ ]  755672       0       0  755672 / 1000000    30.5s h4
[ ]  757997       0       0  757997 / 1000000    30.6s h4
[ ]  760463       0       0  760463 / 1000000    30.7s h4
[ ]  762872       0       0  762872 / 1000000    30.8s h4
[ ]  765244       0       0  765244 / 1000000    30.9s h4
[ ]  767675       0       0  767675 / 1000000    31.0s h4
[ ]  770069       0       0  770069 / 1000000    31.1s h4
[ ]  772546       0       0  772546 / 1000000    31.2s h4
[ ]  774943       0       0  774943 / 1000000    31.3s h4
[ ]  777387       0       0  777387 / 1000000    31.4s h4
[ ]  779820       0       0  779820 / 1000000    31.5s h4
[ ]  782348       0       0  782348 / 1000000    31.6s h4
[ ]  784850       0       0  784850 / 1000000    31.7s h4
[ ]  787342       0       0  787342 / 1000000    31.8s h4
[ ]  789815       0       0  789815 / 1000000    31.9s h4
[ ]  792066       0       0  792066 / 1000000    32.0s h4
[ ]  794470       0       0  794470 / 1000000    32.1s h4
[ ]  796887       0       0  796887 / 1000000    32.2s h4
[ ]  799298       0       0  799298 / 1000000    32.3s h4
[ ]  801773       0       0  801773 / 1000000    32.4s h4
[ ]  804278       0       0  804278 / 1000000    32.5s h4
[ ]  806712       0       0  806712 / 1000000    32.6s h4
[ ]  809178       0       0  809178 / 1000000    32.7s h4
[ ]  811577       0       0  811577 / 1000000    32.8s h4
[ ]  813950       0       0  813950 / 1000000    32.9s h4
[ ]  816343       0       0  816343 / 1000000    33.0s h4
[ ]  818671       0       0  818671 / 1000000    33.1s h4
[ ]  820995       0       0  820995 / 1000000    33.2s h4
[ ]  823344       0       0  823344 / 1000000    33.3s h4
[ ]  825671       0       0  825671 / 1000000    33.4s h4
[ ]  827986       0       0  827986 / 1000000    33.5s h4
[ ]  830315       0       0  830315 / 1000000    33.6s h4
[ ]  832663       0       0  832663 / 1000000    33.7s h4
[ ]  834987       0       0  834987 / 1000000    33.8s h4
[ ]  837469       0       0  837469 / 1000000    33.9s h4
[ ]  839949       0       0  839949 / 1000000    34.0s h4
[ ]  842409       0       0  842409 / 1000000    34.1s h4
[ ]  844841       0       0  844841 / 1000000    34.2s h4
[ ]  847301       0       0  847301 / 1000000    34.3s h4
[ ]  849713       0       0  849713 / 1000000    34.4s h4
[ ]  852219       0       0  852219 / 1000000    34.5s h4
[ ]  854566       0       0  854566 / 1000000    34.6s h4
[ ]  856986       0       0  856986 / 1000000    34.7s h4
[ ]  859404       0       0  859404 / 1000000    34.8s h4
[ ]  861779       0       0  861779 / 1000000    34.9s h4
[ ]  864184       0       0  864184 / 1000000    35.0s h4
[ ]  866655       0       0  866655 / 1000000    35.1s h4
[ ]  868993       0       0  868993 / 1000000    35.2s h4
[ ]  871391       0       0  871391 / 1000000    35.3s h4 (collecting)
[ ]  873811       0       0  873811 / 1000000    35.4s h4
[ ]  876224       0       0  876224 / 1000000    35.5s h4
[ ]  878699       0       0  878699 / 1000000    35.6s h4
[ ]  881070       0       0  881070 / 1000000    35.7s h4
[ ]  883417       0       0  883417 / 1000000    35.8s h4
[ ]  885678       0       0  885678 / 1000000    35.9s h4
[ ]  887810       0       0  887810 / 1000000    36.0s h4
[ ]  890248       0       0  890248 / 1000000    36.1s h4
[ ]  892681       0       0  892681 / 1000000    36.2s h4
[ ]  895220       0       0  895220 / 1000000    36.3s h4
[ ]  897588       0       0  897588 / 1000000    36.4s h4
[ ]  900020       0       0  900020 / 1000000    36.5s h4
[ ]  902454       0       0  902454 / 1000000    36.6s h4
[ ]  904892       0       0  904892 / 1000000    36.7s h4
[ ]  907261       0       0  907261 / 1000000    36.8s h4
[ ]  909659       0       0  909659 / 1000000    36.9s h4
[ ]  912027       0       0  912027 / 1000000    37.0s h4
[ ]  914434       0       0  914434 / 1000000    37.1s h4
[ ]  916878       0       0  916878 / 1000000    37.2s h4
[ ]  919238       0       0  919238 / 1000000    37.3s h4
[ ]  921648       0       0  921648 / 1000000    37.4s h4
[ ]  924123       0       0  924123 / 1000000    37.5s h4
[ ]  926449       0       0  926449 / 1000000    37.6s h4
[ ]  928908       0       0  928908 / 1000000    37.7s h4
[ ]  931329       0       0  931329 / 1000000    37.8s h4
[ ]  933836       0       0  933836 / 1000000    37.9s h4
[ ]  936255       0       0  936255 / 1000000    38.0s h4
[ ]  938635       0       0  938635 / 1000000    38.1s h4
[ ]  940984       0       0  940984 / 1000000    38.2s h4
[ ]  943392       0       0  943392 / 1000000    38.3s h4
[ ]  945752       0       0  945752 / 1000000    38.4s h4
[ ]  948138       0       0  948138 / 1000000    38.5s h4
[ ]  950530       0       0  950530 / 1000000    38.6s h4
[ ]  952905       0       0  952905 / 1000000    38.7s h4
[ ]  955305       0       0  955305 / 1000000    38.8s h4
[ ]  957758       0       0  957758 / 1000000    38.9s h4
[ ]  960112       0       0  960112 / 1000000    39.0s h4
[ ]  962490       0       0  962490 / 1000000    39.1s h4
[ ]  964916       0       0  964916 / 1000000    39.2s h4
[ ]  967279       0       0  967279 / 1000000    39.3s h4
[ ]  969666       0       0  969666 / 1000000    39.4s h4
[ ]  972121       0       0  972121 / 1000000    39.5s h4
[ ]  974493       0       0  974493 / 1000000    39.6s h4
[ ]  976913       0       0  976913 / 1000000    39.7s h4
[ ]  979355       0       0  979355 / 1000000    39.8s h4
[ ]  981744       0       0  981744 / 1000000    39.9s h4
[ ]  984231       0       0  984231 / 1000000    40.0s h4
[ ]  986695       0       0  986695 / 1000000    40.1s h4
[ ]  989122       0       0  989122 / 1000000    40.2s h4
[ ]  991520       0       0  991520 / 1000000    40.3s h4 (collecting)
[ ]  993949       0       0  993949 / 1000000    40.4s h4
[ ]  996446       0       0  996446 / 1000000    40.5s h4
[ ]  998965       0       0  998965 / 1000000    40.6s h4
[✓] 1000000       0       0 1000000 / 1000000    40.7s h4
- ================================================================================
- success (ran 6 tests)
-> compiled  dates_calc.0.0.1
-> removed   dates_calc.0.0.1
-> installed dates_calc.0.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 06:01.30 ---> saved as "1bd84616880b8cd68e923994054c872eed9f8c26cb2d83941e3ec9d56eb8f88c"
Job succeeded
2026-04-30 06:02.20: Job succeeded