(not at the head of any monitored branch or PR)
2026-04-30 02:03.23: New job: test dates_calc.0.0.4 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.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-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.4-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.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-30 02:03.23: Waiting for resource in pool OCluster
2026-04-30 05:55.52: Waiting for worker…
2026-04-30 05:57.51: Got resource from pool OCluster
Building on clete.caelum.ci.dev
All commits already cached
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:57.57 ---> 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:57.57 ---> 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:57.57 ---> 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:57.57 ---> 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:57.57 ---> using "e71fcfd10a966fea9cbc39c81a8170d118ef6c5bc3e82b827a8fc5873a3b02c4" from cache

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

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-30 05:57.58 ---> 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:57.58 ---> 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:57.58 ---> 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:57.58 ---> 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.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-30 05:58.05 ---> saved as "54cc735cebd8e36b0a63101e24eec4559f6684180da4ce31098ccebd5ac46327"

/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.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.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
-> retrieved stdlib-shims.0.3.0  (https://opam.ocaml.org/cache)
-> retrieved topkg.1.1.1  (https://opam.ocaml.org/cache)
-> installed ocaml-syntax-shims.1.0.0
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> 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.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-30 05:59.28 ---> saved as "c89247d6bcd3ee89a61f469b66d8852488ab9759d9ffb55f9411d3c336cce49c"

/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 `8H0V95LP'.
- 
-   [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.006s. 6 tests run.
- (cd _build/default/test && ./prop.exe)
- 
random seed: 114960904
-   generated   error    fail    pass /   total     time test name
- 
[ ]       0       0       0       0 /    1000     0.0s anon_test_1
[ ]     252       0       0     252 /    1000     0.1s anon_test_1
[ ]     539       0       0     539 /    1000     0.2s anon_test_1
[ ]     915       0       0     915 /    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
[ ]      18       0       0      18 /    1000     0.1s anon_test_2
[ ]      35       0       0      35 /    1000     0.2s anon_test_2
[ ]      54       0       0      54 /    1000     0.3s anon_test_2
[ ]      73       0       0      73 /    1000     0.4s anon_test_2
[ ]      92       0       0      92 /    1000     0.5s anon_test_2
[ ]     108       0       0     108 /    1000     0.6s anon_test_2
[ ]     120       0       0     120 /    1000     0.7s anon_test_2
[ ]     133       0       0     133 /    1000     0.9s anon_test_2
[ ]     144       0       0     144 /    1000     1.0s anon_test_2
[ ]     157       0       0     157 /    1000     1.1s anon_test_2
[ ]     170       0       0     170 /    1000     1.2s anon_test_2
[ ]     188       0       0     188 /    1000     1.3s anon_test_2
[ ]     205       0       0     205 /    1000     1.4s anon_test_2
[ ]     221       0       0     221 /    1000     1.5s anon_test_2
[ ]     238       0       0     238 /    1000     1.6s anon_test_2
[ ]     253       0       0     253 /    1000     1.7s anon_test_2
[ ]     272       0       0     272 /    1000     1.8s anon_test_2
[ ]     288       0       0     288 /    1000     1.9s anon_test_2
[ ]     302       0       0     302 /    1000     2.0s anon_test_2
[ ]     317       0       0     317 /    1000     2.1s anon_test_2
[ ]     325       0       0     325 /    1000     2.2s anon_test_2
[ ]     335       0       0     335 /    1000     2.3s anon_test_2
[ ]     347       0       0     347 /    1000     2.5s anon_test_2
[ ]     361       0       0     361 /    1000     2.6s anon_test_2
[ ]     369       0       0     369 /    1000     2.7s anon_test_2
[ ]     384       0       0     384 /    1000     2.8s anon_test_2
[ ]     392       0       0     392 /    1000     2.9s anon_test_2
[ ]     402       0       0     402 /    1000     3.0s anon_test_2
[ ]     414       0       0     414 /    1000     3.1s anon_test_2
[ ]     430       0       0     430 /    1000     3.2s anon_test_2
[ ]     446       0       0     446 /    1000     3.3s anon_test_2
[ ]     466       0       0     466 /    1000     3.4s anon_test_2
[ ]     478       0       0     478 /    1000     3.5s anon_test_2
[ ]     502       0       0     502 /    1000     3.6s anon_test_2
[ ]     514       0       0     514 /    1000     3.7s anon_test_2
[ ]     525       0       0     525 /    1000     3.8s anon_test_2
[ ]     541       0       0     541 /    1000     3.9s anon_test_2
[ ]     556       0       0     556 /    1000     4.0s anon_test_2
[ ]     568       0       0     568 /    1000     4.1s anon_test_2
[ ]     582       0       0     582 /    1000     4.3s anon_test_2
[ ]     606       0       0     606 /    1000     4.4s anon_test_2
[ ]     621       0       0     621 /    1000     4.5s anon_test_2
[ ]     638       0       0     638 /    1000     4.6s anon_test_2
[ ]     653       0       0     653 /    1000     4.7s anon_test_2
[ ]     665       0       0     665 /    1000     4.8s anon_test_2
[ ]     675       0       0     675 /    1000     4.9s anon_test_2
[ ]     688       0       0     688 /    1000     5.0s anon_test_2
[ ]     701       0       0     701 /    1000     5.1s anon_test_2
[ ]     723       0       0     723 /    1000     5.2s anon_test_2
[ ]     743       0       0     743 /    1000     5.3s anon_test_2
[ ]     760       0       0     760 /    1000     5.4s anon_test_2
[ ]     774       0       0     774 /    1000     5.5s anon_test_2
[ ]     786       0       0     786 /    1000     5.6s anon_test_2
[ ]     798       0       0     798 /    1000     5.7s anon_test_2
[ ]     810       0       0     810 /    1000     5.8s anon_test_2
[ ]     824       0       0     824 /    1000     5.9s anon_test_2
[ ]     841       0       0     841 /    1000     6.1s anon_test_2
[ ]     852       0       0     852 /    1000     6.2s anon_test_2
[ ]     869       0       0     869 /    1000     6.3s anon_test_2
[ ]     887       0       0     887 /    1000     6.4s anon_test_2
[ ]     895       0       0     895 /    1000     6.5s anon_test_2
[ ]     908       0       0     908 /    1000     6.6s anon_test_2
[ ]     924       0       0     924 /    1000     6.7s anon_test_2
[ ]     939       0       0     939 /    1000     6.8s anon_test_2
[ ]     950       0       0     950 /    1000     6.9s anon_test_2
[ ]     963       0       0     963 /    1000     7.0s anon_test_2
[ ]     983       0       0     983 /    1000     7.1s anon_test_2
[ ]     996       0       0     996 /    1000     7.2s anon_test_2
[✓]    1000       0       0    1000 /    1000     7.3s anon_test_2
- 
[ ]       0       0       0       0 / 1000000     0.0s h1
[ ]    9556       0       0    9556 / 1000000     0.1s h1
[ ]   19333       0       0   19333 / 1000000     0.2s h1
[ ]   28370       0       0   28370 / 1000000     0.3s h1
[ ]   39601       0       0   39601 / 1000000     0.4s h1
[ ]   49435       0       0   49435 / 1000000     0.5s h1
[ ]   59459       0       0   59459 / 1000000     0.6s h1
[ ]   69584       0       0   69584 / 1000000     0.7s h1
[ ]   85423       0       0   85423 / 1000000     0.8s h1
[ ]   97667       0       0   97667 / 1000000     0.9s h1
[ ]  111055       0       0  111055 / 1000000     1.0s h1
[ ]  120711       0       0  120711 / 1000000     1.1s h1 (collecting)
[ ]  133953       0       0  133953 / 1000000     1.2s h1
[ ]  143872       0       0  143872 / 1000000     1.3s h1 (collecting)
[ ]  153280       0       0  153280 / 1000000     1.4s h1
[ ]  162545       0       0  162545 / 1000000     1.5s h1
[ ]  172203       0       0  172203 / 1000000     1.6s h1
[ ]  182092       0       0  182092 / 1000000     1.7s h1
[ ]  192039       0       0  192039 / 1000000     1.8s h1
[ ]  202099       0       0  202099 / 1000000     1.9s h1
[ ]  212392       0       0  212392 / 1000000     2.0s h1
[ ]  222048       0       0  222048 / 1000000     2.1s h1
[ ]  234105       0       0  234105 / 1000000     2.2s h1
[ ]  248302       0       0  248302 / 1000000     2.3s h1
[ ]  263842       0       0  263842 / 1000000     2.4s h1
[ ]  280304       0       0  280304 / 1000000     2.5s h1
[ ]  296954       0       0  296954 / 1000000     2.6s h1
[ ]  309177       0       0  309177 / 1000000     2.7s h1
[ ]  319475       0       0  319475 / 1000000     2.8s h1
[ ]  329224       0       0  329224 / 1000000     2.9s h1 (collecting)
[ ]  339105       0       0  339105 / 1000000     3.0s h1
[ ]  349114       0       0  349114 / 1000000     3.1s h1
[ ]  359196       0       0  359196 / 1000000     3.2s h1
[ ]  373174       0       0  373174 / 1000000     3.3s h1
[ ]  389760       0       0  389760 / 1000000     3.4s h1
[ ]  406381       0       0  406381 / 1000000     3.5s h1
[ ]  421874       0       0  421874 / 1000000     3.6s h1
[ ]  438337       0       0  438337 / 1000000     3.7s h1
[ ]  454698       0       0  454698 / 1000000     3.8s h1
[ ]  466523       0       0  466523 / 1000000     3.9s h1
[ ]  476374       0       0  476374 / 1000000     4.0s h1
[ ]  485872       0       0  485872 / 1000000     4.1s h1
[ ]  498914       0       0  498914 / 1000000     4.2s h1
[ ]  514646       0       0  514646 / 1000000     4.3s h1
[ ]  528889       0       0  528889 / 1000000     4.4s h1
[ ]  543233       0       0  543233 / 1000000     4.5s h1
[ ]  553922       0       0  553922 / 1000000     4.6s h1
[ ]  563660       0       0  563660 / 1000000     4.7s h1
[ ]  579452       0       0  579452 / 1000000     4.8s h1
[ ]  595871       0       0  595871 / 1000000     4.9s h1
[ ]  611979       0       0  611979 / 1000000     5.0s h1
[ ]  622817       0       0  622817 / 1000000     5.1s h1
[ ]  632568       0       0  632568 / 1000000     5.2s h1
[ ]  641870       0       0  641870 / 1000000     5.3s h1
[ ]  651461       0       0  651461 / 1000000     5.4s h1
[ ]  664061       0       0  664061 / 1000000     5.5s h1 (collecting)
[ ]  676684       0       0  676684 / 1000000     5.6s h1
[ ]  688440       0       0  688440 / 1000000     5.7s h1
[ ]  702428       0       0  702428 / 1000000     5.8s h1
[ ]  715096       0       0  715096 / 1000000     5.9s h1
[ ]  725221       0       0  725221 / 1000000     6.0s h1
[ ]  734796       0       0  734796 / 1000000     6.1s h1
[ ]  744553       0       0  744553 / 1000000     6.2s h1
[ ]  754422       0       0  754422 / 1000000     6.3s h1
[ ]  764388       0       0  764388 / 1000000     6.4s h1
[ ]  774223       0       0  774223 / 1000000     6.5s h1
[ ]  784102       0       0  784102 / 1000000     6.6s h1
[ ]  793852       0       0  793852 / 1000000     6.7s h1
[ ]  803433       0       0  803433 / 1000000     6.8s h1
[ ]  813136       0       0  813136 / 1000000     6.9s h1
[ ]  823018       0       0  823018 / 1000000     7.0s h1
[ ]  832836       0       0  832836 / 1000000     7.1s h1
[ ]  842322       0       0  842322 / 1000000     7.2s h1
[ ]  852249       0       0  852249 / 1000000     7.3s h1 (collecting)
[ ]  862317       0       0  862317 / 1000000     7.4s h1
[ ]  875413       0       0  875413 / 1000000     7.5s h1 (collecting)
[ ]  887794       0       0  887794 / 1000000     7.6s h1
[ ]  897618       0       0  897618 / 1000000     7.7s h1
[ ]  909356       0       0  909356 / 1000000     7.8s h1
[ ]  923914       0       0  923914 / 1000000     7.9s h1
[ ]  939133       0       0  939133 / 1000000     8.0s h1
[ ]  951701       0       0  951701 / 1000000     8.1s h1
[ ]  961697       0       0  961697 / 1000000     8.2s h1
[ ]  971615       0       0  971615 / 1000000     8.3s h1
[ ]  981075       0       0  981075 / 1000000     8.4s h1
[ ]  990446       0       0  990446 / 1000000     8.5s h1
[✓] 1000000       0       0 1000000 / 1000000     8.6s h1
- 
[ ]       0       0       0       0 / 1000000     0.0s h2
[ ]    5024       0       0    5024 / 1000000     0.1s h2
[ ]   10052       0       0   10052 / 1000000     0.2s h2
[ ]   15207       0       0   15207 / 1000000     0.3s h2
[ ]   20386       0       0   20386 / 1000000     0.4s h2
[ ]   25871       0       0   25871 / 1000000     0.5s h2
[ ]   32176       0       0   32176 / 1000000     0.6s h2
[ ]   37715       0       0   37715 / 1000000     0.7s h2
[ ]   42665       0       0   42665 / 1000000     0.8s h2
[ ]   49369       0       0   49369 / 1000000     0.9s h2
[ ]   57690       0       0   57690 / 1000000     1.0s h2
[ ]   63788       0       0   63788 / 1000000     1.1s h2
[ ]   68455       0       0   68455 / 1000000     1.2s h2
[ ]   73358       0       0   73358 / 1000000     1.3s h2
[ ]   78287       0       0   78287 / 1000000     1.4s h2
[ ]   83233       0       0   83233 / 1000000     1.5s h2
[ ]   88348       0       0   88348 / 1000000     1.6s h2
[ ]   93364       0       0   93364 / 1000000     1.7s h2
[ ]   99195       0       0   99195 / 1000000     1.8s h2
[ ]  103959       0       0  103959 / 1000000     1.9s h2
[ ]  108927       0       0  108927 / 1000000     2.0s h2
[ ]  113999       0       0  113999 / 1000000     2.1s h2
[ ]  119000       0       0  119000 / 1000000     2.2s h2
[ ]  123951       0       0  123951 / 1000000     2.3s h2
[ ]  128797       0       0  128797 / 1000000     2.4s h2
[ ]  133737       0       0  133737 / 1000000     2.5s h2
[ ]  138352       0       0  138352 / 1000000     2.6s h2
[ ]  143113       0       0  143113 / 1000000     2.7s h2
[ ]  147934       0       0  147934 / 1000000     2.8s h2
[ ]  152709       0       0  152709 / 1000000     2.9s h2
[ ]  157416       0       0  157416 / 1000000     3.0s h2
[ ]  162241       0       0  162241 / 1000000     3.1s h2
[ ]  167143       0       0  167143 / 1000000     3.2s h2 (collecting)
[ ]  171996       0       0  171996 / 1000000     3.3s h2
[ ]  179493       0       0  179493 / 1000000     3.4s h2
[ ]  185675       0       0  185675 / 1000000     3.5s h2
[ ]  191707       0       0  191707 / 1000000     3.6s h2
[ ]  197785       0       0  197785 / 1000000     3.7s h2
[ ]  202738       0       0  202738 / 1000000     3.8s h2
[ ]  207718       0       0  207718 / 1000000     3.9s h2
[ ]  213262       0       0  213262 / 1000000     4.0s h2
[ ]  221306       0       0  221306 / 1000000     4.1s h2
[ ]  229108       0       0  229108 / 1000000     4.2s h2
[ ]  235029       0       0  235029 / 1000000     4.3s h2
[ ]  243426       0       0  243426 / 1000000     4.4s h2
[ ]  250901       0       0  250901 / 1000000     4.5s h2
[ ]  257674       0       0  257674 / 1000000     4.6s h2
[ ]  263399       0       0  263399 / 1000000     4.7s h2
[ ]  268833       0       0  268833 / 1000000     4.8s h2
[ ]  275367       0       0  275367 / 1000000     4.9s h2
[ ]  282401       0       0  282401 / 1000000     5.0s h2
[ ]  290562       0       0  290562 / 1000000     5.1s h2
[ ]  297202       0       0  297202 / 1000000     5.2s h2
[ ]  304118       0       0  304118 / 1000000     5.3s h2
[ ]  309185       0       0  309185 / 1000000     5.4s h2
[ ]  314373       0       0  314373 / 1000000     5.5s h2
[ ]  319417       0       0  319417 / 1000000     5.6s h2
[ ]  324653       0       0  324653 / 1000000     5.7s h2
[ ]  329843       0       0  329843 / 1000000     5.8s h2
[ ]  335232       0       0  335232 / 1000000     5.9s h2
[ ]  340272       0       0  340272 / 1000000     6.0s h2
[ ]  345051       0       0  345051 / 1000000     6.1s h2
[ ]  349955       0       0  349955 / 1000000     6.2s h2
[ ]  355443       0       0  355443 / 1000000     6.3s h2 (collecting)
[ ]  362258       0       0  362258 / 1000000     6.4s h2
[ ]  367057       0       0  367057 / 1000000     6.5s h2
[ ]  373427       0       0  373427 / 1000000     6.6s h2
[ ]  378317       0       0  378317 / 1000000     6.7s h2
[ ]  385768       0       0  385768 / 1000000     6.8s h2 (generating)
[ ]  392542       0       0  392542 / 1000000     6.9s h2
[ ]  401013       0       0  401013 / 1000000     7.0s h2
[ ]  407103       0       0  407103 / 1000000     7.1s h2
[ ]  412254       0       0  412254 / 1000000     7.2s h2
[ ]  417475       0       0  417475 / 1000000     7.3s h2
[ ]  422755       0       0  422755 / 1000000     7.4s h2
[ ]  428752       0       0  428752 / 1000000     7.5s h2
[ ]  436118       0       0  436118 / 1000000     7.6s h2
[ ]  443894       0       0  443894 / 1000000     7.7s h2 (collecting)
[ ]  451022       0       0  451022 / 1000000     7.8s h2
[ ]  456967       0       0  456967 / 1000000     7.9s h2
[ ]  461909       0       0  461909 / 1000000     8.0s h2
[ ]  466962       0       0  466962 / 1000000     8.1s h2
[ ]  471861       0       0  471861 / 1000000     8.2s h2
[ ]  476677       0       0  476677 / 1000000     8.3s h2
[ ]  481572       0       0  481572 / 1000000     8.4s h2
[ ]  486572       0       0  486572 / 1000000     8.5s h2
[ ]  491776       0       0  491776 / 1000000     8.6s h2
[ ]  497001       0       0  497001 / 1000000     8.7s h2
[ ]  503090       0       0  503090 / 1000000     8.8s h2
[ ]  509028       0       0  509028 / 1000000     8.9s h2
[ ]  514399       0       0  514399 / 1000000     9.0s h2
[ ]  519334       0       0  519334 / 1000000     9.1s h2
[ ]  524274       0       0  524274 / 1000000     9.2s h2
[ ]  529226       0       0  529226 / 1000000     9.3s h2
[ ]  534151       0       0  534151 / 1000000     9.4s h2
[ ]  539235       0       0  539235 / 1000000     9.5s h2
[ ]  544174       0       0  544174 / 1000000     9.6s h2
[ ]  549232       0       0  549232 / 1000000     9.7s h2
[ ]  554269       0       0  554269 / 1000000     9.8s h2
[ ]  559104       0       0  559104 / 1000000     9.9s h2 (collecting)
[ ]  563942       0       0  563942 / 1000000    10.0s h2
[ ]  568696       0       0  568696 / 1000000    10.1s h2
[ ]  573593       0       0  573593 / 1000000    10.2s h2
[ ]  578331       0       0  578331 / 1000000    10.3s h2 (collecting)
[ ]  583272       0       0  583272 / 1000000    10.4s h2
[ ]  588341       0       0  588341 / 1000000    10.5s h2
[ ]  592964       0       0  592964 / 1000000    10.6s h2
[ ]  597472       0       0  597472 / 1000000    10.7s h2
[ ]  602307       0       0  602307 / 1000000    10.8s h2
[ ]  607074       0       0  607074 / 1000000    10.9s h2
[ ]  611834       0       0  611834 / 1000000    11.0s h2
[ ]  616668       0       0  616668 / 1000000    11.1s h2
[ ]  621442       0       0  621442 / 1000000    11.2s h2
[ ]  626171       0       0  626171 / 1000000    11.3s h2
[ ]  631367       0       0  631367 / 1000000    11.4s h2
[ ]  636285       0       0  636285 / 1000000    11.5s h2
[ ]  641456       0       0  641456 / 1000000    11.6s h2
[ ]  647455       0       0  647455 / 1000000    11.7s h2
[ ]  652202       0       0  652202 / 1000000    11.8s h2
[ ]  657026       0       0  657026 / 1000000    11.9s h2
[ ]  661842       0       0  661842 / 1000000    12.0s h2
[ ]  666722       0       0  666722 / 1000000    12.1s h2
[ ]  671796       0       0  671796 / 1000000    12.2s h2
[ ]  676772       0       0  676772 / 1000000    12.3s h2
[ ]  681719       0       0  681719 / 1000000    12.4s h2
[ ]  686690       0       0  686690 / 1000000    12.5s h2
[ ]  691598       0       0  691598 / 1000000    12.6s h2
[ ]  696435       0       0  696435 / 1000000    12.7s h2
[ ]  701349       0       0  701349 / 1000000    12.8s h2 (collecting)
[ ]  706300       0       0  706300 / 1000000    12.9s h2
[ ]  711311       0       0  711311 / 1000000    13.0s h2
[ ]  716192       0       0  716192 / 1000000    13.1s h2
[ ]  721181       0       0  721181 / 1000000    13.2s h2
[ ]  726177       0       0  726177 / 1000000    13.3s h2
[ ]  731211       0       0  731211 / 1000000    13.4s h2
[ ]  736283       0       0  736283 / 1000000    13.5s h2 (collecting)
[ ]  741362       0       0  741362 / 1000000    13.6s h2
[ ]  746309       0       0  746309 / 1000000    13.7s h2
[ ]  751215       0       0  751215 / 1000000    13.8s h2
[ ]  756122       0       0  756122 / 1000000    13.9s h2
[ ]  761149       0       0  761149 / 1000000    14.0s h2
[ ]  766201       0       0  766201 / 1000000    14.1s h2
[ ]  771291       0       0  771291 / 1000000    14.2s h2
[ ]  776252       0       0  776252 / 1000000    14.3s h2
[ ]  781008       0       0  781008 / 1000000    14.4s h2
[ ]  785801       0       0  785801 / 1000000    14.5s h2 (collecting)
[ ]  790669       0       0  790669 / 1000000    14.6s h2
[ ]  795568       0       0  795568 / 1000000    14.7s h2
[ ]  800540       0       0  800540 / 1000000    14.8s h2
[ ]  805568       0       0  805568 / 1000000    14.9s h2
[ ]  810553       0       0  810553 / 1000000    15.0s h2
[ ]  815472       0       0  815472 / 1000000    15.1s h2
[ ]  820282       0       0  820282 / 1000000    15.2s h2
[ ]  825180       0       0  825180 / 1000000    15.3s h2
[ ]  829952       0       0  829952 / 1000000    15.4s h2
[ ]  834815       0       0  834815 / 1000000    15.5s h2
[ ]  839694       0       0  839694 / 1000000    15.6s h2 (collecting)
[ ]  845019       0       0  845019 / 1000000    15.7s h2
[ ]  849936       0       0  849936 / 1000000    15.8s h2
[ ]  854823       0       0  854823 / 1000000    15.9s h2
[ ]  859594       0       0  859594 / 1000000    16.0s h2
[ ]  864388       0       0  864388 / 1000000    16.1s h2
[ ]  869200       0       0  869200 / 1000000    16.2s h2
[ ]  874063       0       0  874063 / 1000000    16.3s h2
[ ]  878946       0       0  878946 / 1000000    16.4s h2
[ ]  883836       0       0  883836 / 1000000    16.5s h2
[ ]  888729       0       0  888729 / 1000000    16.6s h2
[ ]  893671       0       0  893671 / 1000000    16.7s h2
[ ]  898456       0       0  898456 / 1000000    16.8s h2
[ ]  903208       0       0  903208 / 1000000    16.9s h2
[ ]  908044       0       0  908044 / 1000000    17.0s h2
[ ]  912926       0       0  912926 / 1000000    17.1s h2
[ ]  917687       0       0  917687 / 1000000    17.2s h2
[ ]  922429       0       0  922429 / 1000000    17.3s h2
[ ]  927537       0       0  927537 / 1000000    17.4s h2
[ ]  932444       0       0  932444 / 1000000    17.5s h2
[ ]  936921       0       0  936921 / 1000000    17.6s h2
[ ]  941321       0       0  941321 / 1000000    17.7s h2
[ ]  946512       0       0  946512 / 1000000    17.8s h2
[ ]  951363       0       0  951363 / 1000000    17.9s h2
[ ]  956133       0       0  956133 / 1000000    18.0s h2 (collecting)
[ ]  960864       0       0  960864 / 1000000    18.1s h2
[ ]  965553       0       0  965553 / 1000000    18.2s h2
[ ]  970368       0       0  970368 / 1000000    18.3s h2
[ ]  975603       0       0  975603 / 1000000    18.4s h2
[ ]  980526       0       0  980526 / 1000000    18.5s h2
[ ]  984777       0       0  984777 / 1000000    18.6s h2
[ ]  989097       0       0  989097 / 1000000    18.7s h2
[ ]  994027       0       0  994027 / 1000000    18.8s h2
[ ]  999037       0       0  999037 / 1000000    18.9s h2
[✓] 1000000       0       0 1000000 / 1000000    18.9s h2
- 
[ ]       0       0       0       0 / 1000000     0.0s h3
[ ]    8915       0       0    8915 / 1000000     0.1s h3
[ ]   17307       0       0   17307 / 1000000     0.2s h3
[ ]   26285       0       0   26285 / 1000000     0.3s h3
[ ]   35833       0       0   35833 / 1000000     0.4s h3
[ ]   45473       0       0   45473 / 1000000     0.5s h3
[ ]   55051       0       0   55051 / 1000000     0.6s h3
[ ]   64400       0       0   64400 / 1000000     0.7s h3
[ ]   73929       0       0   73929 / 1000000     0.8s h3
[ ]   83667       0       0   83667 / 1000000     0.9s h3
[ ]   93348       0       0   93348 / 1000000     1.0s h3
[ ]  102286       0       0  102286 / 1000000     1.1s h3
[ ]  111749       0       0  111749 / 1000000     1.2s h3
[ ]  121081       0       0  121081 / 1000000     1.3s h3
[ ]  130421       0       0  130421 / 1000000     1.4s h3
[ ]  139875       0       0  139875 / 1000000     1.5s h3
[ ]  149733       0       0  149733 / 1000000     1.6s h3
[ ]  159524       0       0  159524 / 1000000     1.7s h3
[ ]  168811       0       0  168811 / 1000000     1.8s h3 (collecting)
[ ]  177678       0       0  177678 / 1000000     1.9s h3
[ ]  187239       0       0  187239 / 1000000     2.0s h3
[ ]  196135       0       0  196135 / 1000000     2.1s h3 (collecting)
[ ]  205045       0       0  205045 / 1000000     2.2s h3
[ ]  214102       0       0  214102 / 1000000     2.3s h3
[ ]  223391       0       0  223391 / 1000000     2.4s h3
[ ]  233025       0       0  233025 / 1000000     2.5s h3
[ ]  242876       0       0  242876 / 1000000     2.6s h3
[ ]  252745       0       0  252745 / 1000000     2.7s h3
[ ]  262662       0       0  262662 / 1000000     2.8s h3
[ ]  272546       0       0  272546 / 1000000     2.9s h3
[ ]  282266       0       0  282266 / 1000000     3.0s h3
[ ]  292179       0       0  292179 / 1000000     3.1s h3 (collecting)
[ ]  301793       0       0  301793 / 1000000     3.2s h3
[ ]  311695       0       0  311695 / 1000000     3.3s h3
[ ]  321335       0       0  321335 / 1000000     3.4s h3 (collecting)
[ ]  330611       0       0  330611 / 1000000     3.5s h3
[ ]  339817       0       0  339817 / 1000000     3.6s h3
[ ]  349465       0       0  349465 / 1000000     3.7s h3
[ ]  359141       0       0  359141 / 1000000     3.8s h3
[ ]  368890       0       0  368890 / 1000000     3.9s h3
[ ]  378625       0       0  378625 / 1000000     4.0s h3
[ ]  388382       0       0  388382 / 1000000     4.1s h3 (collecting)
[ ]  398251       0       0  398251 / 1000000     4.2s h3
[ ]  407960       0       0  407960 / 1000000     4.3s h3
[ ]  417739       0       0  417739 / 1000000     4.4s h3
[ ]  427725       0       0  427725 / 1000000     4.5s h3
[ ]  437498       0       0  437498 / 1000000     4.6s h3
[ ]  446940       0       0  446940 / 1000000     4.7s h3 (generating)
[ ]  456583       0       0  456583 / 1000000     4.8s h3
[ ]  466113       0       0  466113 / 1000000     4.9s h3
[ ]  475600       0       0  475600 / 1000000     5.0s h3
[ ]  485251       0       0  485251 / 1000000     5.1s h3
[ ]  494510       0       0  494510 / 1000000     5.2s h3
[ ]  503945       0       0  503945 / 1000000     5.3s h3
[ ]  512990       0       0  512990 / 1000000     5.4s h3
[ ]  522221       0       0  522221 / 1000000     5.5s h3
[ ]  531602       0       0  531602 / 1000000     5.6s h3
[ ]  540946       0       0  540946 / 1000000     5.7s h3
[ ]  550173       0       0  550173 / 1000000     5.8s h3
[ ]  559435       0       0  559435 / 1000000     5.9s h3
[ ]  568781       0       0  568781 / 1000000     6.0s h3
[ ]  578318       0       0  578318 / 1000000     6.1s h3
[ ]  587728       0       0  587728 / 1000000     6.2s h3
[ ]  596840       0       0  596840 / 1000000     6.3s h3
[ ]  606110       0       0  606110 / 1000000     6.4s h3
[ ]  615335       0       0  615335 / 1000000     6.5s h3
[ ]  624758       0       0  624758 / 1000000     6.6s h3
[ ]  634193       0       0  634193 / 1000000     6.7s h3
[ ]  643699       0       0  643699 / 1000000     6.8s h3 (collecting)
[ ]  653626       0       0  653626 / 1000000     6.9s h3
[ ]  663387       0       0  663387 / 1000000     7.0s h3
[ ]  673061       0       0  673061 / 1000000     7.1s h3
[ ]  682721       0       0  682721 / 1000000     7.2s h3
[ ]  692009       0       0  692009 / 1000000     7.3s h3
[ ]  701540       0       0  701540 / 1000000     7.4s h3
[ ]  711058       0       0  711058 / 1000000     7.5s h3
[ ]  720714       0       0  720714 / 1000000     7.6s h3
[ ]  730395       0       0  730395 / 1000000     7.7s h3
[ ]  739782       0       0  739782 / 1000000     7.8s h3
[ ]  749018       0       0  749018 / 1000000     7.9s h3
[ ]  758308       0       0  758308 / 1000000     8.0s h3
[ ]  767744       0       0  767744 / 1000000     8.1s h3
[ ]  777392       0       0  777392 / 1000000     8.2s h3
[ ]  786860       0       0  786860 / 1000000     8.3s h3
[ ]  796404       0       0  796404 / 1000000     8.4s h3
[ ]  805952       0       0  805952 / 1000000     8.5s h3
[ ]  815585       0       0  815585 / 1000000     8.6s h3
[ ]  824926       0       0  824926 / 1000000     8.7s h3 (collecting)
[ ]  834466       0       0  834466 / 1000000     8.8s h3
[ ]  843816       0       0  843816 / 1000000     8.9s h3
[ ]  853187       0       0  853187 / 1000000     9.0s h3 (collecting)
[ ]  862652       0       0  862652 / 1000000     9.1s h3
[ ]  871942       0       0  871942 / 1000000     9.2s h3
[ ]  881348       0       0  881348 / 1000000     9.3s h3
[ ]  890780       0       0  890780 / 1000000     9.4s h3
[ ]  900259       0       0  900259 / 1000000     9.5s h3
[ ]  909196       0       0  909196 / 1000000     9.6s h3
[ ]  918486       0       0  918486 / 1000000     9.7s h3
[ ]  927842       0       0  927842 / 1000000     9.8s h3
[ ]  937355       0       0  937355 / 1000000     9.9s h3 (collecting)
[ ]  947005       0       0  947005 / 1000000    10.0s h3
[ ]  956230       0       0  956230 / 1000000    10.1s h3 (collecting)
[ ]  965554       0       0  965554 / 1000000    10.2s h3
[ ]  974881       0       0  974881 / 1000000    10.3s h3
[ ]  984147       0       0  984147 / 1000000    10.4s h3
[ ]  993618       0       0  993618 / 1000000    10.5s h3
[✓] 1000000       0       0 1000000 / 1000000    10.6s h3
- 
[ ]       0       0       0       0 / 1000000     0.0s h4
[ ]    3373       0       0    3373 / 1000000     0.1s h4
[ ]    6705       0       0    6705 / 1000000     0.2s h4
[ ]   10087       0       0   10087 / 1000000     0.3s h4
[ ]   13536       0       0   13536 / 1000000     0.4s h4
[ ]   16987       0       0   16987 / 1000000     0.5s h4
[ ]   20313       0       0   20313 / 1000000     0.6s h4
[ ]   23626       0       0   23626 / 1000000     0.7s h4
[ ]   26908       0       0   26908 / 1000000     0.8s h4
[ ]   30345       0       0   30345 / 1000000     0.9s h4
[ ]   33818       0       0   33818 / 1000000     1.0s h4
[ ]   37199       0       0   37199 / 1000000     1.1s h4
[ ]   40544       0       0   40544 / 1000000     1.2s h4
[ ]   43975       0       0   43975 / 1000000     1.3s h4
[ ]   47285       0       0   47285 / 1000000     1.4s h4
[ ]   50704       0       0   50704 / 1000000     1.5s h4
[ ]   53973       0       0   53973 / 1000000     1.6s h4
[ ]   57252       0       0   57252 / 1000000     1.7s h4
[ ]   60554       0       0   60554 / 1000000     1.8s h4
[ ]   63876       0       0   63876 / 1000000     1.9s h4
[ ]   67169       0       0   67169 / 1000000     2.0s h4
[ ]   70527       0       0   70527 / 1000000     2.1s h4
[ ]   73860       0       0   73860 / 1000000     2.2s h4
[ ]   77190       0       0   77190 / 1000000     2.3s h4
[ ]   80392       0       0   80392 / 1000000     2.4s h4
[ ]   83564       0       0   83564 / 1000000     2.5s h4
[ ]   86805       0       0   86805 / 1000000     2.6s h4
[ ]   90110       0       0   90110 / 1000000     2.7s h4
[ ]   93361       0       0   93361 / 1000000     2.8s h4
[ ]   96680       0       0   96680 / 1000000     2.9s h4
[ ]   99927       0       0   99927 / 1000000     3.0s h4
[ ]  103124       0       0  103124 / 1000000     3.1s h4
[ ]  106455       0       0  106455 / 1000000     3.2s h4
[ ]  109665       0       0  109665 / 1000000     3.3s h4
[ ]  112923       0       0  112923 / 1000000     3.4s h4
[ ]  116277       0       0  116277 / 1000000     3.5s h4
[ ]  119661       0       0  119661 / 1000000     3.6s h4
[ ]  122959       0       0  122959 / 1000000     3.7s h4
[ ]  126243       0       0  126243 / 1000000     3.8s h4
[ ]  129534       0       0  129534 / 1000000     3.9s h4
[ ]  132915       0       0  132915 / 1000000     4.0s h4
[ ]  136290       0       0  136290 / 1000000     4.1s h4
[ ]  139656       0       0  139656 / 1000000     4.2s h4
[ ]  143095       0       0  143095 / 1000000     4.3s h4
[ ]  146344       0       0  146344 / 1000000     4.4s h4
[ ]  149735       0       0  149735 / 1000000     4.5s h4
[ ]  153101       0       0  153101 / 1000000     4.6s h4
[ ]  156580       0       0  156580 / 1000000     4.7s h4
[ ]  159797       0       0  159797 / 1000000     4.8s h4
[ ]  163037       0       0  163037 / 1000000     4.9s h4
[ ]  166355       0       0  166355 / 1000000     5.0s h4 (collecting)
[ ]  169606       0       0  169606 / 1000000     5.1s h4
[ ]  172875       0       0  172875 / 1000000     5.2s h4
[ ]  176278       0       0  176278 / 1000000     5.3s h4
[ ]  179678       0       0  179678 / 1000000     5.4s h4
[ ]  183119       0       0  183119 / 1000000     5.5s h4
[ ]  186609       0       0  186609 / 1000000     5.6s h4
[ ]  190058       0       0  190058 / 1000000     5.7s h4
[ ]  193445       0       0  193445 / 1000000     5.8s h4
[ ]  196865       0       0  196865 / 1000000     5.9s h4
[ ]  200212       0       0  200212 / 1000000     6.0s h4
[ ]  203538       0       0  203538 / 1000000     6.1s h4
[ ]  206781       0       0  206781 / 1000000     6.2s h4
[ ]  210042       0       0  210042 / 1000000     6.3s h4
[ ]  213290       0       0  213290 / 1000000     6.4s h4
[ ]  216589       0       0  216589 / 1000000     6.5s h4
[ ]  220004       0       0  220004 / 1000000     6.6s h4
[ ]  223345       0       0  223345 / 1000000     6.7s h4
[ ]  226620       0       0  226620 / 1000000     6.8s h4
[ ]  230054       0       0  230054 / 1000000     6.9s h4
[ ]  233464       0       0  233464 / 1000000     7.0s h4
[ ]  236806       0       0  236806 / 1000000     7.1s h4
[ ]  240107       0       0  240107 / 1000000     7.2s h4
[ ]  243480       0       0  243480 / 1000000     7.3s h4
[ ]  246861       0       0  246861 / 1000000     7.4s h4
[ ]  250348       0       0  250348 / 1000000     7.5s h4
[ ]  253800       0       0  253800 / 1000000     7.6s h4
[ ]  257043       0       0  257043 / 1000000     7.7s h4
[ ]  260380       0       0  260380 / 1000000     7.8s h4
[ ]  263782       0       0  263782 / 1000000     7.9s h4
[ ]  267505       0       0  267505 / 1000000     8.0s h4
[ ]  270764       0       0  270764 / 1000000     8.1s h4
[ ]  274076       0       0  274076 / 1000000     8.2s h4
[ ]  277402       0       0  277402 / 1000000     8.3s h4
[ ]  280736       0       0  280736 / 1000000     8.4s h4
[ ]  283984       0       0  283984 / 1000000     8.5s h4
[ ]  287343       0       0  287343 / 1000000     8.6s h4
[ ]  290642       0       0  290642 / 1000000     8.7s h4
[ ]  293951       0       0  293951 / 1000000     8.8s h4
[ ]  297393       0       0  297393 / 1000000     8.9s h4
[ ]  300712       0       0  300712 / 1000000     9.0s h4
[ ]  303982       0       0  303982 / 1000000     9.1s h4
[ ]  307123       0       0  307123 / 1000000     9.2s h4
[ ]  310385       0       0  310385 / 1000000     9.3s h4
[ ]  313669       0       0  313669 / 1000000     9.4s h4
[ ]  317033       0       0  317033 / 1000000     9.5s h4
[ ]  320378       0       0  320378 / 1000000     9.6s h4
[ ]  323681       0       0  323681 / 1000000     9.7s h4
[ ]  326983       0       0  326983 / 1000000     9.8s h4
[ ]  330234       0       0  330234 / 1000000     9.9s h4
[ ]  333546       0       0  333546 / 1000000    10.0s h4
[ ]  336860       0       0  336860 / 1000000    10.1s h4
[ ]  340146       0       0  340146 / 1000000    10.2s h4
[ ]  343312       0       0  343312 / 1000000    10.3s h4
[ ]  346628       0       0  346628 / 1000000    10.4s h4 (collecting)
[ ]  349911       0       0  349911 / 1000000    10.5s h4
[ ]  353248       0       0  353248 / 1000000    10.6s h4
[ ]  356534       0       0  356534 / 1000000    10.7s h4
[ ]  359663       0       0  359663 / 1000000    10.8s h4
[ ]  362920       0       0  362920 / 1000000    10.9s h4
[ ]  366155       0       0  366155 / 1000000    11.0s h4
[ ]  369476       0       0  369476 / 1000000    11.1s h4
[ ]  372781       0       0  372781 / 1000000    11.2s h4
[ ]  376156       0       0  376156 / 1000000    11.3s h4
[ ]  379956       0       0  379956 / 1000000    11.4s h4
[ ]  383290       0       0  383290 / 1000000    11.5s h4
[ ]  386585       0       0  386585 / 1000000    11.6s h4
[ ]  389956       0       0  389956 / 1000000    11.7s h4
[ ]  393309       0       0  393309 / 1000000    11.8s h4
[ ]  396606       0       0  396606 / 1000000    11.9s h4
[ ]  399926       0       0  399926 / 1000000    12.0s h4
[ ]  403318       0       0  403318 / 1000000    12.1s h4 (collecting)
[ ]  406659       0       0  406659 / 1000000    12.2s h4
[ ]  410027       0       0  410027 / 1000000    12.3s h4
[ ]  413526       0       0  413526 / 1000000    12.4s h4
[ ]  416867       0       0  416867 / 1000000    12.5s h4
[ ]  420212       0       0  420212 / 1000000    12.6s h4
[ ]  423493       0       0  423493 / 1000000    12.7s h4
[ ]  426864       0       0  426864 / 1000000    12.8s h4
[ ]  430238       0       0  430238 / 1000000    12.9s h4
[ ]  433534       0       0  433534 / 1000000    13.0s h4
[ ]  436866       0       0  436866 / 1000000    13.1s h4
[ ]  440247       0       0  440247 / 1000000    13.2s h4
[ ]  443664       0       0  443664 / 1000000    13.3s h4
[ ]  447071       0       0  447071 / 1000000    13.4s h4
[ ]  450363       0       0  450363 / 1000000    13.5s h4
[ ]  453821       0       0  453821 / 1000000    13.6s h4
[ ]  457235       0       0  457235 / 1000000    13.7s h4
[ ]  460666       0       0  460666 / 1000000    13.8s h4
[ ]  464147       0       0  464147 / 1000000    13.9s h4
[ ]  467470       0       0  467470 / 1000000    14.0s h4
[ ]  470839       0       0  470839 / 1000000    14.1s h4
[ ]  474268       0       0  474268 / 1000000    14.2s h4
[ ]  477501       0       0  477501 / 1000000    14.3s h4
[ ]  480807       0       0  480807 / 1000000    14.4s h4
[ ]  484101       0       0  484101 / 1000000    14.5s h4
[ ]  487370       0       0  487370 / 1000000    14.6s h4
[ ]  490707       0       0  490707 / 1000000    14.7s h4
[ ]  493924       0       0  493924 / 1000000    14.8s h4
[ ]  497177       0       0  497177 / 1000000    14.9s h4
[ ]  500481       0       0  500481 / 1000000    15.0s h4
[ ]  503742       0       0  503742 / 1000000    15.1s h4
[ ]  507085       0       0  507085 / 1000000    15.2s h4
[ ]  510458       0       0  510458 / 1000000    15.3s h4
[ ]  513831       0       0  513831 / 1000000    15.4s h4
[ ]  517134       0       0  517134 / 1000000    15.5s h4
[ ]  520503       0       0  520503 / 1000000    15.6s h4
[ ]  523695       0       0  523695 / 1000000    15.7s h4
[ ]  526973       0       0  526973 / 1000000    15.8s h4
[ ]  530291       0       0  530291 / 1000000    15.9s h4
[ ]  533530       0       0  533530 / 1000000    16.0s h4
[ ]  536808       0       0  536808 / 1000000    16.1s h4
[ ]  540158       0       0  540158 / 1000000    16.2s h4
[ ]  543574       0       0  543574 / 1000000    16.3s h4
[ ]  546933       0       0  546933 / 1000000    16.4s h4
[ ]  550263       0       0  550263 / 1000000    16.5s h4
[ ]  553713       0       0  553713 / 1000000    16.6s h4
[ ]  556973       0       0  556973 / 1000000    16.7s h4
[ ]  560286       0       0  560286 / 1000000    16.8s h4
[ ]  563551       0       0  563551 / 1000000    16.9s h4
[ ]  566914       0       0  566914 / 1000000    17.0s h4
[ ]  570339       0       0  570339 / 1000000    17.1s h4
[ ]  573693       0       0  573693 / 1000000    17.2s h4
[ ]  577050       0       0  577050 / 1000000    17.3s h4
[ ]  580377       0       0  580377 / 1000000    17.4s h4
[ ]  583753       0       0  583753 / 1000000    17.5s h4
[ ]  586921       0       0  586921 / 1000000    17.6s h4
[ ]  590148       0       0  590148 / 1000000    17.7s h4
[ ]  593498       0       0  593498 / 1000000    17.8s h4
[ ]  596746       0       0  596746 / 1000000    17.9s h4
[ ]  599962       0       0  599962 / 1000000    18.0s h4
[ ]  603270       0       0  603270 / 1000000    18.1s h4
[ ]  606601       0       0  606601 / 1000000    18.2s h4
[ ]  610014       0       0  610014 / 1000000    18.3s h4
[ ]  613425       0       0  613425 / 1000000    18.4s h4
[ ]  616844       0       0  616844 / 1000000    18.5s h4
[ ]  620250       0       0  620250 / 1000000    18.6s h4
[ ]  623633       0       0  623633 / 1000000    18.7s h4
[ ]  627044       0       0  627044 / 1000000    18.8s h4
[ ]  630391       0       0  630391 / 1000000    18.9s h4
[ ]  633188       0       0  633188 / 1000000    19.0s h4
[ ]  636583       0       0  636583 / 1000000    19.1s h4
[ ]  639915       0       0  639915 / 1000000    19.2s h4
[ ]  643282       0       0  643282 / 1000000    19.3s h4
[ ]  646648       0       0  646648 / 1000000    19.4s h4
[ ]  650033       0       0  650033 / 1000000    19.5s h4
[ ]  653273       0       0  653273 / 1000000    19.6s h4
[ ]  656587       0       0  656587 / 1000000    19.7s h4 (collecting)
[ ]  660112       0       0  660112 / 1000000    19.8s h4
[ ]  663560       0       0  663560 / 1000000    19.9s h4
[ ]  667004       0       0  667004 / 1000000    20.0s h4
[ ]  670487       0       0  670487 / 1000000    20.1s h4
[ ]  673859       0       0  673859 / 1000000    20.2s h4
[ ]  677275       0       0  677275 / 1000000    20.3s h4
[ ]  680643       0       0  680643 / 1000000    20.4s h4
[ ]  683977       0       0  683977 / 1000000    20.5s h4
[ ]  687316       0       0  687316 / 1000000    20.6s h4
[ ]  690710       0       0  690710 / 1000000    20.7s h4
[ ]  694053       0       0  694053 / 1000000    20.8s h4
[ ]  697437       0       0  697437 / 1000000    20.9s h4
[ ]  700752       0       0  700752 / 1000000    21.0s h4
[ ]  704129       0       0  704129 / 1000000    21.1s h4
[ ]  707430       0       0  707430 / 1000000    21.2s h4
[ ]  710888       0       0  710888 / 1000000    21.3s h4
[ ]  714204       0       0  714204 / 1000000    21.4s h4
[ ]  717730       0       0  717730 / 1000000    21.5s h4
[ ]  721320       0       0  721320 / 1000000    21.6s h4
[ ]  725493       0       0  725493 / 1000000    21.7s h4
[ ]  728979       0       0  728979 / 1000000    21.8s h4
[ ]  732392       0       0  732392 / 1000000    21.9s h4
[ ]  736626       0       0  736626 / 1000000    22.0s h4
[ ]  740220       0       0  740220 / 1000000    22.1s h4 (   testing)
[ ]  743544       0       0  743544 / 1000000    22.2s h4
[ ]  746912       0       0  746912 / 1000000    22.3s h4
[ ]  750284       0       0  750284 / 1000000    22.4s h4
[ ]  753757       0       0  753757 / 1000000    22.5s h4
[ ]  757224       0       0  757224 / 1000000    22.6s h4
[ ]  760668       0       0  760668 / 1000000    22.7s h4
[ ]  763841       0       0  763841 / 1000000    22.8s h4
[ ]  767238       0       0  767238 / 1000000    22.9s h4
[ ]  770653       0       0  770653 / 1000000    23.0s h4
[ ]  773940       0       0  773940 / 1000000    23.1s h4
[ ]  777212       0       0  777212 / 1000000    23.2s h4
[ ]  780589       0       0  780589 / 1000000    23.3s h4
[ ]  783888       0       0  783888 / 1000000    23.4s h4
[ ]  787286       0       0  787286 / 1000000    23.5s h4
[ ]  790608       0       0  790608 / 1000000    23.6s h4
[ ]  794048       0       0  794048 / 1000000    23.7s h4
[ ]  797495       0       0  797495 / 1000000    23.8s h4
[ ]  800760       0       0  800760 / 1000000    23.9s h4
[ ]  804165       0       0  804165 / 1000000    24.0s h4
[ ]  807522       0       0  807522 / 1000000    24.1s h4
[ ]  810867       0       0  810867 / 1000000    24.2s h4
[ ]  814281       0       0  814281 / 1000000    24.3s h4
[ ]  817807       0       0  817807 / 1000000    24.4s h4
[ ]  821130       0       0  821130 / 1000000    24.5s h4
[ ]  824470       0       0  824470 / 1000000    24.6s h4 (collecting)
[ ]  827989       0       0  827989 / 1000000    24.7s h4
[ ]  831390       0       0  831390 / 1000000    24.8s h4
[ ]  834770       0       0  834770 / 1000000    24.9s h4
[ ]  838173       0       0  838173 / 1000000    25.0s h4
[ ]  841643       0       0  841643 / 1000000    25.1s h4
[ ]  845048       0       0  845048 / 1000000    25.2s h4
[ ]  848407       0       0  848407 / 1000000    25.3s h4
[ ]  851781       0       0  851781 / 1000000    25.4s h4
[ ]  855154       0       0  855154 / 1000000    25.5s h4
[ ]  858500       0       0  858500 / 1000000    25.6s h4
[ ]  861942       0       0  861942 / 1000000    25.7s h4
[ ]  865299       0       0  865299 / 1000000    25.8s h4
[ ]  868658       0       0  868658 / 1000000    25.9s h4
[ ]  871968       0       0  871968 / 1000000    26.0s h4 (collecting)
[ ]  875316       0       0  875316 / 1000000    26.1s h4
[ ]  878662       0       0  878662 / 1000000    26.2s h4
[ ]  882120       0       0  882120 / 1000000    26.3s h4
[ ]  885414       0       0  885414 / 1000000    26.4s h4
[ ]  888747       0       0  888747 / 1000000    26.5s h4
[ ]  892027       0       0  892027 / 1000000    26.6s h4
[ ]  895331       0       0  895331 / 1000000    26.7s h4
[ ]  899094       0       0  899094 / 1000000    26.8s h4
[ ]  902960       0       0  902960 / 1000000    26.9s h4
[ ]  906326       0       0  906326 / 1000000    27.0s h4
[ ]  909639       0       0  909639 / 1000000    27.1s h4
[ ]  912944       0       0  912944 / 1000000    27.2s h4
[ ]  916202       0       0  916202 / 1000000    27.3s h4
[ ]  919540       0       0  919540 / 1000000    27.4s h4
[ ]  922879       0       0  922879 / 1000000    27.5s h4
[ ]  926187       0       0  926187 / 1000000    27.6s h4
[ ]  929517       0       0  929517 / 1000000    27.7s h4
[ ]  932889       0       0  932889 / 1000000    27.8s h4
[ ]  936290       0       0  936290 / 1000000    27.9s h4
[ ]  939570       0       0  939570 / 1000000    28.0s h4
[ ]  942884       0       0  942884 / 1000000    28.1s h4
[ ]  946231       0       0  946231 / 1000000    28.2s h4
[ ]  949532       0       0  949532 / 1000000    28.3s h4
[ ]  952821       0       0  952821 / 1000000    28.4s h4
[ ]  956069       0       0  956069 / 1000000    28.5s h4
[ ]  959280       0       0  959280 / 1000000    28.6s h4
[ ]  962485       0       0  962485 / 1000000    28.7s h4
[ ]  965816       0       0  965816 / 1000000    28.8s h4
[ ]  969052       0       0  969052 / 1000000    28.9s h4
[ ]  972338       0       0  972338 / 1000000    29.0s h4
[ ]  975609       0       0  975609 / 1000000    29.1s h4
[ ]  978875       0       0  978875 / 1000000    29.2s h4
[ ]  982125       0       0  982125 / 1000000    29.3s h4
[ ]  985463       0       0  985463 / 1000000    29.4s h4
[ ]  988881       0       0  988881 / 1000000    29.5s h4
[ ]  992226       0       0  992226 / 1000000    29.6s h4
[ ]  995504       0       0  995504 / 1000000    29.7s h4
[ ]  998793       0       0  998793 / 1000000    29.8s h4
[✓] 1000000       0       0 1000000 / 1000000    29.8s 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-30 06:00.54 ---> saved as "c26d4ba6182f9222b1f761d3a545ea35328beaf0d89087b3ed9efff91699a3a8"
Job succeeded
2026-04-30 06:02.04: Job succeeded