- github
- ocaml
- opam-repository
- 89a6ae
- compilers,5.4,dune.3.23.0~alpha2,revdeps,bwd.2.0.0
(not at the head of any monitored branch or PR)
2026-04-30 02:03.25: New job: test bwd.2.0.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-5.4/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/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-5.4@sha256:00f499d6f7e3b1be41e5b77f79fcd94054ac0247cdd1991aa7156482fe125d44
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.0.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.0.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.0.0) || true
RUN opam reinstall --with-test --verbose bwd.2.0.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.0.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:03.25: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:00f499d6f7e3b1be41e5b77f79fcd94054ac0247cdd1991aa7156482fe125d44-dune.3.23.0~alpha2-bwd.2.0.0-89a6ae888498500bf7c0fc05361da936fc6acacf"
2026-04-30 02:03.25: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:00f499d6f7e3b1be41e5b77f79fcd94054ac0247cdd1991aa7156482fe125d44)
(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.0.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.0.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.0.0) || true"))
(run (shell "opam reinstall --with-test --verbose bwd.2.0.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.0.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:03.25: Waiting for resource in pool OCluster
2026-04-30 06:07.37: Waiting for worker…
2026-04-30 06:10.40: Got resource from pool OCluster
Building on phoebe.caelum.ci.dev
All commits already cached
Updating files: 69% (13108/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-5.4@sha256:00f499d6f7e3b1be41e5b77f79fcd94054ac0247cdd1991aa7156482fe125d44)
2026-04-30 06:11.32 ---> using "3ad720629c2266fa8bdd5d2923dac1e3690d78741c5f65fb1eb4d33725df507c" 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 06:11.32 ---> using "0d128a17914946ba4fe4852d9c905008c6396e0502e54d164cf768f35be583e7" 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 06:11.32 ---> using "d70296180507e779e1710b2206cbd2ed2063f4f7ba3a5617311725a56ede5942" 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 5.4
# invariant ["ocaml-base-compiler" {= "5.4.1"}]
# compiler-packages ocaml-base-compiler.5.4.1, ocaml-compiler.5.4.1, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.1
2026-04-30 06:11.32 ---> using "8495d51697191c14a2d936280d33309feb632049461097708f2914849f49e434" 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 06:11.33 ---> using "e71fcfd10a966fea9cbc39c81a8170d118ef6c5bc3e82b827a8fc5873a3b02c4" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-30 06:11.34 ---> using "1a95fcfdbe33d3db5ee6da23907452f21ceefede84b20ffd63d9951a0582315e" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-30 06:11.34 ---> using "c06cea79d066df0e24bbd5a14e3fb6af810f6c2510831dea6a3f9b3abe543bc6" 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 0s (1095 kB/s)
- Reading package lists...
-
2026-04-30 06:11.34 ---> using "79dc76009a07376b7d0a125988001bdfe429c021968c950cc37d4850b4405ed8" 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 06:11.34 ---> using "0fceafb872b30d0895792b4eaa943f03be2c3da266d1c709c5e111c4f9d0ce56" 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 06:11.34 ---> using "33f3806b768ed3bccb769c14ec85f285cc9a11aedea3160e9b687d42e8d992f8" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall bwd.2.0.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.0.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.0.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install bwd 2.0.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bwd.2.0.0 (cached)
-> installed bwd.2.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 06:11.47 ---> saved as "f94be9cd408e555778bad553af3357343b2c5a0213e03450f34c561bafa0f6e6"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test bwd.2.0.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile bwd 2.0.0
=== install 1 package
- install qcheck-core 0.91 [required by bwd]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bwd.2.0.0 (https://opam.ocaml.org/cache)
-> retrieved qcheck-core.0.91 (https://opam.ocaml.org/cache)
-> removed bwd.2.0.0
-> installed qcheck-core.0.91
-> installed bwd.2.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 06:12.04 ---> saved as "906abe4bee113cc4aa0b8f6cbd3c317be0638468081e01868941554279b15542"
/home/opam: (run (shell "opam reinstall --with-test --verbose bwd.2.0.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.0.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.0.0
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [bwd.2.0.0: extract]
-> retrieved bwd.2.0.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/5.4/.opam-switch/build/bwd.2.0.0)
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "bwd" "-j" "71" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/bwd.2.0.0)
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I test/.TestBwdLabels.eobjs/byte -I test/.TestBwdLabels.eobjs/native -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/qcheck-core/runner -I src/.Bwd.objs/byte -I src/.Bwd.objs/native -cmi-file test/.TestBwdLabels.eobjs/byte/dune__exe__TestBwdLabels.cmi -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 26, characters 43-53:
- 26 | 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 30, characters 17-27:
- 30 | Q.Gen.(pair (small_list unit) (small_list unit))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
-
- File "test/TestBwdLabels.ml", line 30, characters 35-45:
- 30 | Q.Gen.(pair (small_list unit) (small_list unit))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
-
- File "test/TestBwdLabels.ml", line 35, characters 17-27:
- 35 | Q.Gen.(pair (small_list unit) (small_int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
-
- File "test/TestBwdLabels.ml", line 35, characters 35-44:
- 35 | Q.Gen.(pair (small_list unit) (small_int))
- ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
-
- File "test/TestBwdLabels.ml", line 39, characters 47-57:
- 39 | 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 43, characters 17-27:
- 43 | Q.Gen.(pair (small_list int) small_int)
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
-
- File "test/TestBwdLabels.ml", line 43, characters 33-42:
- 43 | Q.Gen.(pair (small_list int) small_int)
- ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
-
- File "test/TestBwdLabels.ml", line 51, characters 17-27:
- 51 | Q.Gen.(pair (small_list int) small_int)
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
-
- File "test/TestBwdLabels.ml", line 51, characters 33-42:
- 51 | Q.Gen.(pair (small_list int) small_int)
- ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
-
- File "test/TestBwdLabels.ml", line 58, characters 49-59:
- 58 | 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 58, characters 66-76:
- 58 | 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 62, characters 50-60:
- 62 | 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 62, characters 67-77:
- 62 | 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 67, characters 67-77:
- 67 | 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 67, characters 78-87:
- 67 | 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 67, characters 90-100:
- 67 | 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 67, characters 101-110:
- 67 | 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 72, characters 66-76:
- 72 | 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 72, characters 77-86:
- 72 | 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 72, characters 89-99:
- 72 | 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 72, characters 100-109:
- 72 | 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 76, characters 41-51:
- 76 | 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 85, characters 42-52:
- 85 | 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 95, characters 47-57:
- 95 | 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 100, characters 64-74:
- 100 | 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 105, characters 42-45:
- 105 | 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 105, characters 53-63:
- 105 | 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 110, characters 70-80:
- 110 | 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 115, characters 77-87:
- 115 | 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 123, characters 66-76:
- 123 | 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 127, characters 48-58:
- 127 | 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 127, characters 65-75:
- 127 | 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 139, characters 66-76:
- 139 | 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 139, characters 83-93:
- 139 | 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 147, characters 85-95:
- 147 | 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 147, characters 102-112:
- 147 | 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 155, characters 81-91:
- 155 | 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 155, characters 98-108:
- 155 | 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 163, characters 48-58:
- 163 | 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 168, characters 48-58:
- 168 | 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 173, characters 67-77:
- 173 | 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 173, characters 84-94:
- 173 | 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 181, characters 67-77:
- 181 | 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 181, characters 84-94:
- 181 | 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 189, characters 16-25:
- 189 | Q.Gen.(pair small_int (small_list small_int))
- ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
-
- File "test/TestBwdLabels.ml", line 189, characters 27-37:
- 189 | Q.Gen.(pair small_int (small_list small_int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
-
- File "test/TestBwdLabels.ml", line 189, characters 38-47:
- 189 | Q.Gen.(pair small_int (small_list small_int))
- ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
-
- File "test/TestBwdLabels.ml", line 194, characters 17-20:
- 194 | 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 194, characters 21-30:
- 194 | 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 194, characters 33-43:
- 194 | 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 194, characters 45-48:
- 194 | 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 194, characters 49-58:
- 194 | 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 199, characters 48-58:
- 199 | 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 204, characters 48-58:
- 204 | 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 209, characters 42-45:
- 209 | 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 209, characters 53-63:
- 209 | 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 214, characters 48-58:
- 214 | 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 219, characters 48-58:
- 219 | 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 224, characters 65-75:
- 224 | 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 229, characters 48-58:
- 229 | 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 237, characters 59-69:
- 237 | 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 246, characters 11-21:
- 246 | Q.Gen.(small_list (pair int int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
-
- File "test/TestBwdLabels.ml", line 254, characters 17-27:
- 254 | Q.Gen.(pair (small_list int) (small_list int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
-
- File "test/TestBwdLabels.ml", line 254, characters 34-44:
- 254 | Q.Gen.(pair (small_list int) (small_list int))
- ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
-
- File "test/TestBwdLabels.ml", line 261, characters 44-54:
- 261 | 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 264, characters 44-54:
- 264 | 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 268, characters 45-55:
- 268 | 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 271, characters 46-56:
- 271 | 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 271, characters 63-73:
- 271 | 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 275, characters 46-56:
- 275 | 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 275, characters 63-73:
- 275 | 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: 335266697
- 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.0s 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
[✓] 10000 0 0 10000 / 10000 0.1s snoc
-
[ ] 0 0 0 0 / 10000 0.0s nth
[✓] 10000 0 0 10000 / 10000 0.1s nth
-
[ ] 0 0 0 0 / 10000 0.0s nth_opt
[✓] 10000 0 0 10000 / 10000 0.1s nth_opt
-
[ ] 0 0 0 0 / 10000 0.0s append
[ ] 7251 0 0 7251 / 10000 0.1s append (collecting)
[✓] 10000 0 0 10000 / 10000 0.1s append
-
[ ] 0 0 0 0 / 10000 0.0s prepend
[ ] 7022 0 0 7022 / 10000 0.1s prepend (collecting)
[✓] 10000 0 0 10000 / 10000 0.1s prepend
-
[ ] 0 0 0 0 / 10000 0.0s equal
[✓] 10000 0 0 10000 / 10000 0.0s equal
-
[ ] 0 0 0 0 / 10000 0.0s compare
[✓] 10000 0 0 10000 / 10000 0.1s compare
-
[ ] 0 0 0 0 / 10000 0.0s iter
[✓] 10000 0 0 10000 / 10000 0.1s iter
-
[ ] 0 0 0 0 / 10000 0.0s iteri
[✓] 10000 0 0 10000 / 10000 0.1s iteri
-
[ ] 0 0 0 0 / 10000 0.0s map
[ ] 3110 0 0 3110 / 10000 0.1s map
[ ] 7772 0 0 7772 / 10000 0.2s map
[✓] 10000 0 0 10000 / 10000 0.3s map
-
[ ] 0 0 0 0 / 10000 0.0s mapi
[ ] 2894 0 0 2894 / 10000 0.1s mapi (collecting)
[ ] 4943 0 0 4943 / 10000 0.2s mapi
[ ] 7921 0 0 7921 / 10000 0.3s mapi
[✓] 10000 0 0 10000 / 10000 0.4s mapi
-
[ ] 0 0 0 0 / 10000 0.0s filter_map
[ ] 4800 0 0 4800 / 10000 0.1s filter_map (collecting)
[ ] 9723 0 0 9723 / 10000 0.2s filter_map
[✓] 10000 0 0 10000 / 10000 0.2s filter_map
-
[ ] 0 0 0 0 / 10000 0.0s fold_left
[ ] 3659 0 0 3659 / 10000 0.1s fold_left
[ ] 7194 0 0 7194 / 10000 0.2s fold_left (collecting)
[✓] 10000 0 0 10000 / 10000 0.3s fold_left
-
[ ] 0 0 0 0 / 10000 0.0s fold_right_map
[ ] 2375 0 0 2375 / 10000 0.1s fold_right_map (collecting)
[ ] 4648 0 0 4648 / 10000 0.2s fold_right_map
[ ] 6736 0 0 6736 / 10000 0.3s fold_right_map
[ ] 9013 0 0 9013 / 10000 0.4s fold_right_map
[✓] 10000 0 0 10000 / 10000 0.4s fold_right_map
-
[ ] 0 0 0 0 / 10000 0.0s fold_right
[ ] 1975 0 0 1975 / 10000 0.1s fold_right
[ ] 5250 0 0 5250 / 10000 0.2s fold_right
[ ] 8660 0 0 8660 / 10000 0.3s fold_right
[✓] 10000 0 0 10000 / 10000 0.3s fold_right
-
[ ] 0 0 0 0 / 10000 0.0s iter2
[ ] 5285 0 0 5285 / 10000 0.1s iter2 (collecting)
[✓] 10000 0 0 10000 / 10000 0.2s iter2
-
[ ] 0 0 0 0 / 10000 0.0s map2
[ ] 4547 0 0 4547 / 10000 0.1s map2 (collecting)
[ ] 8463 0 0 8463 / 10000 0.2s map2 (collecting)
[✓] 10000 0 0 10000 / 10000 0.2s map2
-
[ ] 0 0 0 0 / 10000 0.0s fold_left2
[ ] 4465 0 0 4465 / 10000 0.1s fold_left2 (collecting)
[ ] 8553 0 0 8553 / 10000 0.2s fold_left2 (collecting)
[✓] 10000 0 0 10000 / 10000 0.2s fold_left2
-
[ ] 0 0 0 0 / 10000 0.0s fold_right2
[ ] 4177 0 0 4177 / 10000 0.1s fold_right2 (collecting)
[ ] 8256 0 0 8256 / 10000 0.2s fold_right2
[✓] 10000 0 0 10000 / 10000 0.2s fold_right2
-
[ ] 0 0 0 0 / 10000 0.0s for_all
[✓] 10000 0 0 10000 / 10000 0.1s for_all
-
[ ] 0 0 0 0 / 10000 0.0s exists
[✓] 10000 0 0 10000 / 10000 0.1s exists
-
[ ] 0 0 0 0 / 10000 0.0s for_all2
[ ] 5366 0 0 5366 / 10000 0.1s for_all2 (collecting)
[✓] 10000 0 0 10000 / 10000 0.2s for_all2
-
[ ] 0 0 0 0 / 10000 0.0s exists2
[ ] 5086 0 0 5086 / 10000 0.1s exists2 (collecting)
[✓] 10000 0 0 10000 / 10000 0.2s exists2
-
[ ] 0 0 0 0 / 10000 0.0s mem
[✓] 10000 0 0 10000 / 10000 0.0s mem
-
[ ] 0 0 0 0 / 10000 0.0s memq
[✓] 10000 0 0 10000 / 10000 0.0s memq
-
[ ] 0 0 0 0 / 10000 0.0s find
[✓] 10000 0 0 10000 / 10000 0.1s find
-
[ ] 0 0 0 0 / 10000 0.0s find_opt
[✓] 10000 0 0 10000 / 10000 0.1s find_opt
-
[ ] 0 0 0 0 / 10000 0.0s find_map
[ ] 9633 0 0 9633 / 10000 0.1s find_map (collecting)
[✓] 10000 0 0 10000 / 10000 0.1s find_map
-
[ ] 0 0 0 0 / 10000 0.0s filter
[ ] 7290 0 0 7290 / 10000 0.1s filter (collecting)
[✓] 10000 0 0 10000 / 10000 0.1s filter
-
[ ] 0 0 0 0 / 10000 0.0s find_all
[ ] 8117 0 0 8117 / 10000 0.1s find_all
[✓] 10000 0 0 10000 / 10000 0.1s find_all
-
[ ] 0 0 0 0 / 10000 0.0s filteri
[ ] 6646 0 0 6646 / 10000 0.1s filteri (collecting)
[✓] 10000 0 0 10000 / 10000 0.1s filteri
-
[ ] 0 0 0 0 / 10000 0.0s partition
[ ] 7172 0 0 7172 / 10000 0.1s partition
[✓] 10000 0 0 10000 / 10000 0.2s partition
-
[ ] 0 0 0 0 / 10000 0.0s partition_map
[ ] 2300 0 0 2300 / 10000 0.1s partition_map (collecting)
[ ] 4249 0 0 4249 / 10000 0.2s partition_map
[ ] 6351 0 0 6351 / 10000 0.3s partition_map
[ ] 8307 0 0 8307 / 10000 0.4s partition_map (collecting)
[✓] 10000 0 0 10000 / 10000 0.5s partition_map
-
[ ] 0 0 0 0 / 10000 0.0s split
[ ] 2505 0 0 2505 / 10000 0.1s split (collecting)
[ ] 5186 0 0 5186 / 10000 0.2s split (collecting)
[ ] 7948 0 0 7948 / 10000 0.3s split (collecting)
[✓] 10000 0 0 10000 / 10000 0.3s split
-
[ ] 0 0 0 0 / 10000 0.0s combine
[ ] 6213 0 0 6213 / 10000 0.1s combine (collecting)
[✓] 10000 0 0 10000 / 10000 0.2s combine
-
[ ] 0 0 0 0 / 10000 0.0s to_list
[✓] 10000 0 0 10000 / 10000 0.1s to_list
-
[ ] 0 0 0 0 / 10000 0.0s of_list
[ ] 7646 0 0 7646 / 10000 0.1s of_list (collecting)
[✓] 10000 0 0 10000 / 10000 0.1s of_list
-
[ ] 0 0 0 0 / 10000 0.0s #<
[ ] 5734 0 0 5734 / 10000 0.1s #< (collecting)
[✓] 10000 0 0 10000 / 10000 0.2s #<
-
[ ] 0 0 0 0 / 10000 0.0s <><
[ ] 4697 0 0 4697 / 10000 0.1s <>< (collecting)
[ ] 8116 0 0 8116 / 10000 0.2s <>< (collecting)
[✓] 10000 0 0 10000 / 10000 0.3s <><
-
[ ] 0 0 0 0 / 10000 0.0s <>>
[ ] 5047 0 0 5047 / 10000 0.1s <>>
[✓] 10000 0 0 10000 / 10000 0.2s <>>
- ================================================================================
- success (ran 43 tests)
-> compiled bwd.2.0.0
-> removed bwd.2.0.0
-> installed bwd.2.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 06:12.21 ---> saved as "b9d6b2952e6ebbc3300933aadffebee5907cb0152a113817bc4e6d27cad20835"
Job succeeded
2026-04-30 06:15.20: Job succeeded