Build:
  1. 0
2026-01-13 04:05.02: New job: test dates_calc.0.0.4 with dune.3.21.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29216/head (001b427da21d4d746e124eaaffab7b4134813f6d)
                              on debian-13-ocaml-4.14/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/29216/head" && git reset --hard 001b427d
git fetch origin master
git merge --no-edit 1c361fac36225534ee877701522e296785f9a9db
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:d765b54c014ef238f3a84185055fd22f6a5e5bea6d6bbe9ec94a1c7ac9087afa
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.21.0 3.21.0
RUN opam reinstall dune.3.21.0; \
    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.21.0' && 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-01-13 04:05.02: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:d765b54c014ef238f3a84185055fd22f6a5e5bea6d6bbe9ec94a1c7ac9087afa-dune.3.21.0-dates_calc.0.0.4-001b427da21d4d746e124eaaffab7b4134813f6d"
2026-01-13 04:05.02: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:d765b54c014ef238f3a84185055fd22f6a5e5bea6d6bbe9ec94a1c7ac9087afa)
 (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.21.0 3.21.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dune.3.21.0;\
             \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.21.0' && 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-01-13 04:05.02: Waiting for resource in pool OCluster
2026-01-13 19:04.23: Waiting for worker…
2026-01-13 19:07.08: Got resource from pool OCluster
Building on eumache
All commits already cached
Updating files:  66% (12836/19211)
Updating files:  67% (12872/19211)
Updating files:  68% (13064/19211)
Updating files:  69% (13256/19211)
Updating files:  70% (13448/19211)
Updating files:  71% (13640/19211)
Updating files:  72% (13832/19211)
Updating files:  73% (14025/19211)
Updating files:  74% (14217/19211)
Updating files:  75% (14409/19211)
Updating files:  76% (14601/19211)
Updating files:  77% (14793/19211)
Updating files:  78% (14985/19211)
Updating files:  79% (15177/19211)
Updating files:  80% (15369/19211)
Updating files:  81% (15561/19211)
Updating files:  82% (15754/19211)
Updating files:  83% (15946/19211)
Updating files:  84% (16138/19211)
Updating files:  85% (16330/19211)
Updating files:  86% (16522/19211)
Updating files:  87% (16714/19211)
Updating files:  88% (16906/19211)
Updating files:  89% (17098/19211)
Updating files:  90% (17290/19211)
Updating files:  91% (17483/19211)
Updating files:  92% (17675/19211)
Updating files:  93% (17867/19211)
Updating files:  94% (18059/19211)
Updating files:  95% (18251/19211)
Updating files:  96% (18443/19211)
Updating files:  97% (18635/19211)
Updating files:  98% (18827/19211)
Updating files:  99% (19019/19211)
Updating files: 100% (19211/19211)
Updating files: 100% (19211/19211), done.
HEAD is now at 1c361fac36 Merge pull request #29210 from dinosaure/release-miou-v0.5.1
Merge made by the 'ort' strategy.
 packages/chrome-trace/chrome-trace.3.21.0/opam     | 41 ++++++++++++
 .../dune-action-plugin.3.21.0/opam                 | 54 ++++++++++++++++
 .../dune-build-info/dune-build-info.3.21.0/opam    | 47 ++++++++++++++
 .../dune-configurator.3.21.0/opam                  | 51 +++++++++++++++
 packages/dune-glob/dune-glob.3.21.0/opam           | 44 +++++++++++++
 .../dune-private-libs.3.21.0/opam                  | 52 +++++++++++++++
 packages/dune-rpc-lwt/dune-rpc-lwt.3.21.0/opam     | 43 +++++++++++++
 packages/dune-rpc/dune-rpc.3.21.0/opam             | 46 +++++++++++++
 packages/dune-site/dune-site.3.21.0/opam           | 39 +++++++++++
 packages/dune/dune.3.21.0/opam                     | 75 ++++++++++++++++++++++
 packages/dyn/dyn.3.21.0/opam                       | 42 ++++++++++++
 packages/fs-io/fs-io.3.21.0/opam                   | 41 ++++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.21.0/opam         | 45 +++++++++++++
 packages/ordering/ordering.3.21.0/opam             | 40 ++++++++++++
 packages/stdune/stdune.3.21.0/opam                 | 48 ++++++++++++++
 packages/top-closure/top-closure.3.21.0/opam       | 40 ++++++++++++
 packages/xdg/xdg.3.21.0/opam                       | 41 ++++++++++++
 17 files changed, 789 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.21.0/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.21.0/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.21.0/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.21.0/opam
 create mode 100644 packages/dune-glob/dune-glob.3.21.0/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.21.0/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.21.0/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.21.0/opam
 create mode 100644 packages/dune-site/dune-site.3.21.0/opam
 create mode 100644 packages/dune/dune.3.21.0/opam
 create mode 100644 packages/dyn/dyn.3.21.0/opam
 create mode 100644 packages/fs-io/fs-io.3.21.0/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.21.0/opam
 create mode 100644 packages/ordering/ordering.3.21.0/opam
 create mode 100644 packages/stdune/stdune.3.21.0/opam
 create mode 100644 packages/top-closure/top-closure.3.21.0/opam
 create mode 100644 packages/xdg/xdg.3.21.0/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:d765b54c014ef238f3a84185055fd22f6a5e5bea6d6bbe9ec94a1c7ac9087afa)
2026-01-13 19:07.28 ---> using "2ecda48447fc68e8dcd256d2898af0a11126a077e05d747a0dcdff2845100de1" 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-01-13 19:07.28 ---> using "79eb1218297339daa5e94be48ad16ae73f417b872defa106efeff5b5f3323e6e" 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-01-13 19:07.28 ---> using "bf81485066c79fc9faf7a51b95869ba9d998fe2bf3de5ff7f59b253fc915122f" 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       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages    ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.2
2026-01-13 19:07.28 ---> using "f7c0c02658daf7a6d6c7671a8028e0e553264100bd569724894645b7844f6d7f" 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-01-13 19:07.28 ---> using "9b3e592c65565b9b3dc8b88c605e54ddba818eb105df981d794040a64c2f9916" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-01-13 19:07.30 ---> using "09c39d7126e88ed573ca8f78acbffb48c0088baecebf7a9155a91c3290ace20b" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-13 19:07.30 ---> using "1f9ebb837e22c3f42b1c3f6e7178a2aa2fcb8206685e62bba70fde550083c584" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- 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 trixie/main amd64 Packages [9670 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [95.5 kB]
- Fetched 9997 kB in 1s (7296 kB/s)
- Reading package lists...
- 
2026-01-13 19:07.30 ---> using "bc5a313c83583d746179a868806b410c236b5a3d4895b7d8bc464eed6cfe706e" from cache

/home/opam: (run (shell "opam pin add -k version -yn dune.3.21.0 3.21.0"))
dune is now pinned to version 3.21.0
2026-01-13 19:07.30 ---> using "448b2b0e77526967dc1d84c9cd1fd4fdf010f08d862d127b94c63a52bbc324d1" from cache

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.21.0  (cached)
-> installed dune.3.21.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-13 19:07.30 ---> using "5acb627376dc8b6ecaceedd8635589b9dfb44ea06abcf3fc03092c3e94ea4126" 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-01-13 19:07.39 ---> saved as "4a14fe77d4ed9bff837151856c93fb9f5a6faff8860c6da45f5cbd3b717e1204"

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

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

/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/4.14/.opam-switch/build/dates_calc.0.0.4)
- (cd _build/default/test && ./unit.exe)
- Testing `unit'.
- This run has ID `QKWCQOLA'.
- 
-   [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/4.14/.opam-switch/build/dates_calc.0.0.4/_build/default/test/_build/_tests/unit'.
- Test Successful in 0.004s. 6 tests run.
- (cd _build/default/test && ./prop.exe)
- 
random seed: 301294945
-   generated   error    fail    pass /   total     time test name
- 
[ ]       0       0       0       0 /    1000     0.0s anon_test_1
[ ]     273       0       0     273 /    1000     0.1s anon_test_1
[ ]     566       0       0     566 /    1000     0.2s anon_test_1
[ ]     858       0       0     858 /    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
[ ]      17       0       0      17 /    1000     0.1s anon_test_2
[ ]      36       0       0      36 /    1000     0.2s anon_test_2
[ ]      50       0       0      50 /    1000     0.3s anon_test_2
[ ]      72       0       0      72 /    1000     0.4s anon_test_2
[ ]      97       0       0      97 /    1000     0.5s anon_test_2
[ ]     121       0       0     121 /    1000     0.6s anon_test_2
[ ]     149       0       0     149 /    1000     0.7s anon_test_2
[ ]     167       0       0     167 /    1000     0.8s anon_test_2
[ ]     182       0       0     182 /    1000     0.9s anon_test_2
[ ]     202       0       0     202 /    1000     1.0s anon_test_2
[ ]     224       0       0     224 /    1000     1.1s anon_test_2
[ ]     246       0       0     246 /    1000     1.2s anon_test_2
[ ]     269       0       0     269 /    1000     1.4s anon_test_2
[ ]     292       0       0     292 /    1000     1.5s anon_test_2
[ ]     312       0       0     312 /    1000     1.6s anon_test_2
[ ]     335       0       0     335 /    1000     1.7s anon_test_2
[ ]     354       0       0     354 /    1000     1.8s anon_test_2
[ ]     369       0       0     369 /    1000     1.9s anon_test_2
[ ]     389       0       0     389 /    1000     2.0s anon_test_2
[ ]     412       0       0     412 /    1000     2.1s anon_test_2
[ ]     430       0       0     430 /    1000     2.2s anon_test_2
[ ]     449       0       0     449 /    1000     2.3s anon_test_2
[ ]     462       0       0     462 /    1000     2.4s anon_test_2
[ ]     478       0       0     478 /    1000     2.5s anon_test_2
[ ]     494       0       0     494 /    1000     2.6s anon_test_2
[ ]     506       0       0     506 /    1000     2.7s anon_test_2
[ ]     522       0       0     522 /    1000     2.8s anon_test_2
[ ]     534       0       0     534 /    1000     2.9s anon_test_2
[ ]     547       0       0     547 /    1000     3.0s anon_test_2
[ ]     566       0       0     566 /    1000     3.1s anon_test_2
[ ]     584       0       0     584 /    1000     3.2s anon_test_2
[ ]     597       0       0     597 /    1000     3.3s anon_test_2
[ ]     617       0       0     617 /    1000     3.4s anon_test_2
[ ]     628       0       0     628 /    1000     3.5s anon_test_2
[ ]     639       0       0     639 /    1000     3.7s anon_test_2
[ ]     650       0       0     650 /    1000     3.8s anon_test_2
[ ]     668       0       0     668 /    1000     3.9s anon_test_2
[ ]     690       0       0     690 /    1000     4.0s anon_test_2
[ ]     711       0       0     711 /    1000     4.1s anon_test_2
[ ]     734       0       0     734 /    1000     4.2s anon_test_2
[ ]     753       0       0     753 /    1000     4.3s anon_test_2
[ ]     777       0       0     777 /    1000     4.4s anon_test_2
[ ]     794       0       0     794 /    1000     4.5s anon_test_2
[ ]     807       0       0     807 /    1000     4.6s anon_test_2
[ ]     823       0       0     823 /    1000     4.7s anon_test_2
[ ]     839       0       0     839 /    1000     4.8s anon_test_2
[ ]     853       0       0     853 /    1000     4.9s anon_test_2
[ ]     868       0       0     868 /    1000     5.0s anon_test_2
[ ]     885       0       0     885 /    1000     5.1s anon_test_2
[ ]     898       0       0     898 /    1000     5.2s anon_test_2
[ ]     910       0       0     910 /    1000     5.3s anon_test_2
[ ]     927       0       0     927 /    1000     5.4s anon_test_2
[ ]     942       0       0     942 /    1000     5.6s anon_test_2
[ ]     955       0       0     955 /    1000     5.7s anon_test_2
[ ]     967       0       0     967 /    1000     5.8s anon_test_2
[ ]     983       0       0     983 /    1000     5.9s anon_test_2
[ ]     997       0       0     997 /    1000     6.0s anon_test_2
[✓]    1000       0       0    1000 /    1000     6.0s anon_test_2
- 
[ ]       0       0       0       0 / 1000000     0.0s h1
[ ]    8934       0       0    8934 / 1000000     0.1s h1
[ ]   16178       0       0   16178 / 1000000     0.2s h1
[ ]   23141       0       0   23141 / 1000000     0.3s h1
[ ]   30098       0       0   30098 / 1000000     0.4s h1
[ ]   39605       0       0   39605 / 1000000     0.5s h1
[ ]   51627       0       0   51627 / 1000000     0.6s h1
[ ]   63735       0       0   63735 / 1000000     0.7s h1
[ ]   74686       0       0   74686 / 1000000     0.8s h1
[ ]   85652       0       0   85652 / 1000000     0.9s h1
[ ]   97079       0       0   97079 / 1000000     1.0s h1
[ ]  109251       0       0  109251 / 1000000     1.1s h1
[ ]  121338       0       0  121338 / 1000000     1.2s h1
[ ]  133499       0       0  133499 / 1000000     1.3s h1
[ ]  145716       0       0  145716 / 1000000     1.4s h1
[ ]  157838       0       0  157838 / 1000000     1.5s h1 (   testing)
[ ]  170069       0       0  170069 / 1000000     1.6s h1
[ ]  182411       0       0  182411 / 1000000     1.7s h1
[ ]  194591       0       0  194591 / 1000000     1.8s h1
[ ]  206751       0       0  206751 / 1000000     1.9s h1
[ ]  218668       0       0  218668 / 1000000     2.0s h1
[ ]  230802       0       0  230802 / 1000000     2.1s h1
[ ]  242878       0       0  242878 / 1000000     2.2s h1
[ ]  254842       0       0  254842 / 1000000     2.3s h1
[ ]  266684       0       0  266684 / 1000000     2.4s h1
[ ]  278579       0       0  278579 / 1000000     2.5s h1
[ ]  290521       0       0  290521 / 1000000     2.6s h1
[ ]  302532       0       0  302532 / 1000000     2.7s h1
[ ]  314641       0       0  314641 / 1000000     2.8s h1
[ ]  326595       0       0  326595 / 1000000     2.9s h1
[ ]  338676       0       0  338676 / 1000000     3.0s h1
[ ]  350764       0       0  350764 / 1000000     3.1s h1
[ ]  362070       0       0  362070 / 1000000     3.2s h1 (collecting)
[ ]  373449       0       0  373449 / 1000000     3.3s h1
[ ]  385579       0       0  385579 / 1000000     3.4s h1
[ ]  397669       0       0  397669 / 1000000     3.5s h1
[ ]  409663       0       0  409663 / 1000000     3.6s h1
[ ]  421259       0       0  421259 / 1000000     3.7s h1
[ ]  432055       0       0  432055 / 1000000     3.8s h1
[ ]  442991       0       0  442991 / 1000000     3.9s h1
[ ]  455067       0       0  455067 / 1000000     4.0s h1
[ ]  466264       0       0  466264 / 1000000     4.1s h1
[ ]  478284       0       0  478284 / 1000000     4.2s h1
[ ]  489786       0       0  489786 / 1000000     4.3s h1
[ ]  499015       0       0  499015 / 1000000     4.4s h1
[ ]  506387       0       0  506387 / 1000000     4.5s h1
[ ]  516800       0       0  516800 / 1000000     4.6s h1
[ ]  528770       0       0  528770 / 1000000     4.7s h1
[ ]  540631       0       0  540631 / 1000000     4.8s h1
[ ]  552729       0       0  552729 / 1000000     4.9s h1
[ ]  564755       0       0  564755 / 1000000     5.0s h1
[ ]  576923       0       0  576923 / 1000000     5.1s h1
[ ]  589054       0       0  589054 / 1000000     5.2s h1
[ ]  601069       0       0  601069 / 1000000     5.3s h1
[ ]  613169       0       0  613169 / 1000000     5.4s h1
[ ]  625253       0       0  625253 / 1000000     5.5s h1
[ ]  637357       0       0  637357 / 1000000     5.6s h1
[ ]  649235       0       0  649235 / 1000000     5.7s h1
[ ]  658275       0       0  658275 / 1000000     5.8s h1
[ ]  670045       0       0  670045 / 1000000     5.9s h1
[ ]  681718       0       0  681718 / 1000000     6.0s h1
[ ]  693804       0       0  693804 / 1000000     6.1s h1
[ ]  705896       0       0  705896 / 1000000     6.2s h1
[ ]  717966       0       0  717966 / 1000000     6.3s h1
[ ]  729979       0       0  729979 / 1000000     6.4s h1 (collecting)
[ ]  741946       0       0  741946 / 1000000     6.5s h1
[ ]  754044       0       0  754044 / 1000000     6.6s h1
[ ]  765940       0       0  765940 / 1000000     6.7s h1
[ ]  777752       0       0  777752 / 1000000     6.8s h1
[ ]  789729       0       0  789729 / 1000000     6.9s h1
[ ]  801806       0       0  801806 / 1000000     7.0s h1
[ ]  813891       0       0  813891 / 1000000     7.1s h1
[ ]  826014       0       0  826014 / 1000000     7.2s h1
[ ]  838084       0       0  838084 / 1000000     7.3s h1
[ ]  847815       0       0  847815 / 1000000     7.4s h1
[ ]  855056       0       0  855056 / 1000000     7.5s h1
[ ]  862341       0       0  862341 / 1000000     7.6s h1
[ ]  869844       0       0  869844 / 1000000     7.7s h1
[ ]  877253       0       0  877253 / 1000000     7.8s h1
[ ]  884348       0       0  884348 / 1000000     7.9s h1
[ ]  891674       0       0  891674 / 1000000     8.0s h1
[ ]  899013       0       0  899013 / 1000000     8.1s h1
[ ]  909272       0       0  909272 / 1000000     8.2s h1 (collecting)
[ ]  918749       0       0  918749 / 1000000     8.3s h1
[ ]  925864       0       0  925864 / 1000000     8.4s h1
[ ]  935797       0       0  935797 / 1000000     8.5s h1
[ ]  947874       0       0  947874 / 1000000     8.6s h1
[ ]  959948       0       0  959948 / 1000000     8.7s h1
[ ]  971873       0       0  971873 / 1000000     8.8s h1
[ ]  983957       0       0  983957 / 1000000     8.9s h1 (collecting)
[ ]  995899       0       0  995899 / 1000000     9.0s h1
[✓] 1000000       0       0 1000000 / 1000000     9.0s h1
- 
[ ]       0       0       0       0 / 1000000     0.0s h2
[ ]    5864       0       0    5864 / 1000000     0.1s h2
[ ]   10423       0       0   10423 / 1000000     0.2s h2
[ ]   15713       0       0   15713 / 1000000     0.3s h2
[ ]   21235       0       0   21235 / 1000000     0.4s h2
[ ]   27176       0       0   27176 / 1000000     0.5s h2
[ ]   33192       0       0   33192 / 1000000     0.6s h2
[ ]   37651       0       0   37651 / 1000000     0.7s h2
[ ]   42629       0       0   42629 / 1000000     0.8s h2
[ ]   48438       0       0   48438 / 1000000     0.9s h2
[ ]   53958       0       0   53958 / 1000000     1.0s h2 (collecting)
[ ]   60118       0       0   60118 / 1000000     1.1s h2
[ ]   64505       0       0   64505 / 1000000     1.2s h2
[ ]   70035       0       0   70035 / 1000000     1.3s h2
[ ]   75998       0       0   75998 / 1000000     1.4s h2
[ ]   81038       0       0   81038 / 1000000     1.5s h2
[ ]   86710       0       0   86710 / 1000000     1.6s h2
[ ]   90380       0       0   90380 / 1000000     1.7s h2
[ ]   95935       0       0   95935 / 1000000     1.8s h2
[ ]  101165       0       0  101165 / 1000000     1.9s h2
[ ]  105005       0       0  105005 / 1000000     2.0s h2
[ ]  110035       0       0  110035 / 1000000     2.1s h2
[ ]  115018       0       0  115018 / 1000000     2.2s h2
[ ]  119782       0       0  119782 / 1000000     2.3s h2
[ ]  125589       0       0  125589 / 1000000     2.4s h2
[ ]  129526       0       0  129526 / 1000000     2.5s h2
[ ]  133538       0       0  133538 / 1000000     2.6s h2
[ ]  137415       0       0  137415 / 1000000     2.7s h2
[ ]  140870       0       0  140870 / 1000000     2.8s h2
[ ]  144494       0       0  144494 / 1000000     2.9s h2
[ ]  147962       0       0  147962 / 1000000     3.0s h2
[ ]  152772       0       0  152772 / 1000000     3.1s h2
[ ]  157354       0       0  157354 / 1000000     3.2s h2
[ ]  160908       0       0  160908 / 1000000     3.3s h2
[ ]  165796       0       0  165796 / 1000000     3.4s h2
[ ]  171770       0       0  171770 / 1000000     3.5s h2
[ ]  177684       0       0  177684 / 1000000     3.6s h2
[ ]  183832       0       0  183832 / 1000000     3.7s h2
[ ]  189943       0       0  189943 / 1000000     3.8s h2
[ ]  195951       0       0  195951 / 1000000     3.9s h2
[ ]  201920       0       0  201920 / 1000000     4.0s h2
[ ]  207972       0       0  207972 / 1000000     4.1s h2
[ ]  213950       0       0  213950 / 1000000     4.2s h2
[ ]  219936       0       0  219936 / 1000000     4.3s h2
[ ]  225988       0       0  225988 / 1000000     4.4s h2
[ ]  232030       0       0  232030 / 1000000     4.5s h2
[ ]  238118       0       0  238118 / 1000000     4.6s h2
[ ]  244184       0       0  244184 / 1000000     4.7s h2
[ ]  250306       0       0  250306 / 1000000     4.8s h2 (collecting)
[ ]  256343       0       0  256343 / 1000000     4.9s h2
[ ]  260805       0       0  260805 / 1000000     5.0s h2
[ ]  266210       0       0  266210 / 1000000     5.1s h2
[ ]  271419       0       0  271419 / 1000000     5.2s h2
[ ]  276507       0       0  276507 / 1000000     5.3s h2
[ ]  280493       0       0  280493 / 1000000     5.4s h2
[ ]  284044       0       0  284044 / 1000000     5.5s h2
[ ]  287595       0       0  287595 / 1000000     5.6s h2
[ ]  291309       0       0  291309 / 1000000     5.7s h2
[ ]  295055       0       0  295055 / 1000000     5.8s h2
[ ]  298818       0       0  298818 / 1000000     5.9s h2
[ ]  302797       0       0  302797 / 1000000     6.0s h2
[ ]  308791       0       0  308791 / 1000000     6.1s h2
[ ]  314921       0       0  314921 / 1000000     6.2s h2
[ ]  321108       0       0  321108 / 1000000     6.3s h2
[ ]  327217       0       0  327217 / 1000000     6.4s h2
[ ]  333280       0       0  333280 / 1000000     6.5s h2
[ ]  339382       0       0  339382 / 1000000     6.6s h2
[ ]  345470       0       0  345470 / 1000000     6.7s h2
[ ]  351534       0       0  351534 / 1000000     6.8s h2
[ ]  357679       0       0  357679 / 1000000     6.9s h2
[ ]  363814       0       0  363814 / 1000000     7.0s h2
[ ]  369911       0       0  369911 / 1000000     7.1s h2
[ ]  376041       0       0  376041 / 1000000     7.2s h2
[ ]  382119       0       0  382119 / 1000000     7.3s h2
[ ]  387596       0       0  387596 / 1000000     7.4s h2
[ ]  393763       0       0  393763 / 1000000     7.5s h2
[ ]  399821       0       0  399821 / 1000000     7.6s h2
[ ]  405030       0       0  405030 / 1000000     7.7s h2
[ ]  410207       0       0  410207 / 1000000     7.8s h2
[ ]  414730       0       0  414730 / 1000000     7.9s h2
[ ]  419314       0       0  419314 / 1000000     8.0s h2
[ ]  424343       0       0  424343 / 1000000     8.1s h2
[ ]  429903       0       0  429903 / 1000000     8.2s h2
[ ]  435558       0       0  435558 / 1000000     8.3s h2
[ ]  441023       0       0  441023 / 1000000     8.4s h2
[ ]  446533       0       0  446533 / 1000000     8.5s h2
[ ]  451980       0       0  451980 / 1000000     8.6s h2
[ ]  457543       0       0  457543 / 1000000     8.7s h2
[ ]  463069       0       0  463069 / 1000000     8.8s h2
[ ]  467714       0       0  467714 / 1000000     8.9s h2
[ ]  472076       0       0  472076 / 1000000     9.0s h2
[ ]  476885       0       0  476885 / 1000000     9.1s h2
[ ]  482962       0       0  482962 / 1000000     9.2s h2
[ ]  487804       0       0  487804 / 1000000     9.3s h2
[ ]  493891       0       0  493891 / 1000000     9.4s h2
[ ]  500060       0       0  500060 / 1000000     9.5s h2
[ ]  506189       0       0  506189 / 1000000     9.6s h2
[ ]  512268       0       0  512268 / 1000000     9.7s h2
[ ]  517541       0       0  517541 / 1000000     9.8s h2
[ ]  521127       0       0  521127 / 1000000     9.9s h2
[ ]  525163       0       0  525163 / 1000000    10.0s h2
[ ]  529776       0       0  529776 / 1000000    10.1s h2
[ ]  533786       0       0  533786 / 1000000    10.2s h2 (collecting)
[ ]  537538       0       0  537538 / 1000000    10.3s h2
[ ]  541692       0       0  541692 / 1000000    10.4s h2
[ ]  546335       0       0  546335 / 1000000    10.5s h2
[ ]  550863       0       0  550863 / 1000000    10.6s h2
[ ]  556283       0       0  556283 / 1000000    10.7s h2
[ ]  560783       0       0  560783 / 1000000    10.8s h2
[ ]  566645       0       0  566645 / 1000000    10.9s h2
[ ]  572610       0       0  572610 / 1000000    11.0s h2
[ ]  578711       0       0  578711 / 1000000    11.1s h2
[ ]  584821       0       0  584821 / 1000000    11.2s h2
[ ]  590806       0       0  590806 / 1000000    11.3s h2
[ ]  596241       0       0  596241 / 1000000    11.4s h2
[ ]  600718       0       0  600718 / 1000000    11.5s h2
[ ]  604368       0       0  604368 / 1000000    11.6s h2
[ ]  609095       0       0  609095 / 1000000    11.7s h2 (collecting)
[ ]  612914       0       0  612914 / 1000000    11.8s h2
[ ]  616636       0       0  616636 / 1000000    11.9s h2
[ ]  620166       0       0  620166 / 1000000    12.0s h2
[ ]  623725       0       0  623725 / 1000000    12.1s h2
[ ]  627201       0       0  627201 / 1000000    12.2s h2
[ ]  630601       0       0  630601 / 1000000    12.3s h2
[ ]  634097       0       0  634097 / 1000000    12.4s h2
[ ]  637522       0       0  637522 / 1000000    12.5s h2
[ ]  640890       0       0  640890 / 1000000    12.6s h2
[ ]  644425       0       0  644425 / 1000000    12.7s h2
[ ]  648438       0       0  648438 / 1000000    12.8s h2
[ ]  652001       0       0  652001 / 1000000    12.9s h2 (collecting)
[ ]  655390       0       0  655390 / 1000000    13.0s h2
[ ]  658861       0       0  658861 / 1000000    13.1s h2
[ ]  662612       0       0  662612 / 1000000    13.2s h2
[ ]  666267       0       0  666267 / 1000000    13.3s h2
[ ]  669877       0       0  669877 / 1000000    13.4s h2
[ ]  673290       0       0  673290 / 1000000    13.5s h2
[ ]  676742       0       0  676742 / 1000000    13.6s h2
[ ]  680143       0       0  680143 / 1000000    13.7s h2
[ ]  683817       0       0  683817 / 1000000    13.8s h2
[ ]  687635       0       0  687635 / 1000000    13.9s h2
[ ]  693156       0       0  693156 / 1000000    14.0s h2 (collecting)
[ ]  698986       0       0  698986 / 1000000    14.1s h2
[ ]  704043       0       0  704043 / 1000000    14.2s h2
[ ]  708057       0       0  708057 / 1000000    14.3s h2
[ ]  711607       0       0  711607 / 1000000    14.4s h2
[ ]  715198       0       0  715198 / 1000000    14.5s h2
[ ]  718793       0       0  718793 / 1000000    14.6s h2
[ ]  722252       0       0  722252 / 1000000    14.7s h2
[ ]  725787       0       0  725787 / 1000000    14.8s h2
[ ]  729374       0       0  729374 / 1000000    14.9s h2
[ ]  732976       0       0  732976 / 1000000    15.0s h2
[ ]  736603       0       0  736603 / 1000000    15.1s h2
[ ]  740169       0       0  740169 / 1000000    15.2s h2
[ ]  743784       0       0  743784 / 1000000    15.3s h2
[ ]  747415       0       0  747415 / 1000000    15.4s h2
[ ]  750995       0       0  750995 / 1000000    15.5s h2
[ ]  754616       0       0  754616 / 1000000    15.6s h2
[ ]  758257       0       0  758257 / 1000000    15.7s h2
[ ]  761923       0       0  761923 / 1000000    15.8s h2
[ ]  765602       0       0  765602 / 1000000    15.9s h2
[ ]  769725       0       0  769725 / 1000000    16.0s h2
[ ]  774080       0       0  774080 / 1000000    16.1s h2
[ ]  778272       0       0  778272 / 1000000    16.2s h2
[ ]  783288       0       0  783288 / 1000000    16.3s h2
[ ]  788187       0       0  788187 / 1000000    16.4s h2
[ ]  793252       0       0  793252 / 1000000    16.5s h2 (collecting)
[ ]  799048       0       0  799048 / 1000000    16.6s h2
[ ]  803551       0       0  803551 / 1000000    16.7s h2
[ ]  807746       0       0  807746 / 1000000    16.8s h2
[ ]  811562       0       0  811562 / 1000000    16.9s h2
[ ]  815804       0       0  815804 / 1000000    17.0s h2
[ ]  819602       0       0  819602 / 1000000    17.1s h2
[ ]  823382       0       0  823382 / 1000000    17.2s h2
[ ]  826888       0       0  826888 / 1000000    17.3s h2
[ ]  830436       0       0  830436 / 1000000    17.4s h2
[ ]  834023       0       0  834023 / 1000000    17.5s h2 (collecting)
[ ]  837551       0       0  837551 / 1000000    17.6s h2
[ ]  841076       0       0  841076 / 1000000    17.7s h2
[ ]  844614       0       0  844614 / 1000000    17.8s h2
[ ]  848267       0       0  848267 / 1000000    17.9s h2
[ ]  851816       0       0  851816 / 1000000    18.0s h2
[ ]  855272       0       0  855272 / 1000000    18.1s h2
[ ]  858905       0       0  858905 / 1000000    18.2s h2
[ ]  862613       0       0  862613 / 1000000    18.3s h2
[ ]  866588       0       0  866588 / 1000000    18.4s h2
[ ]  870586       0       0  870586 / 1000000    18.5s h2
[ ]  875992       0       0  875992 / 1000000    18.6s h2
[ ]  880587       0       0  880587 / 1000000    18.7s h2 (collecting)
[ ]  884260       0       0  884260 / 1000000    18.8s h2
[ ]  888326       0       0  888326 / 1000000    18.9s h2
[ ]  891844       0       0  891844 / 1000000    19.0s h2
[ ]  895452       0       0  895452 / 1000000    19.1s h2
[ ]  899103       0       0  899103 / 1000000    19.2s h2
[ ]  902793       0       0  902793 / 1000000    19.3s h2
[ ]  906465       0       0  906465 / 1000000    19.4s h2
[ ]  910166       0       0  910166 / 1000000    19.5s h2
[ ]  913888       0       0  913888 / 1000000    19.6s h2
[ ]  918062       0       0  918062 / 1000000    19.7s h2
[ ]  922378       0       0  922378 / 1000000    19.8s h2
[ ]  926277       0       0  926277 / 1000000    19.9s h2
[ ]  929888       0       0  929888 / 1000000    20.0s h2
[ ]  933805       0       0  933805 / 1000000    20.1s h2
[ ]  939186       0       0  939186 / 1000000    20.2s h2
[ ]  943040       0       0  943040 / 1000000    20.3s h2
[ ]  947226       0       0  947226 / 1000000    20.4s h2
[ ]  951583       0       0  951583 / 1000000    20.5s h2
[ ]  956938       0       0  956938 / 1000000    20.6s h2
[ ]  962357       0       0  962357 / 1000000    20.7s h2
[ ]  967780       0       0  967780 / 1000000    20.8s h2
[ ]  972717       0       0  972717 / 1000000    20.9s h2
[ ]  977800       0       0  977800 / 1000000    21.0s h2
[ ]  983186       0       0  983186 / 1000000    21.1s h2
[ ]  987726       0       0  987726 / 1000000    21.2s h2
[ ]  992985       0       0  992985 / 1000000    21.3s h2
[ ]  998543       0       0  998543 / 1000000    21.4s h2
[✓] 1000000       0       0 1000000 / 1000000    21.4s h2
- 
[ ]       0       0       0       0 / 1000000     0.0s h3
[ ]    9874       0       0    9874 / 1000000     0.1s h3 (collecting)
[ ]   18568       0       0   18568 / 1000000     0.2s h3
[ ]   28445       0       0   28445 / 1000000     0.3s h3
[ ]   39766       0       0   39766 / 1000000     0.4s h3
[ ]   50665       0       0   50665 / 1000000     0.5s h3
[ ]   60049       0       0   60049 / 1000000     0.6s h3
[ ]   68985       0       0   68985 / 1000000     0.7s h3
[ ]   77509       0       0   77509 / 1000000     0.8s h3
[ ]   85114       0       0   85114 / 1000000     0.9s h3
[ ]   91778       0       0   91778 / 1000000     1.0s h3
[ ]   99275       0       0   99275 / 1000000     1.1s h3
[ ]  109993       0       0  109993 / 1000000     1.2s h3
[ ]  121030       0       0  121030 / 1000000     1.3s h3
[ ]  131874       0       0  131874 / 1000000     1.4s h3
[ ]  143038       0       0  143038 / 1000000     1.5s h3
[ ]  151633       0       0  151633 / 1000000     1.6s h3
[ ]  161164       0       0  161164 / 1000000     1.7s h3
[ ]  172918       0       0  172918 / 1000000     1.8s h3
[ ]  183934       0       0  183934 / 1000000     1.9s h3
[ ]  192321       0       0  192321 / 1000000     2.0s h3 (collecting)
[ ]  201237       0       0  201237 / 1000000     2.1s h3
[ ]  209543       0       0  209543 / 1000000     2.2s h3
[ ]  221126       0       0  221126 / 1000000     2.3s h3
[ ]  233018       0       0  233018 / 1000000     2.4s h3
[ ]  244291       0       0  244291 / 1000000     2.5s h3
[ ]  256208       0       0  256208 / 1000000     2.6s h3
[ ]  267703       0       0  267703 / 1000000     2.7s h3
[ ]  278050       0       0  278050 / 1000000     2.8s h3
[ ]  287367       0       0  287367 / 1000000     2.9s h3
[ ]  297318       0       0  297318 / 1000000     3.0s h3
[ ]  305772       0       0  305772 / 1000000     3.1s h3
[ ]  312858       0       0  312858 / 1000000     3.2s h3
[ ]  319758       0       0  319758 / 1000000     3.3s h3
[ ]  330461       0       0  330461 / 1000000     3.4s h3
[ ]  342429       0       0  342429 / 1000000     3.5s h3
[ ]  352092       0       0  352092 / 1000000     3.6s h3
[ ]  359146       0       0  359146 / 1000000     3.7s h3
[ ]  366551       0       0  366551 / 1000000     3.8s h3
[ ]  376162       0       0  376162 / 1000000     3.9s h3
[ ]  382982       0       0  382982 / 1000000     4.0s h3
[ ]  389767       0       0  389767 / 1000000     4.1s h3 (collecting)
[ ]  396706       0       0  396706 / 1000000     4.2s h3
[ ]  403867       0       0  403867 / 1000000     4.3s h3
[ ]  410631       0       0  410631 / 1000000     4.4s h3
[ ]  417449       0       0  417449 / 1000000     4.5s h3
[ ]  424400       0       0  424400 / 1000000     4.6s h3
[ ]  431446       0       0  431446 / 1000000     4.7s h3
[ ]  438662       0       0  438662 / 1000000     4.8s h3
[ ]  449290       0       0  449290 / 1000000     4.9s h3
[ ]  461267       0       0  461267 / 1000000     5.0s h3 (collecting)
[ ]  473129       0       0  473129 / 1000000     5.1s h3
[ ]  479901       0       0  479901 / 1000000     5.2s h3
[ ]  486920       0       0  486920 / 1000000     5.3s h3
[ ]  493899       0       0  493899 / 1000000     5.4s h3
[ ]  501906       0       0  501906 / 1000000     5.5s h3
[ ]  509234       0       0  509234 / 1000000     5.6s h3
[ ]  516019       0       0  516019 / 1000000     5.7s h3
[ ]  522789       0       0  522789 / 1000000     5.8s h3
[ ]  529504       0       0  529504 / 1000000     5.9s h3
[ ]  536110       0       0  536110 / 1000000     6.0s h3
[ ]  543960       0       0  543960 / 1000000     6.1s h3
[ ]  551336       0       0  551336 / 1000000     6.2s h3
[ ]  560778       0       0  560778 / 1000000     6.3s h3
[ ]  570500       0       0  570500 / 1000000     6.4s h3
[ ]  579976       0       0  579976 / 1000000     6.5s h3
[ ]  589720       0       0  589720 / 1000000     6.6s h3
[ ]  597866       0       0  597866 / 1000000     6.7s h3
[ ]  605014       0       0  605014 / 1000000     6.8s h3
[ ]  611784       0       0  611784 / 1000000     6.9s h3
[ ]  618731       0       0  618731 / 1000000     7.0s h3
[ ]  625684       0       0  625684 / 1000000     7.1s h3
[ ]  632693       0       0  632693 / 1000000     7.2s h3
[ ]  639589       0       0  639589 / 1000000     7.3s h3
[ ]  646914       0       0  646914 / 1000000     7.4s h3 (collecting)
[ ]  654651       0       0  654651 / 1000000     7.5s h3
[ ]  665235       0       0  665235 / 1000000     7.6s h3
[ ]  676674       0       0  676674 / 1000000     7.7s h3 (collecting)
[ ]  688214       0       0  688214 / 1000000     7.8s h3
[ ]  699872       0       0  699872 / 1000000     7.9s h3
[ ]  710623       0       0  710623 / 1000000     8.0s h3
[ ]  722214       0       0  722214 / 1000000     8.1s h3
[ ]  729791       0       0  729791 / 1000000     8.2s h3
[ ]  741015       0       0  741015 / 1000000     8.3s h3
[ ]  752719       0       0  752719 / 1000000     8.4s h3
[ ]  760867       0       0  760867 / 1000000     8.5s h3
[ ]  770057       0       0  770057 / 1000000     8.6s h3
[ ]  781694       0       0  781694 / 1000000     8.7s h3
[ ]  792109       0       0  792109 / 1000000     8.8s h3
[ ]  803298       0       0  803298 / 1000000     8.9s h3
[ ]  812301       0       0  812301 / 1000000     9.0s h3
[ ]  819757       0       0  819757 / 1000000     9.1s h3
[ ]  827794       0       0  827794 / 1000000     9.2s h3
[ ]  834778       0       0  834778 / 1000000     9.3s h3
[ ]  841839       0       0  841839 / 1000000     9.4s h3
[ ]  849080       0       0  849080 / 1000000     9.5s h3
[ ]  856835       0       0  856835 / 1000000     9.6s h3
[ ]  868643       0       0  868643 / 1000000     9.7s h3
[ ]  876544       0       0  876544 / 1000000     9.8s h3
[ ]  883605       0       0  883605 / 1000000     9.9s h3
[ ]  890587       0       0  890587 / 1000000    10.0s h3
[ ]  898018       0       0  898018 / 1000000    10.1s h3
[ ]  907981       0       0  907981 / 1000000    10.2s h3
[ ]  919285       0       0  919285 / 1000000    10.3s h3
[ ]  930066       0       0  930066 / 1000000    10.4s h3
[ ]  940259       0       0  940259 / 1000000    10.5s h3
[ ]  946977       0       0  946977 / 1000000    10.6s h3
[ ]  953760       0       0  953760 / 1000000    10.7s h3
[ ]  960467       0       0  960467 / 1000000    10.8s h3
[ ]  970041       0       0  970041 / 1000000    10.9s h3
[ ]  980922       0       0  980922 / 1000000    11.0s h3
[ ]  989002       0       0  989002 / 1000000    11.1s h3
[ ]  995879       0       0  995879 / 1000000    11.2s h3 (collecting)
[✓] 1000000       0       0 1000000 / 1000000    11.3s h3
- 
[ ]       0       0       0       0 / 1000000     0.0s h4
[ ]    2653       0       0    2653 / 1000000     0.1s h4
[ ]    5168       0       0    5168 / 1000000     0.2s h4
[ ]    7483       0       0    7483 / 1000000     0.3s h4
[ ]    9793       0       0    9793 / 1000000     0.4s h4
[ ]   12386       0       0   12386 / 1000000     0.5s h4
[ ]   14989       0       0   14989 / 1000000     0.6s h4
[ ]   18507       0       0   18507 / 1000000     0.7s h4
[ ]   22518       0       0   22518 / 1000000     0.8s h4
[ ]   26408       0       0   26408 / 1000000     0.9s h4
[ ]   30313       0       0   30313 / 1000000     1.0s h4
[ ]   34195       0       0   34195 / 1000000     1.1s h4
[ ]   38075       0       0   38075 / 1000000     1.2s h4
[ ]   41398       0       0   41398 / 1000000     1.3s h4
[ ]   44169       0       0   44169 / 1000000     1.4s h4
[ ]   46739       0       0   46739 / 1000000     1.5s h4
[ ]   50374       0       0   50374 / 1000000     1.6s h4
[ ]   52655       0       0   52655 / 1000000     1.7s h4
[ ]   55059       0       0   55059 / 1000000     1.8s h4
[ ]   57343       0       0   57343 / 1000000     1.9s h4
[ ]   59752       0       0   59752 / 1000000     2.0s h4
[ ]   62221       0       0   62221 / 1000000     2.1s h4
[ ]   64602       0       0   64602 / 1000000     2.2s h4
[ ]   67121       0       0   67121 / 1000000     2.3s h4
[ ]   69544       0       0   69544 / 1000000     2.4s h4
[ ]   72046       0       0   72046 / 1000000     2.5s h4
[ ]   74491       0       0   74491 / 1000000     2.6s h4
[ ]   76948       0       0   76948 / 1000000     2.7s h4
[ ]   79389       0       0   79389 / 1000000     2.8s h4
[ ]   81735       0       0   81735 / 1000000     2.9s h4
[ ]   84184       0       0   84184 / 1000000     3.0s h4
[ ]   86592       0       0   86592 / 1000000     3.1s h4
[ ]   88991       0       0   88991 / 1000000     3.2s h4
[ ]   91564       0       0   91564 / 1000000     3.3s h4
[ ]   93890       0       0   93890 / 1000000     3.4s h4
[ ]   96282       0       0   96282 / 1000000     3.5s h4
[ ]   98744       0       0   98744 / 1000000     3.6s h4
[ ]  101105       0       0  101105 / 1000000     3.7s h4
[ ]  103553       0       0  103553 / 1000000     3.8s h4
[ ]  105964       0       0  105964 / 1000000     3.9s h4
[ ]  108299       0       0  108299 / 1000000     4.0s h4
[ ]  110748       0       0  110748 / 1000000     4.1s h4
[ ]  113165       0       0  113165 / 1000000     4.2s h4
[ ]  115614       0       0  115614 / 1000000     4.3s h4
[ ]  118037       0       0  118037 / 1000000     4.4s h4
[ ]  120439       0       0  120439 / 1000000     4.5s h4
[ ]  122817       0       0  122817 / 1000000     4.6s h4
[ ]  125260       0       0  125260 / 1000000     4.7s h4
[ ]  127638       0       0  127638 / 1000000     4.8s h4
[ ]  130164       0       0  130164 / 1000000     4.9s h4
[ ]  132557       0       0  132557 / 1000000     5.0s h4
[ ]  134890       0       0  134890 / 1000000     5.1s h4
[ ]  137233       0       0  137233 / 1000000     5.2s h4
[ ]  139597       0       0  139597 / 1000000     5.3s h4
[ ]  141972       0       0  141972 / 1000000     5.4s h4
[ ]  144077       0       0  144077 / 1000000     5.5s h4
[ ]  146439       0       0  146439 / 1000000     5.6s h4
[ ]  148805       0       0  148805 / 1000000     5.7s h4
[ ]  151212       0       0  151212 / 1000000     5.8s h4
[ ]  153500       0       0  153500 / 1000000     5.9s h4
[ ]  155972       0       0  155972 / 1000000     6.0s h4
[ ]  158358       0       0  158358 / 1000000     6.1s h4
[ ]  160852       0       0  160852 / 1000000     6.2s h4
[ ]  163261       0       0  163261 / 1000000     6.3s h4
[ ]  165651       0       0  165651 / 1000000     6.4s h4
[ ]  168173       0       0  168173 / 1000000     6.5s h4
[ ]  170602       0       0  170602 / 1000000     6.6s h4
[ ]  172989       0       0  172989 / 1000000     6.7s h4
[ ]  175375       0       0  175375 / 1000000     6.8s h4
[ ]  177766       0       0  177766 / 1000000     6.9s h4
[ ]  180136       0       0  180136 / 1000000     7.0s h4
[ ]  182643       0       0  182643 / 1000000     7.1s h4
[ ]  185080       0       0  185080 / 1000000     7.2s h4
[ ]  187535       0       0  187535 / 1000000     7.3s h4
[ ]  190035       0       0  190035 / 1000000     7.4s h4
[ ]  192508       0       0  192508 / 1000000     7.5s h4
[ ]  194925       0       0  194925 / 1000000     7.6s h4
[ ]  197366       0       0  197366 / 1000000     7.7s h4
[ ]  199670       0       0  199670 / 1000000     7.8s h4
[ ]  202014       0       0  202014 / 1000000     7.9s h4
[ ]  204418       0       0  204418 / 1000000     8.0s h4
[ ]  206931       0       0  206931 / 1000000     8.1s h4
[ ]  209403       0       0  209403 / 1000000     8.2s h4
[ ]  211820       0       0  211820 / 1000000     8.3s h4
[ ]  214281       0       0  214281 / 1000000     8.4s h4
[ ]  216799       0       0  216799 / 1000000     8.5s h4
[ ]  219093       0       0  219093 / 1000000     8.6s h4
[ ]  221453       0       0  221453 / 1000000     8.7s h4
[ ]  223809       0       0  223809 / 1000000     8.8s h4
[ ]  225996       0       0  225996 / 1000000     8.9s h4
[ ]  228147       0       0  228147 / 1000000     9.0s h4
[ ]  230456       0       0  230456 / 1000000     9.1s h4
[ ]  232910       0       0  232910 / 1000000     9.2s h4
[ ]  235261       0       0  235261 / 1000000     9.3s h4
[ ]  237619       0       0  237619 / 1000000     9.4s h4
[ ]  240084       0       0  240084 / 1000000     9.5s h4
[ ]  242475       0       0  242475 / 1000000     9.6s h4
[ ]  244813       0       0  244813 / 1000000     9.7s h4
[ ]  247095       0       0  247095 / 1000000     9.8s h4
[ ]  249558       0       0  249558 / 1000000     9.9s h4
[ ]  251942       0       0  251942 / 1000000    10.0s h4
[ ]  254374       0       0  254374 / 1000000    10.1s h4
[ ]  256732       0       0  256732 / 1000000    10.2s h4
[ ]  259228       0       0  259228 / 1000000    10.3s h4
[ ]  261684       0       0  261684 / 1000000    10.4s h4
[ ]  264133       0       0  264133 / 1000000    10.5s h4
[ ]  266625       0       0  266625 / 1000000    10.6s h4
[ ]  269065       0       0  269065 / 1000000    10.7s h4
[ ]  271517       0       0  271517 / 1000000    10.8s h4
[ ]  273888       0       0  273888 / 1000000    10.9s h4
[ ]  276310       0       0  276310 / 1000000    11.0s h4
[ ]  278616       0       0  278616 / 1000000    11.1s h4
[ ]  281010       0       0  281010 / 1000000    11.2s h4
[ ]  283459       0       0  283459 / 1000000    11.3s h4
[ ]  285875       0       0  285875 / 1000000    11.4s h4
[ ]  288353       0       0  288353 / 1000000    11.5s h4
[ ]  290699       0       0  290699 / 1000000    11.6s h4
[ ]  293190       0       0  293190 / 1000000    11.7s h4
[ ]  295550       0       0  295550 / 1000000    11.8s h4
[ ]  298028       0       0  298028 / 1000000    11.9s h4
[ ]  300462       0       0  300462 / 1000000    12.0s h4
[ ]  302934       0       0  302934 / 1000000    12.1s h4
[ ]  305328       0       0  305328 / 1000000    12.2s h4
[ ]  307710       0       0  307710 / 1000000    12.3s h4
[ ]  310103       0       0  310103 / 1000000    12.4s h4
[ ]  312517       0       0  312517 / 1000000    12.5s h4
[ ]  314874       0       0  314874 / 1000000    12.6s h4
[ ]  317230       0       0  317230 / 1000000    12.7s h4
[ ]  319616       0       0  319616 / 1000000    12.8s h4
[ ]  322128       0       0  322128 / 1000000    12.9s h4
[ ]  324548       0       0  324548 / 1000000    13.0s h4
[ ]  326725       0       0  326725 / 1000000    13.1s h4
[ ]  328808       0       0  328808 / 1000000    13.2s h4
[ ]  331135       0       0  331135 / 1000000    13.3s h4
[ ]  333484       0       0  333484 / 1000000    13.4s h4
[ ]  335888       0       0  335888 / 1000000    13.5s h4
[ ]  338166       0       0  338166 / 1000000    13.6s h4 (collecting)
[ ]  341066       0       0  341066 / 1000000    13.7s h4
[ ]  343674       0       0  343674 / 1000000    13.8s h4
[ ]  345970       0       0  345970 / 1000000    13.9s h4
[ ]  348284       0       0  348284 / 1000000    14.0s h4
[ ]  350599       0       0  350599 / 1000000    14.1s h4
[ ]  352928       0       0  352928 / 1000000    14.2s h4
[ ]  355478       0       0  355478 / 1000000    14.3s h4
[ ]  358256       0       0  358256 / 1000000    14.4s h4
[ ]  361007       0       0  361007 / 1000000    14.5s h4
[ ]  363482       0       0  363482 / 1000000    14.6s h4
[ ]  365915       0       0  365915 / 1000000    14.7s h4
[ ]  368544       0       0  368544 / 1000000    14.8s h4
[ ]  371661       0       0  371661 / 1000000    14.9s h4
[ ]  374005       0       0  374005 / 1000000    15.0s h4
[ ]  376463       0       0  376463 / 1000000    15.1s h4
[ ]  379685       0       0  379685 / 1000000    15.2s h4
[ ]  382144       0       0  382144 / 1000000    15.3s h4
[ ]  384636       0       0  384636 / 1000000    15.4s h4
[ ]  387218       0       0  387218 / 1000000    15.5s h4
[ ]  389751       0       0  389751 / 1000000    15.6s h4
[ ]  392058       0       0  392058 / 1000000    15.7s h4
[ ]  394288       0       0  394288 / 1000000    15.8s h4
[ ]  396688       0       0  396688 / 1000000    15.9s h4
[ ]  399204       0       0  399204 / 1000000    16.0s h4
[ ]  401653       0       0  401653 / 1000000    16.1s h4
[ ]  404196       0       0  404196 / 1000000    16.2s h4
[ ]  406491       0       0  406491 / 1000000    16.3s h4
[ ]  408853       0       0  408853 / 1000000    16.4s h4
[ ]  411184       0       0  411184 / 1000000    16.5s h4
[ ]  413702       0       0  413702 / 1000000    16.6s h4
[ ]  416185       0       0  416185 / 1000000    16.7s h4
[ ]  418740       0       0  418740 / 1000000    16.8s h4
[ ]  421310       0       0  421310 / 1000000    16.9s h4
[ ]  424814       0       0  424814 / 1000000    17.0s h4
[ ]  428317       0       0  428317 / 1000000    17.1s h4
[ ]  431653       0       0  431653 / 1000000    17.2s h4
[ ]  435066       0       0  435066 / 1000000    17.3s h4
[ ]  438494       0       0  438494 / 1000000    17.4s h4
[ ]  441895       0       0  441895 / 1000000    17.5s h4
[ ]  445478       0       0  445478 / 1000000    17.6s h4
[ ]  449052       0       0  449052 / 1000000    17.7s h4
[ ]  452729       0       0  452729 / 1000000    17.8s h4
[ ]  456159       0       0  456159 / 1000000    17.9s h4
[ ]  459659       0       0  459659 / 1000000    18.0s h4
[ ]  462288       0       0  462288 / 1000000    18.1s h4
[ ]  466031       0       0  466031 / 1000000    18.2s h4
[ ]  469806       0       0  469806 / 1000000    18.3s h4
[ ]  473536       0       0  473536 / 1000000    18.4s h4
[ ]  477344       0       0  477344 / 1000000    18.5s h4
[ ]  481224       0       0  481224 / 1000000    18.6s h4
[ ]  485097       0       0  485097 / 1000000    18.7s h4
[ ]  488943       0       0  488943 / 1000000    18.8s h4
[ ]  492809       0       0  492809 / 1000000    18.9s h4
[ ]  495993       0       0  495993 / 1000000    19.0s h4
[ ]  499769       0       0  499769 / 1000000    19.1s h4
[ ]  503495       0       0  503495 / 1000000    19.2s h4
[ ]  507264       0       0  507264 / 1000000    19.3s h4
[ ]  510950       0       0  510950 / 1000000    19.4s h4
[ ]  514688       0       0  514688 / 1000000    19.5s h4
[ ]  518469       0       0  518469 / 1000000    19.6s h4
[ ]  522297       0       0  522297 / 1000000    19.7s h4
[ ]  526145       0       0  526145 / 1000000    19.8s h4
[ ]  529985       0       0  529985 / 1000000    19.9s h4
[ ]  533880       0       0  533880 / 1000000    20.0s h4
[ ]  537783       0       0  537783 / 1000000    20.1s h4
[ ]  541677       0       0  541677 / 1000000    20.2s h4
[ ]  544937       0       0  544937 / 1000000    20.3s h4
[ ]  548216       0       0  548216 / 1000000    20.4s h4
[ ]  552237       0       0  552237 / 1000000    20.5s h4
[ ]  556178       0       0  556178 / 1000000    20.6s h4
[ ]  560190       0       0  560190 / 1000000    20.7s h4
[ ]  564232       0       0  564232 / 1000000    20.8s h4
[ ]  568274       0       0  568274 / 1000000    20.9s h4
[ ]  572263       0       0  572263 / 1000000    21.0s h4
[ ]  576124       0       0  576124 / 1000000    21.1s h4
[ ]  579993       0       0  579993 / 1000000    21.2s h4
[ ]  583866       0       0  583866 / 1000000    21.3s h4
[ ]  587776       0       0  587776 / 1000000    21.4s h4
[ ]  591702       0       0  591702 / 1000000    21.5s h4
[ ]  595635       0       0  595635 / 1000000    21.6s h4
[ ]  599561       0       0  599561 / 1000000    21.7s h4
[ ]  603380       0       0  603380 / 1000000    21.8s h4
[ ]  607373       0       0  607373 / 1000000    21.9s h4
[ ]  611361       0       0  611361 / 1000000    22.0s h4
[ ]  615310       0       0  615310 / 1000000    22.1s h4
[ ]  619247       0       0  619247 / 1000000    22.2s h4
[ ]  622775       0       0  622775 / 1000000    22.3s h4
[ ]  626693       0       0  626693 / 1000000    22.4s h4
[ ]  630598       0       0  630598 / 1000000    22.5s h4
[ ]  634601       0       0  634601 / 1000000    22.6s h4
[ ]  638605       0       0  638605 / 1000000    22.7s h4
[ ]  642657       0       0  642657 / 1000000    22.8s h4
[ ]  646716       0       0  646716 / 1000000    22.9s h4
[ ]  650716       0       0  650716 / 1000000    23.0s h4
[ ]  654747       0       0  654747 / 1000000    23.1s h4
[ ]  658750       0       0  658750 / 1000000    23.2s h4
[ ]  662753       0       0  662753 / 1000000    23.3s h4
[ ]  666772       0       0  666772 / 1000000    23.4s h4
[ ]  670102       0       0  670102 / 1000000    23.5s h4
[ ]  673441       0       0  673441 / 1000000    23.6s h4
[ ]  676268       0       0  676268 / 1000000    23.7s h4
[ ]  679743       0       0  679743 / 1000000    23.8s h4
[ ]  682648       0       0  682648 / 1000000    23.9s h4
[ ]  686281       0       0  686281 / 1000000    24.0s h4
[ ]  690108       0       0  690108 / 1000000    24.1s h4
[ ]  693701       0       0  693701 / 1000000    24.2s h4
[ ]  697600       0       0  697600 / 1000000    24.3s h4
[ ]  701363       0       0  701363 / 1000000    24.4s h4
[ ]  705147       0       0  705147 / 1000000    24.5s h4
[ ]  708917       0       0  708917 / 1000000    24.6s h4
[ ]  712816       0       0  712816 / 1000000    24.7s h4
[ ]  715791       0       0  715791 / 1000000    24.8s h4
[ ]  718971       0       0  718971 / 1000000    24.9s h4
[ ]  721717       0       0  721717 / 1000000    25.0s h4
[ ]  724464       0       0  724464 / 1000000    25.1s h4
[ ]  727196       0       0  727196 / 1000000    25.2s h4
[ ]  729782       0       0  729782 / 1000000    25.3s h4
[ ]  732331       0       0  732331 / 1000000    25.4s h4
[ ]  734875       0       0  734875 / 1000000    25.5s h4
[ ]  737424       0       0  737424 / 1000000    25.6s h4
[ ]  740178       0       0  740178 / 1000000    25.7s h4
[ ]  742909       0       0  742909 / 1000000    25.8s h4
[ ]  745556       0       0  745556 / 1000000    25.9s h4
[ ]  748960       0       0  748960 / 1000000    26.0s h4
[ ]  752308       0       0  752308 / 1000000    26.1s h4
[ ]  755626       0       0  755626 / 1000000    26.2s h4 (   testing)
[ ]  759104       0       0  759104 / 1000000    26.3s h4
[ ]  762873       0       0  762873 / 1000000    26.4s h4
[ ]  766826       0       0  766826 / 1000000    26.5s h4
[ ]  770887       0       0  770887 / 1000000    26.6s h4
[ ]  774887       0       0  774887 / 1000000    26.7s h4
[ ]  778874       0       0  778874 / 1000000    26.8s h4
[ ]  782916       0       0  782916 / 1000000    26.9s h4 (   testing)
[ ]  786940       0       0  786940 / 1000000    27.0s h4
[ ]  790977       0       0  790977 / 1000000    27.1s h4
[ ]  795018       0       0  795018 / 1000000    27.2s h4
[ ]  799051       0       0  799051 / 1000000    27.3s h4
[ ]  803011       0       0  803011 / 1000000    27.4s h4 (collecting)
[ ]  806955       0       0  806955 / 1000000    27.5s h4
[ ]  810919       0       0  810919 / 1000000    27.6s h4
[ ]  814811       0       0  814811 / 1000000    27.7s h4
[ ]  818759       0       0  818759 / 1000000    27.8s h4
[ ]  822562       0       0  822562 / 1000000    27.9s h4
[ ]  826314       0       0  826314 / 1000000    28.0s h4
[ ]  830134       0       0  830134 / 1000000    28.1s h4
[ ]  833967       0       0  833967 / 1000000    28.2s h4
[ ]  837507       0       0  837507 / 1000000    28.3s h4
[ ]  841337       0       0  841337 / 1000000    28.4s h4
[ ]  845204       0       0  845204 / 1000000    28.5s h4
[ ]  849120       0       0  849120 / 1000000    28.6s h4
[ ]  853067       0       0  853067 / 1000000    28.7s h4
[ ]  856969       0       0  856969 / 1000000    28.8s h4
[ ]  860835       0       0  860835 / 1000000    28.9s h4
[ ]  864783       0       0  864783 / 1000000    29.0s h4
[ ]  868697       0       0  868697 / 1000000    29.1s h4
[ ]  872529       0       0  872529 / 1000000    29.2s h4
[ ]  876275       0       0  876275 / 1000000    29.3s h4
[ ]  880165       0       0  880165 / 1000000    29.4s h4
[ ]  884030       0       0  884030 / 1000000    29.5s h4
[ ]  887848       0       0  887848 / 1000000    29.6s h4
[ ]  891747       0       0  891747 / 1000000    29.7s h4
[ ]  895584       0       0  895584 / 1000000    29.8s h4
[ ]  899448       0       0  899448 / 1000000    29.9s h4
[ ]  903355       0       0  903355 / 1000000    30.0s h4
[ ]  907370       0       0  907370 / 1000000    30.1s h4
[ ]  911360       0       0  911360 / 1000000    30.2s h4
[ ]  915352       0       0  915352 / 1000000    30.3s h4 (collecting)
[ ]  919330       0       0  919330 / 1000000    30.4s h4
[ ]  923321       0       0  923321 / 1000000    30.5s h4
[ ]  927339       0       0  927339 / 1000000    30.6s h4
[ ]  931374       0       0  931374 / 1000000    30.7s h4
[ ]  935472       0       0  935472 / 1000000    30.8s h4
[ ]  939045       0       0  939045 / 1000000    30.9s h4
[ ]  943050       0       0  943050 / 1000000    31.0s h4
[ ]  947068       0       0  947068 / 1000000    31.1s h4
[ ]  951069       0       0  951069 / 1000000    31.2s h4
[ ]  955093       0       0  955093 / 1000000    31.3s h4
[ ]  959039       0       0  959039 / 1000000    31.4s h4
[ ]  962956       0       0  962956 / 1000000    31.5s h4
[ ]  966944       0       0  966944 / 1000000    31.6s h4
[ ]  970882       0       0  970882 / 1000000    31.7s h4
[ ]  974856       0       0  974856 / 1000000    31.8s h4
[ ]  978848       0       0  978848 / 1000000    31.9s h4
[ ]  982780       0       0  982780 / 1000000    32.0s h4
[ ]  986776       0       0  986776 / 1000000    32.1s h4
[ ]  990759       0       0  990759 / 1000000    32.2s h4
[ ]  994644       0       0  994644 / 1000000    32.3s h4
[ ]  998520       0       0  998520 / 1000000    32.4s h4
[✓] 1000000       0       0 1000000 / 1000000    32.4s 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-01-13 19:11.19 ---> saved as "0e853795a43239837965aed5856ed3b214ae6e39604075c287c87e6012b1e629"
Job succeeded
2026-01-13 19:11.31: Job succeeded