- github
- ocaml
- opam-repository
- 89a6ae
- compilers,4.14,dune.3.23.0~alpha2,revdeps,bwd.2.1.0
(not at the head of any monitored branch or PR)
2026-04-30 02:04.44: New job: test bwd.2.1.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.1.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.1.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.1.0) || true
RUN opam reinstall --with-test --verbose bwd.2.1.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.1.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.1.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.1.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.1.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.1.0) || true"))
(run (shell "opam reinstall --with-test --verbose bwd.2.1.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.1.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.56: Waiting for worker…
2026-04-30 09:08.30: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
Updating files: 66% (12582/18887)
Updating files: 67% (12655/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.35 ---> 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.35 ---> 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.35 ---> 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.35 ---> 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.35 ---> using "47c085e53aa5880966ff9fc1e1e12a4661255166181f7931a397db06034201cf" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-30 09:08.36 ---> using "4f46738dfb91aa0cd6670022d574de26b7ba05050d8f85957ea4872d96399e01" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-30 09:08.36 ---> 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 (212 kB/s)
- Reading package lists...
2026-04-30 09:08.36 ---> 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.36 ---> 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.36 ---> using "8638839e5ae5cf3f1965d4f7cf42b88935780d5bcff7e41a79deffdd572bdcbf" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall bwd.2.1.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.1.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.1.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install bwd 2.1.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bwd.2.1.0 (https://opam.ocaml.org/cache)
-> installed bwd.2.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 09:08.45 ---> saved as "599b36d06e1c5f8e963a3d5d2724c90e5679c2ecaa3618f83744c1e3105755ae"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test bwd.2.1.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile bwd 2.1.0
=== install 1 package
- install qcheck-core 0.91 [required by bwd]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bwd.2.1.0 (https://opam.ocaml.org/cache)
-> retrieved qcheck-core.0.91 (https://opam.ocaml.org/cache)
-> removed bwd.2.1.0
-> installed qcheck-core.0.91
-> installed bwd.2.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 09:09.26 ---> saved as "cb7165b1723e936bbbf3298bcb4690f8f83ab1e415cd4004d855a67efbfbd231"
/home/opam: (run (shell "opam reinstall --with-test --verbose bwd.2.1.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.1.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.1.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [bwd.2.1.0: extract]
-> retrieved bwd.2.1.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.1.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.1.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_int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 34, characters 35-44:
- 34 | Q.Gen.(pair (small_list unit) (small_int))
- ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- File "test/TestBwdLabels.ml", line 38, characters 47-57:
- 38 | 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 42, characters 17-27:
- 42 | Q.Gen.(pair (small_list int) small_int)
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 42, characters 33-42:
- 42 | Q.Gen.(pair (small_list int) small_int)
- ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- File "test/TestBwdLabels.ml", line 50, characters 17-27:
- 50 | Q.Gen.(pair (small_list int) small_int)
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 50, characters 33-42:
- 50 | Q.Gen.(pair (small_list int) small_int)
- ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- File "test/TestBwdLabels.ml", line 57, characters 49-59:
- 57 | 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 57, characters 66-76:
- 57 | 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 61, characters 50-60:
- 61 | 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 61, characters 67-77:
- 61 | 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 66, characters 67-77:
- 66 | Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list small_int) (small_list small_int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 66, characters 78-87:
- 66 | Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list small_int) (small_list small_int))
- ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- File "test/TestBwdLabels.ml", line 66, characters 90-100:
- 66 | Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list small_int) (small_list small_int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 66, characters 101-110:
- 66 | Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list small_int) (small_list small_int))
- ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- File "test/TestBwdLabels.ml", line 71, characters 66-76:
- 71 | Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) (small_list small_int) (small_list small_int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 71, characters 77-86:
- 71 | Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) (small_list small_int) (small_list small_int))
- ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- File "test/TestBwdLabels.ml", line 71, characters 89-99:
- 71 | Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) (small_list small_int) (small_list small_int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 71, characters 100-109:
- 71 | Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) (small_list small_int) (small_list small_int))
- ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- File "test/TestBwdLabels.ml", line 75, characters 41-51:
- 75 | 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 84, characters 42-52:
- 84 | 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 94, characters 47-57:
- 94 | 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 99, characters 64-74:
- 99 | 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 104, characters 42-45:
- 104 | 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 104, characters 53-63:
- 104 | 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 109, characters 70-80:
- 109 | 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 114, characters 77-87:
- 114 | 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 122, characters 66-76:
- 122 | 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 126, characters 48-58:
- 126 | 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 126, characters 65-75:
- 126 | 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 138, characters 66-76:
- 138 | 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 138, characters 83-93:
- 138 | 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 146, characters 85-95:
- 146 | 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 146, characters 102-112:
- 146 | 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 154, characters 81-91:
- 154 | 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 154, characters 98-108:
- 154 | 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 162, characters 48-58:
- 162 | 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 167, characters 48-58:
- 167 | 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 172, characters 67-77:
- 172 | 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 172, characters 84-94:
- 172 | 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 180, characters 67-77:
- 180 | 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 180, characters 84-94:
- 180 | 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 188, characters 16-25:
- 188 | Q.Gen.(pair small_int (small_list small_int))
- ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- File "test/TestBwdLabels.ml", line 188, characters 27-37:
- 188 | Q.Gen.(pair small_int (small_list small_int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 188, characters 38-47:
- 188 | Q.Gen.(pair small_int (small_list small_int))
- ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- File "test/TestBwdLabels.ml", line 193, characters 17-20:
- 193 | Q.Gen.(pair (opt small_int) (small_list (opt small_int))) (* use [int option] to test physical equality *)
- ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- File "test/TestBwdLabels.ml", line 193, characters 21-30:
- 193 | Q.Gen.(pair (opt small_int) (small_list (opt small_int))) (* use [int option] to test physical equality *)
- ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- File "test/TestBwdLabels.ml", line 193, characters 33-43:
- 193 | Q.Gen.(pair (opt small_int) (small_list (opt small_int))) (* use [int option] to test physical equality *)
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 193, characters 45-48:
- 193 | Q.Gen.(pair (opt small_int) (small_list (opt small_int))) (* use [int option] to test physical equality *)
- ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- File "test/TestBwdLabels.ml", line 193, characters 49-58:
- 193 | Q.Gen.(pair (opt small_int) (small_list (opt small_int))) (* use [int option] to test physical equality *)
- ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- File "test/TestBwdLabels.ml", line 198, characters 48-58:
- 198 | 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 203, characters 48-58:
- 203 | 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 208, characters 42-45:
- 208 | 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 208, characters 53-63:
- 208 | 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 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 65-75:
- 223 | 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 228, characters 48-58:
- 228 | 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 236, characters 59-69:
- 236 | 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 245, characters 11-21:
- 245 | Q.Gen.(small_list (pair int int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 253, characters 17-27:
- 253 | Q.Gen.(pair (small_list int) (small_list int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 253, characters 34-44:
- 253 | Q.Gen.(pair (small_list int) (small_list int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 260, characters 44-54:
- 260 | 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 263, characters 44-54:
- 263 | 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 267, characters 45-55:
- 267 | 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 270, characters 46-56:
- 270 | 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 270, characters 63-73:
- 270 | 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 274, characters 46-56:
- 274 | 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 274, characters 63-73:
- 274 | 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: 273331040
- 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.0s compare_length_with
-
[ ] 0 0 0 0 / 10000 0.0s snoc
[ ] 2226 0 0 2226 / 10000 0.1s snoc (collecting)
[ ] 4479 0 0 4479 / 10000 0.2s snoc (collecting)
[ ] 6725 0 0 6725 / 10000 0.3s snoc (collecting)
[ ] 9005 0 0 9005 / 10000 0.4s snoc (collecting)
[✓] 10000 0 0 10000 / 10000 0.4s snoc
-
[ ] 0 0 0 0 / 10000 0.0s nth
[ ] 2362 0 0 2362 / 10000 0.1s nth (collecting)
[ ] 4781 0 0 4781 / 10000 0.2s nth (collecting)
[ ] 7165 0 0 7165 / 10000 0.3s nth (collecting)
[ ] 9647 0 0 9647 / 10000 0.4s nth (collecting)
[✓] 10000 0 0 10000 / 10000 0.4s nth
-
[ ] 0 0 0 0 / 10000 0.0s nth_opt
[ ] 2350 0 0 2350 / 10000 0.1s nth_opt (collecting)
[ ] 4827 0 0 4827 / 10000 0.2s nth_opt (collecting)
[ ] 7291 0 0 7291 / 10000 0.3s nth_opt (collecting)
[ ] 9919 0 0 9919 / 10000 0.4s nth_opt (collecting)
[✓] 10000 0 0 10000 / 10000 0.4s nth_opt
-
[ ] 0 0 0 0 / 10000 0.0s append
[ ] 1275 0 0 1275 / 10000 0.1s append (collecting)
[ ] 2456 0 0 2456 / 10000 0.2s append (collecting)
[ ] 3775 0 0 3775 / 10000 0.3s append (collecting)
[ ] 5057 0 0 5057 / 10000 0.4s append (collecting)
[ ] 6367 0 0 6367 / 10000 0.5s append (collecting)
[ ] 7605 0 0 7605 / 10000 0.6s append (collecting)
[ ] 8908 0 0 8908 / 10000 0.7s append (collecting)
[✓] 10000 0 0 10000 / 10000 0.8s append
-
[ ] 0 0 0 0 / 10000 0.0s prepend
[ ] 1274 0 0 1274 / 10000 0.1s prepend (collecting)
[ ] 2533 0 0 2533 / 10000 0.2s prepend (collecting)
[ ] 3883 0 0 3883 / 10000 0.3s prepend (collecting)
[ ] 5143 0 0 5143 / 10000 0.4s prepend (collecting)
[ ] 6470 0 0 6470 / 10000 0.5s prepend (collecting)
[ ] 7682 0 0 7682 / 10000 0.6s prepend (collecting)
[ ] 9019 0 0 9019 / 10000 0.7s prepend (collecting)
[✓] 10000 0 0 10000 / 10000 0.8s prepend
-
[ ] 0 0 0 0 / 10000 0.0s equal
[ ] 5811 0 0 5811 / 10000 0.1s equal
[✓] 10000 0 0 10000 / 10000 0.2s equal
-
[ ] 0 0 0 0 / 10000 0.0s compare
[ ] 4859 0 0 4859 / 10000 0.1s compare (collecting)
[ ] 9629 0 0 9629 / 10000 0.2s compare (collecting)
[✓] 10000 0 0 10000 / 10000 0.2s compare
-
[ ] 0 0 0 0 / 10000 0.0s iter
[ ] 2608 0 0 2608 / 10000 0.1s iter (collecting)
[ ] 5235 0 0 5235 / 10000 0.2s iter (collecting)
[ ] 7836 0 0 7836 / 10000 0.3s iter (collecting)
[✓] 10000 0 0 10000 / 10000 0.4s iter
-
[ ] 0 0 0 0 / 10000 0.0s iteri
[ ] 2443 0 0 2443 / 10000 0.1s iteri (collecting)
[ ] 5015 0 0 5015 / 10000 0.2s iteri (collecting)
[ ] 7574 0 0 7574 / 10000 0.3s iteri (collecting)
[✓] 10000 0 0 10000 / 10000 0.4s iteri
-
[ ] 0 0 0 0 / 10000 0.0s map
[ ] 1009 0 0 1009 / 10000 0.1s map (collecting)
[ ] 2105 0 0 2105 / 10000 0.2s map (collecting)
[ ] 3171 0 0 3171 / 10000 0.3s map (collecting)
[ ] 4323 0 0 4323 / 10000 0.4s map
[ ] 5486 0 0 5486 / 10000 0.5s map
[ ] 6541 0 0 6541 / 10000 0.6s map
[ ] 7681 0 0 7681 / 10000 0.7s map
[ ] 8712 0 0 8712 / 10000 0.8s map (collecting)
[ ] 9831 0 0 9831 / 10000 0.9s map (collecting)
[✓] 10000 0 0 10000 / 10000 0.9s map
-
[ ] 0 0 0 0 / 10000 0.0s mapi
[ ] 1028 0 0 1028 / 10000 0.1s mapi
[ ] 2110 0 0 2110 / 10000 0.2s mapi (collecting)
[ ] 3143 0 0 3143 / 10000 0.3s mapi (collecting)
[ ] 4184 0 0 4184 / 10000 0.4s mapi (collecting)
[ ] 5313 0 0 5313 / 10000 0.5s mapi (collecting)
[ ] 6422 0 0 6422 / 10000 0.6s mapi (collecting)
[ ] 7512 0 0 7512 / 10000 0.7s mapi
[ ] 8521 0 0 8521 / 10000 0.8s mapi
[ ] 9553 0 0 9553 / 10000 0.9s mapi
[✓] 10000 0 0 10000 / 10000 0.9s mapi
-
[ ] 0 0 0 0 / 10000 0.0s filter_map
[ ] 1260 0 0 1260 / 10000 0.1s filter_map (collecting)
[ ] 2446 0 0 2446 / 10000 0.2s filter_map (collecting)
[ ] 3685 0 0 3685 / 10000 0.3s filter_map
[ ] 4899 0 0 4899 / 10000 0.4s filter_map (collecting)
[ ] 6057 0 0 6057 / 10000 0.5s filter_map (collecting)
[ ] 7157 0 0 7157 / 10000 0.6s filter_map (collecting)
[ ] 8348 0 0 8348 / 10000 0.7s filter_map (collecting)
[ ] 9554 0 0 9554 / 10000 0.8s filter_map
[✓] 10000 0 0 10000 / 10000 0.8s filter_map
-
[ ] 0 0 0 0 / 10000 0.0s fold_left
[ ] 982 0 0 982 / 10000 0.1s fold_left
[ ] 2041 0 0 2041 / 10000 0.2s fold_left (collecting)
[ ] 2999 0 0 2999 / 10000 0.3s fold_left
[ ] 4045 0 0 4045 / 10000 0.4s fold_left
[ ] 5107 0 0 5107 / 10000 0.5s fold_left
[ ] 6100 0 0 6100 / 10000 0.6s fold_left (collecting)
[ ] 7100 0 0 7100 / 10000 0.7s fold_left (collecting)
[ ] 8195 0 0 8195 / 10000 0.8s fold_left (collecting)
[ ] 9309 0 0 9309 / 10000 0.9s fold_left (collecting)
[✓] 10000 0 0 10000 / 10000 1.0s fold_left
-
[ ] 0 0 0 0 / 10000 0.0s fold_right_map
[ ] 584 0 0 584 / 10000 0.1s fold_right_map (collecting)
[ ] 1138 0 0 1138 / 10000 0.2s fold_right_map
[ ] 1734 0 0 1734 / 10000 0.3s fold_right_map (collecting)
[ ] 2267 0 0 2267 / 10000 0.4s fold_right_map
[ ] 2850 0 0 2850 / 10000 0.5s fold_right_map
[ ] 3523 0 0 3523 / 10000 0.6s fold_right_map (collecting)
[ ] 4109 0 0 4109 / 10000 0.7s fold_right_map (collecting)
[ ] 4667 0 0 4667 / 10000 0.8s fold_right_map
[ ] 5233 0 0 5233 / 10000 0.9s fold_right_map (collecting)
[ ] 5836 0 0 5836 / 10000 1.0s fold_right_map
[ ] 6409 0 0 6409 / 10000 1.1s fold_right_map
[ ] 7041 0 0 7041 / 10000 1.2s fold_right_map (collecting)
[ ] 7570 0 0 7570 / 10000 1.3s fold_right_map
[ ] 8150 0 0 8150 / 10000 1.4s fold_right_map
[ ] 8717 0 0 8717 / 10000 1.5s fold_right_map (collecting)
[ ] 9279 0 0 9279 / 10000 1.6s fold_right_map (collecting)
[ ] 9886 0 0 9886 / 10000 1.7s fold_right_map
[✓] 10000 0 0 10000 / 10000 1.7s fold_right_map
-
[ ] 0 0 0 0 / 10000 0.0s fold_right
[ ] 962 0 0 962 / 10000 0.1s fold_right
[ ] 2042 0 0 2042 / 10000 0.2s fold_right (collecting)
[ ] 3128 0 0 3128 / 10000 0.3s fold_right
[ ] 4211 0 0 4211 / 10000 0.4s fold_right
[ ] 5263 0 0 5263 / 10000 0.5s fold_right (collecting)
[ ] 6325 0 0 6325 / 10000 0.6s fold_right (collecting)
[ ] 7326 0 0 7326 / 10000 0.7s fold_right
[ ] 8418 0 0 8418 / 10000 0.8s fold_right (collecting)
[ ] 9397 0 0 9397 / 10000 0.9s fold_right (collecting)
[✓] 10000 0 0 10000 / 10000 1.0s fold_right
-
[ ] 0 0 0 0 / 10000 0.0s iter2
[ ] 1267 0 0 1267 / 10000 0.1s iter2 (collecting)
[ ] 2523 0 0 2523 / 10000 0.2s iter2 (collecting)
[ ] 3825 0 0 3825 / 10000 0.3s iter2 (collecting)
[ ] 5025 0 0 5025 / 10000 0.4s iter2 (collecting)
[ ] 6329 0 0 6329 / 10000 0.5s iter2 (collecting)
[ ] 7565 0 0 7565 / 10000 0.6s iter2 (collecting)
[ ] 8873 0 0 8873 / 10000 0.7s iter2 (collecting)
[✓] 10000 0 0 10000 / 10000 0.8s iter2
-
[ ] 0 0 0 0 / 10000 0.0s map2
[ ] 893 0 0 893 / 10000 0.1s map2
[ ] 1851 0 0 1851 / 10000 0.2s map2 (collecting)
[ ] 2852 0 0 2852 / 10000 0.3s map2 (collecting)
[ ] 3832 0 0 3832 / 10000 0.4s map2 (collecting)
[ ] 4866 0 0 4866 / 10000 0.5s map2 (collecting)
[ ] 5891 0 0 5891 / 10000 0.6s map2 (collecting)
[ ] 6796 0 0 6796 / 10000 0.7s map2 (collecting)
[ ] 7808 0 0 7808 / 10000 0.8s map2 (collecting)
[ ] 8754 0 0 8754 / 10000 0.9s map2 (collecting)
[ ] 9721 0 0 9721 / 10000 1.0s map2 (collecting)
[✓] 10000 0 0 10000 / 10000 1.0s map2
-
[ ] 0 0 0 0 / 10000 0.0s fold_left2
[ ] 923 0 0 923 / 10000 0.1s fold_left2 (collecting)
[ ] 1872 0 0 1872 / 10000 0.2s fold_left2 (collecting)
[ ] 2805 0 0 2805 / 10000 0.3s fold_left2
[ ] 3807 0 0 3807 / 10000 0.4s fold_left2
[ ] 4801 0 0 4801 / 10000 0.5s fold_left2 (collecting)
[ ] 5734 0 0 5734 / 10000 0.6s fold_left2 (collecting)
[ ] 6696 0 0 6696 / 10000 0.7s fold_left2 (collecting)
[ ] 7613 0 0 7613 / 10000 0.8s fold_left2 (collecting)
[ ] 8548 0 0 8548 / 10000 0.9s fold_left2 (collecting)
[ ] 9488 0 0 9488 / 10000 1.0s fold_left2 (collecting)
[✓] 10000 0 0 10000 / 10000 1.1s fold_left2
-
[ ] 0 0 0 0 / 10000 0.0s fold_right2
[ ] 911 0 0 911 / 10000 0.1s fold_right2
[ ] 1840 0 0 1840 / 10000 0.2s fold_right2 (collecting)
[ ] 2770 0 0 2770 / 10000 0.3s fold_right2 (collecting)
[ ] 3769 0 0 3769 / 10000 0.4s fold_right2 (collecting)
[ ] 4736 0 0 4736 / 10000 0.5s fold_right2 (collecting)
[ ] 5711 0 0 5711 / 10000 0.6s fold_right2 (collecting)
[ ] 6662 0 0 6662 / 10000 0.7s fold_right2
[ ] 7579 0 0 7579 / 10000 0.8s fold_right2 (collecting)
[ ] 8515 0 0 8515 / 10000 0.9s fold_right2
[ ] 9384 0 0 9384 / 10000 1.0s fold_right2 (collecting)
[✓] 10000 0 0 10000 / 10000 1.1s fold_right2
-
[ ] 0 0 0 0 / 10000 0.0s for_all
[ ] 2270 0 0 2270 / 10000 0.1s for_all (collecting)
[ ] 4368 0 0 4368 / 10000 0.2s for_all (collecting)
[ ] 6501 0 0 6501 / 10000 0.3s for_all (collecting)
[ ] 8707 0 0 8707 / 10000 0.4s for_all (collecting)
[✓] 10000 0 0 10000 / 10000 0.5s for_all
-
[ ] 0 0 0 0 / 10000 0.0s exists
[ ] 2244 0 0 2244 / 10000 0.1s exists (collecting)
[ ] 4332 0 0 4332 / 10000 0.2s exists (collecting)
[ ] 6543 0 0 6543 / 10000 0.3s exists (collecting)
[ ] 8828 0 0 8828 / 10000 0.4s exists (collecting)
[✓] 10000 0 0 10000 / 10000 0.5s exists
-
[ ] 0 0 0 0 / 10000 0.0s for_all2
[ ] 1085 0 0 1085 / 10000 0.1s for_all2 (collecting)
[ ] 2243 0 0 2243 / 10000 0.2s for_all2 (collecting)
[ ] 3368 0 0 3368 / 10000 0.3s for_all2 (collecting)
[ ] 4473 0 0 4473 / 10000 0.4s for_all2 (collecting)
[ ] 5585 0 0 5585 / 10000 0.5s for_all2 (collecting)
[ ] 6759 0 0 6759 / 10000 0.6s for_all2 (collecting)
[ ] 7911 0 0 7911 / 10000 0.7s for_all2 (collecting)
[ ] 8963 0 0 8963 / 10000 0.8s for_all2 (collecting)
[✓] 10000 0 0 10000 / 10000 0.9s for_all2
-
[ ] 0 0 0 0 / 10000 0.0s exists2
[ ] 1123 0 0 1123 / 10000 0.1s exists2 (collecting)
[ ] 2269 0 0 2269 / 10000 0.2s exists2 (collecting)
[ ] 3389 0 0 3389 / 10000 0.3s exists2 (collecting)
[ ] 4522 0 0 4522 / 10000 0.4s exists2 (collecting)
[ ] 5678 0 0 5678 / 10000 0.5s exists2 (collecting)
[ ] 6847 0 0 6847 / 10000 0.6s exists2 (collecting)
[ ] 8014 0 0 8014 / 10000 0.7s exists2 (collecting)
[ ] 9096 0 0 9096 / 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
[ ] 2267 0 0 2267 / 10000 0.1s find (collecting)
[ ] 4339 0 0 4339 / 10000 0.2s find (collecting)
[ ] 6564 0 0 6564 / 10000 0.3s find (collecting)
[ ] 8828 0 0 8828 / 10000 0.4s find (collecting)
[✓] 10000 0 0 10000 / 10000 0.5s find
-
[ ] 0 0 0 0 / 10000 0.0s find_opt
[ ] 2287 0 0 2287 / 10000 0.1s find_opt (collecting)
[ ] 4373 0 0 4373 / 10000 0.2s find_opt (collecting)
[ ] 6582 0 0 6582 / 10000 0.3s find_opt (collecting)
[ ] 8814 0 0 8814 / 10000 0.4s find_opt (collecting)
[✓] 10000 0 0 10000 / 10000 0.5s find_opt
-
[ ] 0 0 0 0 / 10000 0.0s find_map
[ ] 2026 0 0 2026 / 10000 0.1s find_map (collecting)
[ ] 4080 0 0 4080 / 10000 0.2s find_map (collecting)
[ ] 6112 0 0 6112 / 10000 0.3s find_map (collecting)
[ ] 8123 0 0 8123 / 10000 0.4s find_map (collecting)
[✓] 10000 0 0 10000 / 10000 0.5s find_map
-
[ ] 0 0 0 0 / 10000 0.0s filter
[ ] 2136 0 0 2136 / 10000 0.1s filter (collecting)
[ ] 3965 0 0 3965 / 10000 0.2s filter
[ ] 5933 0 0 5933 / 10000 0.3s filter (collecting)
[ ] 7931 0 0 7931 / 10000 0.4s filter
[ ] 9875 0 0 9875 / 10000 0.5s filter (collecting)
[✓] 10000 0 0 10000 / 10000 0.5s filter
-
[ ] 0 0 0 0 / 10000 0.0s find_all
[ ] 2100 0 0 2100 / 10000 0.1s find_all (collecting)
[ ] 3952 0 0 3952 / 10000 0.2s find_all (collecting)
[ ] 5976 0 0 5976 / 10000 0.3s find_all (collecting)
[ ] 8047 0 0 8047 / 10000 0.4s find_all (collecting)
[ ] 9978 0 0 9978 / 10000 0.5s find_all (collecting)
[✓] 10000 0 0 10000 / 10000 0.5s find_all
-
[ ] 0 0 0 0 / 10000 0.0s filteri
[ ] 1970 0 0 1970 / 10000 0.1s filteri (collecting)
[ ] 3688 0 0 3688 / 10000 0.2s filteri (collecting)
[ ] 5438 0 0 5438 / 10000 0.3s filteri (collecting)
[ ] 7304 0 0 7304 / 10000 0.4s filteri
[ ] 9076 0 0 9076 / 10000 0.5s filteri (collecting)
[✓] 10000 0 0 10000 / 10000 0.6s filteri
-
[ ] 0 0 0 0 / 10000 0.0s partition
[ ] 1936 0 0 1936 / 10000 0.1s partition (collecting)
[ ] 3779 0 0 3779 / 10000 0.2s partition (collecting)
[ ] 5717 0 0 5717 / 10000 0.3s partition (collecting)
[ ] 7743 0 0 7743 / 10000 0.4s partition (collecting)
[ ] 9632 0 0 9632 / 10000 0.5s partition (collecting)
[✓] 10000 0 0 10000 / 10000 0.5s partition
-
[ ] 0 0 0 0 / 10000 0.0s partition_map
[ ] 776 0 0 776 / 10000 0.1s partition_map
[ ] 1560 0 0 1560 / 10000 0.2s partition_map (collecting)
[ ] 2380 0 0 2380 / 10000 0.3s partition_map
[ ] 3180 0 0 3180 / 10000 0.4s partition_map
[ ] 3985 0 0 3985 / 10000 0.5s partition_map (collecting)
[ ] 4772 0 0 4772 / 10000 0.6s partition_map
[ ] 5615 0 0 5615 / 10000 0.7s partition_map (collecting)
[ ] 6443 0 0 6443 / 10000 0.8s partition_map (collecting)
[ ] 7258 0 0 7258 / 10000 0.9s partition_map
[ ] 8083 0 0 8083 / 10000 1.0s partition_map
[ ] 8870 0 0 8870 / 10000 1.1s partition_map
[ ] 9624 0 0 9624 / 10000 1.2s partition_map
[✓] 10000 0 0 10000 / 10000 1.2s partition_map
-
[ ] 0 0 0 0 / 10000 0.0s split
[ ] 977 0 0 977 / 10000 0.1s split (collecting)
[ ] 2010 0 0 2010 / 10000 0.2s split (collecting)
[ ] 3051 0 0 3051 / 10000 0.3s split (collecting)
[ ] 4096 0 0 4096 / 10000 0.4s split (collecting)
[ ] 5062 0 0 5062 / 10000 0.5s split (collecting)
[ ] 6058 0 0 6058 / 10000 0.6s split (collecting)
[ ] 7040 0 0 7040 / 10000 0.7s split (collecting)
[ ] 8008 0 0 8008 / 10000 0.8s split (collecting)
[ ] 8974 0 0 8974 / 10000 0.9s split (collecting)
[ ] 9884 0 0 9884 / 10000 1.0s split (collecting)
[✓] 10000 0 0 10000 / 10000 1.0s split
-
[ ] 0 0 0 0 / 10000 0.0s combine
[ ] 1287 0 0 1287 / 10000 0.1s combine (collecting)
[ ] 2610 0 0 2610 / 10000 0.2s combine (collecting)
[ ] 3989 0 0 3989 / 10000 0.3s combine (collecting)
[ ] 5281 0 0 5281 / 10000 0.4s combine (collecting)
[ ] 6589 0 0 6589 / 10000 0.5s combine (collecting)
[ ] 7842 0 0 7842 / 10000 0.6s combine (collecting)
[ ] 9155 0 0 9155 / 10000 0.7s combine (collecting)
[✓] 10000 0 0 10000 / 10000 0.8s combine
-
[ ] 0 0 0 0 / 10000 0.0s to_list
[ ] 2715 0 0 2715 / 10000 0.1s to_list (collecting)
[ ] 5390 0 0 5390 / 10000 0.2s to_list (collecting)
[ ] 8013 0 0 8013 / 10000 0.3s to_list (collecting)
[✓] 10000 0 0 10000 / 10000 0.4s to_list
-
[ ] 0 0 0 0 / 10000 0.0s of_list
[ ] 2744 0 0 2744 / 10000 0.1s of_list (collecting)
[ ] 5462 0 0 5462 / 10000 0.2s of_list (collecting)
[ ] 8162 0 0 8162 / 10000 0.3s of_list (collecting)
[✓] 10000 0 0 10000 / 10000 0.4s of_list
-
[ ] 0 0 0 0 / 10000 0.0s #<
[ ] 2208 0 0 2208 / 10000 0.1s #< (collecting)
[ ] 4519 0 0 4519 / 10000 0.2s #< (collecting)
[ ] 6834 0 0 6834 / 10000 0.3s #< (collecting)
[ ] 9136 0 0 9136 / 10000 0.4s #< (collecting)
[✓] 10000 0 0 10000 / 10000 0.4s #<
-
[ ] 0 0 0 0 / 10000 0.0s <><
[ ] 1243 0 0 1243 / 10000 0.1s <>< (collecting)
[ ] 2517 0 0 2517 / 10000 0.2s <>< (collecting)
[ ] 3831 0 0 3831 / 10000 0.3s <>< (collecting)
[ ] 5087 0 0 5087 / 10000 0.4s <>< (collecting)
[ ] 6390 0 0 6390 / 10000 0.5s <>< (collecting)
[ ] 7636 0 0 7636 / 10000 0.6s <>< (collecting)
[ ] 8953 0 0 8953 / 10000 0.7s <>< (collecting)
[✓] 10000 0 0 10000 / 10000 0.8s <><
-
[ ] 0 0 0 0 / 10000 0.0s <>>
[ ] 1287 0 0 1287 / 10000 0.1s <>> (collecting)
[ ] 2633 0 0 2633 / 10000 0.2s <>> (collecting)
[ ] 3990 0 0 3990 / 10000 0.3s <>> (collecting)
[ ] 5310 0 0 5310 / 10000 0.4s <>> (collecting)
[ ] 6596 0 0 6596 / 10000 0.5s <>> (collecting)
[ ] 7884 0 0 7884 / 10000 0.6s <>> (collecting)
[ ] 9241 0 0 9241 / 10000 0.7s <>> (collecting)
[✓] 10000 0 0 10000 / 10000 0.8s <>>
- ================================================================================
- success (ran 43 tests)
-> compiled bwd.2.1.0
-> removed bwd.2.1.0
-> installed bwd.2.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 09:10.03 ---> saved as "ed8cf20d450556fd318055930df8f66a144b33af1f45974d79390b87ab116a7a"
Job succeeded
2026-04-30 09:11.00: Job succeeded