(not at the head of any monitored branch or PR)
2026-04-10 17:47.56: New job: test dates_calc.0.0.3 with dune.3.22.2, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29704/head (3e0c395e7b1393a792367f8edca3654dac71e6fd)
                              on debian-13-ocaml-5.4/amd64

To reproduce locally:

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

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

2026-04-10 17:47.56: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:a32e708a4134e2a41db640ce8876b2475794c7cd5c0ce822b17aeaf65592bf03-dune.3.22.2-dates_calc.0.0.3-3e0c395e7b1393a792367f8edca3654dac71e6fd"
2026-04-10 17:47.56: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:a32e708a4134e2a41db640ce8876b2475794c7cd5c0ce822b17aeaf65592bf03)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -ni"))
 (run (shell "opam option solver=builtin-0install && opam config report"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMPRECISETRACKING 1)
 (env CI true)
 (env OPAM_REPO_CI true)
 (run (shell "rm -rf opam-repository/"))
 (copy (src .) (dst opam-repository/))
 (run (shell "opam repository set-url --strict default opam-repository/"))
 (run (network host)
      (shell "opam update --depexts || true"))
 (run (shell "opam pin add -k version -yn dune.3.22.2 3.22.2"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dune.3.22.2;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'dune.3.22.2' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dates_calc.0.0.3;\
             \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.3' && 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.3) || true"))
 (run (shell  "opam reinstall --with-test --verbose dates_calc.0.0.3;\
             \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.3' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-04-10 17:47.56: Waiting for resource in pool OCluster
2026-04-11 01:37.40: Waiting for worker…
2026-04-11 01:39.48: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
Updating files:  72% (13566/18686)
Updating files:  73% (13641/18686)
Updating files:  74% (13828/18686)
Updating files:  75% (14015/18686)
Updating files:  76% (14202/18686)
Updating files:  77% (14389/18686)
Updating files:  78% (14576/18686)
Updating files:  79% (14762/18686)
Updating files:  80% (14949/18686)
Updating files:  81% (15136/18686)
Updating files:  82% (15323/18686)
Updating files:  83% (15510/18686)
Updating files:  84% (15697/18686)
Updating files:  85% (15884/18686)
Updating files:  86% (16070/18686)
Updating files:  87% (16257/18686)
Updating files:  88% (16444/18686)
Updating files:  89% (16631/18686)
Updating files:  90% (16818/18686)
Updating files:  91% (17005/18686)
Updating files:  92% (17192/18686)
Updating files:  93% (17378/18686)
Updating files:  94% (17565/18686)
Updating files:  95% (17752/18686)
Updating files:  96% (17939/18686)
Updating files:  97% (18126/18686)
Updating files:  98% (18313/18686)
Updating files:  99% (18500/18686)
Updating files: 100% (18686/18686)
Updating files: 100% (18686/18686), done.
HEAD is now at 9d8ceab8e9 Merge pull request #29697 from filipeom/opam-publish-smtml.0.25.0
Updating 9d8ceab8e9..3e0c395e7b
Fast-forward
 packages/chrome-trace/chrome-trace.3.22.2/opam     | 39 +++++++++++
 .../dune-action-plugin.3.22.2/opam                 | 52 +++++++++++++++
 .../dune-action-trace.3.22.2/opam                  | 39 +++++++++++
 .../dune-build-info/dune-build-info.3.22.2/opam    | 45 +++++++++++++
 .../dune-configurator.3.22.2/opam                  | 49 ++++++++++++++
 packages/dune-glob/dune-glob.3.22.2/opam           | 42 ++++++++++++
 .../dune-private-libs.3.22.2/opam                  | 50 +++++++++++++++
 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam     | 41 ++++++++++++
 packages/dune-rpc/dune-rpc.3.22.2/opam             | 44 +++++++++++++
 packages/dune-site/dune-site.3.22.2/opam           | 37 +++++++++++
 packages/dune/dune.3.22.2/opam                     | 75 ++++++++++++++++++++++
 packages/dyn/dyn.3.22.2/opam                       | 40 ++++++++++++
 packages/fs-io/fs-io.3.22.2/opam                   | 39 +++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam         | 43 +++++++++++++
 packages/ordering/ordering.3.22.2/opam             | 38 +++++++++++
 packages/stdune/stdune.3.22.2/opam                 | 46 +++++++++++++
 packages/top-closure/top-closure.3.22.2/opam       | 38 +++++++++++
 packages/xdg/xdg.3.22.2/opam                       | 39 +++++++++++
 18 files changed, 796 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.22.2/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.2/opam
 create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.2/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.22.2/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.22.2/opam
 create mode 100644 packages/dune-glob/dune-glob.3.22.2/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.2/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.22.2/opam
 create mode 100644 packages/dune-site/dune-site.3.22.2/opam
 create mode 100644 packages/dune/dune.3.22.2/opam
 create mode 100644 packages/dyn/dyn.3.22.2/opam
 create mode 100644 packages/fs-io/fs-io.3.22.2/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam
 create mode 100644 packages/ordering/ordering.3.22.2/opam
 create mode 100644 packages/stdune/stdune.3.22.2/opam
 create mode 100644 packages/top-closure/top-closure.3.22.2/opam
 create mode 100644 packages/xdg/xdg.3.22.2/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:a32e708a4134e2a41db640ce8876b2475794c7cd5c0ce822b17aeaf65592bf03)
2026-04-11 01:39.57 ---> using "4e852d2e6c9ac39a43c0cb8d1ef92ecff46d16da630bff560bb4811e0bb278c3" from cache

/: (user (uid 1000) (gid 1000))

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-04-11 01:39.57 ---> using "c82a131037ae9ff29ac79f02306f126bd36264ccb683d2324f553289b0d4a496" from cache

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

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


<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-11 01:39.57 ---> using "983e4dc58d26f7046c0fe6fbe642bc66995d2abecd6409a14b0c538d3f1a7bd2" from cache

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=13
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.4
# invariant            ["ocaml-base-compiler" {= "5.4.1"}]
# compiler-packages    ocaml-base-compiler.5.4.1, ocaml-compiler.5.4.1, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.1
2026-04-11 01:39.57 ---> using "8b346866360ce3a934df95a88d3a1520ccbf589f659a7e26aa97be0b96b1083a" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2026-04-11 01:39.57 ---> using "8be7be6786c965fdad4454d936ba98cc5fa516f8de8fee90f280618661533faa" from cache

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

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

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [121 kB]
- Fetched 211 kB in 0s (861 kB/s)
- Reading package lists...
- 
2026-04-11 01:39.59 ---> using "dc69cd977951bdc4dffcc68622bf3ea65b4d02db568ca1f8bd5ab395f414a24f" from cache

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

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.2  (cached)
-> installed dune.3.22.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 01:39.59 ---> using "6f94ccb4a18327fa9742ec042c4183209005d455af95ec03af9e9453c8a8c9d1" from cache

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

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

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1  (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5  (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.0  (https://opam.ocaml.org/cache)
-> retrieved dates_calc.0.0.3  (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0  (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0  (https://opam.ocaml.org/cache)
-> retrieved ocamlbuild.0.16.1  (https://opam.ocaml.org/cache)
-> retrieved ocamlfind.1.9.8  (https://opam.ocaml.org/cache)
-> retrieved ounit2.2.2.7  (https://opam.ocaml.org/cache)
-> retrieved qcheck.0.91, qcheck-core.0.91, qcheck-ounit.0.91  (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> retrieved seq.base  (2 extra sources)
-> retrieved seq.base  (2 extra sources)
-> installed seq.base
-> installed ocaml-syntax-shims.1.0.0
-> retrieved stdlib-shims.0.3.0  (https://opam.ocaml.org/cache)
-> retrieved topkg.1.1.1  (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> installed re.1.14.0
-> installed ounit2.2.2.7
-> installed qcheck-core.0.91
-> installed qcheck-ounit.0.91
-> installed qcheck.0.91
-> installed cmdliner.2.1.0
-> installed ocamlfind.1.9.8
-> removed   dates_calc.0.0.3
-> 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.3
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 01:42.02 ---> saved as "db299bc5e04775394c38627f3b351344b788029a49c5f5c3c3a6f7397e77b9ed"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [dates_calc.0.0.3: extract]
-> retrieved dates_calc.0.0.3  (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.3)
- (cd _build/default/test && ./unit.exe)
- Testing `unit'.
- This run has ID `5O3H6QTR'.
- 
-   [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.3/_build/default/test/_build/_tests/unit'.
- Test Successful in 0.007s. 6 tests run.
- (cd _build/default/test && ./prop.exe)
- 
random seed: 403396894
-   generated   error    fail    pass /   total     time test name
- 
[ ]       0       0       0       0 /    1000     0.0s anon_test_1
[ ]     246       0       0     246 /    1000     0.1s anon_test_1
[ ]     508       0       0     508 /    1000     0.2s anon_test_1
[ ]     790       0       0     790 /    1000     0.3s anon_test_1
[✓]    1000       0       0    1000 /    1000     0.4s anon_test_1
- 
[ ]       0       0       0       0 /    1000     0.0s anon_test_2
[ ]      12       0       0      12 /    1000     0.1s anon_test_2
[ ]      37       0       0      37 /    1000     0.2s anon_test_2
[ ]      50       0       0      50 /    1000     0.3s anon_test_2
[ ]      63       0       0      63 /    1000     0.4s anon_test_2
[ ]      75       0       0      75 /    1000     0.5s anon_test_2
[ ]      88       0       0      88 /    1000     0.6s anon_test_2
[ ]     102       0       0     102 /    1000     0.7s anon_test_2
[ ]     112       0       0     112 /    1000     0.9s anon_test_2
[ ]     128       0       0     128 /    1000     1.0s anon_test_2
[ ]     141       0       0     141 /    1000     1.1s anon_test_2
[ ]     150       0       0     150 /    1000     1.2s anon_test_2
[ ]     163       0       0     163 /    1000     1.3s anon_test_2
[ ]     178       0       0     178 /    1000     1.4s anon_test_2
[ ]     193       0       0     193 /    1000     1.5s anon_test_2
[ ]     212       0       0     212 /    1000     1.6s anon_test_2
[ ]     223       0       0     223 /    1000     1.7s anon_test_2
[ ]     233       0       0     233 /    1000     1.8s anon_test_2
[ ]     249       0       0     249 /    1000     1.9s anon_test_2
[ ]     263       0       0     263 /    1000     2.0s anon_test_2
[ ]     281       0       0     281 /    1000     2.1s anon_test_2
[ ]     293       0       0     293 /    1000     2.2s anon_test_2
[ ]     305       0       0     305 /    1000     2.4s anon_test_2
[ ]     312       0       0     312 /    1000     2.5s anon_test_2
[ ]     326       0       0     326 /    1000     2.6s anon_test_2
[ ]     339       0       0     339 /    1000     2.7s anon_test_2
[ ]     351       0       0     351 /    1000     2.8s anon_test_2
[ ]     365       0       0     365 /    1000     2.9s anon_test_2
[ ]     381       0       0     381 /    1000     3.0s anon_test_2
[ ]     393       0       0     393 /    1000     3.1s anon_test_2
[ ]     407       0       0     407 /    1000     3.2s anon_test_2
[ ]     427       0       0     427 /    1000     3.3s anon_test_2
[ ]     438       0       0     438 /    1000     3.4s anon_test_2
[ ]     449       0       0     449 /    1000     3.5s anon_test_2
[ ]     461       0       0     461 /    1000     3.6s anon_test_2
[ ]     473       0       0     473 /    1000     3.7s anon_test_2
[ ]     485       0       0     485 /    1000     3.8s anon_test_2
[ ]     500       0       0     500 /    1000     4.0s anon_test_2
[ ]     515       0       0     515 /    1000     4.1s anon_test_2
[ ]     524       0       0     524 /    1000     4.2s anon_test_2
[ ]     534       0       0     534 /    1000     4.3s anon_test_2
[ ]     549       0       0     549 /    1000     4.4s anon_test_2
[ ]     565       0       0     565 /    1000     4.5s anon_test_2
[ ]     579       0       0     579 /    1000     4.6s anon_test_2
[ ]     597       0       0     597 /    1000     4.7s anon_test_2
[ ]     614       0       0     614 /    1000     4.8s anon_test_2
[ ]     633       0       0     633 /    1000     4.9s anon_test_2
[ ]     643       0       0     643 /    1000     5.0s anon_test_2
[ ]     659       0       0     659 /    1000     5.1s anon_test_2
[ ]     674       0       0     674 /    1000     5.2s anon_test_2
[ ]     681       0       0     681 /    1000     5.3s anon_test_2
[ ]     693       0       0     693 /    1000     5.4s anon_test_2
[ ]     710       0       0     710 /    1000     5.5s anon_test_2
[ ]     722       0       0     722 /    1000     5.6s anon_test_2
[ ]     732       0       0     732 /    1000     5.7s anon_test_2
[ ]     745       0       0     745 /    1000     5.9s anon_test_2
[ ]     761       0       0     761 /    1000     6.0s anon_test_2
[ ]     781       0       0     781 /    1000     6.1s anon_test_2
[ ]     791       0       0     791 /    1000     6.2s anon_test_2
[ ]     803       0       0     803 /    1000     6.3s anon_test_2
[ ]     816       0       0     816 /    1000     6.4s anon_test_2
[ ]     828       0       0     828 /    1000     6.5s anon_test_2
[ ]     839       0       0     839 /    1000     6.6s anon_test_2
[ ]     852       0       0     852 /    1000     6.7s anon_test_2
[ ]     868       0       0     868 /    1000     6.8s anon_test_2
[ ]     882       0       0     882 /    1000     6.9s anon_test_2
[ ]     895       0       0     895 /    1000     7.1s anon_test_2
[ ]     911       0       0     911 /    1000     7.2s anon_test_2
[ ]     924       0       0     924 /    1000     7.3s anon_test_2
[ ]     930       0       0     930 /    1000     7.4s anon_test_2
[ ]     945       0       0     945 /    1000     7.5s anon_test_2
[ ]     960       0       0     960 /    1000     7.6s anon_test_2
[ ]     974       0       0     974 /    1000     7.7s anon_test_2
[ ]     988       0       0     988 /    1000     7.8s anon_test_2
[ ]    1000       0       0    1000 /    1000     7.9s anon_test_2
[✓]    1000       0       0    1000 /    1000     7.9s anon_test_2
- 
[ ]       0       0       0       0 / 1000000     0.0s h1
[ ]    8243       0       0    8243 / 1000000     0.1s h1
[ ]   16900       0       0   16900 / 1000000     0.2s h1
[ ]   25975       0       0   25975 / 1000000     0.3s h1
[ ]   35120       0       0   35120 / 1000000     0.4s h1
[ ]   42978       0       0   42978 / 1000000     0.5s h1
[ ]   48779       0       0   48779 / 1000000     0.6s h1
[ ]   55666       0       0   55666 / 1000000     0.7s h1
[ ]   62937       0       0   62937 / 1000000     0.8s h1
[ ]   70251       0       0   70251 / 1000000     0.9s h1
[ ]   77796       0       0   77796 / 1000000     1.0s h1
[ ]   87795       0       0   87795 / 1000000     1.1s h1
[ ]   97324       0       0   97324 / 1000000     1.2s h1 (collecting)
[ ]  106506       0       0  106506 / 1000000     1.3s h1
[ ]  116271       0       0  116271 / 1000000     1.4s h1
[ ]  125429       0       0  125429 / 1000000     1.5s h1
[ ]  135015       0       0  135015 / 1000000     1.6s h1
[ ]  143512       0       0  143512 / 1000000     1.7s h1 (collecting)
[ ]  152212       0       0  152212 / 1000000     1.8s h1
[ ]  161254       0       0  161254 / 1000000     1.9s h1
[ ]  170359       0       0  170359 / 1000000     2.0s h1
[ ]  179186       0       0  179186 / 1000000     2.1s h1
[ ]  186465       0       0  186465 / 1000000     2.2s h1
[ ]  195831       0       0  195831 / 1000000     2.3s h1
[ ]  205185       0       0  205185 / 1000000     2.4s h1
[ ]  214834       0       0  214834 / 1000000     2.5s h1
[ ]  225047       0       0  225047 / 1000000     2.6s h1
[ ]  235187       0       0  235187 / 1000000     2.7s h1
[ ]  244744       0       0  244744 / 1000000     2.8s h1
[ ]  254489       0       0  254489 / 1000000     2.9s h1
[ ]  264317       0       0  264317 / 1000000     3.0s h1
[ ]  274412       0       0  274412 / 1000000     3.1s h1
[ ]  284619       0       0  284619 / 1000000     3.2s h1
[ ]  295285       0       0  295285 / 1000000     3.3s h1
[ ]  305794       0       0  305794 / 1000000     3.4s h1
[ ]  316343       0       0  316343 / 1000000     3.5s h1
[ ]  326053       0       0  326053 / 1000000     3.6s h1 (collecting)
[ ]  336016       0       0  336016 / 1000000     3.7s h1
[ ]  346407       0       0  346407 / 1000000     3.8s h1
[ ]  355863       0       0  355863 / 1000000     3.9s h1
[ ]  365333       0       0  365333 / 1000000     4.0s h1
[ ]  373635       0       0  373635 / 1000000     4.1s h1
[ ]  383261       0       0  383261 / 1000000     4.2s h1
[ ]  392916       0       0  392916 / 1000000     4.3s h1
[ ]  401779       0       0  401779 / 1000000     4.4s h1
[ ]  411899       0       0  411899 / 1000000     4.5s h1
[ ]  420132       0       0  420132 / 1000000     4.6s h1
[ ]  429228       0       0  429228 / 1000000     4.7s h1
[ ]  437611       0       0  437611 / 1000000     4.8s h1
[ ]  446961       0       0  446961 / 1000000     4.9s h1
[ ]  455162       0       0  455162 / 1000000     5.0s h1
[ ]  464996       0       0  464996 / 1000000     5.1s h1
[ ]  471868       0       0  471868 / 1000000     5.2s h1
[ ]  481251       0       0  481251 / 1000000     5.3s h1
[ ]  491013       0       0  491013 / 1000000     5.4s h1
[ ]  500143       0       0  500143 / 1000000     5.5s h1
[ ]  508424       0       0  508424 / 1000000     5.6s h1
[ ]  517710       0       0  517710 / 1000000     5.7s h1
[ ]  526892       0       0  526892 / 1000000     5.8s h1
[ ]  536310       0       0  536310 / 1000000     5.9s h1
[ ]  545794       0       0  545794 / 1000000     6.0s h1
[ ]  554658       0       0  554658 / 1000000     6.1s h1
[ ]  563562       0       0  563562 / 1000000     6.2s h1
[ ]  572163       0       0  572163 / 1000000     6.3s h1
[ ]  581408       0       0  581408 / 1000000     6.4s h1
[ ]  590473       0       0  590473 / 1000000     6.5s h1
[ ]  600196       0       0  600196 / 1000000     6.6s h1
[ ]  609890       0       0  609890 / 1000000     6.7s h1
[ ]  619570       0       0  619570 / 1000000     6.8s h1
[ ]  629309       0       0  629309 / 1000000     6.9s h1
[ ]  639209       0       0  639209 / 1000000     7.0s h1
[ ]  649012       0       0  649012 / 1000000     7.1s h1
[ ]  658417       0       0  658417 / 1000000     7.2s h1
[ ]  668072       0       0  668072 / 1000000     7.3s h1
[ ]  677828       0       0  677828 / 1000000     7.4s h1
[ ]  687574       0       0  687574 / 1000000     7.5s h1
[ ]  697455       0       0  697455 / 1000000     7.6s h1
[ ]  707494       0       0  707494 / 1000000     7.7s h1
[ ]  717312       0       0  717312 / 1000000     7.8s h1
[ ]  727588       0       0  727588 / 1000000     7.9s h1
[ ]  737914       0       0  737914 / 1000000     8.0s h1
[ ]  743411       0       0  743411 / 1000000     8.1s h1
[ ]  753262       0       0  753262 / 1000000     8.2s h1
[ ]  763172       0       0  763172 / 1000000     8.3s h1
[ ]  773145       0       0  773145 / 1000000     8.4s h1
[ ]  783226       0       0  783226 / 1000000     8.5s h1
[ ]  793415       0       0  793415 / 1000000     8.6s h1
[ ]  803445       0       0  803445 / 1000000     8.7s h1
[ ]  813463       0       0  813463 / 1000000     8.8s h1
[ ]  823561       0       0  823561 / 1000000     8.9s h1
[ ]  833535       0       0  833535 / 1000000     9.0s h1
[ ]  843014       0       0  843014 / 1000000     9.1s h1
[ ]  851729       0       0  851729 / 1000000     9.2s h1
[ ]  861592       0       0  861592 / 1000000     9.3s h1
[ ]  871358       0       0  871358 / 1000000     9.4s h1
[ ]  881112       0       0  881112 / 1000000     9.5s h1
[ ]  890917       0       0  890917 / 1000000     9.6s h1
[ ]  900446       0       0  900446 / 1000000     9.7s h1
[ ]  910264       0       0  910264 / 1000000     9.8s h1
[ ]  919779       0       0  919779 / 1000000     9.9s h1
[ ]  929160       0       0  929160 / 1000000    10.0s h1
[ ]  939044       0       0  939044 / 1000000    10.1s h1
[ ]  948724       0       0  948724 / 1000000    10.2s h1
[ ]  958623       0       0  958623 / 1000000    10.3s h1
[ ]  968613       0       0  968613 / 1000000    10.4s h1
[ ]  978528       0       0  978528 / 1000000    10.5s h1
[ ]  989012       0       0  989012 / 1000000    10.6s h1
[ ]  999358       0       0  999358 / 1000000    10.7s h1
[✓] 1000000       0       0 1000000 / 1000000    10.7s h1
- 
[ ]       0       0       0       0 / 1000000     0.0s h2
[ ]    5528       0       0    5528 / 1000000     0.1s h2
[ ]   11018       0       0   11018 / 1000000     0.2s h2
[ ]   16046       0       0   16046 / 1000000     0.3s h2
[ ]   21112       0       0   21112 / 1000000     0.4s h2
[ ]   26495       0       0   26495 / 1000000     0.5s h2 (collecting)
[ ]   31652       0       0   31652 / 1000000     0.6s h2
[ ]   36736       0       0   36736 / 1000000     0.7s h2 (collecting)
[ ]   41879       0       0   41879 / 1000000     0.8s h2
[ ]   47183       0       0   47183 / 1000000     0.9s h2
[ ]   52195       0       0   52195 / 1000000     1.0s h2
[ ]   57306       0       0   57306 / 1000000     1.1s h2
[ ]   62506       0       0   62506 / 1000000     1.2s h2
[ ]   67742       0       0   67742 / 1000000     1.3s h2
[ ]   72969       0       0   72969 / 1000000     1.4s h2
[ ]   78199       0       0   78199 / 1000000     1.5s h2
[ ]   83439       0       0   83439 / 1000000     1.6s h2
[ ]   88686       0       0   88686 / 1000000     1.7s h2
[ ]   94104       0       0   94104 / 1000000     1.8s h2
[ ]   99284       0       0   99284 / 1000000     1.9s h2
[ ]  104427       0       0  104427 / 1000000     2.0s h2 (collecting)
[ ]  109363       0       0  109363 / 1000000     2.1s h2
[ ]  113959       0       0  113959 / 1000000     2.2s h2
[ ]  119285       0       0  119285 / 1000000     2.3s h2
[ ]  124256       0       0  124256 / 1000000     2.4s h2
[ ]  129355       0       0  129355 / 1000000     2.5s h2
[ ]  134624       0       0  134624 / 1000000     2.6s h2
[ ]  139952       0       0  139952 / 1000000     2.7s h2
[ ]  145242       0       0  145242 / 1000000     2.8s h2
[ ]  150454       0       0  150454 / 1000000     2.9s h2
[ ]  155569       0       0  155569 / 1000000     3.0s h2
[ ]  160394       0       0  160394 / 1000000     3.1s h2
[ ]  165276       0       0  165276 / 1000000     3.2s h2
[ ]  170395       0       0  170395 / 1000000     3.3s h2
[ ]  175477       0       0  175477 / 1000000     3.4s h2
[ ]  180491       0       0  180491 / 1000000     3.5s h2
[ ]  185692       0       0  185692 / 1000000     3.6s h2
[ ]  190818       0       0  190818 / 1000000     3.7s h2
[ ]  195894       0       0  195894 / 1000000     3.8s h2
[ ]  201200       0       0  201200 / 1000000     3.9s h2
[ ]  206262       0       0  206262 / 1000000     4.0s h2
[ ]  211479       0       0  211479 / 1000000     4.1s h2
[ ]  216744       0       0  216744 / 1000000     4.2s h2
[ ]  222327       0       0  222327 / 1000000     4.3s h2
[ ]  227500       0       0  227500 / 1000000     4.4s h2
[ ]  232885       0       0  232885 / 1000000     4.5s h2
[ ]  238314       0       0  238314 / 1000000     4.6s h2 (collecting)
[ ]  243616       0       0  243616 / 1000000     4.7s h2
[ ]  248772       0       0  248772 / 1000000     4.8s h2
[ ]  254008       0       0  254008 / 1000000     4.9s h2
[ ]  259212       0       0  259212 / 1000000     5.0s h2
[ ]  264504       0       0  264504 / 1000000     5.1s h2
[ ]  269792       0       0  269792 / 1000000     5.2s h2
[ ]  275013       0       0  275013 / 1000000     5.3s h2
[ ]  280279       0       0  280279 / 1000000     5.4s h2
[ ]  285573       0       0  285573 / 1000000     5.5s h2
[ ]  290704       0       0  290704 / 1000000     5.6s h2
[ ]  295854       0       0  295854 / 1000000     5.7s h2 (collecting)
[ ]  301214       0       0  301214 / 1000000     5.8s h2
[ ]  306455       0       0  306455 / 1000000     5.9s h2
[ ]  311660       0       0  311660 / 1000000     6.0s h2
[ ]  316912       0       0  316912 / 1000000     6.1s h2
[ ]  322099       0       0  322099 / 1000000     6.2s h2
[ ]  327256       0       0  327256 / 1000000     6.3s h2
[ ]  332435       0       0  332435 / 1000000     6.4s h2
[ ]  337700       0       0  337700 / 1000000     6.5s h2
[ ]  342876       0       0  342876 / 1000000     6.6s h2
[ ]  348151       0       0  348151 / 1000000     6.7s h2
[ ]  353307       0       0  353307 / 1000000     6.8s h2
[ ]  358655       0       0  358655 / 1000000     6.9s h2
[ ]  364560       0       0  364560 / 1000000     7.0s h2
[ ]  372845       0       0  372845 / 1000000     7.1s h2
[ ]  379798       0       0  379798 / 1000000     7.2s h2
[ ]  385275       0       0  385275 / 1000000     7.3s h2
[ ]  390617       0       0  390617 / 1000000     7.4s h2
[ ]  396054       0       0  396054 / 1000000     7.5s h2
[ ]  404210       0       0  404210 / 1000000     7.6s h2
[ ]  412554       0       0  412554 / 1000000     7.7s h2
[ ]  421154       0       0  421154 / 1000000     7.8s h2 (collecting)
[ ]  428710       0       0  428710 / 1000000     7.9s h2 (collecting)
[ ]  436924       0       0  436924 / 1000000     8.0s h2
[ ]  444298       0       0  444298 / 1000000     8.1s h2
[ ]  450856       0       0  450856 / 1000000     8.2s h2
[ ]  455845       0       0  455845 / 1000000     8.3s h2
[ ]  460799       0       0  460799 / 1000000     8.4s h2
[ ]  465870       0       0  465870 / 1000000     8.5s h2
[ ]  471107       0       0  471107 / 1000000     8.6s h2
[ ]  476409       0       0  476409 / 1000000     8.7s h2
[ ]  483425       0       0  483425 / 1000000     8.8s h2
[ ]  489045       0       0  489045 / 1000000     8.9s h2
[ ]  494162       0       0  494162 / 1000000     9.0s h2 (   testing)
[ ]  499115       0       0  499115 / 1000000     9.1s h2
[ ]  504322       0       0  504322 / 1000000     9.2s h2
[ ]  509539       0       0  509539 / 1000000     9.3s h2
[ ]  514688       0       0  514688 / 1000000     9.4s h2 (collecting)
[ ]  520352       0       0  520352 / 1000000     9.5s h2
[ ]  527797       0       0  527797 / 1000000     9.6s h2
[ ]  534454       0       0  534454 / 1000000     9.7s h2
[ ]  539881       0       0  539881 / 1000000     9.8s h2
[ ]  546186       0       0  546186 / 1000000     9.9s h2
[ ]  552026       0       0  552026 / 1000000    10.0s h2
[ ]  559669       0       0  559669 / 1000000    10.1s h2
[ ]  566853       0       0  566853 / 1000000    10.2s h2
[ ]  572571       0       0  572571 / 1000000    10.3s h2
[ ]  577668       0       0  577668 / 1000000    10.4s h2
[ ]  582755       0       0  582755 / 1000000    10.5s h2
[ ]  588091       0       0  588091 / 1000000    10.6s h2 (collecting)
[ ]  593835       0       0  593835 / 1000000    10.7s h2
[ ]  599835       0       0  599835 / 1000000    10.8s h2
[ ]  605136       0       0  605136 / 1000000    10.9s h2
[ ]  610029       0       0  610029 / 1000000    11.0s h2 (collecting)
[ ]  614904       0       0  614904 / 1000000    11.1s h2
[ ]  619768       0       0  619768 / 1000000    11.2s h2
[ ]  624597       0       0  624597 / 1000000    11.3s h2
[ ]  629490       0       0  629490 / 1000000    11.4s h2
[ ]  634401       0       0  634401 / 1000000    11.5s h2
[ ]  639289       0       0  639289 / 1000000    11.6s h2
[ ]  644096       0       0  644096 / 1000000    11.7s h2
[ ]  649031       0       0  649031 / 1000000    11.8s h2
[ ]  653850       0       0  653850 / 1000000    11.9s h2
[ ]  658758       0       0  658758 / 1000000    12.0s h2
[ ]  663601       0       0  663601 / 1000000    12.1s h2 (collecting)
[ ]  668331       0       0  668331 / 1000000    12.2s h2
[ ]  673100       0       0  673100 / 1000000    12.3s h2 (collecting)
[ ]  677834       0       0  677834 / 1000000    12.4s h2
[ ]  682739       0       0  682739 / 1000000    12.5s h2
[ ]  687752       0       0  687752 / 1000000    12.6s h2
[ ]  693388       0       0  693388 / 1000000    12.7s h2
[ ]  698860       0       0  698860 / 1000000    12.8s h2
[ ]  705029       0       0  705029 / 1000000    12.9s h2
[ ]  711487       0       0  711487 / 1000000    13.0s h2
[ ]  717988       0       0  717988 / 1000000    13.1s h2
[ ]  723484       0       0  723484 / 1000000    13.2s h2
[ ]  729160       0       0  729160 / 1000000    13.3s h2
[ ]  734925       0       0  734925 / 1000000    13.4s h2
[ ]  740772       0       0  740772 / 1000000    13.5s h2
[ ]  746923       0       0  746923 / 1000000    13.6s h2
[ ]  752114       0       0  752114 / 1000000    13.7s h2
[ ]  758454       0       0  758454 / 1000000    13.8s h2 (collecting)
[ ]  763579       0       0  763579 / 1000000    13.9s h2
[ ]  768632       0       0  768632 / 1000000    14.0s h2
[ ]  773653       0       0  773653 / 1000000    14.1s h2
[ ]  778564       0       0  778564 / 1000000    14.2s h2 (generating)
[ ]  783701       0       0  783701 / 1000000    14.3s h2
[ ]  788857       0       0  788857 / 1000000    14.4s h2
[ ]  793763       0       0  793763 / 1000000    14.5s h2
[ ]  798779       0       0  798779 / 1000000    14.6s h2
[ ]  803848       0       0  803848 / 1000000    14.7s h2
[ ]  809090       0       0  809090 / 1000000    14.8s h2
[ ]  814203       0       0  814203 / 1000000    14.9s h2
[ ]  819424       0       0  819424 / 1000000    15.0s h2
[ ]  824686       0       0  824686 / 1000000    15.1s h2
[ ]  829756       0       0  829756 / 1000000    15.2s h2
[ ]  834818       0       0  834818 / 1000000    15.3s h2
[ ]  840058       0       0  840058 / 1000000    15.4s h2
[ ]  845194       0       0  845194 / 1000000    15.5s h2
[ ]  850284       0       0  850284 / 1000000    15.6s h2
[ ]  855088       0       0  855088 / 1000000    15.7s h2
[ ]  860234       0       0  860234 / 1000000    15.8s h2
[ ]  865734       0       0  865734 / 1000000    15.9s h2
[ ]  874296       0       0  874296 / 1000000    16.0s h2
[ ]  879818       0       0  879818 / 1000000    16.1s h2
[ ]  885131       0       0  885131 / 1000000    16.2s h2
[ ]  891053       0       0  891053 / 1000000    16.3s h2
[ ]  898201       0       0  898201 / 1000000    16.4s h2
[ ]  905195       0       0  905195 / 1000000    16.5s h2
[ ]  910331       0       0  910331 / 1000000    16.6s h2
[ ]  915570       0       0  915570 / 1000000    16.7s h2
[ ]  920926       0       0  920926 / 1000000    16.8s h2
[ ]  926187       0       0  926187 / 1000000    16.9s h2
[ ]  931173       0       0  931173 / 1000000    17.0s h2
[ ]  936623       0       0  936623 / 1000000    17.1s h2
[ ]  942490       0       0  942490 / 1000000    17.2s h2
[ ]  947882       0       0  947882 / 1000000    17.3s h2
[ ]  953284       0       0  953284 / 1000000    17.4s h2
[ ]  958684       0       0  958684 / 1000000    17.5s h2
[ ]  964195       0       0  964195 / 1000000    17.6s h2
[ ]  969512       0       0  969512 / 1000000    17.7s h2
[ ]  974597       0       0  974597 / 1000000    17.8s h2
[ ]  979652       0       0  979652 / 1000000    17.9s h2
[ ]  984840       0       0  984840 / 1000000    18.0s h2
[ ]  989915       0       0  989915 / 1000000    18.1s h2
[ ]  995036       0       0  995036 / 1000000    18.2s h2
[✓] 1000000       0       0 1000000 / 1000000    18.3s h2
- 
[ ]       0       0       0       0 / 1000000     0.0s h3
[ ]   10019       0       0   10019 / 1000000     0.1s h3
[ ]   20336       0       0   20336 / 1000000     0.2s h3
[ ]   30507       0       0   30507 / 1000000     0.3s h3
[ ]   40315       0       0   40315 / 1000000     0.4s h3
[ ]   50095       0       0   50095 / 1000000     0.5s h3
[ ]   60309       0       0   60309 / 1000000     0.6s h3
[ ]   70492       0       0   70492 / 1000000     0.7s h3
[ ]   80632       0       0   80632 / 1000000     0.8s h3
[ ]   90799       0       0   90799 / 1000000     0.9s h3
[ ]  101014       0       0  101014 / 1000000     1.0s h3
[ ]  111283       0       0  111283 / 1000000     1.1s h3
[ ]  121680       0       0  121680 / 1000000     1.2s h3
[ ]  131855       0       0  131855 / 1000000     1.3s h3
[ ]  141838       0       0  141838 / 1000000     1.4s h3
[ ]  151715       0       0  151715 / 1000000     1.5s h3
[ ]  161759       0       0  161759 / 1000000     1.6s h3
[ ]  171843       0       0  171843 / 1000000     1.7s h3 (collecting)
[ ]  181787       0       0  181787 / 1000000     1.8s h3
[ ]  191538       0       0  191538 / 1000000     1.9s h3
[ ]  201430       0       0  201430 / 1000000     2.0s h3
[ ]  211233       0       0  211233 / 1000000     2.1s h3
[ ]  221001       0       0  221001 / 1000000     2.2s h3 (generating)
[ ]  230800       0       0  230800 / 1000000     2.3s h3
[ ]  241454       0       0  241454 / 1000000     2.4s h3
[ ]  251090       0       0  251090 / 1000000     2.5s h3
[ ]  260646       0       0  260646 / 1000000     2.6s h3
[ ]  270364       0       0  270364 / 1000000     2.7s h3
[ ]  280188       0       0  280188 / 1000000     2.8s h3
[ ]  290428       0       0  290428 / 1000000     2.9s h3
[ ]  300815       0       0  300815 / 1000000     3.0s h3
[ ]  311090       0       0  311090 / 1000000     3.1s h3
[ ]  321571       0       0  321571 / 1000000     3.2s h3
[ ]  331934       0       0  331934 / 1000000     3.3s h3
[ ]  342039       0       0  342039 / 1000000     3.4s h3
[ ]  352402       0       0  352402 / 1000000     3.5s h3
[ ]  362847       0       0  362847 / 1000000     3.6s h3
[ ]  373231       0       0  373231 / 1000000     3.7s h3
[ ]  383391       0       0  383391 / 1000000     3.8s h3
[ ]  393574       0       0  393574 / 1000000     3.9s h3
[ ]  404181       0       0  404181 / 1000000     4.0s h3
[ ]  414675       0       0  414675 / 1000000     4.1s h3
[ ]  425106       0       0  425106 / 1000000     4.2s h3 (collecting)
[ ]  435398       0       0  435398 / 1000000     4.3s h3
[ ]  445808       0       0  445808 / 1000000     4.4s h3
[ ]  456313       0       0  456313 / 1000000     4.5s h3
[ ]  466693       0       0  466693 / 1000000     4.6s h3
[ ]  477257       0       0  477257 / 1000000     4.7s h3
[ ]  487753       0       0  487753 / 1000000     4.8s h3
[ ]  498321       0       0  498321 / 1000000     4.9s h3
[ ]  508929       0       0  508929 / 1000000     5.0s h3
[ ]  519539       0       0  519539 / 1000000     5.1s h3
[ ]  530307       0       0  530307 / 1000000     5.2s h3
[ ]  540993       0       0  540993 / 1000000     5.3s h3
[ ]  551509       0       0  551509 / 1000000     5.4s h3
[ ]  562154       0       0  562154 / 1000000     5.5s h3 (collecting)
[ ]  572875       0       0  572875 / 1000000     5.6s h3
[ ]  583461       0       0  583461 / 1000000     5.7s h3
[ ]  594064       0       0  594064 / 1000000     5.8s h3 (collecting)
[ ]  604560       0       0  604560 / 1000000     5.9s h3
[ ]  615128       0       0  615128 / 1000000     6.0s h3
[ ]  625603       0       0  625603 / 1000000     6.1s h3 (collecting)
[ ]  636286       0       0  636286 / 1000000     6.2s h3
[ ]  646797       0       0  646797 / 1000000     6.3s h3
[ ]  657175       0       0  657175 / 1000000     6.4s h3
[ ]  667413       0       0  667413 / 1000000     6.5s h3
[ ]  678026       0       0  678026 / 1000000     6.6s h3
[ ]  688704       0       0  688704 / 1000000     6.7s h3
[ ]  698886       0       0  698886 / 1000000     6.8s h3
[ ]  709341       0       0  709341 / 1000000     6.9s h3
[ ]  719535       0       0  719535 / 1000000     7.0s h3
[ ]  730024       0       0  730024 / 1000000     7.1s h3
[ ]  740390       0       0  740390 / 1000000     7.2s h3
[ ]  751765       0       0  751765 / 1000000     7.3s h3
[ ]  763953       0       0  763953 / 1000000     7.4s h3
[ ]  780766       0       0  780766 / 1000000     7.5s h3
[ ]  794327       0       0  794327 / 1000000     7.6s h3
[ ]  804467       0       0  804467 / 1000000     7.7s h3
[ ]  814937       0       0  814937 / 1000000     7.8s h3
[ ]  827121       0       0  827121 / 1000000     7.9s h3
[ ]  843348       0       0  843348 / 1000000     8.0s h3
[ ]  858425       0       0  858425 / 1000000     8.1s h3
[ ]  871157       0       0  871157 / 1000000     8.2s h3
[ ]  885390       0       0  885390 / 1000000     8.3s h3 (generating)
[ ]  896468       0       0  896468 / 1000000     8.4s h3
[ ]  906098       0       0  906098 / 1000000     8.5s h3
[ ]  915836       0       0  915836 / 1000000     8.6s h3
[ ]  925792       0       0  925792 / 1000000     8.7s h3
[ ]  935715       0       0  935715 / 1000000     8.8s h3
[ ]  945646       0       0  945646 / 1000000     8.9s h3
[ ]  955504       0       0  955504 / 1000000     9.0s h3
[ ]  965792       0       0  965792 / 1000000     9.1s h3
[ ]  975902       0       0  975902 / 1000000     9.2s h3
[ ]  986298       0       0  986298 / 1000000     9.3s h3
[ ]  996624       0       0  996624 / 1000000     9.4s h3
[✓] 1000000       0       0 1000000 / 1000000     9.4s h3
- 
[ ]       0       0       0       0 / 1000000     0.0s h4
[ ]    3511       0       0    3511 / 1000000     0.1s h4
[ ]    7243       0       0    7243 / 1000000     0.2s h4
[ ]   10849       0       0   10849 / 1000000     0.3s h4
[ ]   14430       0       0   14430 / 1000000     0.4s h4
[ ]   18075       0       0   18075 / 1000000     0.5s h4
[ ]   21617       0       0   21617 / 1000000     0.6s h4
[ ]   25242       0       0   25242 / 1000000     0.7s h4
[ ]   28921       0       0   28921 / 1000000     0.8s h4
[ ]   32492       0       0   32492 / 1000000     0.9s h4
[ ]   36127       0       0   36127 / 1000000     1.0s h4
[ ]   39707       0       0   39707 / 1000000     1.1s h4
[ ]   43380       0       0   43380 / 1000000     1.2s h4
[ ]   47030       0       0   47030 / 1000000     1.3s h4
[ ]   50742       0       0   50742 / 1000000     1.4s h4
[ ]   54457       0       0   54457 / 1000000     1.5s h4
[ ]   58143       0       0   58143 / 1000000     1.6s h4
[ ]   61843       0       0   61843 / 1000000     1.7s h4
[ ]   65567       0       0   65567 / 1000000     1.8s h4
[ ]   69213       0       0   69213 / 1000000     1.9s h4
[ ]   72980       0       0   72980 / 1000000     2.0s h4
[ ]   76642       0       0   76642 / 1000000     2.1s h4
[ ]   80321       0       0   80321 / 1000000     2.2s h4
[ ]   84018       0       0   84018 / 1000000     2.3s h4
[ ]   87833       0       0   87833 / 1000000     2.4s h4
[ ]   91530       0       0   91530 / 1000000     2.5s h4
[ ]   95214       0       0   95214 / 1000000     2.6s h4
[ ]   98959       0       0   98959 / 1000000     2.7s h4
[ ]  103523       0       0  103523 / 1000000     2.8s h4
[ ]  107384       0       0  107384 / 1000000     2.9s h4
[ ]  112029       0       0  112029 / 1000000     3.0s h4
[ ]  116490       0       0  116490 / 1000000     3.1s h4
[ ]  121001       0       0  121001 / 1000000     3.2s h4
[ ]  125026       0       0  125026 / 1000000     3.3s h4
[ ]  129432       0       0  129432 / 1000000     3.4s h4
[ ]  134000       0       0  134000 / 1000000     3.5s h4
[ ]  137456       0       0  137456 / 1000000     3.6s h4
[ ]  141033       0       0  141033 / 1000000     3.7s h4
[ ]  144507       0       0  144507 / 1000000     3.8s h4
[ ]  148053       0       0  148053 / 1000000     3.9s h4
[ ]  152298       0       0  152298 / 1000000     4.0s h4
[ ]  155948       0       0  155948 / 1000000     4.1s h4
[ ]  159399       0       0  159399 / 1000000     4.2s h4
[ ]  162884       0       0  162884 / 1000000     4.3s h4
[ ]  166390       0       0  166390 / 1000000     4.4s h4
[ ]  169727       0       0  169727 / 1000000     4.5s h4
[ ]  173480       0       0  173480 / 1000000     4.6s h4
[ ]  177180       0       0  177180 / 1000000     4.7s h4
[ ]  180399       0       0  180399 / 1000000     4.8s h4
[ ]  183458       0       0  183458 / 1000000     4.9s h4
[ ]  186964       0       0  186964 / 1000000     5.0s h4
[ ]  190724       0       0  190724 / 1000000     5.1s h4
[ ]  194282       0       0  194282 / 1000000     5.2s h4
[ ]  197474       0       0  197474 / 1000000     5.3s h4
[ ]  200666       0       0  200666 / 1000000     5.4s h4 (collecting)
[ ]  203864       0       0  203864 / 1000000     5.5s h4
[ ]  206983       0       0  206983 / 1000000     5.6s h4
[ ]  210619       0       0  210619 / 1000000     5.7s h4
[ ]  214227       0       0  214227 / 1000000     5.8s h4
[ ]  217814       0       0  217814 / 1000000     5.9s h4
[ ]  221233       0       0  221233 / 1000000     6.0s h4
[ ]  224737       0       0  224737 / 1000000     6.1s h4
[ ]  228246       0       0  228246 / 1000000     6.2s h4
[ ]  231655       0       0  231655 / 1000000     6.3s h4
[ ]  234989       0       0  234989 / 1000000     6.4s h4
[ ]  238354       0       0  238354 / 1000000     6.5s h4
[ ]  241759       0       0  241759 / 1000000     6.6s h4
[ ]  245434       0       0  245434 / 1000000     6.7s h4
[ ]  249570       0       0  249570 / 1000000     6.8s h4
[ ]  253345       0       0  253345 / 1000000     6.9s h4
[ ]  256996       0       0  256996 / 1000000     7.0s h4
[ ]  261094       0       0  261094 / 1000000     7.1s h4
[ ]  264798       0       0  264798 / 1000000     7.2s h4
[ ]  268385       0       0  268385 / 1000000     7.3s h4
[ ]  271896       0       0  271896 / 1000000     7.4s h4
[ ]  275493       0       0  275493 / 1000000     7.5s h4
[ ]  279163       0       0  279163 / 1000000     7.6s h4
[ ]  282800       0       0  282800 / 1000000     7.7s h4
[ ]  286371       0       0  286371 / 1000000     7.8s h4
[ ]  289936       0       0  289936 / 1000000     7.9s h4
[ ]  293806       0       0  293806 / 1000000     8.0s h4
[ ]  297293       0       0  297293 / 1000000     8.1s h4
[ ]  300904       0       0  300904 / 1000000     8.2s h4
[ ]  304543       0       0  304543 / 1000000     8.3s h4
[ ]  308197       0       0  308197 / 1000000     8.4s h4
[ ]  311861       0       0  311861 / 1000000     8.5s h4
[ ]  315498       0       0  315498 / 1000000     8.6s h4
[ ]  319055       0       0  319055 / 1000000     8.7s h4
[ ]  322735       0       0  322735 / 1000000     8.8s h4
[ ]  326343       0       0  326343 / 1000000     8.9s h4
[ ]  330072       0       0  330072 / 1000000     9.0s h4
[ ]  333538       0       0  333538 / 1000000     9.1s h4
[ ]  337084       0       0  337084 / 1000000     9.2s h4
[ ]  340645       0       0  340645 / 1000000     9.3s h4
[ ]  344217       0       0  344217 / 1000000     9.4s h4
[ ]  347847       0       0  347847 / 1000000     9.5s h4
[ ]  351340       0       0  351340 / 1000000     9.6s h4
[ ]  354947       0       0  354947 / 1000000     9.7s h4
[ ]  358484       0       0  358484 / 1000000     9.8s h4
[ ]  362014       0       0  362014 / 1000000     9.9s h4
[ ]  365648       0       0  365648 / 1000000    10.0s h4
[ ]  369276       0       0  369276 / 1000000    10.1s h4
[ ]  372894       0       0  372894 / 1000000    10.2s h4
[ ]  376478       0       0  376478 / 1000000    10.3s h4
[ ]  379885       0       0  379885 / 1000000    10.4s h4
[ ]  383299       0       0  383299 / 1000000    10.5s h4
[ ]  386815       0       0  386815 / 1000000    10.6s h4
[ ]  390370       0       0  390370 / 1000000    10.7s h4
[ ]  394019       0       0  394019 / 1000000    10.8s h4
[ ]  397380       0       0  397380 / 1000000    10.9s h4
[ ]  400810       0       0  400810 / 1000000    11.0s h4
[ ]  404148       0       0  404148 / 1000000    11.1s h4
[ ]  407669       0       0  407669 / 1000000    11.2s h4
[ ]  411003       0       0  411003 / 1000000    11.3s h4
[ ]  414439       0       0  414439 / 1000000    11.4s h4
[ ]  417876       0       0  417876 / 1000000    11.5s h4 (generating)
[ ]  421197       0       0  421197 / 1000000    11.6s h4
[ ]  424954       0       0  424954 / 1000000    11.7s h4
[ ]  428701       0       0  428701 / 1000000    11.8s h4
[ ]  432320       0       0  432320 / 1000000    11.9s h4
[ ]  435684       0       0  435684 / 1000000    12.0s h4
[ ]  438952       0       0  438952 / 1000000    12.1s h4
[ ]  442291       0       0  442291 / 1000000    12.2s h4
[ ]  445728       0       0  445728 / 1000000    12.3s h4
[ ]  449699       0       0  449699 / 1000000    12.4s h4
[ ]  453252       0       0  453252 / 1000000    12.5s h4
[ ]  457033       0       0  457033 / 1000000    12.6s h4
[ ]  460490       0       0  460490 / 1000000    12.7s h4
[ ]  463730       0       0  463730 / 1000000    12.8s h4
[ ]  466984       0       0  466984 / 1000000    12.9s h4
[ ]  470173       0       0  470173 / 1000000    13.0s h4
[ ]  473483       0       0  473483 / 1000000    13.1s h4
[ ]  476827       0       0  476827 / 1000000    13.2s h4
[ ]  480121       0       0  480121 / 1000000    13.3s h4
[ ]  483520       0       0  483520 / 1000000    13.4s h4
[ ]  487061       0       0  487061 / 1000000    13.5s h4
[ ]  490579       0       0  490579 / 1000000    13.6s h4
[ ]  494240       0       0  494240 / 1000000    13.7s h4
[ ]  497676       0       0  497676 / 1000000    13.8s h4
[ ]  501214       0       0  501214 / 1000000    13.9s h4
[ ]  504883       0       0  504883 / 1000000    14.0s h4
[ ]  508547       0       0  508547 / 1000000    14.1s h4
[ ]  511995       0       0  511995 / 1000000    14.2s h4
[ ]  515775       0       0  515775 / 1000000    14.3s h4
[ ]  519289       0       0  519289 / 1000000    14.4s h4
[ ]  523420       0       0  523420 / 1000000    14.5s h4
[ ]  527515       0       0  527515 / 1000000    14.6s h4
[ ]  531377       0       0  531377 / 1000000    14.7s h4
[ ]  535428       0       0  535428 / 1000000    14.8s h4
[ ]  538986       0       0  538986 / 1000000    14.9s h4
[ ]  542587       0       0  542587 / 1000000    15.0s h4
[ ]  546139       0       0  546139 / 1000000    15.1s h4
[ ]  549547       0       0  549547 / 1000000    15.2s h4
[ ]  553093       0       0  553093 / 1000000    15.3s h4
[ ]  556844       0       0  556844 / 1000000    15.4s h4
[ ]  560542       0       0  560542 / 1000000    15.5s h4
[ ]  564186       0       0  564186 / 1000000    15.6s h4
[ ]  567846       0       0  567846 / 1000000    15.7s h4
[ ]  571561       0       0  571561 / 1000000    15.8s h4
[ ]  575209       0       0  575209 / 1000000    15.9s h4
[ ]  578828       0       0  578828 / 1000000    16.0s h4
[ ]  584087       0       0  584087 / 1000000    16.1s h4
[ ]  588241       0       0  588241 / 1000000    16.2s h4
[ ]  591742       0       0  591742 / 1000000    16.3s h4 (collecting)
[ ]  595292       0       0  595292 / 1000000    16.4s h4
[ ]  598854       0       0  598854 / 1000000    16.5s h4
[ ]  602397       0       0  602397 / 1000000    16.6s h4
[ ]  605923       0       0  605923 / 1000000    16.7s h4
[ ]  609370       0       0  609370 / 1000000    16.8s h4 (collecting)
[ ]  612905       0       0  612905 / 1000000    16.9s h4
[ ]  616581       0       0  616581 / 1000000    17.0s h4
[ ]  620055       0       0  620055 / 1000000    17.1s h4
[ ]  623517       0       0  623517 / 1000000    17.2s h4 (collecting)
[ ]  626981       0       0  626981 / 1000000    17.3s h4
[ ]  630451       0       0  630451 / 1000000    17.4s h4
[ ]  634031       0       0  634031 / 1000000    17.5s h4
[ ]  637677       0       0  637677 / 1000000    17.6s h4
[ ]  641113       0       0  641113 / 1000000    17.7s h4
[ ]  644520       0       0  644520 / 1000000    17.8s h4
[ ]  648115       0       0  648115 / 1000000    17.9s h4
[ ]  651676       0       0  651676 / 1000000    18.0s h4
[ ]  655274       0       0  655274 / 1000000    18.1s h4
[ ]  658931       0       0  658931 / 1000000    18.2s h4
[ ]  662724       0       0  662724 / 1000000    18.3s h4
[ ]  666230       0       0  666230 / 1000000    18.4s h4
[ ]  669720       0       0  669720 / 1000000    18.5s h4
[ ]  673170       0       0  673170 / 1000000    18.6s h4 (collecting)
[ ]  676629       0       0  676629 / 1000000    18.7s h4
[ ]  679951       0       0  679951 / 1000000    18.8s h4
[ ]  683374       0       0  683374 / 1000000    18.9s h4
[ ]  686695       0       0  686695 / 1000000    19.0s h4
[ ]  689841       0       0  689841 / 1000000    19.1s h4
[ ]  693261       0       0  693261 / 1000000    19.2s h4
[ ]  696587       0       0  696587 / 1000000    19.3s h4
[ ]  700006       0       0  700006 / 1000000    19.4s h4
[ ]  703540       0       0  703540 / 1000000    19.5s h4
[ ]  706845       0       0  706845 / 1000000    19.6s h4
[ ]  710034       0       0  710034 / 1000000    19.7s h4
[ ]  713411       0       0  713411 / 1000000    19.8s h4
[ ]  716706       0       0  716706 / 1000000    19.9s h4
[ ]  720017       0       0  720017 / 1000000    20.0s h4
[ ]  723214       0       0  723214 / 1000000    20.1s h4
[ ]  726544       0       0  726544 / 1000000    20.2s h4
[ ]  729948       0       0  729948 / 1000000    20.3s h4
[ ]  733257       0       0  733257 / 1000000    20.4s h4
[ ]  736558       0       0  736558 / 1000000    20.5s h4
[ ]  739898       0       0  739898 / 1000000    20.6s h4
[ ]  743352       0       0  743352 / 1000000    20.7s h4
[ ]  746722       0       0  746722 / 1000000    20.8s h4
[ ]  750070       0       0  750070 / 1000000    20.9s h4
[ ]  753445       0       0  753445 / 1000000    21.0s h4
[ ]  756798       0       0  756798 / 1000000    21.1s h4
[ ]  760139       0       0  760139 / 1000000    21.2s h4
[ ]  763468       0       0  763468 / 1000000    21.3s h4
[ ]  766721       0       0  766721 / 1000000    21.4s h4
[ ]  769973       0       0  769973 / 1000000    21.5s h4
[ ]  773273       0       0  773273 / 1000000    21.6s h4
[ ]  776559       0       0  776559 / 1000000    21.7s h4
[ ]  779842       0       0  779842 / 1000000    21.8s h4
[ ]  783157       0       0  783157 / 1000000    21.9s h4
[ ]  786430       0       0  786430 / 1000000    22.0s h4
[ ]  789695       0       0  789695 / 1000000    22.1s h4
[ ]  792982       0       0  792982 / 1000000    22.2s h4
[ ]  796322       0       0  796322 / 1000000    22.3s h4
[ ]  799743       0       0  799743 / 1000000    22.4s h4
[ ]  803254       0       0  803254 / 1000000    22.5s h4
[ ]  806711       0       0  806711 / 1000000    22.6s h4
[ ]  810192       0       0  810192 / 1000000    22.7s h4
[ ]  813770       0       0  813770 / 1000000    22.8s h4
[ ]  817126       0       0  817126 / 1000000    22.9s h4
[ ]  820524       0       0  820524 / 1000000    23.0s h4
[ ]  823889       0       0  823889 / 1000000    23.1s h4
[ ]  827244       0       0  827244 / 1000000    23.2s h4
[ ]  830820       0       0  830820 / 1000000    23.3s h4
[ ]  834051       0       0  834051 / 1000000    23.4s h4
[ ]  837307       0       0  837307 / 1000000    23.5s h4
[ ]  840705       0       0  840705 / 1000000    23.6s h4
[ ]  844083       0       0  844083 / 1000000    23.7s h4
[ ]  847501       0       0  847501 / 1000000    23.8s h4
[ ]  850787       0       0  850787 / 1000000    23.9s h4
[ ]  854055       0       0  854055 / 1000000    24.0s h4
[ ]  857381       0       0  857381 / 1000000    24.1s h4
[ ]  860701       0       0  860701 / 1000000    24.2s h4
[ ]  864137       0       0  864137 / 1000000    24.3s h4
[ ]  867397       0       0  867397 / 1000000    24.4s h4
[ ]  870596       0       0  870596 / 1000000    24.5s h4
[ ]  873862       0       0  873862 / 1000000    24.6s h4
[ ]  877231       0       0  877231 / 1000000    24.7s h4
[ ]  880624       0       0  880624 / 1000000    24.8s h4
[ ]  883939       0       0  883939 / 1000000    24.9s h4 (generating)
[ ]  887246       0       0  887246 / 1000000    25.0s h4
[ ]  890547       0       0  890547 / 1000000    25.1s h4
[ ]  893899       0       0  893899 / 1000000    25.2s h4
[ ]  897268       0       0  897268 / 1000000    25.3s h4
[ ]  900702       0       0  900702 / 1000000    25.4s h4
[ ]  903995       0       0  903995 / 1000000    25.5s h4
[ ]  907408       0       0  907408 / 1000000    25.6s h4
[ ]  910765       0       0  910765 / 1000000    25.7s h4
[ ]  914058       0       0  914058 / 1000000    25.8s h4
[ ]  917521       0       0  917521 / 1000000    25.9s h4
[ ]  921104       0       0  921104 / 1000000    26.0s h4
[ ]  924694       0       0  924694 / 1000000    26.1s h4
[ ]  928058       0       0  928058 / 1000000    26.2s h4
[ ]  931429       0       0  931429 / 1000000    26.3s h4
[ ]  935119       0       0  935119 / 1000000    26.4s h4
[ ]  938400       0       0  938400 / 1000000    26.5s h4
[ ]  941730       0       0  941730 / 1000000    26.6s h4
[ ]  945103       0       0  945103 / 1000000    26.7s h4
[ ]  948390       0       0  948390 / 1000000    26.8s h4
[ ]  951673       0       0  951673 / 1000000    26.9s h4
[ ]  955067       0       0  955067 / 1000000    27.0s h4
[ ]  958486       0       0  958486 / 1000000    27.1s h4
[ ]  961909       0       0  961909 / 1000000    27.2s h4
[ ]  965275       0       0  965275 / 1000000    27.3s h4
[ ]  968559       0       0  968559 / 1000000    27.4s h4
[ ]  971954       0       0  971954 / 1000000    27.5s h4
[ ]  975220       0       0  975220 / 1000000    27.6s h4
[ ]  978539       0       0  978539 / 1000000    27.7s h4
[ ]  981758       0       0  981758 / 1000000    27.8s h4 (collecting)
[ ]  985191       0       0  985191 / 1000000    27.9s h4
[ ]  988618       0       0  988618 / 1000000    28.0s h4
[ ]  992080       0       0  992080 / 1000000    28.1s h4
[ ]  995406       0       0  995406 / 1000000    28.2s h4
[ ]  998617       0       0  998617 / 1000000    28.3s h4
[✓] 1000000       0       0 1000000 / 1000000    28.3s h4
- ================================================================================
- success (ran 6 tests)
-> compiled  dates_calc.0.0.3
-> removed   dates_calc.0.0.3
-> installed dates_calc.0.0.3
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 01:43.26 ---> saved as "416cd2ea82fbd7d7c5811e5071f4fbbe08315970a63a811fc920e1b62087fb78"
Job succeeded
2026-04-11 01:44.05: Job succeeded