- github
- ocaml
- opam-repository
- 3e0c39
- compilers,5.4,dune.3.22.2,revdeps,bwd.2.0.0
(not at the head of any monitored branch or PR)
2026-04-10 17:47.57: New job: test bwd.2.0.0 with dune.3.22.2, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29704/head (3e0c395e7b1393a792367f8edca3654dac71e6fd)
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/29704/head" && git reset --hard 3e0c395e
git fetch origin master
git merge --no-edit 9d8ceab8e9f49f5671cf459997c8a47cf0e675ca
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:a32e708a4134e2a41db640ce8876b2475794c7cd5c0ce822b17aeaf65592bf03
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.22.2 3.22.2
RUN opam reinstall dune.3.22.2; \
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.22.2' && 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-10 17:47.57: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:a32e708a4134e2a41db640ce8876b2475794c7cd5c0ce822b17aeaf65592bf03-dune.3.22.2-bwd.2.0.0-3e0c395e7b1393a792367f8edca3654dac71e6fd"
2026-04-10 17:47.57: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:a32e708a4134e2a41db640ce8876b2475794c7cd5c0ce822b17aeaf65592bf03)
(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.22.2 3.22.2"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.22.2;\
\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.22.2' && 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-10 17:47.57: Waiting for resource in pool OCluster
2026-04-11 01:47.54: Waiting for worker…
2026-04-11 01:49.53: Got resource from pool OCluster
Building on phoebe.caelum.ci.dev
All commits already cached
Updating files: 68% (12727/18686)
Updating files: 69% (12894/18686)
Updating files: 70% (13081/18686)
Updating files: 71% (13268/18686)
Updating files: 72% (13454/18686)
Updating files: 73% (13641/18686)
Updating files: 74% (13828/18686)
Updating files: 75% (14015/18686)
Updating files: 76% (14202/18686)
Updating files: 77% (14389/18686)
Updating files: 78% (14576/18686)
Updating files: 79% (14762/18686)
Updating files: 80% (14949/18686)
Updating files: 81% (15136/18686)
Updating files: 82% (15323/18686)
Updating files: 83% (15510/18686)
Updating files: 84% (15697/18686)
Updating files: 85% (15884/18686)
Updating files: 86% (16070/18686)
Updating files: 87% (16257/18686)
Updating files: 88% (16444/18686)
Updating files: 89% (16631/18686)
Updating files: 90% (16818/18686)
Updating files: 91% (17005/18686)
Updating files: 92% (17192/18686)
Updating files: 93% (17378/18686)
Updating files: 94% (17565/18686)
Updating files: 95% (17752/18686)
Updating files: 96% (17939/18686)
Updating files: 97% (18126/18686)
Updating files: 98% (18313/18686)
Updating files: 99% (18500/18686)
Updating files: 100% (18686/18686)
Updating files: 100% (18686/18686), done.
HEAD is now at 9d8ceab8e9 Merge pull request #29697 from filipeom/opam-publish-smtml.0.25.0
Updating 9d8ceab8e9..3e0c395e7b
Fast-forward
packages/chrome-trace/chrome-trace.3.22.2/opam | 39 +++++++++++
.../dune-action-plugin.3.22.2/opam | 52 +++++++++++++++
.../dune-action-trace.3.22.2/opam | 39 +++++++++++
.../dune-build-info/dune-build-info.3.22.2/opam | 45 +++++++++++++
.../dune-configurator.3.22.2/opam | 49 ++++++++++++++
packages/dune-glob/dune-glob.3.22.2/opam | 42 ++++++++++++
.../dune-private-libs.3.22.2/opam | 50 +++++++++++++++
packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam | 41 ++++++++++++
packages/dune-rpc/dune-rpc.3.22.2/opam | 44 +++++++++++++
packages/dune-site/dune-site.3.22.2/opam | 37 +++++++++++
packages/dune/dune.3.22.2/opam | 75 ++++++++++++++++++++++
packages/dyn/dyn.3.22.2/opam | 40 ++++++++++++
packages/fs-io/fs-io.3.22.2/opam | 39 +++++++++++
packages/ocamlc-loc/ocamlc-loc.3.22.2/opam | 43 +++++++++++++
packages/ordering/ordering.3.22.2/opam | 38 +++++++++++
packages/stdune/stdune.3.22.2/opam | 46 +++++++++++++
packages/top-closure/top-closure.3.22.2/opam | 38 +++++++++++
packages/xdg/xdg.3.22.2/opam | 39 +++++++++++
18 files changed, 796 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.22.2/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.2/opam
create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.2/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.22.2/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.22.2/opam
create mode 100644 packages/dune-glob/dune-glob.3.22.2/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.2/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.22.2/opam
create mode 100644 packages/dune-site/dune-site.3.22.2/opam
create mode 100644 packages/dune/dune.3.22.2/opam
create mode 100644 packages/dyn/dyn.3.22.2/opam
create mode 100644 packages/fs-io/fs-io.3.22.2/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam
create mode 100644 packages/ordering/ordering.3.22.2/opam
create mode 100644 packages/stdune/stdune.3.22.2/opam
create mode 100644 packages/top-closure/top-closure.3.22.2/opam
create mode 100644 packages/xdg/xdg.3.22.2/opam
(from ocaml/opam:debian-13-ocaml-5.4@sha256:a32e708a4134e2a41db640ce8876b2475794c7cd5c0ce822b17aeaf65592bf03)
2026-04-11 01:50.07 ---> using "4e852d2e6c9ac39a43c0cb8d1ef92ecff46d16da630bff560bb4811e0bb278c3" 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-11 01:50.07 ---> using "c82a131037ae9ff29ac79f02306f126bd36264ccb683d2324f553289b0d4a496" 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-11 01:50.07 ---> using "983e4dc58d26f7046c0fe6fbe642bc66995d2abecd6409a14b0c538d3f1a7bd2" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 5.4
# invariant ["ocaml-base-compiler" {= "5.4.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-11 01:50.07 ---> using "8b346866360ce3a934df95a88d3a1520ccbf589f659a7e26aa97be0b96b1083a" 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-11 01:50.07 ---> using "8be7be6786c965fdad4454d936ba98cc5fa516f8de8fee90f280618661533faa" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-11 01:50.09 ---> using "c0553ba1781e82471f38f012874b6b7341f662c325cc75285bfd7972f7a6ff87" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-11 01:50.09 ---> using "e05b19873f9cb2918bf114246a81e8bf23cb51c80d627ed2b044915e44a942dd" 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 [121 kB]
- Fetched 211 kB in 0s (692 kB/s)
- Reading package lists...
-
2026-04-11 01:50.09 ---> using "dc69cd977951bdc4dffcc68622bf3ea65b4d02db568ca1f8bd5ab395f414a24f" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune.3.22.2 3.22.2"))
dune is now pinned to version 3.22.2
2026-04-11 01:50.09 ---> using "d2dbab2e673d61aa25772ad855c91b371a83246b8bcc8859d8fc280f9fcf9826" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.22.2;\
\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.22.2' && 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.22.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install dune 3.22.2 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.2 (cached)
-> installed dune.3.22.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 01:50.09 ---> using "6f94ccb4a18327fa9742ec042c4183209005d455af95ec03af9e9453c8a8c9d1" 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 (https://opam.ocaml.org/cache)
-> installed bwd.2.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 01:50.20 ---> saved as "da3befdebb8430667e2e0065497257034f3c1f57bedb056eeaa4889d95c51005"
/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-11 01:50.47 ---> saved as "2e11d77ff865d6048774687091f10842698a5be15fe95848106e035380099f50"
/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: 416406008
- 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
[ ] 6346 0 0 6346 / 10000 0.1s snoc (collecting)
[✓] 10000 0 0 10000 / 10000 0.2s snoc
-
[ ] 0 0 0 0 / 10000 0.0s nth
[ ] 6306 0 0 6306 / 10000 0.1s nth (collecting)
[✓] 10000 0 0 10000 / 10000 0.2s nth
-
[ ] 0 0 0 0 / 10000 0.0s nth_opt
[ ] 6163 0 0 6163 / 10000 0.1s nth_opt
[✓] 10000 0 0 10000 / 10000 0.2s nth_opt
-
[ ] 0 0 0 0 / 10000 0.0s append
[ ] 2244 0 0 2244 / 10000 0.1s append (collecting)
[ ] 4329 0 0 4329 / 10000 0.2s append (collecting)
[ ] 6430 0 0 6430 / 10000 0.3s append (collecting)
[ ] 8331 0 0 8331 / 10000 0.4s append (collecting)
[✓] 10000 0 0 10000 / 10000 0.5s append
-
[ ] 0 0 0 0 / 10000 0.0s prepend
[ ] 2025 0 0 2025 / 10000 0.1s prepend (collecting)
[ ] 4013 0 0 4013 / 10000 0.2s prepend (collecting)
[ ] 6119 0 0 6119 / 10000 0.3s prepend (collecting)
[ ] 8323 0 0 8323 / 10000 0.4s prepend (collecting)
[✓] 10000 0 0 10000 / 10000 0.5s prepend
-
[ ] 0 0 0 0 / 10000 0.0s equal
[ ] 9930 0 0 9930 / 10000 0.1s equal (collecting)
[✓] 10000 0 0 10000 / 10000 0.1s equal
-
[ ] 0 0 0 0 / 10000 0.0s compare
[ ] 8574 0 0 8574 / 10000 0.1s compare (collecting)
[✓] 10000 0 0 10000 / 10000 0.1s compare
-
[ ] 0 0 0 0 / 10000 0.0s iter
[ ] 4146 0 0 4146 / 10000 0.1s iter (collecting)
[ ] 8185 0 0 8185 / 10000 0.2s iter (collecting)
[✓] 10000 0 0 10000 / 10000 0.2s iter
-
[ ] 0 0 0 0 / 10000 0.0s iteri
[ ] 4163 0 0 4163 / 10000 0.1s iteri (collecting)
[ ] 8244 0 0 8244 / 10000 0.2s iteri (collecting)
[✓] 10000 0 0 10000 / 10000 0.2s iteri
-
[ ] 0 0 0 0 / 10000 0.0s map
[ ] 1866 0 0 1866 / 10000 0.1s map
[ ] 3890 0 0 3890 / 10000 0.2s map
[ ] 5483 0 0 5483 / 10000 0.3s map (collecting)
[ ] 7333 0 0 7333 / 10000 0.4s map
[ ] 9068 0 0 9068 / 10000 0.5s map
[✓] 10000 0 0 10000 / 10000 0.6s map
-
[ ] 0 0 0 0 / 10000 0.0s mapi
[ ] 1519 0 0 1519 / 10000 0.1s mapi (collecting)
[ ] 3091 0 0 3091 / 10000 0.2s mapi
[ ] 4427 0 0 4427 / 10000 0.3s mapi (collecting)
[ ] 5849 0 0 5849 / 10000 0.4s mapi (collecting)
[ ] 7478 0 0 7478 / 10000 0.5s mapi
[ ] 8948 0 0 8948 / 10000 0.6s mapi (collecting)
[✓] 10000 0 0 10000 / 10000 0.7s mapi
-
[ ] 0 0 0 0 / 10000 0.0s filter_map
[ ] 1998 0 0 1998 / 10000 0.1s filter_map
[ ] 3924 0 0 3924 / 10000 0.2s filter_map (collecting)
[ ] 5991 0 0 5991 / 10000 0.3s filter_map (collecting)
[ ] 8162 0 0 8162 / 10000 0.4s filter_map (collecting)
[✓] 10000 0 0 10000 / 10000 0.5s filter_map
-
[ ] 0 0 0 0 / 10000 0.0s fold_left
[ ] 1782 0 0 1782 / 10000 0.1s fold_left
[ ] 3553 0 0 3553 / 10000 0.2s fold_left (collecting)
[ ] 5699 0 0 5699 / 10000 0.3s fold_left (collecting)
[ ] 7283 0 0 7283 / 10000 0.4s fold_left (collecting)
[ ] 8890 0 0 8890 / 10000 0.5s fold_left
[✓] 10000 0 0 10000 / 10000 0.6s fold_left
-
[ ] 0 0 0 0 / 10000 0.0s fold_right_map
[ ] 784 0 0 784 / 10000 0.1s fold_right_map
[ ] 1815 0 0 1815 / 10000 0.2s fold_right_map
[ ] 2799 0 0 2799 / 10000 0.3s fold_right_map (collecting)
[ ] 3893 0 0 3893 / 10000 0.4s fold_right_map (collecting)
[ ] 5040 0 0 5040 / 10000 0.5s fold_right_map
[ ] 6062 0 0 6062 / 10000 0.6s fold_right_map
[ ] 7085 0 0 7085 / 10000 0.7s fold_right_map
[ ] 8087 0 0 8087 / 10000 0.8s fold_right_map
[ ] 8984 0 0 8984 / 10000 0.9s fold_right_map
[ ] 9987 0 0 9987 / 10000 1.0s fold_right_map (collecting)
[✓] 10000 0 0 10000 / 10000 1.0s fold_right_map
-
[ ] 0 0 0 0 / 10000 0.0s fold_right
[ ] 1697 0 0 1697 / 10000 0.1s fold_right
[ ] 3137 0 0 3137 / 10000 0.2s fold_right
[ ] 4727 0 0 4727 / 10000 0.3s fold_right (collecting)
[ ] 6413 0 0 6413 / 10000 0.4s fold_right
[ ] 8089 0 0 8089 / 10000 0.5s fold_right
[ ] 9733 0 0 9733 / 10000 0.6s fold_right
[✓] 10000 0 0 10000 / 10000 0.6s fold_right
-
[ ] 0 0 0 0 / 10000 0.0s iter2
[ ] 2011 0 0 2011 / 10000 0.1s iter2
[ ] 4010 0 0 4010 / 10000 0.2s iter2 (collecting)
[ ] 6163 0 0 6163 / 10000 0.3s iter2 (collecting)
[ ] 8612 0 0 8612 / 10000 0.4s iter2 (collecting)
[✓] 10000 0 0 10000 / 10000 0.5s iter2
-
[ ] 0 0 0 0 / 10000 0.0s map2
[ ] 1596 0 0 1596 / 10000 0.1s map2 (collecting)
[ ] 3233 0 0 3233 / 10000 0.2s map2 (collecting)
[ ] 5161 0 0 5161 / 10000 0.3s map2 (collecting)
[ ] 7134 0 0 7134 / 10000 0.4s map2 (collecting)
[ ] 8883 0 0 8883 / 10000 0.5s map2 (collecting)
[✓] 10000 0 0 10000 / 10000 0.6s map2
-
[ ] 0 0 0 0 / 10000 0.0s fold_left2
[ ] 1624 0 0 1624 / 10000 0.1s fold_left2 (collecting)
[ ] 3373 0 0 3373 / 10000 0.2s fold_left2
[ ] 4967 0 0 4967 / 10000 0.3s fold_left2 (collecting)
[ ] 6187 0 0 6187 / 10000 0.4s fold_left2 (collecting)
[ ] 7655 0 0 7655 / 10000 0.5s fold_left2 (collecting)
[ ] 9115 0 0 9115 / 10000 0.6s fold_left2 (collecting)
[✓] 10000 0 0 10000 / 10000 0.7s fold_left2
-
[ ] 0 0 0 0 / 10000 0.0s fold_right2
[ ] 1735 0 0 1735 / 10000 0.1s fold_right2
[ ] 3198 0 0 3198 / 10000 0.2s fold_right2 (collecting)
[ ] 4889 0 0 4889 / 10000 0.3s fold_right2 (collecting)
[ ] 6726 0 0 6726 / 10000 0.4s fold_right2 (collecting)
[ ] 8412 0 0 8412 / 10000 0.5s fold_right2 (collecting)
[✓] 10000 0 0 10000 / 10000 0.6s fold_right2
-
[ ] 0 0 0 0 / 10000 0.0s for_all
[ ] 3645 0 0 3645 / 10000 0.1s for_all ( testing)
[ ] 7721 0 0 7721 / 10000 0.2s for_all (collecting)
[✓] 10000 0 0 10000 / 10000 0.3s for_all
-
[ ] 0 0 0 0 / 10000 0.0s exists
[ ] 3486 0 0 3486 / 10000 0.1s exists
[✓] 10000 0 0 10000 / 10000 0.2s exists
-
[ ] 0 0 0 0 / 10000 0.0s for_all2
[ ] 3096 0 0 3096 / 10000 0.1s for_all2 (collecting)
[ ] 5875 0 0 5875 / 10000 0.2s for_all2 (collecting)
[ ] 7668 0 0 7668 / 10000 0.3s for_all2 (collecting)
[ ] 9447 0 0 9447 / 10000 0.4s for_all2 (collecting)
[✓] 10000 0 0 10000 / 10000 0.4s for_all2
-
[ ] 0 0 0 0 / 10000 0.0s exists2
[ ] 1646 0 0 1646 / 10000 0.1s exists2
[ ] 3391 0 0 3391 / 10000 0.2s exists2 (collecting)
[ ] 5291 0 0 5291 / 10000 0.3s exists2 (collecting)
[ ] 8841 0 0 8841 / 10000 0.4s exists2 (collecting)
[✓] 10000 0 0 10000 / 10000 0.4s 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
[ ] 9581 0 0 9581 / 10000 0.1s find (collecting)
[✓] 10000 0 0 10000 / 10000 0.1s find
-
[ ] 0 0 0 0 / 10000 0.0s find_opt
[ ] 8374 0 0 8374 / 10000 0.1s find_opt (collecting)
[✓] 10000 0 0 10000 / 10000 0.1s find_opt
-
[ ] 0 0 0 0 / 10000 0.0s find_map
[ ] 7227 0 0 7227 / 10000 0.1s find_map
[✓] 10000 0 0 10000 / 10000 0.2s find_map
-
[ ] 0 0 0 0 / 10000 0.0s filter
[ ] 3342 0 0 3342 / 10000 0.1s filter (collecting)
[ ] 6866 0 0 6866 / 10000 0.2s filter (collecting)
[ ] 9989 0 0 9989 / 10000 0.3s filter (collecting)
[✓] 10000 0 0 10000 / 10000 0.3s filter
-
[ ] 0 0 0 0 / 10000 0.0s find_all
[ ] 3248 0 0 3248 / 10000 0.1s find_all
[ ] 6733 0 0 6733 / 10000 0.2s find_all (collecting)
[✓] 10000 0 0 10000 / 10000 0.3s find_all
-
[ ] 0 0 0 0 / 10000 0.0s filteri
[ ] 6135 0 0 6135 / 10000 0.1s filteri (collecting)
[✓] 10000 0 0 10000 / 10000 0.2s filteri
-
[ ] 0 0 0 0 / 10000 0.0s partition
[ ] 7899 0 0 7899 / 10000 0.1s partition
[✓] 10000 0 0 10000 / 10000 0.1s partition
-
[ ] 0 0 0 0 / 10000 0.0s partition_map
[ ] 3564 0 0 3564 / 10000 0.1s partition_map (collecting)
[ ] 6905 0 0 6905 / 10000 0.2s partition_map
[✓] 10000 0 0 10000 / 10000 0.3s partition_map
-
[ ] 0 0 0 0 / 10000 0.0s split
[ ] 4676 0 0 4676 / 10000 0.1s split (collecting)
[ ] 9432 0 0 9432 / 10000 0.2s split (collecting)
[✓] 10000 0 0 10000 / 10000 0.2s split
-
[ ] 0 0 0 0 / 10000 0.0s combine
[ ] 5780 0 0 5780 / 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
[✓] 10000 0 0 10000 / 10000 0.1s of_list
-
[ ] 0 0 0 0 / 10000 0.0s #<
[✓] 10000 0 0 10000 / 10000 0.1s #<
-
[ ] 0 0 0 0 / 10000 0.0s <><
[ ] 6054 0 0 6054 / 10000 0.1s <>< (collecting)
[✓] 10000 0 0 10000 / 10000 0.2s <><
-
[ ] 0 0 0 0 / 10000 0.0s <>>
[ ] 5707 0 0 5707 / 10000 0.1s <>> (collecting)
[✓] 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-11 01:51.11 ---> saved as "4b2d392794238df1e47ac932a6ae6144492c60b548ed00b56fbf3b9916d2b0a0"
Job succeeded
2026-04-11 01:51.56: Job succeeded