- github
- ocaml
- opam-repository
- 89a6ae
- compilers,4.14,dune.3.23.0~alpha2,revdeps,bwd.2.3.0
(not at the head of any monitored branch or PR)
2026-04-30 02:04.44: New job: test bwd.2.3.0 with dune.3.23.0~alpha2, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29824/head (89a6ae888498500bf7c0fc05361da936fc6acacf)
on debian-13-ocaml-4.14/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29824/head" && git reset --hard 89a6ae88
git fetch origin master
git merge --no-edit d1c56642b8ca7e1166c90bfe0c74f38007bbad58
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:9fe84ffeeaa92507d198c7af8adb382726e06ae36c031f5ef645a3241cac0353
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn dune.3.23.0~alpha2 3.23.0~alpha2
RUN opam reinstall dune.3.23.0~alpha2; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'dune.3.23.0~alpha2' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall bwd.2.3.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'bwd.2.3.0' && 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 bwd.2.3.0) || true
RUN opam reinstall --with-test --verbose bwd.2.3.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'bwd.2.3.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2026-04-30 02:04.44: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:9fe84ffeeaa92507d198c7af8adb382726e06ae36c031f5ef645a3241cac0353-dune.3.23.0~alpha2-bwd.2.3.0-89a6ae888498500bf7c0fc05361da936fc6acacf"
2026-04-30 02:04.44: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:9fe84ffeeaa92507d198c7af8adb382726e06ae36c031f5ef645a3241cac0353)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
(run (shell "opam option solver=builtin-0install && opam config report"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMPRECISETRACKING 1)
(env CI true)
(env OPAM_REPO_CI true)
(run (shell "rm -rf opam-repository/"))
(copy (src .) (dst opam-repository/))
(run (shell "opam repository set-url --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn dune.3.23.0~alpha2 3.23.0~alpha2"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.23.0~alpha2;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dune.3.23.0~alpha2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall bwd.2.3.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'bwd.2.3.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (network host)
(shell "(opam reinstall --with-test bwd.2.3.0) || true"))
(run (shell "opam reinstall --with-test --verbose bwd.2.3.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'bwd.2.3.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-04-30 02:04.44: Waiting for resource in pool OCluster
2026-04-30 09:05.55: Waiting for worker…
2026-04-30 09:08.27: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
Updating files: 67% (12778/18887)
Updating files: 68% (12844/18887)
Updating files: 69% (13033/18887)
Updating files: 70% (13221/18887)
Updating files: 71% (13410/18887)
Updating files: 72% (13599/18887)
Updating files: 73% (13788/18887)
Updating files: 74% (13977/18887)
Updating files: 75% (14166/18887)
Updating files: 76% (14355/18887)
Updating files: 77% (14543/18887)
Updating files: 78% (14732/18887)
Updating files: 79% (14921/18887)
Updating files: 80% (15110/18887)
Updating files: 81% (15299/18887)
Updating files: 82% (15488/18887)
Updating files: 83% (15677/18887)
Updating files: 84% (15866/18887)
Updating files: 85% (16054/18887)
Updating files: 86% (16243/18887)
Updating files: 87% (16432/18887)
Updating files: 88% (16621/18887)
Updating files: 89% (16810/18887)
Updating files: 90% (16999/18887)
Updating files: 91% (17188/18887)
Updating files: 92% (17377/18887)
Updating files: 93% (17565/18887)
Updating files: 94% (17754/18887)
Updating files: 95% (17943/18887)
Updating files: 96% (18132/18887)
Updating files: 97% (18321/18887)
Updating files: 98% (18510/18887)
Updating files: 99% (18699/18887)
Updating files: 100% (18887/18887)
Updating files: 100% (18887/18887), done.
HEAD is now at d1c56642b8 Merge pull request #29820 from jmid/core-0.17.1-bound
Merge made by the 'ort' strategy.
.../chrome-trace/chrome-trace.3.23.0~alpha2/opam | 39 +++++++++++
.../dune-action-plugin.3.23.0~alpha2/opam | 52 ++++++++++++++
.../dune-action-trace.3.23.0~alpha2/opam | 39 +++++++++++
.../dune-build-info.3.23.0~alpha2/opam | 45 ++++++++++++
.../dune-configurator.3.23.0~alpha2/opam | 49 +++++++++++++
packages/dune-glob/dune-glob.3.23.0~alpha2/opam | 42 ++++++++++++
.../dune-private-libs.3.23.0~alpha2/opam | 50 ++++++++++++++
.../dune-rpc-lwt/dune-rpc-lwt.3.23.0~alpha2/opam | 41 +++++++++++
packages/dune-rpc/dune-rpc.3.23.0~alpha2/opam | 44 ++++++++++++
packages/dune-site/dune-site.3.23.0~alpha2/opam | 37 ++++++++++
packages/dune/dune.3.23.0~alpha2/opam | 80 ++++++++++++++++++++++
packages/dyn/dyn.3.23.0~alpha2/opam | 40 +++++++++++
packages/fs-io/fs-io.3.23.0~alpha2/opam | 39 +++++++++++
packages/ocamlc-loc/ocamlc-loc.3.23.0~alpha2/opam | 43 ++++++++++++
packages/ordering/ordering.3.23.0~alpha2/opam | 38 ++++++++++
packages/stdune/stdune.3.23.0~alpha2/opam | 46 +++++++++++++
.../top-closure/top-closure.3.23.0~alpha2/opam | 38 ++++++++++
packages/xdg/xdg.3.23.0~alpha2/opam | 39 +++++++++++
18 files changed, 801 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.23.0~alpha2/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.23.0~alpha2/opam
create mode 100644 packages/dune-action-trace/dune-action-trace.3.23.0~alpha2/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.23.0~alpha2/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.23.0~alpha2/opam
create mode 100644 packages/dune-glob/dune-glob.3.23.0~alpha2/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.23.0~alpha2/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.23.0~alpha2/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.23.0~alpha2/opam
create mode 100644 packages/dune-site/dune-site.3.23.0~alpha2/opam
create mode 100644 packages/dune/dune.3.23.0~alpha2/opam
create mode 100644 packages/dyn/dyn.3.23.0~alpha2/opam
create mode 100644 packages/fs-io/fs-io.3.23.0~alpha2/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.23.0~alpha2/opam
create mode 100644 packages/ordering/ordering.3.23.0~alpha2/opam
create mode 100644 packages/stdune/stdune.3.23.0~alpha2/opam
create mode 100644 packages/top-closure/top-closure.3.23.0~alpha2/opam
create mode 100644 packages/xdg/xdg.3.23.0~alpha2/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:9fe84ffeeaa92507d198c7af8adb382726e06ae36c031f5ef645a3241cac0353)
2026-04-30 09:08.31 ---> using "59750879172620501422dd230c4db220684ca7fe3e97409754eb72dcd3390183" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-04-30 09:08.31 ---> using "b9ebb375f27da820f646269f579489455309b96c19083cd92f7f6ddd05a4b5f2" 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-04-30 09:08.31 ---> using "a861010f9e8d58738e62217a8c0fc067b85ae67b915e1ef93e08d814bb3c914c" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.1
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.3"}]
# compiler-packages ocaml-base-compiler.4.14.3, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.3
2026-04-30 09:08.31 ---> using "a880c606232c92d84d818c349c45696fe9be139917bfa5f7b1065b497e8df441" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2026-04-30 09:08.31 ---> using "47c085e53aa5880966ff9fc1e1e12a4661255166181f7931a397db06034201cf" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-30 09:08.33 ---> using "4f46738dfb91aa0cd6670022d574de26b7ba05050d8f85957ea4872d96399e01" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-30 09:08.33 ---> using "f445e8c26fbca2dd0e343fb9cad949aab8e50ebe8f19361a10c799b6322ab39c" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [129 kB]
- Fetched 219 kB in 1s (233 kB/s)
- Reading package lists...
-
2026-04-30 09:08.33 ---> using "b966a5b49a15ba3eb63ca44315c18e89b0e8b1ab5327a74622eb8f27705503f7" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune.3.23.0~alpha2 3.23.0~alpha2"))
dune is now pinned to version 3.23.0~alpha2
2026-04-30 09:08.33 ---> using "25765793fc7cef20054e052a9de3d7d38466f3811e35fee48d28bad9710db3b2" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.23.0~alpha2;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'dune.3.23.0~alpha2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
dune.3.23.0~alpha2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install dune 3.23.0~alpha2 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.23.0~alpha2 (cached)
-> installed dune.3.23.0~alpha2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 09:08.33 ---> using "8638839e5ae5cf3f1965d4f7cf42b88935780d5bcff7e41a79deffdd572bdcbf" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall bwd.2.3.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'bwd.2.3.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
bwd.2.3.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install bwd 2.3.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bwd.2.3.0 (cached)
-> installed bwd.2.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 09:08.43 ---> saved as "f924aef79ff627144d96f9af2e24e4d5d48525747b3780fbe550e79f0c17bc37"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test bwd.2.3.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile bwd 2.3.0
=== install 1 package
- install qcheck-core 0.91 [required by bwd]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bwd.2.3.0 (https://opam.ocaml.org/cache)
-> retrieved qcheck-core.0.91 (https://opam.ocaml.org/cache)
-> removed bwd.2.3.0
-> installed qcheck-core.0.91
-> installed bwd.2.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 09:09.29 ---> saved as "9323f25a59d8e19e4857f3b7de4f7ba3a627f18a0a8809a4c1ef6e40b7e95772"
/home/opam: (run (shell "opam reinstall --with-test --verbose bwd.2.3.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'bwd.2.3.0' && 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 bwd 2.3.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [bwd.2.3.0: extract]
-> retrieved bwd.2.3.0 (cached)
Processing 2/4: [bwd: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "bwd" "-j" "71" (CWD=/home/opam/.opam/4.14/.opam-switch/build/bwd.2.3.0)
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "bwd" "-j" "71" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/bwd.2.3.0)
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I test/.TestBwdLabels.eobjs/byte -I test/.TestBwdLabels.eobjs/native -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I src/.Bwd.objs/byte -I src/.Bwd.objs/native -intf-suffix .ml -no-alias-deps -open Dune__exe -o test/.TestBwdLabels.eobjs/native/dune__exe__TestBwdLabels.cmx -c -impl test/TestBwdLabels.ml)
- File "test/TestBwdLabels.ml", line 25, characters 43-53:
- 25 | Q.Test.make ~count ~name:"length" Q.Gen.(small_list unit) ~print:Q.Print.(list unit)
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 29, characters 17-27:
- 29 | Q.Gen.(pair (small_list unit) (small_list unit))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 29, characters 35-45:
- 29 | Q.Gen.(pair (small_list unit) (small_list unit))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 34, characters 17-27:
- 34 | Q.Gen.(pair (small_list unit) (small_signed_int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 34, characters 35-51:
- 34 | Q.Gen.(pair (small_list unit) (small_signed_int))
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.Gen.small_signed_int
- Use [int_small] instead
- File "test/TestBwdLabels.ml", line 39, characters 11-21:
- 39 | Q.Gen.(small_list unit)
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 43, characters 47-57:
- 43 | Q.Test.make ~count ~name:"snoc" Q.Gen.(pair (small_list int) int) ~print:Q.Print.(pair (list int) int)
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 47, characters 17-27:
- 47 | Q.Gen.(pair (small_list int) small_signed_int)
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 47, characters 33-49:
- 47 | Q.Gen.(pair (small_list int) small_signed_int)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.Gen.small_signed_int
- Use [int_small] instead
- File "test/TestBwdLabels.ml", line 55, characters 17-27:
- 55 | Q.Gen.(pair (small_list int) small_signed_int)
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 55, characters 33-49:
- 55 | Q.Gen.(pair (small_list int) small_signed_int)
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.Gen.small_signed_int
- Use [int_small] instead
- File "test/TestBwdLabels.ml", line 63, characters 16-32:
- 63 | Q.Gen.(pair small_signed_int (Q.fun1 Q.Observable.int (opt int)))
- ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.Gen.small_signed_int
- Use [int_small] instead
- File "test/TestBwdLabels.ml", line 63, characters 59-62:
- 63 | Q.Gen.(pair small_signed_int (Q.fun1 Q.Observable.int (opt int)))
- ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- File "test/TestBwdLabels.ml", line 67, characters 49-59:
- 67 | Q.Test.make ~count ~name:"append" Q.Gen.(pair (small_list int) (small_list int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 67, characters 66-76:
- 67 | Q.Test.make ~count ~name:"append" Q.Gen.(pair (small_list int) (small_list int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 71, characters 50-60:
- 71 | Q.Test.make ~count ~name:"prepend" Q.Gen.(pair (small_list int) (small_list int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 71, characters 67-77:
- 71 | Q.Test.make ~count ~name:"prepend" Q.Gen.(pair (small_list int) (small_list int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 76, characters 67-77:
- 76 | Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list small_nat) (small_list small_nat))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 76, characters 78-87:
- 76 | Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list small_nat) (small_list small_nat))
- ^^^^^^^^^
- Alert deprecated: Q.Gen.small_nat
- Use [nat_small] instead
- File "test/TestBwdLabels.ml", line 76, characters 90-100:
- 76 | Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list small_nat) (small_list small_nat))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 76, characters 101-110:
- 76 | Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list small_nat) (small_list small_nat))
- ^^^^^^^^^
- Alert deprecated: Q.Gen.small_nat
- Use [nat_small] instead
- File "test/TestBwdLabels.ml", line 81, characters 66-76:
- 81 | Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) (small_list small_nat) (small_list small_nat))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 81, characters 77-86:
- 81 | Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) (small_list small_nat) (small_list small_nat))
- ^^^^^^^^^
- Alert deprecated: Q.Gen.small_nat
- Use [nat_small] instead
- File "test/TestBwdLabels.ml", line 81, characters 89-99:
- 81 | Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) (small_list small_nat) (small_list small_nat))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 81, characters 100-109:
- 81 | Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) (small_list small_nat) (small_list small_nat))
- ^^^^^^^^^
- Alert deprecated: Q.Gen.small_nat
- Use [nat_small] instead
- File "test/TestBwdLabels.ml", line 85, characters 41-51:
- 85 | Q.Test.make ~count ~name:"iter" Q.Gen.(small_list int)
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 94, characters 42-52:
- 94 | Q.Test.make ~count ~name:"iteri" Q.Gen.(small_list int)
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 104, characters 47-57:
- 104 | Q.Gen.(pair (Q.fun1 Q.Observable.int int) (small_list int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 109, characters 64-74:
- 109 | Q.Gen.(pair (Q.fun2 Q.Observable.int Q.Observable.int int) (small_list int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 114, characters 42-45:
- 114 | Q.Gen.(pair (Q.fun1 Q.Observable.int (opt int)) (small_list int))
- ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- File "test/TestBwdLabels.ml", line 114, characters 53-63:
- 114 | Q.Gen.(pair (Q.fun1 Q.Observable.int (opt int)) (small_list int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 119, characters 70-80:
- 119 | Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) int (small_list int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 124, characters 77-87:
- 124 | Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int (pair int int)) (small_list int) int)
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 132, characters 66-76:
- 132 | Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) (small_list int) int)
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 136, characters 48-58:
- 136 | Q.Test.make ~count ~name:"iter2" Q.Gen.(pair (small_list int) (small_list int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 136, characters 65-75:
- 136 | Q.Test.make ~count ~name:"iter2" Q.Gen.(pair (small_list int) (small_list int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 148, characters 66-76:
- 148 | Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) (small_list int) (small_list int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 148, characters 83-93:
- 148 | Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) (small_list int) (small_list int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 156, characters 85-95:
- 156 | Q.Gen.(quad (Q.fun3 Q.Observable.int Q.Observable.int Q.Observable.int int) int (small_list int) (small_list int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 156, characters 102-112:
- 156 | Q.Gen.(quad (Q.fun3 Q.Observable.int Q.Observable.int Q.Observable.int int) int (small_list int) (small_list int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 164, characters 81-91:
- 164 | Q.Gen.(quad (Q.fun3 Q.Observable.int Q.Observable.int Q.Observable.int int) (small_list int) (small_list int) int)
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 164, characters 98-108:
- 164 | Q.Gen.(quad (Q.fun3 Q.Observable.int Q.Observable.int Q.Observable.int int) (small_list int) (small_list int) int)
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 172, characters 48-58:
- 172 | Q.Gen.(pair (Q.fun1 Q.Observable.int bool) (small_list int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 177, characters 48-58:
- 177 | Q.Gen.(pair (Q.fun1 Q.Observable.int bool) (small_list int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 182, characters 67-77:
- 182 | Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list int) (small_list int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 182, characters 84-94:
- 182 | Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list int) (small_list int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 190, characters 67-77:
- 190 | Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list int) (small_list int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 190, characters 84-94:
- 190 | Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list int) (small_list int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 198, characters 16-25:
- 198 | Q.Gen.(pair small_nat (small_list small_nat))
- ^^^^^^^^^
- Alert deprecated: Q.Gen.small_nat
- Use [nat_small] instead
- File "test/TestBwdLabels.ml", line 198, characters 27-37:
- 198 | Q.Gen.(pair small_nat (small_list small_nat))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 198, characters 38-47:
- 198 | Q.Gen.(pair small_nat (small_list small_nat))
- ^^^^^^^^^
- Alert deprecated: Q.Gen.small_nat
- Use [nat_small] instead
- File "test/TestBwdLabels.ml", line 203, characters 17-20:
- 203 | Q.Gen.(pair (opt small_nat) (small_list (opt small_nat))) (* use [int option] to test physical equality *)
- ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- File "test/TestBwdLabels.ml", line 203, characters 21-30:
- 203 | Q.Gen.(pair (opt small_nat) (small_list (opt small_nat))) (* use [int option] to test physical equality *)
- ^^^^^^^^^
- Alert deprecated: Q.Gen.small_nat
- Use [nat_small] instead
- File "test/TestBwdLabels.ml", line 203, characters 33-43:
- 203 | Q.Gen.(pair (opt small_nat) (small_list (opt small_nat))) (* use [int option] to test physical equality *)
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 203, characters 45-48:
- 203 | Q.Gen.(pair (opt small_nat) (small_list (opt small_nat))) (* use [int option] to test physical equality *)
- ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- File "test/TestBwdLabels.ml", line 203, characters 49-58:
- 203 | Q.Gen.(pair (opt small_nat) (small_list (opt small_nat))) (* use [int option] to test physical equality *)
- ^^^^^^^^^
- Alert deprecated: Q.Gen.small_nat
- Use [nat_small] instead
- File "test/TestBwdLabels.ml", line 208, characters 48-58:
- 208 | Q.Gen.(pair (Q.fun1 Q.Observable.int bool) (small_list int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 213, characters 48-58:
- 213 | Q.Gen.(pair (Q.fun1 Q.Observable.int bool) (small_list int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 218, characters 48-58:
- 218 | Q.Gen.(pair (Q.fun1 Q.Observable.int bool) (small_list int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 223, characters 42-45:
- 223 | Q.Gen.(pair (Q.fun1 Q.Observable.int (opt int)) (small_list int))
- ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- File "test/TestBwdLabels.ml", line 223, characters 53-63:
- 223 | Q.Gen.(pair (Q.fun1 Q.Observable.int (opt int)) (small_list int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 228, characters 59-62:
- 228 | Q.Gen.(pair (Q.fun2 Q.Observable.int Q.Observable.int (opt int)) (small_list int))
- ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- File "test/TestBwdLabels.ml", line 228, characters 70-80:
- 228 | Q.Gen.(pair (Q.fun2 Q.Observable.int Q.Observable.int (opt int)) (small_list int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 233, characters 48-58:
- 233 | Q.Gen.(pair (Q.fun1 Q.Observable.int bool) (small_list int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 238, characters 48-58:
- 238 | Q.Gen.(pair (Q.fun1 Q.Observable.int bool) (small_list int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 243, characters 65-75:
- 243 | Q.Gen.(pair (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 248, characters 48-58:
- 248 | Q.Gen.(pair (Q.fun1 Q.Observable.int bool) (small_list int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 256, characters 59-69:
- 256 | Q.Gen.(pair (Q.fun1 Q.Observable.int (pair bool int)) (small_list int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 265, characters 11-21:
- 265 | Q.Gen.(small_list (pair int int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 273, characters 17-27:
- 273 | Q.Gen.(pair (small_list int) (small_list int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 273, characters 34-44:
- 273 | Q.Gen.(pair (small_list int) (small_list int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 280, characters 44-54:
- 280 | Q.Test.make ~count ~name:"to_list" Q.Gen.(small_list int) ~print:Q.Print.(list int)
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 283, characters 44-54:
- 283 | Q.Test.make ~count ~name:"of_list" Q.Gen.(small_list int) ~print:Q.Print.(list int)
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 287, characters 47-57:
- 287 | Q.Test.make ~count ~name:"(<:)" Q.Gen.(pair (small_list int) int) ~print:Q.Print.(pair (list int) int)
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 290, characters 47-57:
- 290 | Q.Test.make ~count ~name:"(<@)" Q.Gen.(pair (small_list int) (small_list int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 290, characters 64-74:
- 290 | Q.Test.make ~count ~name:"(<@)" Q.Gen.(pair (small_list int) (small_list int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 294, characters 47-57:
- 294 | Q.Test.make ~count ~name:"(@>)" Q.Gen.(pair (small_list int) (small_list int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 294, characters 64-74:
- 294 | Q.Test.make ~count ~name:"(@>)" Q.Gen.(pair (small_list int) (small_list int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- (cd _build/default/test && ./TestBwdLabels.exe)
-
random seed: 357854169
- generated error fail pass / total time test name
-
[ ] 0 0 0 0 / 10000 0.0s length
[✓] 10000 0 0 10000 / 10000 0.0s length
-
[ ] 0 0 0 0 / 10000 0.0s compare_lengths
[✓] 10000 0 0 10000 / 10000 0.1s compare_lengths
-
[ ] 0 0 0 0 / 10000 0.0s compare_length_with
[✓] 10000 0 0 10000 / 10000 0.1s compare_length_with
-
[ ] 0 0 0 0 / 10000 0.0s is_empty
[✓] 10000 0 0 10000 / 10000 0.0s is_empty
-
[ ] 0 0 0 0 / 10000 0.0s snoc
[ ] 2412 0 0 2412 / 10000 0.1s snoc (collecting)
[ ] 4831 0 0 4831 / 10000 0.2s snoc (collecting)
[ ] 7171 0 0 7171 / 10000 0.3s snoc (collecting)
[ ] 9395 0 0 9395 / 10000 0.4s snoc (collecting)
[✓] 10000 0 0 10000 / 10000 0.4s snoc
-
[ ] 0 0 0 0 / 10000 0.0s nth
[ ] 2466 0 0 2466 / 10000 0.1s nth (collecting)
[ ] 5068 0 0 5068 / 10000 0.2s nth (collecting)
[ ] 7568 0 0 7568 / 10000 0.3s nth (collecting)
[✓] 10000 0 0 10000 / 10000 0.4s nth
-
[ ] 0 0 0 0 / 10000 0.0s nth_opt
[ ] 2473 0 0 2473 / 10000 0.1s nth_opt (collecting)
[ ] 5068 0 0 5068 / 10000 0.2s nth_opt (collecting)
[ ] 7450 0 0 7450 / 10000 0.3s nth_opt (collecting)
[ ] 9942 0 0 9942 / 10000 0.4s nth_opt (collecting)
[✓] 10000 0 0 10000 / 10000 0.4s nth_opt
-
[ ] 0 0 0 0 / 10000 0.0s init
[ ] 3400 0 0 3400 / 10000 0.1s init
[ ] 6820 0 0 6820 / 10000 0.2s init (collecting)
[✓] 10000 0 0 10000 / 10000 0.3s init
-
[ ] 0 0 0 0 / 10000 0.0s append
[ ] 1189 0 0 1189 / 10000 0.1s append (collecting)
[ ] 2559 0 0 2559 / 10000 0.2s append (collecting)
[ ] 3906 0 0 3906 / 10000 0.3s append (collecting)
[ ] 5172 0 0 5172 / 10000 0.4s append (collecting)
[ ] 6452 0 0 6452 / 10000 0.5s append (collecting)
[ ] 7604 0 0 7604 / 10000 0.6s append (collecting)
[ ] 8939 0 0 8939 / 10000 0.7s append (collecting)
[✓] 10000 0 0 10000 / 10000 0.8s append
-
[ ] 0 0 0 0 / 10000 0.0s prepend
[ ] 1228 0 0 1228 / 10000 0.1s prepend (collecting)
[ ] 2465 0 0 2465 / 10000 0.2s prepend (collecting)
[ ] 3708 0 0 3708 / 10000 0.3s prepend (collecting)
[ ] 4930 0 0 4930 / 10000 0.4s prepend (collecting)
[ ] 6128 0 0 6128 / 10000 0.5s prepend (collecting)
[ ] 7293 0 0 7293 / 10000 0.6s prepend (collecting)
[ ] 8452 0 0 8452 / 10000 0.7s prepend (collecting)
[ ] 9710 0 0 9710 / 10000 0.8s prepend (collecting)
[✓] 10000 0 0 10000 / 10000 0.8s prepend
-
[ ] 0 0 0 0 / 10000 0.0s equal
[ ] 5692 0 0 5692 / 10000 0.1s equal
[✓] 10000 0 0 10000 / 10000 0.2s equal
-
[ ] 0 0 0 0 / 10000 0.0s compare
[ ] 4748 0 0 4748 / 10000 0.1s compare (collecting)
[ ] 9417 0 0 9417 / 10000 0.2s compare (collecting)
[✓] 10000 0 0 10000 / 10000 0.2s compare
-
[ ] 0 0 0 0 / 10000 0.0s iter
[ ] 2540 0 0 2540 / 10000 0.1s iter (collecting)
[ ] 5047 0 0 5047 / 10000 0.2s iter (collecting)
[ ] 7443 0 0 7443 / 10000 0.3s iter (collecting)
[✓] 10000 0 0 10000 / 10000 0.4s iter
-
[ ] 0 0 0 0 / 10000 0.0s iteri
[ ] 3927 0 0 3927 / 10000 0.1s iteri (collecting)
[ ] 6369 0 0 6369 / 10000 0.2s iteri (collecting)
[ ] 9234 0 0 9234 / 10000 0.3s iteri (collecting)
[✓] 10000 0 0 10000 / 10000 0.3s iteri
-
[ ] 0 0 0 0 / 10000 0.0s map
[ ] 1091 0 0 1091 / 10000 0.1s map (collecting)
[ ] 2174 0 0 2174 / 10000 0.2s map (collecting)
[ ] 3157 0 0 3157 / 10000 0.3s map
[ ] 4098 0 0 4098 / 10000 0.4s map (collecting)
[ ] 5080 0 0 5080 / 10000 0.5s map (collecting)
[ ] 6017 0 0 6017 / 10000 0.6s map (collecting)
[ ] 7030 0 0 7030 / 10000 0.7s map (collecting)
[ ] 8038 0 0 8038 / 10000 0.8s map
[ ] 9083 0 0 9083 / 10000 0.9s map (collecting)
[✓] 10000 0 0 10000 / 10000 1.0s map
-
[ ] 0 0 0 0 / 10000 0.0s mapi
[ ] 1009 0 0 1009 / 10000 0.1s mapi
[ ] 2096 0 0 2096 / 10000 0.2s mapi
[ ] 3153 0 0 3153 / 10000 0.3s mapi (collecting)
[ ] 4188 0 0 4188 / 10000 0.4s mapi
[ ] 5265 0 0 5265 / 10000 0.5s mapi
[ ] 6351 0 0 6351 / 10000 0.6s mapi (collecting)
[ ] 7394 0 0 7394 / 10000 0.7s mapi (collecting)
[ ] 8482 0 0 8482 / 10000 0.8s mapi (collecting)
[ ] 9565 0 0 9565 / 10000 0.9s mapi (collecting)
[✓] 10000 0 0 10000 / 10000 0.9s mapi
-
[ ] 0 0 0 0 / 10000 0.0s filter_map
[ ] 1226 0 0 1226 / 10000 0.1s filter_map (collecting)
[ ] 2447 0 0 2447 / 10000 0.2s filter_map
[ ] 3736 0 0 3736 / 10000 0.3s filter_map (collecting)
[ ] 4919 0 0 4919 / 10000 0.4s filter_map (collecting)
[ ] 6145 0 0 6145 / 10000 0.5s filter_map
[ ] 7407 0 0 7407 / 10000 0.6s filter_map
[ ] 8557 0 0 8557 / 10000 0.7s filter_map (collecting)
[ ] 9793 0 0 9793 / 10000 0.8s filter_map
[✓] 10000 0 0 10000 / 10000 0.8s filter_map
-
[ ] 0 0 0 0 / 10000 0.0s fold_left
[ ] 1091 0 0 1091 / 10000 0.1s fold_left
[ ] 2121 0 0 2121 / 10000 0.2s fold_left
[ ] 3248 0 0 3248 / 10000 0.3s fold_left
[ ] 4454 0 0 4454 / 10000 0.4s fold_left
[ ] 5573 0 0 5573 / 10000 0.5s fold_left (collecting)
[ ] 6668 0 0 6668 / 10000 0.6s fold_left
[ ] 7649 0 0 7649 / 10000 0.7s fold_left (collecting)
[ ] 8664 0 0 8664 / 10000 0.8s fold_left (collecting)
[ ] 9750 0 0 9750 / 10000 0.9s fold_left
[✓] 10000 0 0 10000 / 10000 0.9s fold_left
-
[ ] 0 0 0 0 / 10000 0.0s fold_right_map
[ ] 508 0 0 508 / 10000 0.1s fold_right_map
[ ] 1060 0 0 1060 / 10000 0.2s fold_right_map (collecting)
[ ] 1648 0 0 1648 / 10000 0.3s fold_right_map
[ ] 2194 0 0 2194 / 10000 0.4s fold_right_map
[ ] 2814 0 0 2814 / 10000 0.5s fold_right_map (collecting)
[ ] 3380 0 0 3380 / 10000 0.6s fold_right_map (collecting)
[ ] 3975 0 0 3975 / 10000 0.7s fold_right_map
[ ] 4562 0 0 4562 / 10000 0.8s fold_right_map
[ ] 5175 0 0 5175 / 10000 0.9s fold_right_map (collecting)
[ ] 5727 0 0 5727 / 10000 1.0s fold_right_map
[ ] 6263 0 0 6263 / 10000 1.1s fold_right_map (collecting)
[ ] 6804 0 0 6804 / 10000 1.2s fold_right_map (collecting)
[ ] 7409 0 0 7409 / 10000 1.3s fold_right_map
[ ] 8018 0 0 8018 / 10000 1.4s fold_right_map (collecting)
[ ] 8558 0 0 8558 / 10000 1.5s fold_right_map
[ ] 9130 0 0 9130 / 10000 1.6s fold_right_map
[ ] 9653 0 0 9653 / 10000 1.7s fold_right_map (collecting)
[✓] 10000 0 0 10000 / 10000 1.8s fold_right_map
-
[ ] 0 0 0 0 / 10000 0.0s fold_right
[ ] 1021 0 0 1021 / 10000 0.1s fold_right
[ ] 1958 0 0 1958 / 10000 0.2s fold_right (collecting)
[ ] 3105 0 0 3105 / 10000 0.3s fold_right
[ ] 4172 0 0 4172 / 10000 0.4s fold_right
[ ] 5209 0 0 5209 / 10000 0.5s fold_right
[ ] 6197 0 0 6197 / 10000 0.6s fold_right (collecting)
[ ] 7218 0 0 7218 / 10000 0.7s fold_right (collecting)
[ ] 8281 0 0 8281 / 10000 0.8s fold_right (collecting)
[ ] 9360 0 0 9360 / 10000 0.9s fold_right (collecting)
[✓] 10000 0 0 10000 / 10000 0.9s fold_right
-
[ ] 0 0 0 0 / 10000 0.0s iter2
[ ] 1970 0 0 1970 / 10000 0.1s iter2 (collecting)
[ ] 3593 0 0 3593 / 10000 0.2s iter2 (collecting)
[ ] 5102 0 0 5102 / 10000 0.3s iter2
[ ] 6578 0 0 6578 / 10000 0.4s iter2 (collecting)
[ ] 7804 0 0 7804 / 10000 0.5s iter2 (collecting)
[ ] 9095 0 0 9095 / 10000 0.6s iter2 (collecting)
[✓] 10000 0 0 10000 / 10000 0.7s iter2
-
[ ] 0 0 0 0 / 10000 0.0s map2
[ ] 960 0 0 960 / 10000 0.1s map2 (collecting)
[ ] 1866 0 0 1866 / 10000 0.2s map2 (collecting)
[ ] 2880 0 0 2880 / 10000 0.3s map2 (collecting)
[ ] 3893 0 0 3893 / 10000 0.4s map2 (collecting)
[ ] 4912 0 0 4912 / 10000 0.5s map2
[ ] 5885 0 0 5885 / 10000 0.6s map2
[ ] 6760 0 0 6760 / 10000 0.7s map2 (collecting)
[ ] 7660 0 0 7660 / 10000 0.8s map2 (collecting)
[ ] 8564 0 0 8564 / 10000 0.9s map2 (collecting)
[ ] 9584 0 0 9584 / 10000 1.0s map2 (collecting)
[✓] 10000 0 0 10000 / 10000 1.0s map2
-
[ ] 0 0 0 0 / 10000 0.0s fold_left2
[ ] 764 0 0 764 / 10000 0.1s fold_left2 (collecting)
[ ] 1651 0 0 1651 / 10000 0.2s fold_left2 (collecting)
[ ] 2559 0 0 2559 / 10000 0.3s fold_left2 (collecting)
[ ] 3446 0 0 3446 / 10000 0.4s fold_left2 (collecting)
[ ] 4379 0 0 4379 / 10000 0.5s fold_left2 (collecting)
[ ] 5312 0 0 5312 / 10000 0.6s fold_left2 (collecting)
[ ] 6170 0 0 6170 / 10000 0.7s fold_left2 (collecting)
[ ] 7035 0 0 7035 / 10000 0.8s fold_left2 (collecting)
[ ] 7887 0 0 7887 / 10000 0.9s fold_left2 (collecting)
[ ] 8747 0 0 8747 / 10000 1.0s fold_left2 (collecting)
[ ] 9648 0 0 9648 / 10000 1.1s fold_left2 (collecting)
[✓] 10000 0 0 10000 / 10000 1.1s fold_left2
-
[ ] 0 0 0 0 / 10000 0.0s fold_right2
[ ] 942 0 0 942 / 10000 0.1s fold_right2 (collecting)
[ ] 1927 0 0 1927 / 10000 0.2s fold_right2 (collecting)
[ ] 2914 0 0 2914 / 10000 0.3s fold_right2 (collecting)
[ ] 4210 0 0 4210 / 10000 0.4s fold_right2 (collecting)
[ ] 5257 0 0 5257 / 10000 0.5s fold_right2
[ ] 6162 0 0 6162 / 10000 0.6s fold_right2 (collecting)
[ ] 7047 0 0 7047 / 10000 0.7s fold_right2 (collecting)
[ ] 7958 0 0 7958 / 10000 0.8s fold_right2 (collecting)
[ ] 8791 0 0 8791 / 10000 0.9s fold_right2 (collecting)
[ ] 9666 0 0 9666 / 10000 1.0s fold_right2 (collecting)
[✓] 10000 0 0 10000 / 10000 1.0s fold_right2
-
[ ] 0 0 0 0 / 10000 0.0s for_all
[ ] 2013 0 0 2013 / 10000 0.1s for_all (collecting)
[ ] 4066 0 0 4066 / 10000 0.2s for_all (collecting)
[ ] 6133 0 0 6133 / 10000 0.3s for_all (collecting)
[ ] 8495 0 0 8495 / 10000 0.4s for_all (collecting)
[✓] 10000 0 0 10000 / 10000 0.5s for_all
-
[ ] 0 0 0 0 / 10000 0.0s exists
[ ] 2231 0 0 2231 / 10000 0.1s exists (collecting)
[ ] 4531 0 0 4531 / 10000 0.2s exists (collecting)
[ ] 6817 0 0 6817 / 10000 0.3s exists (collecting)
[ ] 9118 0 0 9118 / 10000 0.4s exists (collecting)
[✓] 10000 0 0 10000 / 10000 0.4s exists
-
[ ] 0 0 0 0 / 10000 0.0s for_all2
[ ] 1120 0 0 1120 / 10000 0.1s for_all2 (collecting)
[ ] 2305 0 0 2305 / 10000 0.2s for_all2 (collecting)
[ ] 3480 0 0 3480 / 10000 0.3s for_all2 (collecting)
[ ] 4642 0 0 4642 / 10000 0.4s for_all2 (collecting)
[ ] 5817 0 0 5817 / 10000 0.5s for_all2 (collecting)
[ ] 7012 0 0 7012 / 10000 0.6s for_all2 (collecting)
[ ] 8237 0 0 8237 / 10000 0.7s for_all2 (collecting)
[ ] 9404 0 0 9404 / 10000 0.8s for_all2 (collecting)
[✓] 10000 0 0 10000 / 10000 0.9s for_all2
-
[ ] 0 0 0 0 / 10000 0.0s exists2
[ ] 1150 0 0 1150 / 10000 0.1s exists2 (collecting)
[ ] 2346 0 0 2346 / 10000 0.2s exists2 (collecting)
[ ] 3543 0 0 3543 / 10000 0.3s exists2 (collecting)
[ ] 4647 0 0 4647 / 10000 0.4s exists2 (collecting)
[ ] 5763 0 0 5763 / 10000 0.5s exists2 (collecting)
[ ] 6881 0 0 6881 / 10000 0.6s exists2 (collecting)
[ ] 8088 0 0 8088 / 10000 0.7s exists2 (collecting)
[ ] 9268 0 0 9268 / 10000 0.8s exists2 (collecting)
[✓] 10000 0 0 10000 / 10000 0.9s exists2
-
[ ] 0 0 0 0 / 10000 0.0s mem
[✓] 10000 0 0 10000 / 10000 0.1s mem
-
[ ] 0 0 0 0 / 10000 0.0s memq
[✓] 10000 0 0 10000 / 10000 0.1s memq
-
[ ] 0 0 0 0 / 10000 0.0s find
[ ] 2276 0 0 2276 / 10000 0.1s find (collecting)
[ ] 4587 0 0 4587 / 10000 0.2s find (collecting)
[ ] 6943 0 0 6943 / 10000 0.3s find (collecting)
[ ] 9302 0 0 9302 / 10000 0.4s find (collecting)
[✓] 10000 0 0 10000 / 10000 0.4s find
-
[ ] 0 0 0 0 / 10000 0.0s find_opt
[ ] 2280 0 0 2280 / 10000 0.1s find_opt (collecting)
[ ] 4665 0 0 4665 / 10000 0.2s find_opt (collecting)
[ ] 7037 0 0 7037 / 10000 0.3s find_opt (collecting)
[ ] 9251 0 0 9251 / 10000 0.4s find_opt (collecting)
[✓] 10000 0 0 10000 / 10000 0.4s find_opt
-
[ ] 0 0 0 0 / 10000 0.0s find_index
[ ] 1999 0 0 1999 / 10000 0.1s find_index (collecting)
[ ] 4087 0 0 4087 / 10000 0.2s find_index (collecting)
[ ] 6204 0 0 6204 / 10000 0.3s find_index (collecting)
[ ] 8258 0 0 8258 / 10000 0.4s find_index (collecting)
[✓] 10000 0 0 10000 / 10000 0.5s find_index
-
[ ] 0 0 0 0 / 10000 0.0s find_map
[ ] 2046 0 0 2046 / 10000 0.1s find_map (collecting)
[ ] 4194 0 0 4194 / 10000 0.2s find_map (collecting)
[ ] 6311 0 0 6311 / 10000 0.3s find_map (collecting)
[ ] 8343 0 0 8343 / 10000 0.4s find_map (collecting)
[✓] 10000 0 0 10000 / 10000 0.5s find_map
-
[ ] 0 0 0 0 / 10000 0.0s find_mapi
[ ] 1215 0 0 1215 / 10000 0.1s find_mapi (collecting)
[ ] 2351 0 0 2351 / 10000 0.2s find_mapi (collecting)
[ ] 3564 0 0 3564 / 10000 0.3s find_mapi
[ ] 4669 0 0 4669 / 10000 0.4s find_mapi
[ ] 5857 0 0 5857 / 10000 0.5s find_mapi (collecting)
[ ] 7081 0 0 7081 / 10000 0.6s find_mapi (collecting)
[ ] 8210 0 0 8210 / 10000 0.7s find_mapi (collecting)
[ ] 9372 0 0 9372 / 10000 0.8s find_mapi
[✓] 10000 0 0 10000 / 10000 0.9s find_mapi
-
[ ] 0 0 0 0 / 10000 0.0s filter
[ ] 1927 0 0 1927 / 10000 0.1s filter (collecting)
[ ] 3991 0 0 3991 / 10000 0.2s filter (collecting)
[ ] 6031 0 0 6031 / 10000 0.3s filter (collecting)
[ ] 8039 0 0 8039 / 10000 0.4s filter (collecting)
[✓] 10000 0 0 10000 / 10000 0.5s filter
-
[ ] 0 0 0 0 / 10000 0.0s find_all
[ ] 1999 0 0 1999 / 10000 0.1s find_all (collecting)
[ ] 4054 0 0 4054 / 10000 0.2s find_all (collecting)
[ ] 6190 0 0 6190 / 10000 0.3s find_all
[ ] 8278 0 0 8278 / 10000 0.4s find_all
[✓] 10000 0 0 10000 / 10000 0.5s find_all
-
[ ] 0 0 0 0 / 10000 0.0s filteri
[ ] 1815 0 0 1815 / 10000 0.1s filteri (collecting)
[ ] 3750 0 0 3750 / 10000 0.2s filteri (collecting)
[ ] 5577 0 0 5577 / 10000 0.3s filteri (collecting)
[ ] 7412 0 0 7412 / 10000 0.4s filteri (collecting)
[ ] 9322 0 0 9322 / 10000 0.5s filteri (collecting)
[✓] 10000 0 0 10000 / 10000 0.5s filteri
-
[ ] 0 0 0 0 / 10000 0.0s partition
[ ] 1920 0 0 1920 / 10000 0.1s partition (collecting)
[ ] 3937 0 0 3937 / 10000 0.2s partition
[ ] 5884 0 0 5884 / 10000 0.3s partition (collecting)
[ ] 7944 0 0 7944 / 10000 0.4s partition (collecting)
[ ] 9998 0 0 9998 / 10000 0.5s partition (collecting)
[✓] 10000 0 0 10000 / 10000 0.5s partition
-
[ ] 0 0 0 0 / 10000 0.0s partition_map
[ ] 735 0 0 735 / 10000 0.1s partition_map (collecting)
[ ] 1493 0 0 1493 / 10000 0.2s partition_map
[ ] 2274 0 0 2274 / 10000 0.3s partition_map (collecting)
[ ] 3120 0 0 3120 / 10000 0.4s partition_map
[ ] 3914 0 0 3914 / 10000 0.5s partition_map (collecting)
[ ] 4714 0 0 4714 / 10000 0.6s partition_map (collecting)
[ ] 5482 0 0 5482 / 10000 0.7s partition_map
[ ] 6285 0 0 6285 / 10000 0.8s partition_map
[ ] 7068 0 0 7068 / 10000 0.9s partition_map
[ ] 7857 0 0 7857 / 10000 1.0s partition_map (collecting)
[ ] 8704 0 0 8704 / 10000 1.1s partition_map (collecting)
[ ] 9489 0 0 9489 / 10000 1.2s partition_map (collecting)
[✓] 10000 0 0 10000 / 10000 1.3s partition_map
-
[ ] 0 0 0 0 / 10000 0.0s split
[ ] 915 0 0 915 / 10000 0.1s split
[ ] 1885 0 0 1885 / 10000 0.2s split (collecting)
[ ] 2851 0 0 2851 / 10000 0.3s split (collecting)
[ ] 3844 0 0 3844 / 10000 0.4s split (collecting)
[ ] 4789 0 0 4789 / 10000 0.5s split (collecting)
[ ] 5750 0 0 5750 / 10000 0.6s split (collecting)
[ ] 6687 0 0 6687 / 10000 0.7s split (collecting)
[ ] 7586 0 0 7586 / 10000 0.8s split (collecting)
[ ] 8590 0 0 8590 / 10000 0.9s split (collecting)
[ ] 9554 0 0 9554 / 10000 1.0s split (collecting)
[✓] 10000 0 0 10000 / 10000 1.1s split
-
[ ] 0 0 0 0 / 10000 0.0s combine
[ ] 1274 0 0 1274 / 10000 0.1s combine (collecting)
[ ] 2608 0 0 2608 / 10000 0.2s combine (collecting)
[ ] 3950 0 0 3950 / 10000 0.3s combine (collecting)
[ ] 5695 0 0 5695 / 10000 0.4s combine (collecting)
[ ] 7276 0 0 7276 / 10000 0.5s combine (collecting)
[ ] 8941 0 0 8941 / 10000 0.6s combine (collecting)
[✓] 10000 0 0 10000 / 10000 0.7s combine
-
[ ] 0 0 0 0 / 10000 0.0s to_list
[ ] 3226 0 0 3226 / 10000 0.1s to_list (collecting)
[ ] 6386 0 0 6386 / 10000 0.2s to_list (collecting)
[ ] 9929 0 0 9929 / 10000 0.3s to_list (collecting)
[✓] 10000 0 0 10000 / 10000 0.3s to_list
-
[ ] 0 0 0 0 / 10000 0.0s of_list
[ ] 3307 0 0 3307 / 10000 0.1s of_list (collecting)
[ ] 6482 0 0 6482 / 10000 0.2s of_list (collecting)
[ ] 9443 0 0 9443 / 10000 0.3s of_list (collecting)
[✓] 10000 0 0 10000 / 10000 0.3s of_list
-
[ ] 0 0 0 0 / 10000 0.0s (<:)
[ ] 2347 0 0 2347 / 10000 0.1s (<:) (collecting)
[ ] 5102 0 0 5102 / 10000 0.2s (<:) (collecting)
[ ] 8254 0 0 8254 / 10000 0.3s (<:) (collecting)
[✓] 10000 0 0 10000 / 10000 0.4s (<:)
-
[ ] 0 0 0 0 / 10000 0.0s (<@)
[ ] 1227 0 0 1227 / 10000 0.1s (<@) (collecting)
[ ] 2524 0 0 2524 / 10000 0.2s (<@) (collecting)
[ ] 3829 0 0 3829 / 10000 0.3s (<@) (collecting)
[ ] 5110 0 0 5110 / 10000 0.4s (<@) (collecting)
[ ] 6347 0 0 6347 / 10000 0.5s (<@) (collecting)
[ ] 7488 0 0 7488 / 10000 0.6s (<@) (collecting)
[ ] 8806 0 0 8806 / 10000 0.7s (<@) (collecting)
[✓] 10000 0 0 10000 / 10000 0.8s (<@)
-
[ ] 0 0 0 0 / 10000 0.0s (@>)
[ ] 1183 0 0 1183 / 10000 0.1s (@>) (collecting)
[ ] 2480 0 0 2480 / 10000 0.2s (@>) (collecting)
[ ] 3758 0 0 3758 / 10000 0.3s (@>) (collecting)
[ ] 5121 0 0 5121 / 10000 0.4s (@>) (collecting)
[ ] 6359 0 0 6359 / 10000 0.5s (@>) (collecting)
[ ] 7538 0 0 7538 / 10000 0.6s (@>) (collecting)
[ ] 8889 0 0 8889 / 10000 0.7s (@>) (collecting)
[✓] 10000 0 0 10000 / 10000 0.8s (@>)
-
[ ] 0 0 0 0 / 10000 0.0s (#<)
[ ] 2296 0 0 2296 / 10000 0.1s (#<) (collecting)
[ ] 4721 0 0 4721 / 10000 0.2s (#<) (collecting)
[ ] 7054 0 0 7054 / 10000 0.3s (#<) (collecting)
[ ] 9374 0 0 9374 / 10000 0.4s (#<) (collecting)
[✓] 10000 0 0 10000 / 10000 0.4s (#<)
-
[ ] 0 0 0 0 / 10000 0.0s (<><)
[ ] 1242 0 0 1242 / 10000 0.1s (<><) (collecting)
[ ] 2552 0 0 2552 / 10000 0.2s (<><) (collecting)
[ ] 3848 0 0 3848 / 10000 0.3s (<><) (collecting)
[ ] 5122 0 0 5122 / 10000 0.4s (<><) (collecting)
[ ] 6378 0 0 6378 / 10000 0.5s (<><) (collecting)
[ ] 7545 0 0 7545 / 10000 0.6s (<><) (collecting)
[ ] 8864 0 0 8864 / 10000 0.7s (<><) (collecting)
[✓] 10000 0 0 10000 / 10000 0.8s (<><)
-
[ ] 0 0 0 0 / 10000 0.0s (<>>)
[ ] 1161 0 0 1161 / 10000 0.1s (<>>) (collecting)
[ ] 2445 0 0 2445 / 10000 0.2s (<>>) (collecting)
[ ] 3729 0 0 3729 / 10000 0.3s (<>>) (collecting)
[ ] 5008 0 0 5008 / 10000 0.4s (<>>) (collecting)
[ ] 6255 0 0 6255 / 10000 0.5s (<>>) (collecting)
[ ] 7411 0 0 7411 / 10000 0.6s (<>>) (collecting)
[ ] 8612 0 0 8612 / 10000 0.7s (<>>) (collecting)
[ ] 9880 0 0 9880 / 10000 0.8s (<>>) (collecting)
[✓] 10000 0 0 10000 / 10000 0.8s (<>>)
- ================================================================================
- success (ran 50 tests)
-> compiled bwd.2.3.0
-> removed bwd.2.3.0
-> installed bwd.2.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 09:10.08 ---> saved as "b8b27228300c21a642e36a63d528b895437ed6a8d18ced60d7bc82246e845df3"
Job succeeded
2026-04-30 09:10.57: Job succeeded