- github
- ocaml
- opam-repository
- 89a6ae
- compilers,4.14,dune.3.23.0~alpha2,revdeps,bwd.2.0.0
(not at the head of any monitored branch or PR)
2026-04-30 02:04.44: 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-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.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:04.44: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:9fe84ffeeaa92507d198c7af8adb382726e06ae36c031f5ef645a3241cac0353-dune.3.23.0~alpha2-bwd.2.0.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.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: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 phoebe.caelum.ci.dev
All commits already cached
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.36 ---> 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.36 ---> 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.36 ---> 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.36 ---> 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.36 ---> using "47c085e53aa5880966ff9fc1e1e12a4661255166181f7931a397db06034201cf" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-04-30 09:08.37 ---> using "4f46738dfb91aa0cd6670022d574de26b7ba05050d8f85957ea4872d96399e01" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-30 09:08.37 ---> 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 0s (1225 kB/s)
- Reading package lists...
-
2026-04-30 09:08.37 ---> 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.37 ---> 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.37 ---> using "8638839e5ae5cf3f1965d4f7cf42b88935780d5bcff7e41a79deffdd572bdcbf" 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 09:08.46 ---> saved as "aa58d762762954468b921dd5eb8984b9e76d63cc5f27bdc1df0f92b7dcf01e8b"
/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 09:09.13 ---> saved as "470abf38f9717f5580583073bd15f084b7034eceed2bce88f6ddf2050af0aa73"
/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/4.14/.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/4.14/.opam-switch/build/bwd.2.0.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 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: 32184855
- 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
[ ] 3986 0 0 3986 / 10000 0.1s snoc (collecting)
[ ] 7961 0 0 7961 / 10000 0.2s snoc (collecting)
[✓] 10000 0 0 10000 / 10000 0.3s snoc
-
[ ] 0 0 0 0 / 10000 0.0s nth
[ ] 4115 0 0 4115 / 10000 0.1s nth (collecting)
[ ] 6880 0 0 6880 / 10000 0.2s nth (collecting)
[ ] 9409 0 0 9409 / 10000 0.3s nth (collecting)
[✓] 10000 0 0 10000 / 10000 0.3s nth
-
[ ] 0 0 0 0 / 10000 0.0s nth_opt
[ ] 2574 0 0 2574 / 10000 0.1s nth_opt (collecting)
[ ] 6943 0 0 6943 / 10000 0.2s nth_opt (collecting)
[✓] 10000 0 0 10000 / 10000 0.3s nth_opt
-
[ ] 0 0 0 0 / 10000 0.0s append
[ ] 2246 0 0 2246 / 10000 0.1s append
[ ] 4623 0 0 4623 / 10000 0.2s append (collecting)
[ ] 6974 0 0 6974 / 10000 0.3s append (collecting)
[ ] 9289 0 0 9289 / 10000 0.4s append (collecting)
[✓] 10000 0 0 10000 / 10000 0.4s append
-
[ ] 0 0 0 0 / 10000 0.0s prepend
[ ] 2328 0 0 2328 / 10000 0.1s prepend (collecting)
[ ] 4705 0 0 4705 / 10000 0.2s prepend (collecting)
[ ] 7070 0 0 7070 / 10000 0.3s prepend (collecting)
[ ] 9327 0 0 9327 / 10000 0.4s prepend (collecting)
[✓] 10000 0 0 10000 / 10000 0.4s prepend
-
[ ] 0 0 0 0 / 10000 0.0s equal
[ ] 9473 0 0 9473 / 10000 0.1s equal (collecting)
[✓] 10000 0 0 10000 / 10000 0.1s equal
-
[ ] 0 0 0 0 / 10000 0.0s compare
[ ] 5911 0 0 5911 / 10000 0.1s compare (collecting)
[✓] 10000 0 0 10000 / 10000 0.2s compare
-
[ ] 0 0 0 0 / 10000 0.0s iter
[ ] 4198 0 0 4198 / 10000 0.1s iter (collecting)
[ ] 8437 0 0 8437 / 10000 0.2s iter (collecting)
[✓] 10000 0 0 10000 / 10000 0.2s iter
-
[ ] 0 0 0 0 / 10000 0.0s iteri
[ ] 4220 0 0 4220 / 10000 0.1s iteri (collecting)
[ ] 8636 0 0 8636 / 10000 0.2s iteri (collecting)
[✓] 10000 0 0 10000 / 10000 0.2s iteri
-
[ ] 0 0 0 0 / 10000 0.0s map
[ ] 2028 0 0 2028 / 10000 0.1s map
[ ] 4073 0 0 4073 / 10000 0.2s map
[ ] 6116 0 0 6116 / 10000 0.3s map (collecting)
[ ] 8103 0 0 8103 / 10000 0.4s map
[✓] 10000 0 0 10000 / 10000 0.5s map
-
[ ] 0 0 0 0 / 10000 0.0s mapi
[ ] 1967 0 0 1967 / 10000 0.1s mapi (collecting)
[ ] 3951 0 0 3951 / 10000 0.2s mapi (collecting)
[ ] 5923 0 0 5923 / 10000 0.3s mapi
[ ] 7735 0 0 7735 / 10000 0.4s mapi (collecting)
[ ] 9058 0 0 9058 / 10000 0.5s mapi
[✓] 10000 0 0 10000 / 10000 0.6s mapi
-
[ ] 0 0 0 0 / 10000 0.0s filter_map
[ ] 1640 0 0 1640 / 10000 0.1s filter_map (collecting)
[ ] 2854 0 0 2854 / 10000 0.2s filter_map
[ ] 4503 0 0 4503 / 10000 0.3s filter_map
[ ] 6456 0 0 6456 / 10000 0.4s filter_map
[ ] 8477 0 0 8477 / 10000 0.5s filter_map
[✓] 10000 0 0 10000 / 10000 0.6s filter_map
-
[ ] 0 0 0 0 / 10000 0.0s fold_left
[ ] 1797 0 0 1797 / 10000 0.1s fold_left (collecting)
[ ] 3560 0 0 3560 / 10000 0.2s fold_left (collecting)
[ ] 5401 0 0 5401 / 10000 0.3s fold_left
[ ] 7187 0 0 7187 / 10000 0.4s fold_left (collecting)
[ ] 8864 0 0 8864 / 10000 0.5s fold_left
[✓] 10000 0 0 10000 / 10000 0.6s fold_left
-
[ ] 0 0 0 0 / 10000 0.0s fold_right_map
[ ] 978 0 0 978 / 10000 0.1s fold_right_map
[ ] 1975 0 0 1975 / 10000 0.2s fold_right_map (generating)
[ ] 2987 0 0 2987 / 10000 0.3s fold_right_map
[ ] 4006 0 0 4006 / 10000 0.4s fold_right_map (collecting)
[ ] 5159 0 0 5159 / 10000 0.5s fold_right_map (collecting)
[ ] 6156 0 0 6156 / 10000 0.6s fold_right_map
[ ] 7117 0 0 7117 / 10000 0.7s fold_right_map
[ ] 8144 0 0 8144 / 10000 0.8s fold_right_map
[ ] 9137 0 0 9137 / 10000 0.9s fold_right_map
[✓] 10000 0 0 10000 / 10000 1.0s fold_right_map
-
[ ] 0 0 0 0 / 10000 0.0s fold_right
[ ] 1884 0 0 1884 / 10000 0.1s fold_right
[ ] 3811 0 0 3811 / 10000 0.2s fold_right
[ ] 5743 0 0 5743 / 10000 0.3s fold_right (collecting)
[ ] 7615 0 0 7615 / 10000 0.4s fold_right (collecting)
[ ] 9453 0 0 9453 / 10000 0.5s fold_right (collecting)
[✓] 10000 0 0 10000 / 10000 0.5s fold_right
-
[ ] 0 0 0 0 / 10000 0.0s iter2
[ ] 2357 0 0 2357 / 10000 0.1s iter2 (collecting)
[ ] 4773 0 0 4773 / 10000 0.2s iter2 (collecting)
[ ] 7262 0 0 7262 / 10000 0.3s iter2 (collecting)
[ ] 9610 0 0 9610 / 10000 0.4s iter2 (collecting)
[✓] 10000 0 0 10000 / 10000 0.4s iter2
-
[ ] 0 0 0 0 / 10000 0.0s map2
[ ] 1937 0 0 1937 / 10000 0.1s map2 (collecting)
[ ] 3844 0 0 3844 / 10000 0.2s map2 (collecting)
[ ] 5733 0 0 5733 / 10000 0.3s map2 (collecting)
[ ] 7545 0 0 7545 / 10000 0.4s map2 (collecting)
[ ] 9314 0 0 9314 / 10000 0.5s map2 (collecting)
[✓] 10000 0 0 10000 / 10000 0.5s map2
-
[ ] 0 0 0 0 / 10000 0.0s fold_left2
[ ] 1737 0 0 1737 / 10000 0.1s fold_left2 (collecting)
[ ] 3506 0 0 3506 / 10000 0.2s fold_left2 (collecting)
[ ] 5265 0 0 5265 / 10000 0.3s fold_left2 (collecting)
[ ] 7001 0 0 7001 / 10000 0.4s fold_left2 (collecting)
[ ] 8794 0 0 8794 / 10000 0.5s fold_left2 (collecting)
[✓] 10000 0 0 10000 / 10000 0.6s fold_left2
-
[ ] 0 0 0 0 / 10000 0.0s fold_right2
[ ] 1724 0 0 1724 / 10000 0.1s fold_right2 (collecting)
[ ] 3548 0 0 3548 / 10000 0.2s fold_right2 (collecting)
[ ] 5332 0 0 5332 / 10000 0.3s fold_right2
[ ] 7086 0 0 7086 / 10000 0.4s fold_right2 (collecting)
[ ] 8884 0 0 8884 / 10000 0.5s fold_right2 (collecting)
[✓] 10000 0 0 10000 / 10000 0.6s fold_right2
-
[ ] 0 0 0 0 / 10000 0.0s for_all
[ ] 4360 0 0 4360 / 10000 0.1s for_all (collecting)
[ ] 8488 0 0 8488 / 10000 0.2s for_all (collecting)
[✓] 10000 0 0 10000 / 10000 0.2s for_all
-
[ ] 0 0 0 0 / 10000 0.0s exists
[ ] 4284 0 0 4284 / 10000 0.1s exists (collecting)
[ ] 8472 0 0 8472 / 10000 0.2s exists (collecting)
[✓] 10000 0 0 10000 / 10000 0.2s exists
-
[ ] 0 0 0 0 / 10000 0.0s for_all2
[ ] 2221 0 0 2221 / 10000 0.1s for_all2
[ ] 4430 0 0 4430 / 10000 0.2s for_all2 (collecting)
[ ] 6647 0 0 6647 / 10000 0.3s for_all2 (collecting)
[ ] 8829 0 0 8829 / 10000 0.4s for_all2 (collecting)
[✓] 10000 0 0 10000 / 10000 0.5s for_all2
-
[ ] 0 0 0 0 / 10000 0.0s exists2
[ ] 2227 0 0 2227 / 10000 0.1s exists2 (collecting)
[ ] 4456 0 0 4456 / 10000 0.2s exists2 (collecting)
[ ] 6670 0 0 6670 / 10000 0.3s exists2 (collecting)
[ ] 8841 0 0 8841 / 10000 0.4s exists2 (collecting)
[✓] 10000 0 0 10000 / 10000 0.5s 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
[ ] 4258 0 0 4258 / 10000 0.1s find (collecting)
[ ] 8446 0 0 8446 / 10000 0.2s find (collecting)
[✓] 10000 0 0 10000 / 10000 0.2s find
-
[ ] 0 0 0 0 / 10000 0.0s find_opt
[ ] 4317 0 0 4317 / 10000 0.1s find_opt (collecting)
[ ] 8560 0 0 8560 / 10000 0.2s find_opt (collecting)
[✓] 10000 0 0 10000 / 10000 0.2s find_opt
-
[ ] 0 0 0 0 / 10000 0.0s find_map
[ ] 3972 0 0 3972 / 10000 0.1s find_map (collecting)
[ ] 7813 0 0 7813 / 10000 0.2s find_map (collecting)
[✓] 10000 0 0 10000 / 10000 0.3s find_map
-
[ ] 0 0 0 0 / 10000 0.0s filter
[ ] 3928 0 0 3928 / 10000 0.1s filter (collecting)
[ ] 7565 0 0 7565 / 10000 0.2s filter (collecting)
[✓] 10000 0 0 10000 / 10000 0.3s filter
-
[ ] 0 0 0 0 / 10000 0.0s find_all
[ ] 3920 0 0 3920 / 10000 0.1s find_all (collecting)
[ ] 7565 0 0 7565 / 10000 0.2s find_all (collecting)
[✓] 10000 0 0 10000 / 10000 0.3s find_all
-
[ ] 0 0 0 0 / 10000 0.0s filteri
[ ] 3640 0 0 3640 / 10000 0.1s filteri (collecting)
[ ] 7097 0 0 7097 / 10000 0.2s filteri (collecting)
[✓] 10000 0 0 10000 / 10000 0.3s filteri
-
[ ] 0 0 0 0 / 10000 0.0s partition
[ ] 3867 0 0 3867 / 10000 0.1s partition (collecting)
[ ] 7539 0 0 7539 / 10000 0.2s partition (collecting)
[✓] 10000 0 0 10000 / 10000 0.3s partition
-
[ ] 0 0 0 0 / 10000 0.0s partition_map
[ ] 1578 0 0 1578 / 10000 0.1s partition_map
[ ] 3123 0 0 3123 / 10000 0.2s partition_map (collecting)
[ ] 4630 0 0 4630 / 10000 0.3s partition_map
[ ] 6213 0 0 6213 / 10000 0.4s partition_map (collecting)
[ ] 7697 0 0 7697 / 10000 0.5s partition_map (collecting)
[ ] 9282 0 0 9282 / 10000 0.6s partition_map
[✓] 10000 0 0 10000 / 10000 0.6s partition_map
-
[ ] 0 0 0 0 / 10000 0.0s split
[ ] 1791 0 0 1791 / 10000 0.1s split (collecting)
[ ] 3696 0 0 3696 / 10000 0.2s split (collecting)
[ ] 5521 0 0 5521 / 10000 0.3s split (collecting)
[ ] 7276 0 0 7276 / 10000 0.4s split (collecting)
[ ] 9182 0 0 9182 / 10000 0.5s split (collecting)
[✓] 10000 0 0 10000 / 10000 0.5s split
-
[ ] 0 0 0 0 / 10000 0.0s combine
[ ] 2284 0 0 2284 / 10000 0.1s combine (collecting)
[ ] 4595 0 0 4595 / 10000 0.2s combine (collecting)
[ ] 6893 0 0 6893 / 10000 0.3s combine (collecting)
[ ] 9175 0 0 9175 / 10000 0.4s combine (collecting)
[✓] 10000 0 0 10000 / 10000 0.4s combine
-
[ ] 0 0 0 0 / 10000 0.0s to_list
[ ] 4891 0 0 4891 / 10000 0.1s to_list (collecting)
[ ] 9606 0 0 9606 / 10000 0.2s to_list (collecting)
[✓] 10000 0 0 10000 / 10000 0.2s to_list
-
[ ] 0 0 0 0 / 10000 0.0s of_list
[ ] 4803 0 0 4803 / 10000 0.1s of_list (collecting)
[ ] 9510 0 0 9510 / 10000 0.2s of_list (collecting)
[✓] 10000 0 0 10000 / 10000 0.2s of_list
-
[ ] 0 0 0 0 / 10000 0.0s #<
[ ] 4334 0 0 4334 / 10000 0.1s #< (collecting)
[ ] 8658 0 0 8658 / 10000 0.2s #< (collecting)
[✓] 10000 0 0 10000 / 10000 0.2s #<
-
[ ] 0 0 0 0 / 10000 0.0s <><
[ ] 2318 0 0 2318 / 10000 0.1s <>< (collecting)
[ ] 4721 0 0 4721 / 10000 0.2s <>< (collecting)
[ ] 7101 0 0 7101 / 10000 0.3s <>< (collecting)
[ ] 9347 0 0 9347 / 10000 0.4s <>< (collecting)
[✓] 10000 0 0 10000 / 10000 0.4s <><
-
[ ] 0 0 0 0 / 10000 0.0s <>>
[ ] 2261 0 0 2261 / 10000 0.1s <>> (collecting)
[ ] 4321 0 0 4321 / 10000 0.2s <>> (collecting)
[ ] 6528 0 0 6528 / 10000 0.3s <>> (collecting)
[ ] 8809 0 0 8809 / 10000 0.4s <>> (collecting)
[✓] 10000 0 0 10000 / 10000 0.5s <>>
- ================================================================================
- 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 09:09.38 ---> saved as "facd75d62bfdc88838bc885efec7b5fac1dbd93915cbef81062d0727c437f943"
Job succeeded
2026-04-30 09:11.01: Job succeeded