(for PR #29582)
2026-03-25 23:09.42: New job: test domainslib.0.5.1 with ocaml-compiler.5.4.0~beta1, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29582/head (fa5fb3a6a806e832e4c7791145889a6bbe8b64ef)
on debian-13-ocaml-5.4/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29582/head" && git reset --hard fa5fb3a6
git fetch origin master
git merge --no-edit 40ee9f8d41e293fa1327d03c279f5e61e22157f8
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6
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 ocaml-compiler.5.4.0~beta1 5.4.0~beta1
RUN opam reinstall --update-invariant ocaml-compiler.5.4.0~beta1; \
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" != 'ocaml-compiler.5.4.0~beta1' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall domainslib.0.5.1; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'domainslib.0.5.1' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN (opam reinstall --with-test domainslib.0.5.1) || true
RUN opam reinstall --with-test --verbose domainslib.0.5.1; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'domainslib.0.5.1' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2026-03-25 23:09.42: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6-ocaml-compiler.5.4.0~beta1-domainslib.0.5.1-fa5fb3a6a806e832e4c7791145889a6bbe8b64ef"
2026-03-25 23:09.42: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
(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 ocaml-compiler.5.4.0~beta1 5.4.0~beta1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall --update-invariant ocaml-compiler.5.4.0~beta1;\
\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\" != 'ocaml-compiler.5.4.0~beta1' && 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 domainslib.0.5.1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'domainslib.0.5.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (network host)
(shell "(opam reinstall --with-test domainslib.0.5.1) || true"))
(run (shell "opam reinstall --with-test --verbose domainslib.0.5.1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'domainslib.0.5.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-03-25 23:09.42: Waiting for resource in pool OCluster
2026-03-25 23:49.26: Waiting for worker…
2026-03-25 23:52.02: Got resource from pool OCluster
Building on bremusa.ocamllabs.io
All commits already cached
HEAD is now at 40ee9f8d41 Merge pull request #29587 from astrada/gdfuse08
Merge made by the 'ort' strategy.
packages/ocaml-compiler/ocaml-compiler.5.3.0/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.3/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.4.0/opam | 5 ++++-
.../ocaml-compiler/ocaml-compiler.5.4.0~alpha1/opam | 5 ++++-
.../ocaml-compiler/ocaml-compiler.5.4.0~beta1/opam | 5 ++++-
.../ocaml-compiler/ocaml-compiler.5.4.0~beta2/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.4.0~rc1/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.4.1/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.4/opam | 5 ++++-
.../ocaml-compiler/ocaml-compiler.5.5.0~alpha1/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.5/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.6/opam | 5 ++++-
packages/ocaml-option-llvm/ocaml-option-llvm.1/opam | 18 ++++++++++++++++++
.../ocaml-options-vanilla/ocaml-options-vanilla.1/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.2.0+msvc/opam | 2 ++
15 files changed, 69 insertions(+), 12 deletions(-)
create mode 100644 packages/ocaml-option-llvm/ocaml-option-llvm.1/opam
(from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
2026-03-25 23:52.04 ---> using "41eea30e3f639c18d8cf57c309ec76919ec7b2398036f7e41744cbce59a133d3" 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-03-25 23:52.04 ---> using "4ad7f430d684c40cedc651267e0edf890c044fe4e624255de377c471b4526bac" 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 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
2026-03-25 23:52.04 ---> using "71fa58e52457bf6a7eac317c6a6ef1e2bdf53e533a1e4fd04b90c9349347e038" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 5.4
# invariant ["ocaml-base-compiler" {= "5.4.0"}]
# compiler-packages ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.0
2026-03-25 23:52.04 ---> using "ed86081cb38ca125a920162bfe6a4bb7b1c27c6973c917551687c83cf44dbfdf" 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-03-25 23:52.04 ---> using "04a48515eea40c32b96da0c71328b4bba0edb66eed83d4f78554b39097cf1f25" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-25 23:52.06 ---> using "07a68ecb21bed61e4f94fa4dcb50d9c7e84f81448f8ae7e9e9983c91027df4a2" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-25 23:52.06 ---> using "b26a47ea5c8289d9e604d194e0a5dfeb524275bd8a7c64613ecd9c7e1857f13a" 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 [9671 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [114 kB]
- Fetched 10.0 MB in 1s (7335 kB/s)
- Reading package lists...
-
2026-03-25 23:52.06 ---> using "0b343335ec438165d35b471bbf0eb838e16886a027b79662715b77b328e1271c" from cache
/home/opam: (run (shell "opam pin add -k version -yn ocaml-compiler.5.4.0~beta1 5.4.0~beta1"))
ocaml-compiler is now pinned to version 5.4.0~beta1
2026-03-25 23:52.06 ---> using "e1c05b46f28d7574e116a5b10ba98f694969006f7796f6a98c361e246ff746c8" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall --update-invariant ocaml-compiler.5.4.0~beta1;\
\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\" != 'ocaml-compiler.5.4.0~beta1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
ocaml-compiler.5.4.0~beta1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== remove 1 package
- remove ocaml-base-compiler 5.4.0 (pinned) [conflicts with ocaml-compiler]
=== downgrade 1 package
- downgrade ocaml-compiler 5.4.0 to 5.4.0~beta1 (pinned)
=== recompile 6 packages
- recompile base-domains base [uses ocaml]
- recompile base-effects base [uses ocaml]
- recompile base-nnp base [uses base-domains]
- recompile ocaml 5.4.0 [uses ocaml-base-compiler]
- recompile ocaml-config 3 [uses ocaml-base-compiler]
- recompile opam-depext 1.2.3 [uses ocaml]
=== install 1 package
- install ocaml-variants 5.4.0~beta1+options [required by ocaml]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocaml-compiler.5.4.0~beta1 (cached)
-> retrieved ocaml-config.3 (cached)
-> retrieved opam-depext.1.2.3 (cached)
-> removed base-effects.base
-> removed base-nnp.base
-> removed base-domains.base
-> removed opam-depext.1.2.3
-> removed ocaml.5.4.0
-> removed ocaml-config.3
-> removed ocaml-base-compiler.5.4.0
-> removed ocaml-compiler.5.4.0
-> installed ocaml-compiler.5.4.0~beta1
-> installed ocaml-variants.5.4.0~beta1+options
-> installed ocaml-config.3
-> installed ocaml.5.4.0
-> installed base-domains.base
-> installed base-effects.base
-> installed base-nnp.base
-> installed opam-depext.1.2.3
[NOTE] Switch invariant was updated to ["ocaml-variants" {= "5.4.0~beta1+options"}]
Use `opam switch set-invariant' to change it.
Done.
<><> opam-depext.1.2.3 installed successfully <><><><><><><><><><><><><><><><><>
=> opam-depext is unnecessary when used with opam >= 2.1. Please use opam install directly instead
# To update the current shell environment, run: eval $(opam env)
2026-03-25 23:52.06 ---> using "3817a208ed5f7baeb43f88e56244319516f39faddd782fe35a9ef1c9797c14d8" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall domainslib.0.5.1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'domainslib.0.5.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
domainslib.0.5.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 7 packages
- install domain-local-await 1.0.1 [required by domainslib]
- install domain_shims 0.1.0 [required by saturn]
- install domainslib 0.5.1
- install dune 3.22.0 [required by domainslib]
- install saturn 0.4.0 [required by domainslib]
- install saturn_lockfree 0.4.0 [required by saturn]
- install thread-table 1.0.0 [required by domain-local-await]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved domain-local-await.1.0.1 (cached)
-> retrieved domain_shims.0.1.0 (cached)
-> retrieved domainslib.0.5.1 (https://opam.ocaml.org/cache)
-> retrieved dune.3.22.0 (cached)
-> retrieved saturn.0.4.0, saturn_lockfree.0.4.0 (cached)
-> retrieved thread-table.1.0.0 (cached)
-> installed dune.3.22.0
-> installed domain_shims.0.1.0
-> installed thread-table.1.0.0
-> installed saturn_lockfree.0.4.0
-> installed domain-local-await.1.0.1
-> installed saturn.0.4.0
-> installed domainslib.0.5.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 23:53.03 ---> saved as "1aab3cf3d14a387b372664de542ac3eae38ea848a5431166ac7b72699dc4ea0f"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test domainslib.0.5.1) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile domainslib 0.5.1
=== install 17 packages
- install backoff 0.1.1 [required by kcas]
- install csexp 1.5.2 [required by dune-configurator]
- install domain-local-timeout 1.0.1 [required by kcas]
- install dune-configurator 3.22.0 [required by mirage-clock-unix]
- install kcas 0.7.0 [required by domainslib]
- install mirage-clock 4.2.0 [required by mirage-clock-unix]
- install mirage-clock-unix 4.2.0 [required by domainslib]
- install mtime 2.1.0 [required by domain-local-timeout]
- install multicore-magic 2.3.2 [required by kcas]
- install ocamlbuild 0.16.1 [required by mtime]
- install ocamlfind 1.9.8 [required by mtime]
- install psq 0.2.1 [required by domain-local-timeout]
- install qcheck-core 0.91 [required by domainslib]
- install qcheck-multicoretests-util 0.10 [required by domainslib]
- install qcheck-stm 0.10 [required by domainslib]
- install seq base [required by psq]
- install topkg 1.1.1 [required by mtime]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved backoff.0.1.1 (https://opam.ocaml.org/cache)
-> retrieved csexp.1.5.2 (https://opam.ocaml.org/cache)
-> retrieved domain-local-timeout.1.0.1 (https://opam.ocaml.org/cache)
-> retrieved domainslib.0.5.1 (https://opam.ocaml.org/cache)
-> installed backoff.0.1.1
-> installed csexp.1.5.2
-> retrieved dune-configurator.3.22.0 (https://opam.ocaml.org/cache)
-> retrieved kcas.0.7.0 (https://opam.ocaml.org/cache)
-> retrieved mirage-clock.4.2.0, mirage-clock-unix.4.2.0 (https://opam.ocaml.org/cache)
-> retrieved mtime.2.1.0 (https://opam.ocaml.org/cache)
-> retrieved multicore-magic.2.3.2 (https://opam.ocaml.org/cache)
-> installed mirage-clock.4.2.0
-> retrieved ocamlbuild.0.16.1 (https://opam.ocaml.org/cache)
-> retrieved ocamlfind.1.9.8 (https://opam.ocaml.org/cache)
-> retrieved psq.0.2.1 (https://opam.ocaml.org/cache)
-> installed multicore-magic.2.3.2
-> retrieved qcheck-core.0.91 (https://opam.ocaml.org/cache)
-> retrieved qcheck-multicoretests-util.0.10, qcheck-stm.0.10 (https://opam.ocaml.org/cache)
-> retrieved seq.base (2 extra sources)
-> retrieved seq.base (2 extra sources)
-> installed seq.base
-> retrieved topkg.1.1.1 (https://opam.ocaml.org/cache)
-> installed psq.0.2.1
-> installed dune-configurator.3.22.0
-> installed mirage-clock-unix.4.2.0
-> installed qcheck-core.0.91
-> installed qcheck-multicoretests-util.0.10
-> installed ocamlfind.1.9.8
-> installed qcheck-stm.0.10
-> removed domainslib.0.5.1
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed mtime.2.1.0
-> installed domain-local-timeout.1.0.1
-> installed kcas.0.7.0
-> installed domainslib.0.5.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-26 00:06.09 ---> saved as "7324761915147822bf6d5d038a1b8ec492b0accee440d7a6495a00ebc6214a26"
/home/opam: (run (shell "opam reinstall --with-test --verbose domainslib.0.5.1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'domainslib.0.5.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
The following actions will be performed:
=== recompile 1 package
- recompile domainslib 0.5.1
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [domainslib.0.5.1: extract]
-> retrieved domainslib.0.5.1 (cached)
Processing 2/4: [domainslib: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "domainslib" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/domainslib.0.5.1)
- (cd _build/default/test && ./backtrace.bc)
- Raised at Stdlib.failwith in file "stdlib.ml", line 29, characters 17-33
- Called from Dune__exe__Backtrace.foo in file "test/backtrace.ml", line 6, characters 11-27
- Called from Dune__exe__Backtrace.bar in file "test/backtrace.ml", line 14, characters 4-9
- Called from Domainslib__Task.do_task in file "lib/task.ml", line 43, characters 14-18
- Re-raised at Stdlib__Effect.Deep.discontinue_with_backtrace.(fun) in file "effect.ml", line 66, characters 41-75
- Called from unknown location
- Called from Dune__exe__Backtrace.main.(fun) in file "test/backtrace.ml", line 23, characters 4-18
- Called from Domainslib__Task.do_task in file "lib/task.ml", line 43, characters 14-18
- Re-raised at Domainslib__Task.run.loop in file "lib/task.ml", line 128, characters 23-57
- Called from Stdlib__Fun.protect in file "fun.ml", line 34, characters 8-15
- Re-raised at Stdlib__Fun.protect in file "fun.ml", line 39, characters 6-52
- Called from Dune__exe__Backtrace.main in file "test/backtrace.ml", lines 21-24, characters 2-46
- Called from Dune__exe__Backtrace in file "test/backtrace.ml", line 29, characters 6-13
- (cd _build/default/test && ./game_of_life.exe)
- ...o.oooo..o....
- .....o..o.....oo
- oo..o...ooo.o.o.
- ...o.o.oooooo.o.
- oooooooo.o.oo.o.
- o..oooooo.oooo.o
- .oooo.oo..o.oo.o
- ooo..o...ooo.ooo
- o.o....oo.oooo..
- ooo.ooo...oo...o
- ..o..o....oooooo
- .o.ooo....oo..oo
- oooo....oooooo.o
- .o...ooo...ooo..
- ..o.oo.o..oo....
- .....o.ooo.o..o.
-
- ................
- ................
- ................
- ................
- ..ooooooo.......
- .o...o.oo.......
- o..ooo.oo.......
- ooo.............
- o.......ooo.....
- oo....oo..oo..o.
- ......oo..oo.o.o
- ...o.o..........
- ..ooo.........oo
- ..oo.o....oo....
- .o..o.....oo....
- ..o.............
-
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I test/.task_parallel.eobjs/byte -I test/.task_parallel.eobjs/native -I /home/opam/.opam/5.4/lib/domain-local-await -I /home/opam/.opam/5.4/lib/domain_shims -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/qcheck-core/runner -I /home/opam/.opam/5.4/lib/qcheck-multicoretests-util -I /home/opam/.opam/5.4/lib/saturn -I /home/opam/.opam/5.4/lib/saturn_lockfree -I /home/opam/.opam/5.4/lib/thread-table -I lib/.domainslib.objs/byte -I lib/.domainslib.objs/native -cmi-file test/.task_parallel.eobjs/byte/dune__exe__Task_parallel.cmi -no-alias-deps -o test/.task_parallel.eobjs/native/dune__exe__Task_parallel.cmx -c -impl test/task_parallel.ml)
- File "test/task_parallel.ml", line 10, characters 27-36:
- 10 | (triple (int_bound 10) small_nat small_nat)
- ^^^^^^^^^
- Alert deprecated: QCheck.small_nat
- Use [nat_small] instead
-
- File "test/task_parallel.ml", line 10, characters 37-46:
- 10 | (triple (int_bound 10) small_nat small_nat)
- ^^^^^^^^^
- Alert deprecated: QCheck.small_nat
- Use [nat_small] instead
-
- File "test/task_parallel.ml", line 22, characters 27-36:
- 22 | (triple (int_bound 10) small_nat small_nat)
- ^^^^^^^^^
- Alert deprecated: QCheck.small_nat
- Use [nat_small] instead
-
- File "test/task_parallel.ml", line 22, characters 37-46:
- 22 | (triple (int_bound 10) small_nat small_nat)
- ^^^^^^^^^
- Alert deprecated: QCheck.small_nat
- Use [nat_small] instead
-
- File "test/task_parallel.ml", line 32, characters 25-34:
- 32 | (pair (int_bound 10) small_nat)
- ^^^^^^^^^
- Alert deprecated: QCheck.small_nat
- Use [nat_small] instead
- (cd _build/default/test && ./enumerate_par.exe)
- [0] 88
- [0] 89
- [0] 90
- [0] 91
- [0] 92
- [0] 93
- [0] 94
- [0] 95
- [0] 96
- [0] 97
- [0] 98
- [0] 99
- [0] 75
- [0] 76
- [0] 77
- [0] 78
- [0] 79
- [0] 80
- [0] 81
- [0] 82
- [0] 83
- [0] 84
- [0] 85
- [0] 86
- [0] 87
- [0] 63
- [0] 64
- [0] 65
- [0] 66
- [0] 67
- [0] 68
- [0] 69
- [0] 70
- [0] 71
- [0] 72
- [0] 73
- [0] 74
- [0] 50
- [0] 51
- [0] 52
- [0] 53
- [0] 54
- [0] 55
- [0] 56
- [0] 57
- [0] 58
- [0] 59
- [0] 60
- [0] 61
- [0] 62
- [0] 38
- [0] 39
- [0] 40
- [0] 41
- [0] 42
- [0] 43
- [0] 44
- [0] 45
- [0] 46
- [0] 47
- [0] 48
- [0] 49
- [0] 25
- [0] 26
- [0] 27
- [0] 28
- [0] 29
- [0] 30
- [0] 31
- [0] 32
- [0] 33
- [0] 34
- [0] 35
- [0] 36
- [0] 37
- [0] 13
- [0] 14
- [0] 15
- [0] 16
- [0] 17
- [0] 18
- [0] 19
- [0] 20
- [0] 21
- [0] 22
- [0] 23
- [0] 24
- [0] 0
- [0] 1
- [0] 2
- [0] 3
- [0] 4
- [0] 5
- [0] 6
- [0] 7
- [0] 8
- [0] 9
- [0] 10
- [0] 11
- [0] 12
- (cd _build/default/test && ./game_of_life_multicore.exe)
- ...o.oooo..o....
- .....o..o.....oo
- oo..o...ooo.o.o.
- ...o.o.oooooo.o.
- oooooooo.o.oo.o.
- o..oooooo.oooo.o
- .oooo.oo..o.oo.o
- ooo..o...ooo.ooo
- o.o....oo.oooo..
- ooo.ooo...oo...o
- ..o..o....oooooo
- .o.ooo....oo..oo
- oooo....oooooo.o
- .o...ooo...ooo..
- ..o.oo.o..oo....
- .....o.ooo.o..o.
-
- ................
- ................
- ................
- ................
- ..ooooooo.......
- .o...o.oo.......
- o..ooo.oo.......
- ooo.............
- o.......ooo.....
- oo....oo..oo..o.
- ......oo..oo.o.o
- ...o.o..........
- ..ooo.........oo
- ..oo.o....oo....
- .o..o.....oo....
- ..o.............
-
- (cd _build/default/test && ./backtrace.exe)
- Raised at Stdlib.failwith in file "stdlib.ml", line 29, characters 17-33
- Called from Dune__exe__Backtrace.foo in file "test/backtrace.ml", line 6, characters 11-27
- Called from Dune__exe__Backtrace.bar in file "test/backtrace.ml", line 14, characters 4-9
- Called from Domainslib__Task.do_task in file "lib/task.ml", line 43, characters 14-18
- Re-raised at Stdlib__Effect.Deep.discontinue_with_backtrace.(fun) in file "effect.ml", line 66, characters 41-75
- Called from Dune__exe__Backtrace.main.(fun) in file "test/backtrace.ml", line 23, characters 4-18
- Called from Domainslib__Task.do_task in file "lib/task.ml", line 43, characters 14-18
- Re-raised at Domainslib__Task.run.loop in file "lib/task.ml", line 128, characters 23-57
- Called from Stdlib__Fun.protect in file "fun.ml", line 34, characters 8-15
- Re-raised at Stdlib__Fun.protect in file "fun.ml", line 39, characters 6-52
- Called from Dune__exe__Backtrace.main in file "test/backtrace.ml", lines 21-24, characters 2-46
- Called from Dune__exe__Backtrace in file "test/backtrace.ml", line 29, characters 6-13
- (cd _build/default/test && ./sum_par.exe)
- Sum is 100
- Sum is 100
- Sum is 100
- (cd _build/default/test && ./prefix_sum.exe)
- Execution time: 0.006326s
- (cd _build/default/test && ./test_deadlock.exe)
- Task A running on domain 1
- Task B running on domain 2
- Task C running on domain 2
- Looping finished on domain 0
- Looping finished on domain 1
- (cd _build/default/test && ./task_throughput.exe)
- n_iterations: 1024 n_units: 1024 n_domains: 1
- Timings (ns): n=1024 mean=3911.3
- ( 0, 32): 0
- [ 32, 64): 0
- [ 64, 128): 0
- [ 128, 256): 0
- [ 256, 512): 0
- [ 512, 1024): 0
- [ 1024, 2048): 0
- [ 2048, 4096): 899
- [ 4096, 8192): 78
- [ 8192, 16384): 43
- [ 16384, 32768): 4
- [ 32768, 65536): 0
- [ 65536, 131072): 0
- [ 131072, 262144): 0
- [ 262144, 524288): 0
- [ 524288, 1048576): 0
- [ 1048576, 2097152): 0
- [ 2097152, 4194304): 0
- [ 4194304, 8388608): 0
- [ 8388608, Inf): 0
- (cd _build/default/test && ./test_task.exe)
- ok
- (cd _build/default/test && ./test_chan.exe)
- Receiver on domain 2 done
- Sender on domain 1 done
- (cd _build/default/test && ./off_by_one.exe)
- 0: [|1; 2; 3; 4; 5; 6; 7; 8; 9; 10; 11; 12; 13; 14; 15; 16; 17; 18; 19; 20; |]
- 1: [|1; 2; 3; 4; 5; 6; 7; 8; 9; 10; 11; 12; 13; 14; 15; 16; 17; 18; 19; 20; |]
- 2: [|1; 2; 3; 4; 5; 6; 7; 8; 9; 10; 11; 12; 13; 14; 15; 16; 17; 18; 19; 20; |]
- 3: [|1; 2; 3; 4; 5; 6; 7; 8; 9; 10; 11; 12; 13; 14; 15; 16; 17; 18; 19; 20; |]
- 4: [|1; 2; 3; 4; 5; 6; 7; 8; 9; 10; 11; 12; 13; 14; 15; 16; 17; 18; 19; 20; |]
- 5: [|1; 2; 3; 4; 5; 6; 7; 8; 9; 10; 11; 12; 13; 14; 15; 16; 17; 18; 19; 20; |]
- 6: [|1; 2; 3; 4; 5; 6; 7; 8; 9; 10; 11; 12; 13; 14; 15; 16; 17; 18; 19; 20; |]
- 7: [|1; 2; 3; 4; 5; 6; 7; 8; 9; 10; 11; 12; 13; 14; 15; 16; 17; 18; 19; 20; |]
- 8: [|1; 2; 3; 4; 5; 6; 7; 8; 9; 10; 11; 12; 13; 14; 15; 16; 17; 18; 19; 20; |]
- 9: [|1; 2; 3; 4; 5; 6; 7; 8; 9; 10; 11; 12; 13; 14; 15; 16; 17; 18; 19; 20; |]
- 10: [|1; 2; 3; 4; 5; 6; 7; 8; 9; 10; 11; 12; 13; 14; 15; 16; 17; 18; 19; 20; |]
- 11: [|1; 2; 3; 4; 5; 6; 7; 8; 9; 10; 11; 12; 13; 14; 15; 16; 17; 18; 19; 20; |]
- 12: [|1; 2; 3; 4; 5; 6; 7; 8; 9; 10; 11; 12; 13; 14; 15; 16; 17; 18; 19; 20; |]
- 13: [|1; 2; 3; 4; 5; 6; 7; 8; 9; 10; 11; 12; 13; 14; 15; 16; 17; 18; 19; 20; |]
- 14: [|1; 2; 3; 4; 5; 6; 7; 8; 9; 10; 11; 12; 13; 14; 15; 16; 17; 18; 19; 20; |]
- 15: [|1; 2; 3; 4; 5; 6; 7; 8; 9; 10; 11; 12; 13; 14; 15; 16; 17; 18; 19; 20; |]
- 16: [|1; 2; 3; 4; 5; 6; 7; 8; 9; 10; 11; 12; 13; 14; 15; 16; 17; 18; 19; 20; |]
- 17: [|1; 2; 3; 4; 5; 6; 7; 8; 9; 10; 11; 12; 13; 14; 15; 16; 17; 18; 19; 20; |]
- 18: [|1; 2; 3; 4; 5; 6; 7; 8; 9; 10; 11; 12; 13; 14; 15; 16; 17; 18; 19; 20; |]
- 19: [|1; 2; 3; 4; 5; 6; 7; 8; 9; 10; 11; 12; 13; 14; 15; 16; 17; 18; 19; 20; |]
- 20: [|1; 2; 3; 4; 5; 6; 7; 8; 9; 10; 11; 12; 13; 14; 15; 16; 17; 18; 19; 20; |]
- 21: [|1; 2; 3; 4; 5; 6; 7; 8; 9; 10; 11; 12; 13; 14; 15; 16; 17; 18; 19; 20; |]
- (cd _build/default/test && ./kcas_integration.exe)
- Got 13
- Got 24
- Got 59
- Got 23
- Got 76
- Got 10
- Got 67
- Got 47
- Got 17
- Got 35
- Got 52
- Got 32
- Got 71
- Got 98
- Got 83
- Got 48
- Got 91
- Got 99
- Got 58
- Got 5
- Got 60
- Got 31
- Got 77
- Got 36
- Got 51
- Got 8
- Got 61
- Got 29
- Got 75
- Got 33
- Got 87
- Got 15
- Got 92
- Got 37
- Got 70
- Got 38
- Got 46
- Got 3
- Got 22
- Got 43
- Got 4
- Got 88
- Got 66
- Got 62
- Got 57
- Got 50
- Got 68
- Got 11
- Got 56
- Got 45
- Got 7
- Got 39
- Got 16
- Got 44
- Got 21
- Got 9
- Got 89
- Got 41
- Got 28
- Got 100
- Got 27
- Got 30
- Got 64
- Got 96
- Got 74
- Got 72
- Got 94
- Got 95
- Got 42
- Got 69
- Got 53
- Got 34
- Got 55
- Got 93
- Got 54
- Got 80
- Got 1
- Got 90
- Got 86
- Got 65
- Got 79
- Got 85
- Got 20
- Got 49
- Got 12
- Got 26
- Got 82
- Got 81
- Got 40
- Got 84
- Got 2
- Got 18
- Got 6
- Got 14
- Got 63
- Got 78
- Got 25
- Got 73
- Got 97
- Got 19
- Done
- (cd _build/default/test && ./test_parallel_find.exe)
- test_parallel_find on 72 domains.
- Success.
- (cd _build/default/test && ./spectralnorm2.exe)
- 1.274224152
- (cd _build/default/test && ./spectralnorm2_multicore.exe)
- 1.274224152
- (cd _build/default/test && ./fib.exe)
- fib(43) = 701408733
- (cd _build/default/test && ./fib_par.exe)
- fib(43) = 701408733
- (cd _build/default/test && ./task_parallel.exe --verbose)
-
random seed: 367448994
- generated error fail pass / total time test name
-
[ ] 0 0 0 0 / 250 0.0s Domainslib.Task.parallel_for test
[ ] 5 0 0 5 / 250 0.1s Domainslib.Task.parallel_for test
[ ] 9 0 0 9 / 250 0.2s Domainslib.Task.parallel_for test
[ ] 12 0 0 12 / 250 0.3s Domainslib.Task.parallel_for test
[ ] 16 0 0 16 / 250 0.5s Domainslib.Task.parallel_for test
[ ] 18 0 0 18 / 250 0.6s Domainslib.Task.parallel_for test
[ ] 21 0 0 21 / 250 0.8s Domainslib.Task.parallel_for test
[ ] 23 0 0 23 / 250 0.9s Domainslib.Task.parallel_for test
[ ] 27 0 0 27 / 250 1.0s Domainslib.Task.parallel_for test
[ ] 30 0 0 30 / 250 1.1s Domainslib.Task.parallel_for test
[ ] 34 0 0 34 / 250 1.3s Domainslib.Task.parallel_for test
[ ] 42 0 0 42 / 250 1.4s Domainslib.Task.parallel_for test
[ ] 46 0 0 46 / 250 1.5s Domainslib.Task.parallel_for test
[ ] 50 0 0 50 / 250 1.7s Domainslib.Task.parallel_for test
[ ] 54 0 0 54 / 250 1.8s Domainslib.Task.parallel_for test
[ ] 61 0 0 61 / 250 1.9s Domainslib.Task.parallel_for test
[ ] 76 0 0 76 / 250 2.0s Domainslib.Task.parallel_for test
[ ] 90 0 0 90 / 250 2.1s Domainslib.Task.parallel_for test
[ ] 107 0 0 107 / 250 2.2s Domainslib.Task.parallel_for test
[ ] 127 0 0 127 / 250 2.3s Domainslib.Task.parallel_for test
[ ] 159 0 0 159 / 250 2.4s Domainslib.Task.parallel_for test
[ ] 191 0 0 191 / 250 2.5s Domainslib.Task.parallel_for test
[ ] 219 0 0 219 / 250 2.6s Domainslib.Task.parallel_for test
[ ] 238 0 0 238 / 250 2.7s Domainslib.Task.parallel_for test
[✓] 250 0 0 250 / 250 2.8s Domainslib.Task.parallel_for test
-
[ ] 0 0 0 0 / 250 0.0s Domainslib.Task.parallel_for_reduce test
[ ] 23 0 0 23 / 250 0.1s Domainslib.Task.parallel_for_reduce test
[ ] 40 0 0 40 / 250 0.2s Domainslib.Task.parallel_for_reduce test
[ ] 59 0 0 59 / 250 0.3s Domainslib.Task.parallel_for_reduce test
[ ] 77 0 0 77 / 250 0.4s Domainslib.Task.parallel_for_reduce test
[ ] 92 0 0 92 / 250 0.6s Domainslib.Task.parallel_for_reduce test
[ ] 111 0 0 111 / 250 0.7s Domainslib.Task.parallel_for_reduce test
[ ] 166 0 0 166 / 250 0.8s Domainslib.Task.parallel_for_reduce test
[ ] 219 0 0 219 / 250 0.9s Domainslib.Task.parallel_for_reduce test
[ ] 231 0 0 231 / 250 1.0s Domainslib.Task.parallel_for_reduce test
[ ] 249 0 0 249 / 250 1.1s Domainslib.Task.parallel_for_reduce test
[✓] 250 0 0 250 / 250 1.2s Domainslib.Task.parallel_for_reduce test
-
[ ] 0 0 0 0 / 250 0.0s Domainslib.Task.parallel_scan test
[ ] 17 0 0 17 / 250 0.1s Domainslib.Task.parallel_scan test
[ ] 43 0 0 43 / 250 0.2s Domainslib.Task.parallel_scan test
[ ] 51 0 0 51 / 250 0.3s Domainslib.Task.parallel_scan test
[ ] 60 0 0 60 / 250 0.4s Domainslib.Task.parallel_scan test
[ ] 74 0 0 74 / 250 0.5s Domainslib.Task.parallel_scan test
[ ] 81 0 0 81 / 250 0.6s Domainslib.Task.parallel_scan test
[ ] 89 0 0 89 / 250 0.7s Domainslib.Task.parallel_scan test
[ ] 98 0 0 98 / 250 0.9s Domainslib.Task.parallel_scan test
[ ] 104 0 0 104 / 250 1.0s Domainslib.Task.parallel_scan test
[ ] 114 0 0 114 / 250 1.1s Domainslib.Task.parallel_scan test
[ ] 117 0 0 117 / 250 1.2s Domainslib.Task.parallel_scan test
[ ] 120 0 0 120 / 250 1.3s Domainslib.Task.parallel_scan test
[ ] 125 0 0 125 / 250 1.4s Domainslib.Task.parallel_scan test
[ ] 128 0 0 128 / 250 1.5s Domainslib.Task.parallel_scan test
[ ] 137 0 0 137 / 250 1.6s Domainslib.Task.parallel_scan test
[ ] 148 0 0 148 / 250 1.7s Domainslib.Task.parallel_scan test
[ ] 162 0 0 162 / 250 1.9s Domainslib.Task.parallel_scan test
[ ] 177 0 0 177 / 250 2.0s Domainslib.Task.parallel_scan test
[ ] 184 0 0 184 / 250 2.1s Domainslib.Task.parallel_scan test
[ ] 190 0 0 190 / 250 2.2s Domainslib.Task.parallel_scan test
[ ] 198 0 0 198 / 250 2.3s Domainslib.Task.parallel_scan test
[ ] 204 0 0 204 / 250 2.5s Domainslib.Task.parallel_scan test
[ ] 210 0 0 210 / 250 2.6s Domainslib.Task.parallel_scan test
[ ] 215 0 0 215 / 250 2.7s Domainslib.Task.parallel_scan test
[ ] 226 0 0 226 / 250 2.8s Domainslib.Task.parallel_scan test
[ ] 242 0 0 242 / 250 2.9s Domainslib.Task.parallel_scan test
[ ] 248 0 0 248 / 250 3.0s Domainslib.Task.parallel_scan test
[✓] 250 0 0 250 / 250 3.1s Domainslib.Task.parallel_scan test
- ================================================================================
- success (ran 3 tests)
- (cd _build/default/test && ./LU_decomposition_multicore.exe)
- ### OCaml runtime: debug mode ###
- ### set OCAMLRUNPARAM=v=0 to silence this message
- (cd _build/default/test && ./chan_stm_tests.exe --verbose)
-
random seed: 198981428
- generated error fail pass / total time test name
-
[ ] 0 0 0 0 / 500 0.0s STM Domainslib.Chan test sequential
[✓] 500 0 0 500 / 500 0.0s STM Domainslib.Chan test sequential
-
[ ] 0 0 0 0 / 500 0.0s STM Domainslib.Chan test parallel
[ ] 1 0 0 1 / 500 0.3s STM Domainslib.Chan test parallel
[ ] 2 0 0 2 / 500 0.5s STM Domainslib.Chan test parallel
[ ] 3 0 0 3 / 500 0.7s STM Domainslib.Chan test parallel
[ ] 14 0 0 5 / 500 0.9s STM Domainslib.Chan test parallel
[ ] 16 0 0 6 / 500 1.1s STM Domainslib.Chan test parallel
[ ] 20 0 0 8 / 500 1.2s STM Domainslib.Chan test parallel
[ ] 25 0 0 11 / 500 1.4s STM Domainslib.Chan test parallel
[ ] 31 0 0 13 / 500 1.5s STM Domainslib.Chan test parallel
[ ] 38 0 0 17 / 500 1.6s STM Domainslib.Chan test parallel
[ ] 48 0 0 21 / 500 1.7s STM Domainslib.Chan test parallel
[ ] 65 0 0 28 / 500 1.8s STM Domainslib.Chan test parallel
[ ] 78 0 0 35 / 500 1.9s STM Domainslib.Chan test parallel
[ ] 89 0 0 40 / 500 2.0s STM Domainslib.Chan test parallel
[ ] 93 0 0 43 / 500 2.5s STM Domainslib.Chan test parallel
[ ] 98 0 0 44 / 500 2.6s STM Domainslib.Chan test parallel
[ ] 105 0 0 45 / 500 2.9s STM Domainslib.Chan test parallel
[ ] 112 0 0 48 / 500 3.0s STM Domainslib.Chan test parallel
[ ] 118 0 0 53 / 500 3.2s STM Domainslib.Chan test parallel
[ ] 126 0 0 57 / 500 3.3s STM Domainslib.Chan test parallel
[ ] 130 0 0 61 / 500 3.5s STM Domainslib.Chan test parallel
[ ] 133 0 0 64 / 500 3.6s STM Domainslib.Chan test parallel
[ ] 137 0 0 66 / 500 4.4s STM Domainslib.Chan test parallel
[ ] 138 0 0 67 / 500 4.7s STM Domainslib.Chan test parallel
[ ] 139 0 0 68 / 500 4.9s STM Domainslib.Chan test parallel
[ ] 144 0 0 71 / 500 5.1s STM Domainslib.Chan test parallel
[ ] 150 0 0 73 / 500 5.2s STM Domainslib.Chan test parallel
[ ] 156 0 0 75 / 500 5.4s STM Domainslib.Chan test parallel
[ ] 158 0 0 76 / 500 5.6s STM Domainslib.Chan test parallel
[ ] 162 0 0 78 / 500 5.9s STM Domainslib.Chan test parallel
[ ] 166 0 0 80 / 500 6.0s STM Domainslib.Chan test parallel
[ ] 171 0 0 83 / 500 6.1s STM Domainslib.Chan test parallel
[ ] 181 0 0 86 / 500 6.3s STM Domainslib.Chan test parallel
[ ] 184 0 0 88 / 500 6.4s STM Domainslib.Chan test parallel
[ ] 190 0 0 91 / 500 6.5s STM Domainslib.Chan test parallel
[ ] 197 0 0 93 / 500 7.1s STM Domainslib.Chan test parallel
[ ] 204 0 0 95 / 500 7.2s STM Domainslib.Chan test parallel
[ ] 205 0 0 96 / 500 7.4s STM Domainslib.Chan test parallel
[ ] 214 0 0 99 / 500 7.5s STM Domainslib.Chan test parallel
[ ] 221 0 0 103 / 500 7.6s STM Domainslib.Chan test parallel
[ ] 225 0 0 106 / 500 8.0s STM Domainslib.Chan test parallel
[ ] 235 0 0 110 / 500 8.1s STM Domainslib.Chan test parallel
[ ] 250 0 0 115 / 500 8.4s STM Domainslib.Chan test parallel
[ ] 258 0 0 122 / 500 8.6s STM Domainslib.Chan test parallel
[ ] 268 0 0 127 / 500 8.7s STM Domainslib.Chan test parallel
[ ] 283 0 0 134 / 500 8.8s STM Domainslib.Chan test parallel
[ ] 297 0 0 142 / 500 8.9s STM Domainslib.Chan test parallel
[ ] 321 0 0 153 / 500 9.0s STM Domainslib.Chan test parallel
[ ] 326 0 0 154 / 500 9.2s STM Domainslib.Chan test parallel
[ ] 346 0 0 163 / 500 9.4s STM Domainslib.Chan test parallel
[ ] 351 0 0 165 / 500 9.5s STM Domainslib.Chan test parallel
[ ] 360 0 0 170 / 500 9.6s STM Domainslib.Chan test parallel
[ ] 364 0 0 172 / 500 9.8s STM Domainslib.Chan test parallel
[ ] 371 0 0 174 / 500 9.9s STM Domainslib.Chan test parallel
[ ] 373 0 0 175 / 500 10.0s STM Domainslib.Chan test parallel
[ ] 375 0 0 176 / 500 10.5s STM Domainslib.Chan test parallel
[ ] 383 0 0 182 / 500 10.6s STM Domainslib.Chan test parallel
[ ] 394 0 0 187 / 500 10.7s STM Domainslib.Chan test parallel
[ ] 397 0 0 189 / 500 11.0s STM Domainslib.Chan test parallel
[ ] 411 0 0 200 / 500 11.1s STM Domainslib.Chan test parallel
[ ] 433 0 0 211 / 500 11.4s STM Domainslib.Chan test parallel
[ ] 454 0 0 223 / 500 11.5s STM Domainslib.Chan test parallel
[ ] 466 0 0 232 / 500 11.7s STM Domainslib.Chan test parallel
[ ] 474 0 0 236 / 500 12.0s STM Domainslib.Chan test parallel
[ ] 481 0 0 240 / 500 12.1s STM Domainslib.Chan test parallel
[ ] 487 0 0 244 / 500 12.2s STM Domainslib.Chan test parallel
[ ] 504 0 0 253 / 500 12.3s STM Domainslib.Chan test parallel
[ ] 505 0 0 254 / 500 12.5s STM Domainslib.Chan test parallel
[ ] 531 0 0 266 / 500 12.6s STM Domainslib.Chan test parallel
[ ] 547 0 0 276 / 500 12.7s STM Domainslib.Chan test parallel
[ ] 565 0 0 285 / 500 12.8s STM Domainslib.Chan test parallel
[ ] 582 0 0 294 / 500 13.0s STM Domainslib.Chan test parallel
[ ] 585 0 0 296 / 500 13.1s STM Domainslib.Chan test parallel
[ ] 600 0 0 301 / 500 13.2s STM Domainslib.Chan test parallel
[ ] 612 0 0 305 / 500 13.3s STM Domainslib.Chan test parallel
[ ] 620 0 0 310 / 500 13.5s STM Domainslib.Chan test parallel
[ ] 629 0 0 315 / 500 13.6s STM Domainslib.Chan test parallel
[ ] 644 0 0 325 / 500 13.7s STM Domainslib.Chan test parallel
[ ] 654 0 0 329 / 500 13.8s STM Domainslib.Chan test parallel
[ ] 662 0 0 335 / 500 14.2s STM Domainslib.Chan test parallel
[ ] 671 0 0 342 / 500 14.3s STM Domainslib.Chan test parallel
[ ] 683 0 0 349 / 500 14.4s STM Domainslib.Chan test parallel
[ ] 687 0 0 351 / 500 14.5s STM Domainslib.Chan test parallel
[ ] 704 0 0 355 / 500 14.8s STM Domainslib.Chan test parallel
[ ] 714 0 0 360 / 500 15.1s STM Domainslib.Chan test parallel
[ ] 724 0 0 365 / 500 15.2s STM Domainslib.Chan test parallel
[ ] 743 0 0 374 / 500 15.4s STM Domainslib.Chan test parallel
[ ] 773 0 0 384 / 500 15.6s STM Domainslib.Chan test parallel
[ ] 793 0 0 393 / 500 15.7s STM Domainslib.Chan test parallel
[ ] 799 0 0 395 / 500 16.0s STM Domainslib.Chan test parallel
[ ] 810 0 0 403 / 500 16.1s STM Domainslib.Chan test parallel
[ ] 826 0 0 415 / 500 16.4s STM Domainslib.Chan test parallel
[ ] 843 0 0 424 / 500 16.8s STM Domainslib.Chan test parallel
[ ] 871 0 0 431 / 500 16.9s STM Domainslib.Chan test parallel
[ ] 900 0 0 443 / 500 17.0s STM Domainslib.Chan test parallel
[ ] 908 0 0 448 / 500 17.1s STM Domainslib.Chan test parallel
[ ] 918 0 0 455 / 500 17.2s STM Domainslib.Chan test parallel
[ ] 919 0 0 455 / 500 17.3s STM Domainslib.Chan test parallel
[ ] 925 0 0 458 / 500 17.4s STM Domainslib.Chan test parallel
[ ] 941 0 0 470 / 500 17.5s STM Domainslib.Chan test parallel
[ ] 951 0 0 477 / 500 17.7s STM Domainslib.Chan test parallel
[ ] 952 0 0 478 / 500 17.9s STM Domainslib.Chan test parallel
[ ] 955 0 0 481 / 500 18.1s STM Domainslib.Chan test parallel
[ ] 970 0 0 489 / 500 18.2s STM Domainslib.Chan test parallel
[ ] 980 0 0 495 / 500 18.4s STM Domainslib.Chan test parallel
[✓] 996 0 0 500 / 500 18.5s STM Domainslib.Chan test parallel
- ================================================================================
- success (ran 2 tests)
- (cd _build/default/test && ./task_more_deps.exe --verbose)
-
random seed: 480072991
- generated error fail pass / total time test name
-
[ ] 0 0 0 0 / 100 0.0s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 1 0 0 1 / 100 2.1s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 2 0 0 2 / 100 4.1s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 3 0 0 3 / 100 5.3s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 4 0 0 4 / 100 6.2s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 5 0 0 5 / 100 6.9s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 6 0 0 6 / 100 7.7s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 7 0 0 7 / 100 8.3s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 8 0 0 8 / 100 8.9s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 9 0 0 9 / 100 9.4s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 10 0 0 10 / 100 10.0s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 11 0 0 11 / 100 10.7s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 12 0 0 12 / 100 11.2s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 13 0 0 13 / 100 11.7s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 14 0 0 14 / 100 12.2s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 15 0 0 15 / 100 12.7s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 16 0 0 16 / 100 13.8s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 17 0 0 17 / 100 14.3s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 18 0 0 18 / 100 14.7s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 19 0 0 19 / 100 15.2s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 20 0 0 20 / 100 16.3s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 21 0 0 21 / 100 17.2s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 22 0 0 22 / 100 17.7s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 23 0 0 23 / 100 18.4s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 24 0 0 24 / 100 18.9s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 25 0 0 25 / 100 19.4s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 26 0 0 26 / 100 21.0s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 27 0 0 27 / 100 22.3s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 28 0 0 28 / 100 23.2s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 29 0 0 29 / 100 23.7s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 30 0 0 30 / 100 24.2s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 31 0 0 31 / 100 24.8s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 32 0 0 32 / 100 25.3s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 33 0 0 33 / 100 26.6s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 34 0 0 34 / 100 27.7s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 35 0 0 35 / 100 29.2s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 36 0 0 36 / 100 30.3s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 37 0 0 37 / 100 32.8s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 38 0 0 38 / 100 33.3s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 39 0 0 39 / 100 33.8s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 40 0 0 40 / 100 34.4s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 41 0 0 41 / 100 36.7s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 42 0 0 42 / 100 39.0s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 43 0 0 43 / 100 41.0s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 44 0 0 44 / 100 43.2s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 45 0 0 45 / 100 43.9s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 46 0 0 46 / 100 45.0s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 47 0 0 47 / 100 46.3s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 48 0 0 48 / 100 48.8s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 49 0 0 49 / 100 49.6s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 50 0 0 50 / 100 50.7s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 51 0 0 51 / 100 51.6s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 52 0 0 52 / 100 52.2s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 53 0 0 53 / 100 53.0s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 54 0 0 54 / 100 54.0s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 55 0 0 55 / 100 55.4s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 56 0 0 56 / 100 56.6s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 57 0 0 57 / 100 57.3s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 58 0 0 58 / 100 57.8s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 59 0 0 59 / 100 58.4s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 60 0 0 60 / 100 59.1s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 61 0 0 61 / 100 59.5s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 62 0 0 62 / 100 59.9s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 63 0 0 63 / 100 60.4s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 64 0 0 64 / 100 60.9s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 65 0 0 65 / 100 61.4s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 66 0 0 66 / 100 61.7s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 67 0 0 67 / 100 62.4s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 68 0 0 68 / 100 63.7s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 69 0 0 69 / 100 64.7s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 70 0 0 70 / 100 66.0s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 71 0 0 71 / 100 66.7s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 72 0 0 72 / 100 67.2s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 73 0 0 73 / 100 68.2s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 74 0 0 74 / 100 68.9s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 75 0 0 75 / 100 69.7s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 76 0 0 76 / 100 70.3s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 77 0 0 77 / 100 71.7s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 78 0 0 78 / 100 72.3s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 79 0 0 79 / 100 73.5s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 80 0 0 80 / 100 74.1s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 81 0 0 81 / 100 74.6s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 82 0 0 82 / 100 75.2s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 83 0 0 83 / 100 76.3s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 84 0 0 84 / 100 76.9s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 85 0 0 85 / 100 78.6s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 86 0 0 86 / 100 79.5s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 87 0 0 87 / 100 80.9s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 88 0 0 88 / 100 81.5s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 89 0 0 89 / 100 82.7s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 90 0 0 90 / 100 83.3s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 91 0 0 91 / 100 84.2s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 92 0 0 92 / 100 86.6s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 93 0 0 93 / 100 87.7s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 94 0 0 94 / 100 88.4s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 95 0 0 95 / 100 89.2s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 96 0 0 96 / 100 92.9s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 97 0 0 97 / 100 95.2s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 98 0 0 98 / 100 97.4s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 99 0 0 99 / 100 99.9s Domainslib.Task.async/await, more deps, 1 work pool
[ ] 100 0 0 100 / 100 101.7s Domainslib.Task.async/await, more deps, 1 work pool
[✓] 100 0 0 100 / 100 101.7s Domainslib.Task.async/await, more deps, 1 work pool
- ================================================================================
- success (ran 1 tests)
- (cd _build/default/test && ./task_one_dep.exe --verbose)
-
random seed: 218812509
- generated error fail pass / total time test name
-
[ ] 0 0 0 0 / 100 0.0s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 1 0 0 1 / 100 0.6s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 2 0 0 2 / 100 1.7s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 3 0 0 3 / 100 3.7s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 4 0 0 4 / 100 5.5s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 5 0 0 5 / 100 6.8s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 6 0 0 6 / 100 7.5s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 7 0 0 7 / 100 8.4s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 8 0 0 8 / 100 10.6s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 9 0 0 9 / 100 11.2s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 10 0 0 10 / 100 11.7s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 11 0 0 11 / 100 12.5s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 12 0 0 12 / 100 13.3s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 13 0 0 13 / 100 14.0s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 14 0 0 14 / 100 14.6s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 15 0 0 15 / 100 16.0s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 16 0 0 16 / 100 16.5s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 17 0 0 17 / 100 17.5s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 18 0 0 18 / 100 18.7s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 19 0 0 19 / 100 19.9s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 20 0 0 20 / 100 20.6s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 21 0 0 21 / 100 21.6s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 22 0 0 22 / 100 22.3s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 23 0 0 23 / 100 23.5s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 24 0 0 24 / 100 28.3s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 25 0 0 25 / 100 29.3s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 26 0 0 26 / 100 30.0s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 27 0 0 27 / 100 32.1s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 28 0 0 28 / 100 33.3s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 29 0 0 29 / 100 35.0s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 30 0 0 30 / 100 36.0s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 31 0 0 31 / 100 37.3s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 32 0 0 32 / 100 37.9s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 33 0 0 33 / 100 39.7s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 34 0 0 34 / 100 41.3s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 35 0 0 35 / 100 42.5s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 36 0 0 36 / 100 44.4s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 37 0 0 37 / 100 47.1s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 38 0 0 38 / 100 48.5s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 39 0 0 39 / 100 49.4s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 40 0 0 40 / 100 50.4s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 41 0 0 41 / 100 51.7s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 42 0 0 42 / 100 54.2s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 43 0 0 43 / 100 54.9s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 44 0 0 44 / 100 55.9s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 45 0 0 45 / 100 56.6s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 46 0 0 46 / 100 61.9s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 47 0 0 47 / 100 63.0s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 48 0 0 48 / 100 63.9s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 49 0 0 49 / 100 64.8s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 50 0 0 50 / 100 65.9s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 51 0 0 51 / 100 66.9s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 52 0 0 52 / 100 67.6s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 53 0 0 53 / 100 68.9s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 54 0 0 54 / 100 70.4s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 55 0 0 55 / 100 72.1s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 56 0 0 56 / 100 72.9s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 57 0 0 57 / 100 74.5s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 58 0 0 58 / 100 76.3s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 59 0 0 59 / 100 78.6s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 60 0 0 60 / 100 79.7s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 61 0 0 61 / 100 80.9s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 62 0 0 62 / 100 81.5s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 63 0 0 63 / 100 82.4s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 64 0 0 64 / 100 84.0s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 65 0 0 65 / 100 86.5s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 66 0 0 66 / 100 89.7s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 67 0 0 67 / 100 92.4s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 68 0 0 68 / 100 96.3s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 69 0 0 69 / 100 98.4s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 70 0 0 70 / 100 101.3s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 71 0 0 71 / 100 103.3s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 72 0 0 72 / 100 105.2s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 73 0 0 73 / 100 106.4s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 74 0 0 74 / 100 109.5s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 75 0 0 75 / 100 112.5s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 76 0 0 76 / 100 113.3s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 77 0 0 77 / 100 115.1s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 78 0 0 78 / 100 120.1s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 79 0 0 79 / 100 120.8s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 80 0 0 80 / 100 121.5s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 81 0 0 81 / 100 122.5s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 82 0 0 82 / 100 123.6s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 83 0 0 83 / 100 125.1s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 84 0 0 84 / 100 126.0s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 85 0 0 85 / 100 128.2s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 86 0 0 86 / 100 129.1s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 87 0 0 87 / 100 130.2s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 88 0 0 88 / 100 132.6s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 89 0 0 89 / 100 133.8s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 90 0 0 90 / 100 135.6s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 91 0 0 91 / 100 136.7s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 92 0 0 92 / 100 138.8s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 93 0 0 93 / 100 140.4s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 94 0 0 94 / 100 141.1s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 95 0 0 95 / 100 142.6s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 96 0 0 96 / 100 143.9s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 97 0 0 97 / 100 144.6s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 98 0 0 98 / 100 145.5s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 99 0 0 99 / 100 146.2s Domainslib.Task.async/await, one dep, 1 work pool
[ ] 100 0 0 100 / 100 147.5s Domainslib.Task.async/await, one dep, 1 work pool
[✓] 100 0 0 100 / 100 147.5s Domainslib.Task.async/await, one dep, 1 work pool
-
[ ] 0 0 0 0 / 100 0.0s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 1 0 0 1 / 100 1.1s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 2 0 0 2 / 100 2.3s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 3 0 0 3 / 100 3.0s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 4 0 0 4 / 100 5.7s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 5 0 0 5 / 100 6.4s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 6 0 0 6 / 100 7.8s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 7 0 0 7 / 100 9.0s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 8 0 0 8 / 100 10.6s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 9 0 0 9 / 100 12.1s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 10 0 0 10 / 100 13.4s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 11 0 0 11 / 100 14.5s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 12 0 0 12 / 100 20.0s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 13 0 0 13 / 100 20.8s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 14 0 0 14 / 100 23.3s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 15 0 0 15 / 100 25.6s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 16 0 0 16 / 100 27.3s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 17 0 0 17 / 100 31.1s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 18 0 0 18 / 100 34.2s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 19 0 0 19 / 100 37.2s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 20 0 0 20 / 100 38.4s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 21 0 0 21 / 100 42.4s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 22 0 0 22 / 100 44.7s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 23 0 0 23 / 100 52.4s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 24 0 0 24 / 100 54.0s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 25 0 0 25 / 100 57.0s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 26 0 0 26 / 100 58.7s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 27 0 0 27 / 100 61.6s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 28 0 0 28 / 100 64.7s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 29 0 0 29 / 100 67.1s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 30 0 0 30 / 100 69.0s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 31 0 0 31 / 100 71.4s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 32 0 0 32 / 100 73.6s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 33 0 0 33 / 100 76.4s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 34 0 0 34 / 100 78.2s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 35 0 0 35 / 100 80.4s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 36 0 0 36 / 100 84.1s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 37 0 0 37 / 100 87.9s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 38 0 0 38 / 100 89.5s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 39 0 0 39 / 100 94.5s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 40 0 0 40 / 100 96.1s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 41 0 0 41 / 100 98.2s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 42 0 0 42 / 100 100.7s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 43 0 0 43 / 100 103.1s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 44 0 0 44 / 100 105.0s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 45 0 0 45 / 100 108.9s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 46 0 0 46 / 100 111.9s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 47 0 0 47 / 100 113.8s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 48 0 0 48 / 100 117.2s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 49 0 0 49 / 100 120.7s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 50 0 0 50 / 100 125.0s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 51 0 0 51 / 100 128.6s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 52 0 0 52 / 100 130.6s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 53 0 0 53 / 100 132.6s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 54 0 0 54 / 100 138.1s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 55 0 0 55 / 100 139.5s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 56 0 0 56 / 100 140.9s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 57 0 0 57 / 100 142.3s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 58 0 0 58 / 100 147.4s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 59 0 0 59 / 100 153.7s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 60 0 0 60 / 100 158.7s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 61 0 0 61 / 100 167.6s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 62 0 0 62 / 100 174.4s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 63 0 0 63 / 100 176.3s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 64 0 0 64 / 100 180.2s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 65 0 0 65 / 100 183.9s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 66 0 0 66 / 100 185.3s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 67 0 0 67 / 100 186.5s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 68 0 0 68 / 100 191.7s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 69 0 0 69 / 100 193.4s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 70 0 0 70 / 100 197.9s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 71 0 0 71 / 100 200.8s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 72 0 0 72 / 100 204.7s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 73 0 0 73 / 100 206.6s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 74 0 0 74 / 100 208.9s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 75 0 0 75 / 100 210.7s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 76 0 0 76 / 100 212.6s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 77 0 0 77 / 100 214.2s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 78 0 0 78 / 100 219.1s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 79 0 0 79 / 100 223.3s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 80 0 0 80 / 100 225.2s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 81 0 0 81 / 100 228.9s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 82 0 0 82 / 100 229.7s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 83 0 0 83 / 100 238.5s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 84 0 0 84 / 100 242.3s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 85 0 0 85 / 100 247.2s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 86 0 0 86 / 100 250.6s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 87 0 0 87 / 100 253.5s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 88 0 0 88 / 100 254.6s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 89 0 0 89 / 100 256.7s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 90 0 0 90 / 100 258.3s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 91 0 0 91 / 100 262.3s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 92 0 0 92 / 100 264.9s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 93 0 0 93 / 100 267.9s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 94 0 0 94 / 100 271.5s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 95 0 0 95 / 100 279.8s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 96 0 0 96 / 100 282.2s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 97 0 0 97 / 100 283.6s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 98 0 0 98 / 100 286.7s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 99 0 0 99 / 100 292.1s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[ ] 100 0 0 100 / 100 294.2s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
[✓] 100 0 0 100 / 100 294.2s Domainslib.Task.async/await, one dep, w.2 pools, syncing at the end
-
[ ] 0 0 0 0 / 100 0.0s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 1 0 0 1 / 100 1.8s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 2 0 0 2 / 100 3.4s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 3 0 0 3 / 100 5.8s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 4 0 0 4 / 100 8.6s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 5 0 0 5 / 100 9.8s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 6 0 0 6 / 100 11.4s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 7 0 0 7 / 100 12.2s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 8 0 0 8 / 100 14.0s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 9 0 0 9 / 100 16.6s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 10 0 0 10 / 100 18.1s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 11 0 0 11 / 100 19.5s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 12 0 0 12 / 100 35.7s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 13 0 0 13 / 100 37.9s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 14 0 0 14 / 100 41.7s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 15 0 0 15 / 100 44.5s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 16 0 0 16 / 100 48.1s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 17 0 0 17 / 100 54.1s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 18 0 0 18 / 100 61.4s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 19 0 0 19 / 100 65.9s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 20 0 0 20 / 100 68.7s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 21 0 0 21 / 100 73.2s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 22 0 0 22 / 100 74.6s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 23 0 0 23 / 100 90.8s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 24 0 0 24 / 100 92.7s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 25 0 0 25 / 100 94.6s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 26 0 0 26 / 100 95.8s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 27 0 0 27 / 100 97.1s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 28 0 0 28 / 100 98.8s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 29 0 0 29 / 100 100.2s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 30 0 0 30 / 100 101.5s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 31 0 0 31 / 100 102.7s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 32 0 0 32 / 100 103.5s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 33 0 0 33 / 100 105.6s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 34 0 0 34 / 100 106.9s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 35 0 0 35 / 100 108.0s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 36 0 0 36 / 100 110.0s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 37 0 0 37 / 100 112.9s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 38 0 0 38 / 100 114.1s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 39 0 0 39 / 100 120.5s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 40 0 0 40 / 100 121.4s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 41 0 0 41 / 100 122.6s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 42 0 0 42 / 100 123.8s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 43 0 0 43 / 100 125.3s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 44 0 0 44 / 100 126.4s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 45 0 0 45 / 100 127.9s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 46 0 0 46 / 100 129.2s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 47 0 0 47 / 100 130.8s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 48 0 0 48 / 100 132.3s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 49 0 0 49 / 100 133.0s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 50 0 0 50 / 100 134.3s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 51 0 0 51 / 100 138.7s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 52 0 0 52 / 100 139.7s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 53 0 0 53 / 100 143.5s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 54 0 0 54 / 100 153.5s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 55 0 0 55 / 100 155.7s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 56 0 0 56 / 100 160.2s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 57 0 0 57 / 100 162.2s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 58 0 0 58 / 100 173.5s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 59 0 0 59 / 100 178.0s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 60 0 0 60 / 100 182.7s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 61 0 0 61 / 100 193.7s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 62 0 0 62 / 100 197.4s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 63 0 0 63 / 100 199.9s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 64 0 0 64 / 100 202.2s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 65 0 0 65 / 100 204.8s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 66 0 0 66 / 100 210.5s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 67 0 0 67 / 100 212.4s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 68 0 0 68 / 100 217.6s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 69 0 0 69 / 100 219.4s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 70 0 0 70 / 100 224.9s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 71 0 0 71 / 100 227.6s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 72 0 0 72 / 100 230.5s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 73 0 0 73 / 100 232.4s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 74 0 0 74 / 100 234.1s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 75 0 0 75 / 100 236.0s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 76 0 0 76 / 100 237.6s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 77 0 0 77 / 100 238.6s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 78 0 0 78 / 100 242.3s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 79 0 0 79 / 100 244.8s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 80 0 0 80 / 100 247.7s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 81 0 0 81 / 100 251.5s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 82 0 0 82 / 100 252.9s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 83 0 0 83 / 100 260.3s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 84 0 0 84 / 100 261.9s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 85 0 0 85 / 100 267.6s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 86 0 0 86 / 100 268.5s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 87 0 0 87 / 100 269.6s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 88 0 0 88 / 100 270.4s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 89 0 0 89 / 100 271.7s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 90 0 0 90 / 100 272.7s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 91 0 0 91 / 100 274.4s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 92 0 0 92 / 100 275.3s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 93 0 0 93 / 100 276.7s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 94 0 0 94 / 100 278.2s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 95 0 0 95 / 100 294.4s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 96 0 0 96 / 100 297.7s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 97 0 0 97 / 100 298.7s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 98 0 0 98 / 100 303.2s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 99 0 0 99 / 100 306.3s Domainslib.Task.async/await, one dep, w.2 nested pools
[ ] 100 0 0 100 / 100 307.6s Domainslib.Task.async/await, one dep, w.2 nested pools
[✓] 100 0 0 100 / 100 307.6s Domainslib.Task.async/await, one dep, w.2 nested pools
- ================================================================================
- success (ran 3 tests)
-> compiled domainslib.0.5.1
-> removed domainslib.0.5.1
-> installed domainslib.0.5.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-26 00:18.57 ---> saved as "6bfca75a8a18c97c80530f0aafc140cc91315379355ca4e0cd0bed4057aca867"
Job succeeded
2026-03-26 00:19.11: Job succeeded