- github
- ocaml
- opam-repository
- dd5533
- compilers,5.3,dune.3.20.0~alpha2,revdeps,dates_calc.0.0.6
(not at the head of any monitored branch or PR)
2025-08-05 14:00.15: New job: test dates_calc.0.0.6 with dune.3.20.0~alpha2, using opam 2.3
from https://github.com/ocaml/opam-repository.git#refs/pull/28298/head (dd5533520fdcb5364efecb41d297e786ddcc1f76)
on debian-12-ocaml-5.3/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/28298/head" && git reset --hard dd553352
git fetch origin master
git merge --no-edit 39155538b0d7654773a68bd42b0b7dbb8eb14ad7
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-5.3@sha256:4c128e28b76bc23613903dd2c78bdf0a5de36bc06b2b1eea8d3079d07756aa03
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-2.3 /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.20.0~alpha2 3.20.0~alpha2
RUN opam reinstall dune.3.20.0~alpha2; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-12\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'dune.3.20.0~alpha2' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall dates_calc.0.0.6; \
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-12\""; 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.6' && 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.6) || true
RUN opam reinstall --with-test --verbose dates_calc.0.0.6; \
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-12\""; 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.6' && 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 .
2025-08-05 14:00.15: Using cache hint "ocaml/opam:debian-12-ocaml-5.3@sha256:4c128e28b76bc23613903dd2c78bdf0a5de36bc06b2b1eea8d3079d07756aa03-dune.3.20.0~alpha2-dates_calc.0.0.6-dd5533520fdcb5364efecb41d297e786ddcc1f76"
2025-08-05 14:00.15: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-5.3@sha256:4c128e28b76bc23613903dd2c78bdf0a5de36bc06b2b1eea8d3079d07756aa03)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-2.3 /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.20.0~alpha2 3.20.0~alpha2"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.20.0~alpha2;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; 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.20.0~alpha2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dates_calc.0.0.6;\
\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-12\\\"\"; 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.6' && 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.6) || true"))
(run (shell "opam reinstall --with-test --verbose dates_calc.0.0.6;\
\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-12\\\"\"; 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.6' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-08-05 14:00.15: Waiting for resource in pool OCluster
2025-08-05 18:25.27: Waiting for worker…
2025-08-05 18:27.39: Got resource from pool OCluster
Building on eumache
All commits already cached
HEAD is now at 39155538b0 Merge pull request #28292 from gildor478/release-ocamlmod-v0.1.1
Updating 39155538b0..dd5533520f
Fast-forward
.../chrome-trace/chrome-trace.3.20.0~alpha2/opam | 41 ++++++++++++
.../dune-action-plugin.3.20.0~alpha2/opam | 54 ++++++++++++++++
.../dune-build-info.3.20.0~alpha2/opam | 47 ++++++++++++++
.../dune-configurator.3.20.0~alpha2/opam | 51 +++++++++++++++
packages/dune-glob/dune-glob.3.20.0~alpha2/opam | 44 +++++++++++++
.../dune-private-libs.3.20.0~alpha2/opam | 52 +++++++++++++++
.../dune-rpc-lwt/dune-rpc-lwt.3.20.0~alpha2/opam | 43 +++++++++++++
packages/dune-rpc/dune-rpc.3.20.0~alpha2/opam | 45 +++++++++++++
packages/dune-site/dune-site.3.20.0~alpha2/opam | 39 ++++++++++++
packages/dune/dune.3.20.0~alpha2/opam | 74 ++++++++++++++++++++++
packages/dyn/dyn.3.20.0~alpha2/opam | 42 ++++++++++++
packages/ocamlc-loc/ocamlc-loc.3.20.0~alpha2/opam | 45 +++++++++++++
packages/ordering/ordering.3.20.0~alpha2/opam | 40 ++++++++++++
packages/stdune/stdune.3.20.0~alpha2/opam | 46 ++++++++++++++
packages/xdg/xdg.3.20.0~alpha2/opam | 41 ++++++++++++
15 files changed, 704 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.20.0~alpha2/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.20.0~alpha2/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.20.0~alpha2/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.20.0~alpha2/opam
create mode 100644 packages/dune-glob/dune-glob.3.20.0~alpha2/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.20.0~alpha2/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.20.0~alpha2/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.20.0~alpha2/opam
create mode 100644 packages/dune-site/dune-site.3.20.0~alpha2/opam
create mode 100644 packages/dune/dune.3.20.0~alpha2/opam
create mode 100644 packages/dyn/dyn.3.20.0~alpha2/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.20.0~alpha2/opam
create mode 100644 packages/ordering/ordering.3.20.0~alpha2/opam
create mode 100644 packages/stdune/stdune.3.20.0~alpha2/opam
create mode 100644 packages/xdg/xdg.3.20.0~alpha2/opam
(from ocaml/opam:debian-12-ocaml-5.3@sha256:4c128e28b76bc23613903dd2c78bdf0a5de36bc06b2b1eea8d3079d07756aa03)
Unable to find image 'ocaml/opam:debian-12-ocaml-5.3@sha256:4c128e28b76bc23613903dd2c78bdf0a5de36bc06b2b1eea8d3079d07756aa03' locally
docker.io/ocaml/opam@sha256:4c128e28b76bc23613903dd2c78bdf0a5de36bc06b2b1eea8d3079d07756aa03: Pulling from ocaml/opam
6fc4dc4525d4: Already exists
Digest: sha256:4c128e28b76bc23613903dd2c78bdf0a5de36bc06b2b1eea8d3079d07756aa03
Status: Downloaded newer image for ocaml/opam@sha256:4c128e28b76bc23613903dd2c78bdf0a5de36bc06b2b1eea8d3079d07756aa03
2025-08-05 18:28.09 ---> using "136b9da5b4792138f95300e61d33f42dd45fd35a017a7276daca78afc682748d" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam"))
2025-08-05 18:28.09 ---> using "a388c5b35cadef4c2005715355a9e850636d9e91fb537c5a71d1c45917048fdc" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This development version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-08-05 18:28.09 ---> using "bb165827456dcd23ceb0ae78f1e65a9e17509720f29c738eb19faac8565f141e" 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.3.0 (35acd0c5abc5e66cdbd5be16ba77aa6c33a4c724)
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=12
# 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.3
# invariant ["ocaml-base-compiler" {= "5.3.0"}]
# compiler-packages ocaml-base-compiler.5.3.0, ocaml-compiler.5.3.0, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.3/lib/ocaml/stublibs:/home/opam/.opam/5.3/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.3.0
2025-08-05 18:28.09 ---> using "531a32bcfb595c38d922854047b33660029bc78d4418665c28feb76af7b35eb4" 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/"))
2025-08-05 18:28.09 ---> using "c20e3b5fdf01328bb44c0a8a29e7ec3ba2d9ed727ee69b4cd024fdd82aedb434" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-08-05 18:28.10 ---> using "73494652ae5cbe73a570c2fb3cc60f88e48a99790b2100e85d610a014663672a" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-08-05 18:28.10 ---> using "5bbb47b46e833101d358bd0bb3fba662d23c88e2c7611a7dd61fda7a882c4749" 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 bookworm InRelease
- Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
- Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
- Fetched 103 kB in 0s (408 kB/s)
- Reading package lists...
-
2025-08-05 18:28.11 ---> using "14a0dd3c170709748f601221b68c6aec534b4baf4f768f1c44b08e16fb5c04c8" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune.3.20.0~alpha2 3.20.0~alpha2"))
dune is now pinned to version 3.20.0~alpha2
2025-08-05 18:28.11 ---> using "0dc86ba3c315436269fe1d18479eccd8e74e465ed875d7836ac6b36e3e42dd34" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.20.0~alpha2;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-12\\\"\"; 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.20.0~alpha2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
dune.3.20.0~alpha2 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 1 package
- install dune 3.20.0~alpha2 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.20.0~alpha2 (cached)
-> installed dune.3.20.0~alpha2
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-05 18:28.11 ---> using "7d66253a831e807c66c378f2d3d96a3f69d560a0160b70f90707e09e26b92cea" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dates_calc.0.0.6;\
\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-12\\\"\"; 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.6' && 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.6 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 1 package
- install dates_calc 0.0.6
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dates_calc.0.0.6 (https://opam.ocaml.org/cache)
-> installed dates_calc.0.0.6
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-05 18:28.16 ---> saved as "b5c7f058e9424941a8890b825e85ca6f746cb3b75c66ccd2a9fd832252f857c1"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test dates_calc.0.0.6) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile dates_calc 0.0.6
=== install 16 packages
- install alcotest 1.9.0 [required by dates_calc]
- install astring 0.8.5 [required by alcotest]
- install cmdliner 1.3.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.26 [required by dates_calc]
- install qcheck-core 0.26 [required by qcheck]
- install qcheck-ounit 0.26 [required by qcheck]
- install re 1.13.2 [required by alcotest]
- install seq base [required by re]
- install stdlib-shims 0.3.0 [required by alcotest]
- install topkg 1.1.0 [required by fmt, astring, uutf]
- install uutf 1.0.4 [required by alcotest]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.0 (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5 (https://opam.ocaml.org/cache)
-> retrieved cmdliner.1.3.0 (https://opam.ocaml.org/cache)
-> retrieved dates_calc.0.0.6 (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.26, qcheck-core.0.26, qcheck-ounit.0.26 (https://opam.ocaml.org/cache)
-> retrieved re.1.13.2 (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.0 (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> installed re.1.13.2
-> installed qcheck-core.0.26
-> installed ounit2.2.2.7
-> installed qcheck-ounit.0.26
-> installed qcheck.0.26
-> installed cmdliner.1.3.0
-> installed ocamlfind.1.9.8
-> removed dates_calc.0.0.6
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.0
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed alcotest.1.9.0
-> installed dates_calc.0.0.6
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-05 18:29.59 ---> saved as "b1c2d63ff5e37d900b9e5a838a8d360f73f8f6f83cd0fb2441d149878b8f390e"
/home/opam: (run (shell "opam reinstall --with-test --verbose dates_calc.0.0.6;\
\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-12\\\"\"; 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.6' && 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.6
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [dates_calc.0.0.6: extract]
-> retrieved dates_calc.0.0.6 (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.3/.opam-switch/build/dates_calc.0.0.6)
- (cd _build/default/test && ./unit.exe)
- Testing `unit'.
- This run has ID `5SHQ5O8B'.
-
- [OK] add_dates 0 exact.
- [OK] add_dates 1 ambig.
- [OK] first_last_day_of_month 0 all.
-
- Full test results in `~/.opam/5.3/.opam-switch/build/dates_calc.0.0.6/_build/default/test/_build/_tests/unit'.
- Test Successful in 0.002s. 3 tests run.
- (cd _build/default/test && ./prop.exe)
-
random seed: 110511302
- generated error fail pass / total time test name
-
[ ] 0 0 0 0 / 1000 0.0s anon_test_1
[ ] 285 0 0 285 / 1000 0.1s anon_test_1
[ ] 571 0 0 571 / 1000 0.2s anon_test_1
[ ] 825 0 0 825 / 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
[ ] 24 0 0 24 / 1000 0.2s anon_test_2
[ ] 43 0 0 43 / 1000 0.3s anon_test_2
[ ] 59 0 0 59 / 1000 0.4s anon_test_2
[ ] 77 0 0 77 / 1000 0.5s anon_test_2
[ ] 88 0 0 88 / 1000 0.6s anon_test_2
[ ] 107 0 0 107 / 1000 0.7s anon_test_2
[ ] 122 0 0 122 / 1000 0.8s anon_test_2
[ ] 137 0 0 137 / 1000 0.9s anon_test_2
[ ] 151 0 0 151 / 1000 1.1s anon_test_2
[ ] 165 0 0 165 / 1000 1.2s anon_test_2
[ ] 183 0 0 183 / 1000 1.3s anon_test_2
[ ] 205 0 0 205 / 1000 1.4s anon_test_2
[ ] 224 0 0 224 / 1000 1.5s anon_test_2
[ ] 238 0 0 238 / 1000 1.6s anon_test_2
[ ] 250 0 0 250 / 1000 1.7s anon_test_2
[ ] 264 0 0 264 / 1000 1.8s anon_test_2
[ ] 276 0 0 276 / 1000 1.9s anon_test_2
[ ] 286 0 0 286 / 1000 2.0s anon_test_2
[ ] 302 0 0 302 / 1000 2.1s anon_test_2
[ ] 324 0 0 324 / 1000 2.2s anon_test_2
[ ] 347 0 0 347 / 1000 2.3s anon_test_2
[ ] 363 0 0 363 / 1000 2.4s anon_test_2
[ ] 379 0 0 379 / 1000 2.5s anon_test_2
[ ] 398 0 0 398 / 1000 2.6s anon_test_2
[ ] 413 0 0 413 / 1000 2.7s anon_test_2
[ ] 424 0 0 424 / 1000 2.8s anon_test_2
[ ] 442 0 0 442 / 1000 2.9s anon_test_2
[ ] 458 0 0 458 / 1000 3.0s anon_test_2
[ ] 478 0 0 478 / 1000 3.1s anon_test_2
[ ] 496 0 0 496 / 1000 3.3s anon_test_2
[ ] 511 0 0 511 / 1000 3.4s anon_test_2
[ ] 525 0 0 525 / 1000 3.5s anon_test_2
[ ] 543 0 0 543 / 1000 3.6s anon_test_2
[ ] 555 0 0 555 / 1000 3.7s anon_test_2
[ ] 568 0 0 568 / 1000 3.8s anon_test_2
[ ] 588 0 0 588 / 1000 3.9s anon_test_2
[ ] 597 0 0 597 / 1000 4.0s anon_test_2
[ ] 605 0 0 605 / 1000 4.1s anon_test_2
[ ] 618 0 0 618 / 1000 4.2s anon_test_2
[ ] 627 0 0 627 / 1000 4.3s anon_test_2
[ ] 639 0 0 639 / 1000 4.4s anon_test_2
[ ] 651 0 0 651 / 1000 4.6s anon_test_2
[ ] 673 0 0 673 / 1000 4.7s anon_test_2
[ ] 682 0 0 682 / 1000 4.8s anon_test_2
[ ] 704 0 0 704 / 1000 4.9s anon_test_2
[ ] 722 0 0 722 / 1000 5.0s anon_test_2
[ ] 738 0 0 738 / 1000 5.1s anon_test_2
[ ] 755 0 0 755 / 1000 5.2s anon_test_2
[ ] 775 0 0 775 / 1000 5.3s anon_test_2
[ ] 792 0 0 792 / 1000 5.4s anon_test_2
[ ] 808 0 0 808 / 1000 5.5s anon_test_2
[ ] 830 0 0 830 / 1000 5.6s anon_test_2
[ ] 855 0 0 855 / 1000 5.7s anon_test_2
[ ] 869 0 0 869 / 1000 5.8s anon_test_2
[ ] 889 0 0 889 / 1000 5.9s anon_test_2
[ ] 903 0 0 903 / 1000 6.0s anon_test_2
[ ] 920 0 0 920 / 1000 6.1s anon_test_2
[ ] 938 0 0 938 / 1000 6.2s anon_test_2
[ ] 953 0 0 953 / 1000 6.4s anon_test_2
[ ] 970 0 0 970 / 1000 6.5s anon_test_2
[ ] 983 0 0 983 / 1000 6.6s anon_test_2
[✓] 1000 0 0 1000 / 1000 6.7s anon_test_2
-
[ ] 0 0 0 0 / 1000000 0.0s h1
[ ] 11057 0 0 11057 / 1000000 0.1s h1
[ ] 18442 0 0 18442 / 1000000 0.2s h1
[ ] 26484 0 0 26484 / 1000000 0.3s h1
[ ] 36644 0 0 36644 / 1000000 0.4s h1
[ ] 48521 0 0 48521 / 1000000 0.5s h1
[ ] 60386 0 0 60386 / 1000000 0.6s h1
[ ] 72567 0 0 72567 / 1000000 0.7s h1
[ ] 83944 0 0 83944 / 1000000 0.8s h1
[ ] 92352 0 0 92352 / 1000000 0.9s h1
[ ] 101991 0 0 101991 / 1000000 1.0s h1
[ ] 109503 0 0 109503 / 1000000 1.1s h1
[ ] 119875 0 0 119875 / 1000000 1.2s h1
[ ] 131758 0 0 131758 / 1000000 1.3s h1
[ ] 143324 0 0 143324 / 1000000 1.4s h1
[ ] 155275 0 0 155275 / 1000000 1.5s h1
[ ] 167173 0 0 167173 / 1000000 1.6s h1
[ ] 179103 0 0 179103 / 1000000 1.7s h1
[ ] 187998 0 0 187998 / 1000000 1.8s h1
[ ] 198933 0 0 198933 / 1000000 1.9s h1
[ ] 210853 0 0 210853 / 1000000 2.0s h1
[ ] 222228 0 0 222228 / 1000000 2.1s h1
[ ] 233727 0 0 233727 / 1000000 2.2s h1
[ ] 245650 0 0 245650 / 1000000 2.3s h1
[ ] 257506 0 0 257506 / 1000000 2.4s h1
[ ] 269501 0 0 269501 / 1000000 2.5s h1
[ ] 281183 0 0 281183 / 1000000 2.6s h1
[ ] 292692 0 0 292692 / 1000000 2.7s h1 (collecting)
[ ] 304228 0 0 304228 / 1000000 2.8s h1
[ ] 316168 0 0 316168 / 1000000 2.9s h1
[ ] 326799 0 0 326799 / 1000000 3.0s h1
[ ] 336323 0 0 336323 / 1000000 3.1s h1
[ ] 347914 0 0 347914 / 1000000 3.2s h1
[ ] 358726 0 0 358726 / 1000000 3.3s h1
[ ] 369627 0 0 369627 / 1000000 3.4s h1
[ ] 379433 0 0 379433 / 1000000 3.5s h1
[ ] 390521 0 0 390521 / 1000000 3.6s h1
[ ] 402414 0 0 402414 / 1000000 3.7s h1
[ ] 411618 0 0 411618 / 1000000 3.8s h1
[ ] 423502 0 0 423502 / 1000000 3.9s h1
[ ] 431497 0 0 431497 / 1000000 4.0s h1
[ ] 443379 0 0 443379 / 1000000 4.1s h1
[ ] 455046 0 0 455046 / 1000000 4.2s h1
[ ] 466738 0 0 466738 / 1000000 4.3s h1 (collecting)
[ ] 475551 0 0 475551 / 1000000 4.4s h1
[ ] 483384 0 0 483384 / 1000000 4.5s h1
[ ] 495195 0 0 495195 / 1000000 4.6s h1
[ ] 507098 0 0 507098 / 1000000 4.7s h1
[ ] 518990 0 0 518990 / 1000000 4.8s h1
[ ] 530805 0 0 530805 / 1000000 4.9s h1
[ ] 542311 0 0 542311 / 1000000 5.0s h1
[ ] 550539 0 0 550539 / 1000000 5.1s h1
[ ] 557883 0 0 557883 / 1000000 5.2s h1
[ ] 565302 0 0 565302 / 1000000 5.3s h1
[ ] 572311 0 0 572311 / 1000000 5.4s h1
[ ] 579820 0 0 579820 / 1000000 5.5s h1
[ ] 587500 0 0 587500 / 1000000 5.6s h1
[ ] 596236 0 0 596236 / 1000000 5.7s h1
[ ] 606316 0 0 606316 / 1000000 5.8s h1
[ ] 616997 0 0 616997 / 1000000 5.9s h1
[ ] 624618 0 0 624618 / 1000000 6.0s h1
[ ] 631812 0 0 631812 / 1000000 6.1s h1
[ ] 639085 0 0 639085 / 1000000 6.2s h1
[ ] 646956 0 0 646956 / 1000000 6.3s h1
[ ] 654405 0 0 654405 / 1000000 6.4s h1
[ ] 661632 0 0 661632 / 1000000 6.5s h1
[ ] 668978 0 0 668978 / 1000000 6.6s h1
[ ] 676315 0 0 676315 / 1000000 6.7s h1
[ ] 683620 0 0 683620 / 1000000 6.8s h1
[ ] 690990 0 0 690990 / 1000000 6.9s h1
[ ] 698584 0 0 698584 / 1000000 7.0s h1
[ ] 705842 0 0 705842 / 1000000 7.1s h1
[ ] 713263 0 0 713263 / 1000000 7.2s h1
[ ] 720603 0 0 720603 / 1000000 7.3s h1
[ ] 728332 0 0 728332 / 1000000 7.4s h1
[ ] 735514 0 0 735514 / 1000000 7.5s h1
[ ] 742675 0 0 742675 / 1000000 7.6s h1
[ ] 749488 0 0 749488 / 1000000 7.7s h1
[ ] 756502 0 0 756502 / 1000000 7.8s h1
[ ] 763539 0 0 763539 / 1000000 7.9s h1
[ ] 770651 0 0 770651 / 1000000 8.0s h1
[ ] 777779 0 0 777779 / 1000000 8.1s h1
[ ] 784938 0 0 784938 / 1000000 8.2s h1
[ ] 792034 0 0 792034 / 1000000 8.3s h1
[ ] 799053 0 0 799053 / 1000000 8.4s h1
[ ] 806094 0 0 806094 / 1000000 8.5s h1 (collecting)
[ ] 813180 0 0 813180 / 1000000 8.6s h1
[ ] 820335 0 0 820335 / 1000000 8.7s h1
[ ] 827401 0 0 827401 / 1000000 8.8s h1
[ ] 834487 0 0 834487 / 1000000 8.9s h1
[ ] 841454 0 0 841454 / 1000000 9.0s h1
[ ] 848414 0 0 848414 / 1000000 9.1s h1
[ ] 855432 0 0 855432 / 1000000 9.2s h1
[ ] 862497 0 0 862497 / 1000000 9.3s h1
[ ] 869442 0 0 869442 / 1000000 9.4s h1
[ ] 876524 0 0 876524 / 1000000 9.5s h1
[ ] 883587 0 0 883587 / 1000000 9.6s h1
[ ] 890492 0 0 890492 / 1000000 9.7s h1
[ ] 897434 0 0 897434 / 1000000 9.8s h1
[ ] 904559 0 0 904559 / 1000000 9.9s h1
[ ] 911474 0 0 911474 / 1000000 10.0s h1
[ ] 918456 0 0 918456 / 1000000 10.1s h1
[ ] 925495 0 0 925495 / 1000000 10.2s h1
[ ] 933019 0 0 933019 / 1000000 10.3s h1
[ ] 940447 0 0 940447 / 1000000 10.4s h1
[ ] 947810 0 0 947810 / 1000000 10.5s h1
[ ] 954868 0 0 954868 / 1000000 10.6s h1
[ ] 962279 0 0 962279 / 1000000 10.7s h1 (collecting)
[ ] 970933 0 0 970933 / 1000000 10.8s h1
[ ] 978761 0 0 978761 / 1000000 10.9s h1
[ ] 985975 0 0 985975 / 1000000 11.0s h1
[ ] 993304 0 0 993304 / 1000000 11.1s h1
[✓] 1000000 0 0 1000000 / 1000000 11.2s h1
-
[ ] 0 0 0 0 / 1000000 0.0s h2
[ ] 3622 0 0 3622 / 1000000 0.1s h2
[ ] 7144 0 0 7144 / 1000000 0.2s h2
[ ] 10728 0 0 10728 / 1000000 0.3s h2
[ ] 14313 0 0 14313 / 1000000 0.4s h2
[ ] 17853 0 0 17853 / 1000000 0.5s h2
[ ] 21424 0 0 21424 / 1000000 0.6s h2
[ ] 25152 0 0 25152 / 1000000 0.7s h2
[ ] 28817 0 0 28817 / 1000000 0.8s h2
[ ] 32354 0 0 32354 / 1000000 0.9s h2
[ ] 35963 0 0 35963 / 1000000 1.0s h2
[ ] 39704 0 0 39704 / 1000000 1.1s h2
[ ] 43336 0 0 43336 / 1000000 1.2s h2
[ ] 46875 0 0 46875 / 1000000 1.3s h2
[ ] 51267 0 0 51267 / 1000000 1.4s h2
[ ] 55015 0 0 55015 / 1000000 1.5s h2
[ ] 58655 0 0 58655 / 1000000 1.6s h2
[ ] 62773 0 0 62773 / 1000000 1.7s h2
[ ] 66869 0 0 66869 / 1000000 1.8s h2
[ ] 70947 0 0 70947 / 1000000 1.9s h2
[ ] 74588 0 0 74588 / 1000000 2.0s h2
[ ] 78189 0 0 78189 / 1000000 2.1s h2
[ ] 81848 0 0 81848 / 1000000 2.2s h2
[ ] 85556 0 0 85556 / 1000000 2.3s h2
[ ] 89168 0 0 89168 / 1000000 2.4s h2
[ ] 92764 0 0 92764 / 1000000 2.5s h2
[ ] 96426 0 0 96426 / 1000000 2.6s h2
[ ] 100092 0 0 100092 / 1000000 2.7s h2
[ ] 103998 0 0 103998 / 1000000 2.8s h2
[ ] 107734 0 0 107734 / 1000000 2.9s h2
[ ] 111442 0 0 111442 / 1000000 3.0s h2
[ ] 115092 0 0 115092 / 1000000 3.1s h2
[ ] 119084 0 0 119084 / 1000000 3.2s h2
[ ] 122847 0 0 122847 / 1000000 3.3s h2
[ ] 126480 0 0 126480 / 1000000 3.4s h2
[ ] 130078 0 0 130078 / 1000000 3.5s h2
[ ] 133655 0 0 133655 / 1000000 3.6s h2
[ ] 137293 0 0 137293 / 1000000 3.7s h2
[ ] 140884 0 0 140884 / 1000000 3.8s h2
[ ] 144457 0 0 144457 / 1000000 3.9s h2
[ ] 148041 0 0 148041 / 1000000 4.0s h2
[ ] 151631 0 0 151631 / 1000000 4.1s h2
[ ] 155212 0 0 155212 / 1000000 4.2s h2
[ ] 158758 0 0 158758 / 1000000 4.3s h2
[ ] 162341 0 0 162341 / 1000000 4.4s h2
[ ] 165940 0 0 165940 / 1000000 4.5s h2
[ ] 169537 0 0 169537 / 1000000 4.6s h2
[ ] 173142 0 0 173142 / 1000000 4.7s h2
[ ] 176825 0 0 176825 / 1000000 4.8s h2
[ ] 180432 0 0 180432 / 1000000 4.9s h2
[ ] 184112 0 0 184112 / 1000000 5.0s h2
[ ] 187871 0 0 187871 / 1000000 5.1s h2
[ ] 191536 0 0 191536 / 1000000 5.2s h2
[ ] 195169 0 0 195169 / 1000000 5.3s h2
[ ] 198828 0 0 198828 / 1000000 5.4s h2
[ ] 202465 0 0 202465 / 1000000 5.5s h2
[ ] 206211 0 0 206211 / 1000000 5.6s h2
[ ] 209879 0 0 209879 / 1000000 5.7s h2
[ ] 213529 0 0 213529 / 1000000 5.8s h2
[ ] 217183 0 0 217183 / 1000000 5.9s h2
[ ] 220785 0 0 220785 / 1000000 6.0s h2
[ ] 224476 0 0 224476 / 1000000 6.1s h2
[ ] 228174 0 0 228174 / 1000000 6.2s h2
[ ] 231862 0 0 231862 / 1000000 6.3s h2
[ ] 235500 0 0 235500 / 1000000 6.4s h2
[ ] 239219 0 0 239219 / 1000000 6.5s h2
[ ] 242847 0 0 242847 / 1000000 6.6s h2
[ ] 246547 0 0 246547 / 1000000 6.7s h2
[ ] 250224 0 0 250224 / 1000000 6.8s h2
[ ] 253968 0 0 253968 / 1000000 6.9s h2
[ ] 257592 0 0 257592 / 1000000 7.0s h2
[ ] 261250 0 0 261250 / 1000000 7.1s h2
[ ] 264939 0 0 264939 / 1000000 7.2s h2
[ ] 268676 0 0 268676 / 1000000 7.3s h2
[ ] 272318 0 0 272318 / 1000000 7.4s h2
[ ] 275964 0 0 275964 / 1000000 7.5s h2
[ ] 279760 0 0 279760 / 1000000 7.6s h2
[ ] 283466 0 0 283466 / 1000000 7.7s h2
[ ] 287170 0 0 287170 / 1000000 7.8s h2
[ ] 290854 0 0 290854 / 1000000 7.9s h2
[ ] 294527 0 0 294527 / 1000000 8.0s h2
[ ] 298182 0 0 298182 / 1000000 8.1s h2
[ ] 301896 0 0 301896 / 1000000 8.2s h2
[ ] 305552 0 0 305552 / 1000000 8.3s h2
[ ] 309237 0 0 309237 / 1000000 8.4s h2
[ ] 312971 0 0 312971 / 1000000 8.5s h2
[ ] 316690 0 0 316690 / 1000000 8.6s h2
[ ] 320466 0 0 320466 / 1000000 8.7s h2
[ ] 324168 0 0 324168 / 1000000 8.8s h2
[ ] 327853 0 0 327853 / 1000000 8.9s h2
[ ] 331614 0 0 331614 / 1000000 9.0s h2
[ ] 335307 0 0 335307 / 1000000 9.1s h2
[ ] 338992 0 0 338992 / 1000000 9.2s h2
[ ] 342735 0 0 342735 / 1000000 9.3s h2
[ ] 346512 0 0 346512 / 1000000 9.4s h2
[ ] 350146 0 0 350146 / 1000000 9.5s h2
[ ] 353791 0 0 353791 / 1000000 9.6s h2
[ ] 357453 0 0 357453 / 1000000 9.7s h2
[ ] 361100 0 0 361100 / 1000000 9.8s h2
[ ] 364866 0 0 364866 / 1000000 9.9s h2
[ ] 368606 0 0 368606 / 1000000 10.0s h2
[ ] 372239 0 0 372239 / 1000000 10.1s h2
[ ] 375886 0 0 375886 / 1000000 10.2s h2
[ ] 379574 0 0 379574 / 1000000 10.3s h2
[ ] 383286 0 0 383286 / 1000000 10.4s h2
[ ] 386951 0 0 386951 / 1000000 10.5s h2
[ ] 390594 0 0 390594 / 1000000 10.6s h2
[ ] 394259 0 0 394259 / 1000000 10.7s h2
[ ] 398005 0 0 398005 / 1000000 10.8s h2
[ ] 401745 0 0 401745 / 1000000 10.9s h2
[ ] 405403 0 0 405403 / 1000000 11.0s h2
[ ] 409156 0 0 409156 / 1000000 11.1s h2
[ ] 412875 0 0 412875 / 1000000 11.2s h2
[ ] 416549 0 0 416549 / 1000000 11.3s h2
[ ] 420275 0 0 420275 / 1000000 11.4s h2
[ ] 424053 0 0 424053 / 1000000 11.5s h2
[ ] 427764 0 0 427764 / 1000000 11.6s h2
[ ] 431491 0 0 431491 / 1000000 11.7s h2
[ ] 435162 0 0 435162 / 1000000 11.8s h2
[ ] 438855 0 0 438855 / 1000000 11.9s h2
[ ] 442614 0 0 442614 / 1000000 12.0s h2
[ ] 446378 0 0 446378 / 1000000 12.1s h2
[ ] 450099 0 0 450099 / 1000000 12.2s h2
[ ] 453817 0 0 453817 / 1000000 12.3s h2
[ ] 457533 0 0 457533 / 1000000 12.4s h2
[ ] 461305 0 0 461305 / 1000000 12.5s h2
[ ] 465073 0 0 465073 / 1000000 12.6s h2
[ ] 468798 0 0 468798 / 1000000 12.7s h2
[ ] 472538 0 0 472538 / 1000000 12.8s h2
[ ] 476290 0 0 476290 / 1000000 12.9s h2
[ ] 480047 0 0 480047 / 1000000 13.0s h2
[ ] 483766 0 0 483766 / 1000000 13.1s h2
[ ] 487418 0 0 487418 / 1000000 13.2s h2
[ ] 491184 0 0 491184 / 1000000 13.3s h2
[ ] 494888 0 0 494888 / 1000000 13.4s h2
[ ] 498505 0 0 498505 / 1000000 13.5s h2
[ ] 502169 0 0 502169 / 1000000 13.6s h2
[ ] 505900 0 0 505900 / 1000000 13.7s h2
[ ] 509717 0 0 509717 / 1000000 13.8s h2
[ ] 513426 0 0 513426 / 1000000 13.9s h2
[ ] 517168 0 0 517168 / 1000000 14.0s h2
[ ] 520952 0 0 520952 / 1000000 14.1s h2
[ ] 524740 0 0 524740 / 1000000 14.2s h2
[ ] 528450 0 0 528450 / 1000000 14.3s h2
[ ] 532084 0 0 532084 / 1000000 14.4s h2
[ ] 535571 0 0 535571 / 1000000 14.5s h2
[ ] 539294 0 0 539294 / 1000000 14.6s h2
[ ] 542952 0 0 542952 / 1000000 14.7s h2
[ ] 546681 0 0 546681 / 1000000 14.8s h2
[ ] 550264 0 0 550264 / 1000000 14.9s h2
[ ] 553906 0 0 553906 / 1000000 15.0s h2
[ ] 557566 0 0 557566 / 1000000 15.1s h2
[ ] 561548 0 0 561548 / 1000000 15.2s h2
[ ] 565152 0 0 565152 / 1000000 15.3s h2
[ ] 568874 0 0 568874 / 1000000 15.4s h2
[ ] 572629 0 0 572629 / 1000000 15.5s h2
[ ] 576202 0 0 576202 / 1000000 15.6s h2
[ ] 579797 0 0 579797 / 1000000 15.7s h2
[ ] 583459 0 0 583459 / 1000000 15.8s h2
[ ] 587142 0 0 587142 / 1000000 15.9s h2
[ ] 590770 0 0 590770 / 1000000 16.0s h2
[ ] 594530 0 0 594530 / 1000000 16.1s h2
[ ] 598145 0 0 598145 / 1000000 16.2s h2
[ ] 601795 0 0 601795 / 1000000 16.3s h2
[ ] 605425 0 0 605425 / 1000000 16.4s h2
[ ] 609084 0 0 609084 / 1000000 16.5s h2
[ ] 612781 0 0 612781 / 1000000 16.6s h2
[ ] 616332 0 0 616332 / 1000000 16.7s h2
[ ] 619906 0 0 619906 / 1000000 16.8s h2
[ ] 623394 0 0 623394 / 1000000 16.9s h2
[ ] 626941 0 0 626941 / 1000000 17.0s h2
[ ] 630462 0 0 630462 / 1000000 17.1s h2
[ ] 633989 0 0 633989 / 1000000 17.2s h2
[ ] 637557 0 0 637557 / 1000000 17.3s h2
[ ] 641051 0 0 641051 / 1000000 17.4s h2
[ ] 644646 0 0 644646 / 1000000 17.5s h2 ( testing)
[ ] 648192 0 0 648192 / 1000000 17.6s h2
[ ] 651748 0 0 651748 / 1000000 17.7s h2
[ ] 655262 0 0 655262 / 1000000 17.8s h2
[ ] 658781 0 0 658781 / 1000000 17.9s h2
[ ] 662344 0 0 662344 / 1000000 18.0s h2
[ ] 665906 0 0 665906 / 1000000 18.1s h2
[ ] 669517 0 0 669517 / 1000000 18.2s h2
[ ] 673061 0 0 673061 / 1000000 18.3s h2
[ ] 676572 0 0 676572 / 1000000 18.4s h2
[ ] 680167 0 0 680167 / 1000000 18.5s h2
[ ] 683723 0 0 683723 / 1000000 18.6s h2
[ ] 687489 0 0 687489 / 1000000 18.7s h2
[ ] 691309 0 0 691309 / 1000000 18.8s h2
[ ] 695169 0 0 695169 / 1000000 18.9s h2
[ ] 699068 0 0 699068 / 1000000 19.0s h2
[ ] 702535 0 0 702535 / 1000000 19.1s h2
[ ] 706164 0 0 706164 / 1000000 19.2s h2
[ ] 709774 0 0 709774 / 1000000 19.3s h2
[ ] 713248 0 0 713248 / 1000000 19.4s h2
[ ] 716845 0 0 716845 / 1000000 19.5s h2
[ ] 720439 0 0 720439 / 1000000 19.6s h2
[ ] 724076 0 0 724076 / 1000000 19.7s h2
[ ] 727648 0 0 727648 / 1000000 19.8s h2
[ ] 731233 0 0 731233 / 1000000 19.9s h2
[ ] 734926 0 0 734926 / 1000000 20.0s h2
[ ] 738603 0 0 738603 / 1000000 20.1s h2
[ ] 742326 0 0 742326 / 1000000 20.2s h2
[ ] 745966 0 0 745966 / 1000000 20.3s h2
[ ] 749598 0 0 749598 / 1000000 20.4s h2
[ ] 753368 0 0 753368 / 1000000 20.5s h2
[ ] 757109 0 0 757109 / 1000000 20.6s h2
[ ] 760677 0 0 760677 / 1000000 20.7s h2
[ ] 764331 0 0 764331 / 1000000 20.8s h2
[ ] 767979 0 0 767979 / 1000000 20.9s h2
[ ] 771669 0 0 771669 / 1000000 21.0s h2
[ ] 775314 0 0 775314 / 1000000 21.1s h2
[ ] 778983 0 0 778983 / 1000000 21.2s h2
[ ] 782688 0 0 782688 / 1000000 21.3s h2
[ ] 786422 0 0 786422 / 1000000 21.4s h2
[ ] 790145 0 0 790145 / 1000000 21.5s h2
[ ] 793699 0 0 793699 / 1000000 21.6s h2
[ ] 797263 0 0 797263 / 1000000 21.7s h2
[ ] 800966 0 0 800966 / 1000000 21.8s h2
[ ] 804616 0 0 804616 / 1000000 21.9s h2
[ ] 808228 0 0 808228 / 1000000 22.0s h2
[ ] 811893 0 0 811893 / 1000000 22.1s h2
[ ] 815626 0 0 815626 / 1000000 22.2s h2
[ ] 819313 0 0 819313 / 1000000 22.3s h2
[ ] 823018 0 0 823018 / 1000000 22.4s h2 (collecting)
[ ] 826770 0 0 826770 / 1000000 22.5s h2
[ ] 830443 0 0 830443 / 1000000 22.6s h2
[ ] 834132 0 0 834132 / 1000000 22.7s h2
[ ] 837822 0 0 837822 / 1000000 22.8s h2
[ ] 841534 0 0 841534 / 1000000 22.9s h2
[ ] 845298 0 0 845298 / 1000000 23.0s h2
[ ] 849089 0 0 849089 / 1000000 23.1s h2
[ ] 852774 0 0 852774 / 1000000 23.2s h2
[ ] 856459 0 0 856459 / 1000000 23.3s h2
[ ] 860104 0 0 860104 / 1000000 23.4s h2
[ ] 863668 0 0 863668 / 1000000 23.5s h2
[ ] 867310 0 0 867310 / 1000000 23.6s h2
[ ] 870999 0 0 870999 / 1000000 23.7s h2 (collecting)
[ ] 874713 0 0 874713 / 1000000 23.8s h2
[ ] 878391 0 0 878391 / 1000000 23.9s h2
[ ] 882066 0 0 882066 / 1000000 24.0s h2
[ ] 885830 0 0 885830 / 1000000 24.1s h2
[ ] 889582 0 0 889582 / 1000000 24.2s h2
[ ] 893285 0 0 893285 / 1000000 24.3s h2
[ ] 897016 0 0 897016 / 1000000 24.4s h2
[ ] 900607 0 0 900607 / 1000000 24.5s h2
[ ] 904264 0 0 904264 / 1000000 24.6s h2
[ ] 908071 0 0 908071 / 1000000 24.7s h2
[ ] 911638 0 0 911638 / 1000000 24.8s h2
[ ] 915158 0 0 915158 / 1000000 24.9s h2
[ ] 918812 0 0 918812 / 1000000 25.0s h2
[ ] 922505 0 0 922505 / 1000000 25.1s h2
[ ] 926434 0 0 926434 / 1000000 25.2s h2
[ ] 930064 0 0 930064 / 1000000 25.3s h2
[ ] 933782 0 0 933782 / 1000000 25.4s h2
[ ] 937554 0 0 937554 / 1000000 25.5s h2 (collecting)
[ ] 941296 0 0 941296 / 1000000 25.6s h2
[ ] 944785 0 0 944785 / 1000000 25.7s h2
[ ] 948409 0 0 948409 / 1000000 25.8s h2
[ ] 952055 0 0 952055 / 1000000 25.9s h2
[ ] 955591 0 0 955591 / 1000000 26.0s h2
[ ] 959235 0 0 959235 / 1000000 26.1s h2
[ ] 962885 0 0 962885 / 1000000 26.2s h2 (collecting)
[ ] 966401 0 0 966401 / 1000000 26.3s h2
[ ] 970015 0 0 970015 / 1000000 26.4s h2
[ ] 973612 0 0 973612 / 1000000 26.5s h2
[ ] 977296 0 0 977296 / 1000000 26.6s h2
[ ] 980988 0 0 980988 / 1000000 26.7s h2
[ ] 984691 0 0 984691 / 1000000 26.8s h2
[ ] 988401 0 0 988401 / 1000000 26.9s h2
[ ] 992001 0 0 992001 / 1000000 27.0s h2
[ ] 995554 0 0 995554 / 1000000 27.1s h2
[ ] 999180 0 0 999180 / 1000000 27.2s h2
[✓] 1000000 0 0 1000000 / 1000000 27.2s h2
-
[ ] 0 0 0 0 / 1000000 0.0s h3
[ ] 6954 0 0 6954 / 1000000 0.1s h3
[ ] 13882 0 0 13882 / 1000000 0.2s h3
[ ] 20924 0 0 20924 / 1000000 0.3s h3
[ ] 28107 0 0 28107 / 1000000 0.4s h3
[ ] 35229 0 0 35229 / 1000000 0.5s h3
[ ] 42266 0 0 42266 / 1000000 0.6s h3
[ ] 49345 0 0 49345 / 1000000 0.7s h3
[ ] 56379 0 0 56379 / 1000000 0.8s h3
[ ] 63611 0 0 63611 / 1000000 0.9s h3
[ ] 70789 0 0 70789 / 1000000 1.0s h3
[ ] 77817 0 0 77817 / 1000000 1.1s h3
[ ] 85067 0 0 85067 / 1000000 1.2s h3
[ ] 92178 0 0 92178 / 1000000 1.3s h3
[ ] 99329 0 0 99329 / 1000000 1.4s h3
[ ] 106688 0 0 106688 / 1000000 1.5s h3 (collecting)
[ ] 113792 0 0 113792 / 1000000 1.6s h3
[ ] 120775 0 0 120775 / 1000000 1.7s h3
[ ] 127841 0 0 127841 / 1000000 1.8s h3
[ ] 135026 0 0 135026 / 1000000 1.9s h3
[ ] 142340 0 0 142340 / 1000000 2.0s h3
[ ] 151014 0 0 151014 / 1000000 2.1s h3
[ ] 158567 0 0 158567 / 1000000 2.2s h3
[ ] 167447 0 0 167447 / 1000000 2.3s h3
[ ] 174590 0 0 174590 / 1000000 2.4s h3
[ ] 181933 0 0 181933 / 1000000 2.5s h3
[ ] 189509 0 0 189509 / 1000000 2.6s h3 (generating)
[ ] 196667 0 0 196667 / 1000000 2.7s h3
[ ] 203728 0 0 203728 / 1000000 2.8s h3
[ ] 210869 0 0 210869 / 1000000 2.9s h3
[ ] 218100 0 0 218100 / 1000000 3.0s h3
[ ] 225149 0 0 225149 / 1000000 3.1s h3
[ ] 232258 0 0 232258 / 1000000 3.2s h3 ( testing)
[ ] 239550 0 0 239550 / 1000000 3.3s h3
[ ] 246899 0 0 246899 / 1000000 3.4s h3
[ ] 253745 0 0 253745 / 1000000 3.5s h3
[ ] 260777 0 0 260777 / 1000000 3.6s h3
[ ] 267855 0 0 267855 / 1000000 3.7s h3
[ ] 274922 0 0 274922 / 1000000 3.8s h3
[ ] 281999 0 0 281999 / 1000000 3.9s h3
[ ] 288990 0 0 288990 / 1000000 4.0s h3
[ ] 296105 0 0 296105 / 1000000 4.1s h3
[ ] 303216 0 0 303216 / 1000000 4.2s h3
[ ] 310379 0 0 310379 / 1000000 4.3s h3
[ ] 317599 0 0 317599 / 1000000 4.4s h3
[ ] 324943 0 0 324943 / 1000000 4.5s h3
[ ] 332098 0 0 332098 / 1000000 4.6s h3
[ ] 339384 0 0 339384 / 1000000 4.7s h3
[ ] 347753 0 0 347753 / 1000000 4.8s h3
[ ] 357583 0 0 357583 / 1000000 4.9s h3
[ ] 368011 0 0 368011 / 1000000 5.0s h3
[ ] 376710 0 0 376710 / 1000000 5.1s h3
[ ] 385833 0 0 385833 / 1000000 5.2s h3
[ ] 393087 0 0 393087 / 1000000 5.3s h3
[ ] 400344 0 0 400344 / 1000000 5.4s h3
[ ] 407290 0 0 407290 / 1000000 5.5s h3
[ ] 414369 0 0 414369 / 1000000 5.6s h3
[ ] 421649 0 0 421649 / 1000000 5.7s h3
[ ] 429036 0 0 429036 / 1000000 5.8s h3
[ ] 436450 0 0 436450 / 1000000 5.9s h3
[ ] 443819 0 0 443819 / 1000000 6.0s h3
[ ] 451257 0 0 451257 / 1000000 6.1s h3
[ ] 458396 0 0 458396 / 1000000 6.2s h3 (generating)
[ ] 465515 0 0 465515 / 1000000 6.3s h3
[ ] 475930 0 0 475930 / 1000000 6.4s h3
[ ] 483653 0 0 483653 / 1000000 6.5s h3
[ ] 490927 0 0 490927 / 1000000 6.6s h3
[ ] 498066 0 0 498066 / 1000000 6.7s h3
[ ] 505013 0 0 505013 / 1000000 6.8s h3
[ ] 512246 0 0 512246 / 1000000 6.9s h3
[ ] 519398 0 0 519398 / 1000000 7.0s h3
[ ] 526499 0 0 526499 / 1000000 7.1s h3
[ ] 533708 0 0 533708 / 1000000 7.2s h3
[ ] 540978 0 0 540978 / 1000000 7.3s h3
[ ] 548226 0 0 548226 / 1000000 7.4s h3
[ ] 555229 0 0 555229 / 1000000 7.5s h3
[ ] 562284 0 0 562284 / 1000000 7.6s h3
[ ] 569506 0 0 569506 / 1000000 7.7s h3
[ ] 576643 0 0 576643 / 1000000 7.8s h3
[ ] 583799 0 0 583799 / 1000000 7.9s h3
[ ] 591184 0 0 591184 / 1000000 8.0s h3
[ ] 598347 0 0 598347 / 1000000 8.1s h3
[ ] 605399 0 0 605399 / 1000000 8.2s h3
[ ] 612308 0 0 612308 / 1000000 8.3s h3
[ ] 619579 0 0 619579 / 1000000 8.4s h3
[ ] 626776 0 0 626776 / 1000000 8.5s h3
[ ] 633865 0 0 633865 / 1000000 8.6s h3
[ ] 640880 0 0 640880 / 1000000 8.7s h3
[ ] 648062 0 0 648062 / 1000000 8.8s h3
[ ] 655155 0 0 655155 / 1000000 8.9s h3
[ ] 662222 0 0 662222 / 1000000 9.0s h3
[ ] 669328 0 0 669328 / 1000000 9.1s h3
[ ] 676382 0 0 676382 / 1000000 9.2s h3 (collecting)
[ ] 683440 0 0 683440 / 1000000 9.3s h3
[ ] 690587 0 0 690587 / 1000000 9.4s h3
[ ] 697817 0 0 697817 / 1000000 9.5s h3
[ ] 704931 0 0 704931 / 1000000 9.6s h3
[ ] 712038 0 0 712038 / 1000000 9.7s h3
[ ] 719360 0 0 719360 / 1000000 9.8s h3
[ ] 726834 0 0 726834 / 1000000 9.9s h3
[ ] 734086 0 0 734086 / 1000000 10.0s h3
[ ] 744104 0 0 744104 / 1000000 10.1s h3
[ ] 753591 0 0 753591 / 1000000 10.2s h3
[ ] 760919 0 0 760919 / 1000000 10.3s h3
[ ] 768253 0 0 768253 / 1000000 10.4s h3
[ ] 778991 0 0 778991 / 1000000 10.5s h3
[ ] 786369 0 0 786369 / 1000000 10.6s h3
[ ] 796591 0 0 796591 / 1000000 10.7s h3
[ ] 804076 0 0 804076 / 1000000 10.8s h3
[ ] 812196 0 0 812196 / 1000000 10.9s h3
[ ] 823951 0 0 823951 / 1000000 11.0s h3
[ ] 835251 0 0 835251 / 1000000 11.1s h3
[ ] 844642 0 0 844642 / 1000000 11.2s h3
[ ] 852822 0 0 852822 / 1000000 11.3s h3
[ ] 864383 0 0 864383 / 1000000 11.4s h3
[ ] 875781 0 0 875781 / 1000000 11.5s h3
[ ] 886720 0 0 886720 / 1000000 11.6s h3
[ ] 894014 0 0 894014 / 1000000 11.7s h3
[ ] 901257 0 0 901257 / 1000000 11.8s h3
[ ] 908548 0 0 908548 / 1000000 11.9s h3
[ ] 916141 0 0 916141 / 1000000 12.0s h3
[ ] 923779 0 0 923779 / 1000000 12.1s h3
[ ] 934267 0 0 934267 / 1000000 12.2s h3
[ ] 945614 0 0 945614 / 1000000 12.3s h3
[ ] 956791 0 0 956791 / 1000000 12.4s h3
[ ] 967809 0 0 967809 / 1000000 12.5s h3
[ ] 979160 0 0 979160 / 1000000 12.6s h3
[ ] 990952 0 0 990952 / 1000000 12.7s h3
[✓] 1000000 0 0 1000000 / 1000000 12.8s h3
-
[ ] 0 0 0 0 / 1000000 0.0s h4
[ ] 3970 0 0 3970 / 1000000 0.1s h4 (collecting)
[ ] 7786 0 0 7786 / 1000000 0.2s h4
[ ] 11618 0 0 11618 / 1000000 0.3s h4
[ ] 15489 0 0 15489 / 1000000 0.4s h4
[ ] 19481 0 0 19481 / 1000000 0.5s h4
[ ] 23442 0 0 23442 / 1000000 0.6s h4
[ ] 27430 0 0 27430 / 1000000 0.7s h4
[ ] 31373 0 0 31373 / 1000000 0.8s h4
[ ] 35376 0 0 35376 / 1000000 0.9s h4
[ ] 39031 0 0 39031 / 1000000 1.0s h4
[ ] 42020 0 0 42020 / 1000000 1.1s h4
[ ] 45640 0 0 45640 / 1000000 1.2s h4
[ ] 49453 0 0 49453 / 1000000 1.3s h4
[ ] 53132 0 0 53132 / 1000000 1.4s h4
[ ] 57045 0 0 57045 / 1000000 1.5s h4
[ ] 61099 0 0 61099 / 1000000 1.6s h4
[ ] 65112 0 0 65112 / 1000000 1.7s h4
[ ] 69092 0 0 69092 / 1000000 1.8s h4
[ ] 73080 0 0 73080 / 1000000 1.9s h4
[ ] 76952 0 0 76952 / 1000000 2.0s h4
[ ] 80946 0 0 80946 / 1000000 2.1s h4
[ ] 84937 0 0 84937 / 1000000 2.2s h4
[ ] 88924 0 0 88924 / 1000000 2.3s h4
[ ] 92931 0 0 92931 / 1000000 2.4s h4
[ ] 96949 0 0 96949 / 1000000 2.5s h4
[ ] 100879 0 0 100879 / 1000000 2.6s h4
[ ] 104944 0 0 104944 / 1000000 2.7s h4
[ ] 108847 0 0 108847 / 1000000 2.8s h4
[ ] 112820 0 0 112820 / 1000000 2.9s h4
[ ] 116828 0 0 116828 / 1000000 3.0s h4
[ ] 120686 0 0 120686 / 1000000 3.1s h4
[ ] 124585 0 0 124585 / 1000000 3.2s h4
[ ] 128639 0 0 128639 / 1000000 3.3s h4
[ ] 132058 0 0 132058 / 1000000 3.4s h4
[ ] 135737 0 0 135737 / 1000000 3.5s h4
[ ] 139658 0 0 139658 / 1000000 3.6s h4 (generating)
[ ] 143664 0 0 143664 / 1000000 3.7s h4
[ ] 147662 0 0 147662 / 1000000 3.8s h4
[ ] 151356 0 0 151356 / 1000000 3.9s h4
[ ] 155298 0 0 155298 / 1000000 4.0s h4
[ ] 159139 0 0 159139 / 1000000 4.1s h4
[ ] 162317 0 0 162317 / 1000000 4.2s h4
[ ] 166158 0 0 166158 / 1000000 4.3s h4
[ ] 170083 0 0 170083 / 1000000 4.4s h4
[ ] 173981 0 0 173981 / 1000000 4.5s h4
[ ] 177951 0 0 177951 / 1000000 4.6s h4
[ ] 181673 0 0 181673 / 1000000 4.7s h4
[ ] 185636 0 0 185636 / 1000000 4.8s h4
[ ] 189652 0 0 189652 / 1000000 4.9s h4
[ ] 193588 0 0 193588 / 1000000 5.0s h4
[ ] 196601 0 0 196601 / 1000000 5.1s h4
[ ] 199508 0 0 199508 / 1000000 5.2s h4
[ ] 202377 0 0 202377 / 1000000 5.3s h4
[ ] 205392 0 0 205392 / 1000000 5.4s h4
[ ] 208340 0 0 208340 / 1000000 5.5s h4
[ ] 211262 0 0 211262 / 1000000 5.6s h4
[ ] 214469 0 0 214469 / 1000000 5.7s h4
[ ] 218378 0 0 218378 / 1000000 5.8s h4
[ ] 222347 0 0 222347 / 1000000 5.9s h4
[ ] 226302 0 0 226302 / 1000000 6.0s h4
[ ] 230227 0 0 230227 / 1000000 6.1s h4
[ ] 234089 0 0 234089 / 1000000 6.2s h4
[ ] 237931 0 0 237931 / 1000000 6.3s h4
[ ] 241526 0 0 241526 / 1000000 6.4s h4
[ ] 245149 0 0 245149 / 1000000 6.5s h4
[ ] 248967 0 0 248967 / 1000000 6.6s h4
[ ] 252694 0 0 252694 / 1000000 6.7s h4
[ ] 256578 0 0 256578 / 1000000 6.8s h4
[ ] 260558 0 0 260558 / 1000000 6.9s h4
[ ] 264483 0 0 264483 / 1000000 7.0s h4
[ ] 268471 0 0 268471 / 1000000 7.1s h4
[ ] 272179 0 0 272179 / 1000000 7.2s h4
[ ] 275943 0 0 275943 / 1000000 7.3s h4
[ ] 279560 0 0 279560 / 1000000 7.4s h4 (collecting)
[ ] 283375 0 0 283375 / 1000000 7.5s h4
[ ] 287438 0 0 287438 / 1000000 7.6s h4
[ ] 291493 0 0 291493 / 1000000 7.7s h4
[ ] 295608 0 0 295608 / 1000000 7.8s h4
[ ] 299650 0 0 299650 / 1000000 7.9s h4
[ ] 303596 0 0 303596 / 1000000 8.0s h4
[ ] 307613 0 0 307613 / 1000000 8.1s h4
[ ] 311685 0 0 311685 / 1000000 8.2s h4
[ ] 315411 0 0 315411 / 1000000 8.3s h4
[ ] 318584 0 0 318584 / 1000000 8.4s h4
[ ] 321585 0 0 321585 / 1000000 8.5s h4
[ ] 324550 0 0 324550 / 1000000 8.6s h4
[ ] 327518 0 0 327518 / 1000000 8.7s h4
[ ] 330830 0 0 330830 / 1000000 8.8s h4
[ ] 334815 0 0 334815 / 1000000 8.9s h4
[ ] 338792 0 0 338792 / 1000000 9.0s h4
[ ] 342718 0 0 342718 / 1000000 9.1s h4
[ ] 346719 0 0 346719 / 1000000 9.2s h4 (generating)
[ ] 350700 0 0 350700 / 1000000 9.3s h4
[ ] 354622 0 0 354622 / 1000000 9.4s h4
[ ] 358587 0 0 358587 / 1000000 9.5s h4
[ ] 362478 0 0 362478 / 1000000 9.6s h4
[ ] 366486 0 0 366486 / 1000000 9.7s h4
[ ] 370397 0 0 370397 / 1000000 9.8s h4
[ ] 374528 0 0 374528 / 1000000 9.9s h4
[ ] 378546 0 0 378546 / 1000000 10.0s h4
[ ] 382390 0 0 382390 / 1000000 10.1s h4
[ ] 386234 0 0 386234 / 1000000 10.2s h4
[ ] 389572 0 0 389572 / 1000000 10.3s h4
[ ] 392445 0 0 392445 / 1000000 10.4s h4
[ ] 395425 0 0 395425 / 1000000 10.5s h4
[ ] 398762 0 0 398762 / 1000000 10.6s h4
[ ] 402697 0 0 402697 / 1000000 10.7s h4
[ ] 406357 0 0 406357 / 1000000 10.8s h4
[ ] 409629 0 0 409629 / 1000000 10.9s h4
[ ] 413549 0 0 413549 / 1000000 11.0s h4
[ ] 417583 0 0 417583 / 1000000 11.1s h4
[ ] 421547 0 0 421547 / 1000000 11.2s h4
[ ] 425599 0 0 425599 / 1000000 11.3s h4
[ ] 429610 0 0 429610 / 1000000 11.4s h4
[ ] 433609 0 0 433609 / 1000000 11.5s h4
[ ] 437631 0 0 437631 / 1000000 11.6s h4
[ ] 441492 0 0 441492 / 1000000 11.7s h4
[ ] 445168 0 0 445168 / 1000000 11.8s h4
[ ] 449122 0 0 449122 / 1000000 11.9s h4
[ ] 453156 0 0 453156 / 1000000 12.0s h4
[ ] 457169 0 0 457169 / 1000000 12.1s h4
[ ] 461119 0 0 461119 / 1000000 12.2s h4
[ ] 465192 0 0 465192 / 1000000 12.3s h4
[ ] 469212 0 0 469212 / 1000000 12.4s h4
[ ] 473197 0 0 473197 / 1000000 12.5s h4
[ ] 477212 0 0 477212 / 1000000 12.6s h4
[ ] 481232 0 0 481232 / 1000000 12.7s h4
[ ] 485323 0 0 485323 / 1000000 12.8s h4
[ ] 489314 0 0 489314 / 1000000 12.9s h4
[ ] 493288 0 0 493288 / 1000000 13.0s h4
[ ] 497294 0 0 497294 / 1000000 13.1s h4
[ ] 501319 0 0 501319 / 1000000 13.2s h4
[ ] 505349 0 0 505349 / 1000000 13.3s h4
[ ] 509402 0 0 509402 / 1000000 13.4s h4
[ ] 513469 0 0 513469 / 1000000 13.5s h4
[ ] 517539 0 0 517539 / 1000000 13.6s h4
[ ] 521577 0 0 521577 / 1000000 13.7s h4
[ ] 525622 0 0 525622 / 1000000 13.8s h4
[ ] 529659 0 0 529659 / 1000000 13.9s h4
[ ] 533660 0 0 533660 / 1000000 14.0s h4
[ ] 537735 0 0 537735 / 1000000 14.1s h4
[ ] 541711 0 0 541711 / 1000000 14.2s h4
[ ] 545735 0 0 545735 / 1000000 14.3s h4
[ ] 549714 0 0 549714 / 1000000 14.4s h4
[ ] 553727 0 0 553727 / 1000000 14.5s h4
[ ] 557527 0 0 557527 / 1000000 14.6s h4
[ ] 561518 0 0 561518 / 1000000 14.7s h4
[ ] 565598 0 0 565598 / 1000000 14.8s h4
[ ] 569602 0 0 569602 / 1000000 14.9s h4
[ ] 573490 0 0 573490 / 1000000 15.0s h4
[ ] 577264 0 0 577264 / 1000000 15.1s h4
[ ] 581241 0 0 581241 / 1000000 15.2s h4
[ ] 584829 0 0 584829 / 1000000 15.3s h4
[ ] 588731 0 0 588731 / 1000000 15.4s h4
[ ] 592089 0 0 592089 / 1000000 15.5s h4
[ ] 595122 0 0 595122 / 1000000 15.6s h4
[ ] 598104 0 0 598104 / 1000000 15.7s h4
[ ] 601588 0 0 601588 / 1000000 15.8s h4
[ ] 605101 0 0 605101 / 1000000 15.9s h4
[ ] 608205 0 0 608205 / 1000000 16.0s h4
[ ] 611152 0 0 611152 / 1000000 16.1s h4
[ ] 614142 0 0 614142 / 1000000 16.2s h4
[ ] 617074 0 0 617074 / 1000000 16.3s h4
[ ] 620248 0 0 620248 / 1000000 16.4s h4
[ ] 624092 0 0 624092 / 1000000 16.5s h4
[ ] 627340 0 0 627340 / 1000000 16.6s h4
[ ] 630340 0 0 630340 / 1000000 16.7s h4
[ ] 633330 0 0 633330 / 1000000 16.8s h4
[ ] 636294 0 0 636294 / 1000000 16.9s h4
[ ] 639283 0 0 639283 / 1000000 17.0s h4
[ ] 642198 0 0 642198 / 1000000 17.1s h4
[ ] 645206 0 0 645206 / 1000000 17.2s h4
[ ] 648228 0 0 648228 / 1000000 17.3s h4
[ ] 651153 0 0 651153 / 1000000 17.4s h4
[ ] 654162 0 0 654162 / 1000000 17.5s h4
[ ] 657115 0 0 657115 / 1000000 17.6s h4
[ ] 660078 0 0 660078 / 1000000 17.7s h4
[ ] 663118 0 0 663118 / 1000000 17.8s h4
[ ] 666059 0 0 666059 / 1000000 17.9s h4
[ ] 669064 0 0 669064 / 1000000 18.0s h4
[ ] 671997 0 0 671997 / 1000000 18.1s h4
[ ] 674940 0 0 674940 / 1000000 18.2s h4
[ ] 677737 0 0 677737 / 1000000 18.3s h4
[ ] 680495 0 0 680495 / 1000000 18.4s h4
[ ] 683296 0 0 683296 / 1000000 18.5s h4
[ ] 686167 0 0 686167 / 1000000 18.6s h4
[ ] 689010 0 0 689010 / 1000000 18.7s h4
[ ] 691938 0 0 691938 / 1000000 18.8s h4
[ ] 694847 0 0 694847 / 1000000 18.9s h4
[ ] 697717 0 0 697717 / 1000000 19.0s h4
[ ] 700559 0 0 700559 / 1000000 19.1s h4
[ ] 703465 0 0 703465 / 1000000 19.2s h4
[ ] 706324 0 0 706324 / 1000000 19.3s h4
[ ] 709202 0 0 709202 / 1000000 19.4s h4
[ ] 712052 0 0 712052 / 1000000 19.5s h4
[ ] 714978 0 0 714978 / 1000000 19.6s h4
[ ] 717988 0 0 717988 / 1000000 19.7s h4
[ ] 720817 0 0 720817 / 1000000 19.8s h4
[ ] 723642 0 0 723642 / 1000000 19.9s h4
[ ] 726498 0 0 726498 / 1000000 20.0s h4
[ ] 729429 0 0 729429 / 1000000 20.1s h4
[ ] 732328 0 0 732328 / 1000000 20.2s h4
[ ] 735117 0 0 735117 / 1000000 20.3s h4 (collecting)
[ ] 737934 0 0 737934 / 1000000 20.4s h4
[ ] 740735 0 0 740735 / 1000000 20.5s h4
[ ] 743490 0 0 743490 / 1000000 20.6s h4
[ ] 746386 0 0 746386 / 1000000 20.7s h4
[ ] 749332 0 0 749332 / 1000000 20.8s h4
[ ] 752314 0 0 752314 / 1000000 20.9s h4
[ ] 755167 0 0 755167 / 1000000 21.0s h4
[ ] 758079 0 0 758079 / 1000000 21.1s h4
[ ] 761275 0 0 761275 / 1000000 21.2s h4
[ ] 764136 0 0 764136 / 1000000 21.3s h4
[ ] 767147 0 0 767147 / 1000000 21.4s h4
[ ] 771144 0 0 771144 / 1000000 21.5s h4
[ ] 774576 0 0 774576 / 1000000 21.6s h4
[ ] 777560 0 0 777560 / 1000000 21.7s h4
[ ] 781336 0 0 781336 / 1000000 21.8s h4
[ ] 784487 0 0 784487 / 1000000 21.9s h4
[ ] 787667 0 0 787667 / 1000000 22.0s h4
[ ] 790602 0 0 790602 / 1000000 22.1s h4
[ ] 793615 0 0 793615 / 1000000 22.2s h4
[ ] 796616 0 0 796616 / 1000000 22.3s h4
[ ] 799675 0 0 799675 / 1000000 22.4s h4
[ ] 802594 0 0 802594 / 1000000 22.5s h4
[ ] 805502 0 0 805502 / 1000000 22.6s h4
[ ] 808763 0 0 808763 / 1000000 22.7s h4
[ ] 812447 0 0 812447 / 1000000 22.8s h4
[ ] 815897 0 0 815897 / 1000000 22.9s h4
[ ] 819116 0 0 819116 / 1000000 23.0s h4
[ ] 823084 0 0 823084 / 1000000 23.1s h4
[ ] 827112 0 0 827112 / 1000000 23.2s h4
[ ] 830974 0 0 830974 / 1000000 23.3s h4
[ ] 834403 0 0 834403 / 1000000 23.4s h4
[ ] 838115 0 0 838115 / 1000000 23.5s h4
[ ] 841707 0 0 841707 / 1000000 23.6s h4
[ ] 844576 0 0 844576 / 1000000 23.7s h4
[ ] 847557 0 0 847557 / 1000000 23.8s h4
[ ] 850526 0 0 850526 / 1000000 23.9s h4
[ ] 853432 0 0 853432 / 1000000 24.0s h4
[ ] 856599 0 0 856599 / 1000000 24.1s h4
[ ] 860549 0 0 860549 / 1000000 24.2s h4
[ ] 863836 0 0 863836 / 1000000 24.3s h4
[ ] 867255 0 0 867255 / 1000000 24.4s h4
[ ] 870317 0 0 870317 / 1000000 24.5s h4
[ ] 874077 0 0 874077 / 1000000 24.6s h4
[ ] 877357 0 0 877357 / 1000000 24.7s h4
[ ] 880296 0 0 880296 / 1000000 24.8s h4
[ ] 883245 0 0 883245 / 1000000 24.9s h4
[ ] 886109 0 0 886109 / 1000000 25.0s h4
[ ] 888924 0 0 888924 / 1000000 25.1s h4
[ ] 891973 0 0 891973 / 1000000 25.2s h4
[ ] 894984 0 0 894984 / 1000000 25.3s h4
[ ] 897792 0 0 897792 / 1000000 25.4s h4
[ ] 900559 0 0 900559 / 1000000 25.5s h4
[ ] 903731 0 0 903731 / 1000000 25.6s h4
[ ] 906576 0 0 906576 / 1000000 25.7s h4
[ ] 909593 0 0 909593 / 1000000 25.8s h4
[ ] 912427 0 0 912427 / 1000000 25.9s h4
[ ] 915091 0 0 915091 / 1000000 26.0s h4
[ ] 917757 0 0 917757 / 1000000 26.1s h4
[ ] 920433 0 0 920433 / 1000000 26.2s h4
[ ] 923311 0 0 923311 / 1000000 26.3s h4
[ ] 926153 0 0 926153 / 1000000 26.4s h4
[ ] 929075 0 0 929075 / 1000000 26.5s h4
[ ] 931964 0 0 931964 / 1000000 26.6s h4
[ ] 935304 0 0 935304 / 1000000 26.7s h4
[ ] 938233 0 0 938233 / 1000000 26.8s h4
[ ] 940994 0 0 940994 / 1000000 26.9s h4
[ ] 944041 0 0 944041 / 1000000 27.0s h4
[ ] 947420 0 0 947420 / 1000000 27.1s h4
[ ] 950273 0 0 950273 / 1000000 27.2s h4 (collecting)
[ ] 953087 0 0 953087 / 1000000 27.3s h4
[ ] 956001 0 0 956001 / 1000000 27.4s h4
[ ] 958863 0 0 958863 / 1000000 27.5s h4
[ ] 961742 0 0 961742 / 1000000 27.6s h4
[ ] 964599 0 0 964599 / 1000000 27.7s h4
[ ] 967459 0 0 967459 / 1000000 27.8s h4
[ ] 970237 0 0 970237 / 1000000 27.9s h4
[ ] 973098 0 0 973098 / 1000000 28.0s h4
[ ] 975942 0 0 975942 / 1000000 28.1s h4
[ ] 978849 0 0 978849 / 1000000 28.2s h4
[ ] 981699 0 0 981699 / 1000000 28.3s h4
[ ] 984567 0 0 984567 / 1000000 28.4s h4
[ ] 987366 0 0 987366 / 1000000 28.5s h4
[ ] 990163 0 0 990163 / 1000000 28.6s h4
[ ] 993077 0 0 993077 / 1000000 28.7s h4
[ ] 995930 0 0 995930 / 1000000 28.8s h4 (collecting)
[ ] 998784 0 0 998784 / 1000000 28.9s h4
[✓] 1000000 0 0 1000000 / 1000000 28.9s h4
- ================================================================================
- success (ran 6 tests)
-> compiled dates_calc.0.0.6
-> removed dates_calc.0.0.6
-> installed dates_calc.0.0.6
Done.
# To update the current shell environment, run: eval $(opam env)
2025-08-05 18:31.33 ---> saved as "292d2c210b266aa56c8dda002fbf53002e19f146f3b2125e55a69edfe8eb8337"
Job succeeded
2025-08-05 18:32.09: Job succeeded