(not at the head of any monitored branch or PR)
2026-04-10 17:47.57: New job: test bwd.2.2.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.2.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.2.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.2.0) || true
RUN opam reinstall --with-test --verbose bwd.2.2.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.2.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.2.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.2.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.2.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.2.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose bwd.2.2.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.2.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.51: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
Updating files:  69% (13051/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:49.57 ---> 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:49.57 ---> 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:49.57 ---> 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:49.57 ---> 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:49.57 ---> using "8be7be6786c965fdad4454d936ba98cc5fa516f8de8fee90f280618661533faa" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-11 01:49.58 ---> using "c0553ba1781e82471f38f012874b6b7341f662c325cc75285bfd7972f7a6ff87" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-11 01:49.58 ---> 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 5s (39.0 kB/s)
- Reading package lists...
- 
2026-04-11 01:49.58 ---> 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:49.58 ---> 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:49.58 ---> using "6f94ccb4a18327fa9742ec042c4183209005d455af95ec03af9e9453c8a8c9d1" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall bwd.2.2.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.2.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.2.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
  - install bwd 2.2.0

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bwd.2.2.0  (https://opam.ocaml.org/cache)
-> installed bwd.2.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 01:50.09 ---> saved as "3ce2ad16eb35a69570c736cf6c1baf7a8dd5c7e3846aaf722c6349e80b17d418"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test bwd.2.2.0) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile bwd         2.2.0
=== install 1 package
  - install   qcheck-core 0.91  [required by bwd]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bwd.2.2.0  (https://opam.ocaml.org/cache)
-> retrieved qcheck-core.0.91  (https://opam.ocaml.org/cache)
-> removed   bwd.2.2.0
-> installed qcheck-core.0.91
-> installed bwd.2.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 01:50.41 ---> saved as "9cdc344a0624597f561dcb80f24a0f097cd3ab4fc77a1f2c1f9b9637c4244a62"

/home/opam: (run (shell  "opam reinstall --with-test --verbose bwd.2.2.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.2.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.2.0

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [bwd.2.2.0: extract]
-> retrieved bwd.2.2.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.2.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.2.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 25, characters 43-53:
- 25 |   Q.Test.make ~count ~name:"length" Q.Gen.(small_list unit) ~print:Q.Print.(list unit)
-                                                 ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 29, characters 17-27:
- 29 |     Q.Gen.(pair (small_list unit) (small_list unit))
-                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 29, characters 35-45:
- 29 |     Q.Gen.(pair (small_list unit) (small_list unit))
-                                         ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 34, characters 17-27:
- 34 |     Q.Gen.(pair (small_list unit) (small_int))
-                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 34, characters 35-44:
- 34 |     Q.Gen.(pair (small_list unit) (small_int))
-                                         ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- 
- File "test/TestBwdLabels.ml", line 38, characters 47-57:
- 38 |   Q.Test.make ~count ~name:"snoc" Q.Gen.(pair (small_list int) int) ~print:Q.Print.(pair (list int) int)
-                                                     ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 42, characters 17-27:
- 42 |     Q.Gen.(pair (small_list int) small_int)
-                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 42, characters 33-42:
- 42 |     Q.Gen.(pair (small_list int) small_int)
-                                       ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- 
- File "test/TestBwdLabels.ml", line 50, characters 17-27:
- 50 |     Q.Gen.(pair (small_list int) small_int)
-                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 50, characters 33-42:
- 50 |     Q.Gen.(pair (small_list int) small_int)
-                                       ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- 
- File "test/TestBwdLabels.ml", line 57, characters 49-59:
- 57 |   Q.Test.make ~count ~name:"append" Q.Gen.(pair (small_list int) (small_list int))
-                                                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 57, characters 66-76:
- 57 |   Q.Test.make ~count ~name:"append" Q.Gen.(pair (small_list int) (small_list int))
-                                                                        ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 61, characters 50-60:
- 61 |   Q.Test.make ~count ~name:"prepend" Q.Gen.(pair (small_list int) (small_list int))
-                                                        ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 61, characters 67-77:
- 61 |   Q.Test.make ~count ~name:"prepend" Q.Gen.(pair (small_list int) (small_list int))
-                                                                         ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 66, characters 67-77:
- 66 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list small_int) (small_list small_int))
-                                                                         ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 66, characters 78-87:
- 66 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list small_int) (small_list small_int))
-                                                                                    ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- 
- File "test/TestBwdLabels.ml", line 66, characters 90-100:
- 66 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list small_int) (small_list small_int))
-                                                                                                ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 66, characters 101-110:
- 66 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list small_int) (small_list small_int))
-                                                                                                           ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- 
- File "test/TestBwdLabels.ml", line 71, characters 66-76:
- 71 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) (small_list small_int) (small_list small_int))
-                                                                        ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 71, characters 77-86:
- 71 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) (small_list small_int) (small_list small_int))
-                                                                                   ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- 
- File "test/TestBwdLabels.ml", line 71, characters 89-99:
- 71 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) (small_list small_int) (small_list small_int))
-                                                                                               ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 71, characters 100-109:
- 71 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) (small_list small_int) (small_list small_int))
-                                                                                                          ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- 
- File "test/TestBwdLabels.ml", line 75, characters 41-51:
- 75 |   Q.Test.make ~count ~name:"iter" Q.Gen.(small_list int)
-                                               ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 84, characters 42-52:
- 84 |   Q.Test.make ~count ~name:"iteri" Q.Gen.(small_list int)
-                                                ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 94, characters 47-57:
- 94 |     Q.Gen.(pair (Q.fun1 Q.Observable.int int) (small_list int))
-                                                     ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 99, characters 64-74:
- 99 |     Q.Gen.(pair (Q.fun2 Q.Observable.int Q.Observable.int int) (small_list int))
-                                                                      ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 104, characters 42-45:
- 104 |     Q.Gen.(pair (Q.fun1 Q.Observable.int (opt int)) (small_list int))
-                                                 ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- 
- File "test/TestBwdLabels.ml", line 104, characters 53-63:
- 104 |     Q.Gen.(pair (Q.fun1 Q.Observable.int (opt int)) (small_list int))
-                                                            ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 109, characters 70-80:
- 109 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) int (small_list int))
-                                                                             ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 114, characters 77-87:
- 114 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int (pair int int)) (small_list int) int)
-                                                                                    ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 122, characters 66-76:
- 122 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) (small_list int) int)
-                                                                         ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 126, characters 48-58:
- 126 |   Q.Test.make ~count ~name:"iter2" Q.Gen.(pair (small_list int) (small_list int))
-                                                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 126, characters 65-75:
- 126 |   Q.Test.make ~count ~name:"iter2" Q.Gen.(pair (small_list int) (small_list int))
-                                                                        ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 138, characters 66-76:
- 138 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) (small_list int) (small_list int))
-                                                                         ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 138, characters 83-93:
- 138 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) (small_list int) (small_list int))
-                                                                                          ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 146, characters 85-95:
- 146 |     Q.Gen.(quad (Q.fun3 Q.Observable.int Q.Observable.int Q.Observable.int int) int (small_list int) (small_list int))
-                                                                                            ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 146, characters 102-112:
- 146 |     Q.Gen.(quad (Q.fun3 Q.Observable.int Q.Observable.int Q.Observable.int int) int (small_list int) (small_list int))
-                                                                                                             ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 154, characters 81-91:
- 154 |     Q.Gen.(quad (Q.fun3 Q.Observable.int Q.Observable.int Q.Observable.int int) (small_list int) (small_list int) int)
-                                                                                        ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 154, characters 98-108:
- 154 |     Q.Gen.(quad (Q.fun3 Q.Observable.int Q.Observable.int Q.Observable.int int) (small_list int) (small_list int) int)
-                                                                                                         ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 162, characters 48-58:
- 162 |     Q.Gen.(pair (Q.fun1 Q.Observable.int bool) (small_list int))
-                                                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 167, characters 48-58:
- 167 |     Q.Gen.(pair (Q.fun1 Q.Observable.int bool) (small_list int))
-                                                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 172, characters 67-77:
- 172 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list int) (small_list int))
-                                                                          ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 172, characters 84-94:
- 172 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list int) (small_list int))
-                                                                                           ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 180, characters 67-77:
- 180 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list int) (small_list int))
-                                                                          ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 180, characters 84-94:
- 180 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list int) (small_list int))
-                                                                                           ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 188, characters 16-25:
- 188 |     Q.Gen.(pair small_int (small_list small_int))
-                       ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- 
- File "test/TestBwdLabels.ml", line 188, characters 27-37:
- 188 |     Q.Gen.(pair small_int (small_list small_int))
-                                  ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 188, characters 38-47:
- 188 |     Q.Gen.(pair small_int (small_list small_int))
-                                             ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- 
- File "test/TestBwdLabels.ml", line 193, characters 17-20:
- 193 |     Q.Gen.(pair (opt small_int) (small_list (opt small_int))) (* use [int option] to test physical equality *)
-                        ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- 
- File "test/TestBwdLabels.ml", line 193, characters 21-30:
- 193 |     Q.Gen.(pair (opt small_int) (small_list (opt small_int))) (* use [int option] to test physical equality *)
-                            ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- 
- File "test/TestBwdLabels.ml", line 193, characters 33-43:
- 193 |     Q.Gen.(pair (opt small_int) (small_list (opt small_int))) (* use [int option] to test physical equality *)
-                                        ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 193, characters 45-48:
- 193 |     Q.Gen.(pair (opt small_int) (small_list (opt small_int))) (* use [int option] to test physical equality *)
-                                                    ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- 
- File "test/TestBwdLabels.ml", line 193, characters 49-58:
- 193 |     Q.Gen.(pair (opt small_int) (small_list (opt small_int))) (* use [int option] to test physical equality *)
-                                                        ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- 
- File "test/TestBwdLabels.ml", line 198, characters 48-58:
- 198 |     Q.Gen.(pair (Q.fun1 Q.Observable.int bool) (small_list int))
-                                                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 203, characters 48-58:
- 203 |     Q.Gen.(pair (Q.fun1 Q.Observable.int bool) (small_list int))
-                                                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 208, characters 42-45:
- 208 |     Q.Gen.(pair (Q.fun1 Q.Observable.int (opt int)) (small_list int))
-                                                 ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- 
- File "test/TestBwdLabels.ml", line 208, characters 53-63:
- 208 |     Q.Gen.(pair (Q.fun1 Q.Observable.int (opt int)) (small_list int))
-                                                            ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 213, characters 48-58:
- 213 |     Q.Gen.(pair (Q.fun1 Q.Observable.int bool) (small_list int))
-                                                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 218, characters 48-58:
- 218 |     Q.Gen.(pair (Q.fun1 Q.Observable.int bool) (small_list int))
-                                                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 223, characters 65-75:
- 223 |     Q.Gen.(pair (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list int))
-                                                                        ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 228, characters 48-58:
- 228 |     Q.Gen.(pair (Q.fun1 Q.Observable.int bool) (small_list int))
-                                                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 236, characters 59-69:
- 236 |     Q.Gen.(pair (Q.fun1 Q.Observable.int (pair bool int)) (small_list int))
-                                                                  ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 245, characters 11-21:
- 245 |     Q.Gen.(small_list (pair int int))
-                  ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 253, characters 17-27:
- 253 |     Q.Gen.(pair (small_list int) (small_list int))
-                        ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 253, characters 34-44:
- 253 |     Q.Gen.(pair (small_list int) (small_list int))
-                                         ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 260, characters 44-54:
- 260 |   Q.Test.make ~count ~name:"to_list" Q.Gen.(small_list int) ~print:Q.Print.(list int)
-                                                   ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 263, characters 44-54:
- 263 |   Q.Test.make ~count ~name:"of_list" Q.Gen.(small_list int) ~print:Q.Print.(list int)
-                                                   ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 282, characters 47-57:
- 282 |   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 285, characters 47-57:
- 285 |   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 285, characters 64-74:
- 285 |   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 289, characters 47-57:
- 289 |   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 289, characters 64-74:
- 289 |   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: 28180402
- 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
[ ]  5473     0     0  5473 / 10000     0.1s snoc (collecting)
[✓] 10000     0     0 10000 / 10000     0.2s snoc
- 
[ ]     0     0     0     0 / 10000     0.0s nth
[ ]  5575     0     0  5575 / 10000     0.1s nth (collecting)
[✓] 10000     0     0 10000 / 10000     0.2s nth
- 
[ ]     0     0     0     0 / 10000     0.0s nth_opt
[ ]  5549     0     0  5549 / 10000     0.1s nth_opt (collecting)
[✓] 10000     0     0 10000 / 10000     0.2s nth_opt
- 
[ ]     0     0     0     0 / 10000     0.0s append
[ ]  2788     0     0  2788 / 10000     0.1s append (collecting)
[ ]  5330     0     0  5330 / 10000     0.2s append (collecting)
[ ]  7720     0     0  7720 / 10000     0.3s append
[✓] 10000     0     0 10000 / 10000     0.4s append
- 
[ ]     0     0     0     0 / 10000     0.0s prepend
[ ]  2389     0     0  2389 / 10000     0.1s prepend (collecting)
[ ]  4595     0     0  4595 / 10000     0.2s prepend (collecting)
[ ]  6817     0     0  6817 / 10000     0.3s prepend (collecting)
[ ]  8896     0     0  8896 / 10000     0.4s prepend (collecting)
[✓] 10000     0     0 10000 / 10000     0.5s prepend
- 
[ ]     0     0     0     0 / 10000     0.0s equal
[✓] 10000     0     0 10000 / 10000     0.1s equal
- 
[ ]     0     0     0     0 / 10000     0.0s compare
[ ]  8476     0     0  8476 / 10000     0.1s compare (collecting)
[✓] 10000     0     0 10000 / 10000     0.1s compare
- 
[ ]     0     0     0     0 / 10000     0.0s iter
[ ]  4830     0     0  4830 / 10000     0.1s iter
[ ]  9228     0     0  9228 / 10000     0.2s iter
[✓] 10000     0     0 10000 / 10000     0.2s iter
- 
[ ]     0     0     0     0 / 10000     0.0s iteri
[ ]  4430     0     0  4430 / 10000     0.1s iteri (collecting)
[ ]  8564     0     0  8564 / 10000     0.2s iteri (collecting)
[✓] 10000     0     0 10000 / 10000     0.2s iteri
- 
[ ]     0     0     0     0 / 10000     0.0s map
[ ]  1929     0     0  1929 / 10000     0.1s map (collecting)
[ ]  3721     0     0  3721 / 10000     0.2s map (collecting)
[ ]  5541     0     0  5541 / 10000     0.3s map
[ ]  7283     0     0  7283 / 10000     0.4s map
[ ]  9089     0     0  9089 / 10000     0.5s map
[✓] 10000     0     0 10000 / 10000     0.5s map
- 
[ ]     0     0     0     0 / 10000     0.0s mapi
[ ]  1605     0     0  1605 / 10000     0.1s mapi
[ ]  3298     0     0  3298 / 10000     0.2s mapi
[ ]  4920     0     0  4920 / 10000     0.3s mapi
[ ]  6545     0     0  6545 / 10000     0.4s mapi
[ ]  8189     0     0  8189 / 10000     0.5s mapi
[ ]  9819     0     0  9819 / 10000     0.6s mapi (collecting)
[✓] 10000     0     0 10000 / 10000     0.6s mapi
- 
[ ]     0     0     0     0 / 10000     0.0s filter_map
[ ]  2023     0     0  2023 / 10000     0.1s filter_map
[ ]  4024     0     0  4024 / 10000     0.2s filter_map (collecting)
[ ]  6011     0     0  6011 / 10000     0.3s filter_map (collecting)
[ ]  7951     0     0  7951 / 10000     0.4s filter_map
[ ]  9943     0     0  9943 / 10000     0.5s filter_map
[✓] 10000     0     0 10000 / 10000     0.5s filter_map
- 
[ ]     0     0     0     0 / 10000     0.0s fold_left
[ ]  1526     0     0  1526 / 10000     0.1s fold_left
[ ]  3282     0     0  3282 / 10000     0.2s fold_left
[ ]  4966     0     0  4966 / 10000     0.3s fold_left
[ ]  6619     0     0  6619 / 10000     0.4s fold_left (collecting)
[ ]  8260     0     0  8260 / 10000     0.5s fold_left (collecting)
[ ]  9777     0     0  9777 / 10000     0.6s fold_left
[✓] 10000     0     0 10000 / 10000     0.6s fold_left
- 
[ ]     0     0     0     0 / 10000     0.0s fold_right_map
[ ]   948     0     0   948 / 10000     0.1s fold_right_map
[ ]  1898     0     0  1898 / 10000     0.2s fold_right_map
[ ]  2941     0     0  2941 / 10000     0.3s fold_right_map
[ ]  3979     0     0  3979 / 10000     0.4s fold_right_map
[ ]  5062     0     0  5062 / 10000     0.5s fold_right_map
[ ]  6105     0     0  6105 / 10000     0.6s fold_right_map
[ ]  7124     0     0  7124 / 10000     0.7s fold_right_map
[ ]  8038     0     0  8038 / 10000     0.8s fold_right_map
[ ]  9117     0     0  9117 / 10000     0.9s fold_right_map (collecting)
[✓] 10000     0     0 10000 / 10000     1.0s fold_right_map
- 
[ ]     0     0     0     0 / 10000     0.0s fold_right
[ ]  1462     0     0  1462 / 10000     0.1s fold_right (collecting)
[ ]  2974     0     0  2974 / 10000     0.2s fold_right (collecting)
[ ]  4634     0     0  4634 / 10000     0.3s fold_right (collecting)
[ ]  6226     0     0  6226 / 10000     0.4s fold_right
[ ]  7779     0     0  7779 / 10000     0.5s fold_right (collecting)
[ ]  9245     0     0  9245 / 10000     0.6s fold_right (collecting)
[✓] 10000     0     0 10000 / 10000     0.6s fold_right
- 
[ ]     0     0     0     0 / 10000     0.0s iter2
[ ]  1920     0     0  1920 / 10000     0.1s iter2 (collecting)
[ ]  3846     0     0  3846 / 10000     0.2s iter2 (collecting)
[ ]  5757     0     0  5757 / 10000     0.3s iter2 (collecting)
[ ]  7796     0     0  7796 / 10000     0.4s iter2 (collecting)
[ ]  9764     0     0  9764 / 10000     0.5s iter2 (collecting)
[✓] 10000     0     0 10000 / 10000     0.5s iter2
- 
[ ]     0     0     0     0 / 10000     0.0s map2
[ ]  1429     0     0  1429 / 10000     0.1s map2 (collecting)
[ ]  2953     0     0  2953 / 10000     0.2s map2 (collecting)
[ ]  4604     0     0  4604 / 10000     0.3s map2 (collecting)
[ ]  6165     0     0  6165 / 10000     0.4s map2 (collecting)
[ ]  7717     0     0  7717 / 10000     0.5s map2 (collecting)
[ ]  9269     0     0  9269 / 10000     0.6s map2 (collecting)
[✓] 10000     0     0 10000 / 10000     0.6s map2
- 
[ ]     0     0     0     0 / 10000     0.0s fold_left2
[ ]  1536     0     0  1536 / 10000     0.1s fold_left2 (collecting)
[ ]  3023     0     0  3023 / 10000     0.2s fold_left2
[ ]  4731     0     0  4731 / 10000     0.3s fold_left2
[ ]  6400     0     0  6400 / 10000     0.4s fold_left2 (collecting)
[ ]  8090     0     0  8090 / 10000     0.5s fold_left2 (collecting)
[ ]  9768     0     0  9768 / 10000     0.6s fold_left2 (collecting)
[✓] 10000     0     0 10000 / 10000     0.6s fold_left2
- 
[ ]     0     0     0     0 / 10000     0.0s fold_right2
[ ]  1603     0     0  1603 / 10000     0.1s fold_right2 (collecting)
[ ]  3323     0     0  3323 / 10000     0.2s fold_right2
[ ]  5178     0     0  5178 / 10000     0.3s fold_right2 (collecting)
[ ]  6878     0     0  6878 / 10000     0.4s fold_right2 (collecting)
[ ]  8495     0     0  8495 / 10000     0.5s fold_right2
[✓] 10000     0     0 10000 / 10000     0.6s fold_right2
- 
[ ]     0     0     0     0 / 10000     0.0s for_all
[ ]  3633     0     0  3633 / 10000     0.1s for_all (collecting)
[ ]  7474     0     0  7474 / 10000     0.2s for_all (collecting)
[✓] 10000     0     0 10000 / 10000     0.3s for_all
- 
[ ]     0     0     0     0 / 10000     0.0s exists
[ ]  3807     0     0  3807 / 10000     0.1s exists (collecting)
[ ]  7449     0     0  7449 / 10000     0.2s exists (collecting)
[✓] 10000     0     0 10000 / 10000     0.3s exists
- 
[ ]     0     0     0     0 / 10000     0.0s for_all2
[ ]  1947     0     0  1947 / 10000     0.1s for_all2 (collecting)
[ ]  3891     0     0  3891 / 10000     0.2s for_all2 (collecting)
[ ]  5965     0     0  5965 / 10000     0.3s for_all2 (collecting)
[ ]  8002     0     0  8002 / 10000     0.4s for_all2 (collecting)
[ ]  9997     0     0  9997 / 10000     0.5s for_all2 (collecting)
[✓] 10000     0     0 10000 / 10000     0.5s for_all2
- 
[ ]     0     0     0     0 / 10000     0.0s exists2
[ ]  2167     0     0  2167 / 10000     0.1s exists2 (collecting)
[ ]  4214     0     0  4214 / 10000     0.2s exists2 (collecting)
[ ]  6271     0     0  6271 / 10000     0.3s exists2 (collecting)
[ ]  8365     0     0  8365 / 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
[ ]  3784     0     0  3784 / 10000     0.1s find (collecting)
[ ]  7440     0     0  7440 / 10000     0.2s find (collecting)
[✓] 10000     0     0 10000 / 10000     0.3s find
- 
[ ]     0     0     0     0 / 10000     0.0s find_opt
[ ]  3560     0     0  3560 / 10000     0.1s find_opt (collecting)
[ ]  7581     0     0  7581 / 10000     0.2s find_opt (collecting)
[✓] 10000     0     0 10000 / 10000     0.3s find_opt
- 
[ ]     0     0     0     0 / 10000     0.0s find_map
[ ]  3596     0     0  3596 / 10000     0.1s find_map (collecting)
[ ]  6975     0     0  6975 / 10000     0.2s find_map (collecting)
[✓] 10000     0     0 10000 / 10000     0.3s find_map
- 
[ ]     0     0     0     0 / 10000     0.0s filter
[ ]  2973     0     0  2973 / 10000     0.1s filter (collecting)
[ ]  6149     0     0  6149 / 10000     0.2s filter
[ ]  9334     0     0  9334 / 10000     0.3s filter
[✓] 10000     0     0 10000 / 10000     0.3s filter
- 
[ ]     0     0     0     0 / 10000     0.0s find_all
[ ]  2913     0     0  2913 / 10000     0.1s find_all (collecting)
[ ]  5934     0     0  5934 / 10000     0.2s find_all (collecting)
[ ]  8946     0     0  8946 / 10000     0.3s find_all (collecting)
[✓] 10000     0     0 10000 / 10000     0.3s find_all
- 
[ ]     0     0     0     0 / 10000     0.0s filteri
[ ]  2635     0     0  2635 / 10000     0.1s filteri (collecting)
[ ]  5350     0     0  5350 / 10000     0.2s filteri (collecting)
[ ]  8156     0     0  8156 / 10000     0.3s filteri
[✓] 10000     0     0 10000 / 10000     0.4s filteri
- 
[ ]     0     0     0     0 / 10000     0.0s partition
[ ]  3167     0     0  3167 / 10000     0.1s partition (collecting)
[ ]  6335     0     0  6335 / 10000     0.2s partition (collecting)
[ ]  9522     0     0  9522 / 10000     0.3s partition (collecting)
[✓] 10000     0     0 10000 / 10000     0.3s partition
- 
[ ]     0     0     0     0 / 10000     0.0s partition_map
[ ]  1400     0     0  1400 / 10000     0.1s partition_map
[ ]  2847     0     0  2847 / 10000     0.2s partition_map
[ ]  4222     0     0  4222 / 10000     0.3s partition_map (collecting)
[ ]  5579     0     0  5579 / 10000     0.4s partition_map (collecting)
[ ]  7093     0     0  7093 / 10000     0.5s partition_map (collecting)
[ ]  8440     0     0  8440 / 10000     0.6s partition_map
[ ]  9930     0     0  9930 / 10000     0.7s partition_map
[✓] 10000     0     0 10000 / 10000     0.7s partition_map
- 
[ ]     0     0     0     0 / 10000     0.0s split
[ ]  2040     0     0  2040 / 10000     0.1s split (collecting)
[ ]  4111     0     0  4111 / 10000     0.2s split (collecting)
[ ]  5995     0     0  5995 / 10000     0.3s split (collecting)
[ ]  7948     0     0  7948 / 10000     0.4s split
[ ]  9895     0     0  9895 / 10000     0.5s split (collecting)
[✓] 10000     0     0 10000 / 10000     0.5s split
- 
[ ]     0     0     0     0 / 10000     0.0s combine
[ ]  2255     0     0  2255 / 10000     0.1s combine (collecting)
[ ]  4596     0     0  4596 / 10000     0.2s combine (collecting)
[ ]  6894     0     0  6894 / 10000     0.3s combine (collecting)
[ ]  9284     0     0  9284 / 10000     0.4s combine (collecting)
[✓] 10000     0     0 10000 / 10000     0.4s combine
- 
[ ]     0     0     0     0 / 10000     0.0s to_list
[ ]  4570     0     0  4570 / 10000     0.1s to_list (collecting)
[ ]  8632     0     0  8632 / 10000     0.2s to_list (collecting)
[✓] 10000     0     0 10000 / 10000     0.2s to_list
- 
[ ]     0     0     0     0 / 10000     0.0s of_list
[ ]  4594     0     0  4594 / 10000     0.1s of_list (collecting)
[ ]  9136     0     0  9136 / 10000     0.2s of_list (collecting)
[✓] 10000     0     0 10000 / 10000     0.2s of_list
- 
[ ]     0     0     0     0 / 10000     0.0s (#<)
[ ]  4133     0     0  4133 / 10000     0.1s (#<) (collecting)
[ ]  8196     0     0  8196 / 10000     0.2s (#<) (collecting)
[✓] 10000     0     0 10000 / 10000     0.2s (#<)
- 
[ ]     0     0     0     0 / 10000     0.0s (<><)
[ ]  2445     0     0  2445 / 10000     0.1s (<><) (collecting)
[ ]  4743     0     0  4743 / 10000     0.2s (<><) (collecting)
[ ]  7157     0     0  7157 / 10000     0.3s (<><) (collecting)
[ ]  9570     0     0  9570 / 10000     0.4s (<><) (collecting)
[✓] 10000     0     0 10000 / 10000     0.4s (<><)
- 
[ ]     0     0     0     0 / 10000     0.0s (<>>)
[ ]  2375     0     0  2375 / 10000     0.1s (<>>) (collecting)
[ ]  4694     0     0  4694 / 10000     0.2s (<>>) (collecting)
[ ]  7133     0     0  7133 / 10000     0.3s (<>>) (collecting)
[ ]  9619     0     0  9619 / 10000     0.4s (<>>) (collecting)
[✓] 10000     0     0 10000 / 10000     0.4s (<>>)
- 
[ ]     0     0     0     0 / 10000     0.0s (<:)
[ ]  4852     0     0  4852 / 10000     0.1s (<:) (collecting)
[ ]  9572     0     0  9572 / 10000     0.2s (<:) (collecting)
[✓] 10000     0     0 10000 / 10000     0.2s (<:)
- 
[ ]     0     0     0     0 / 10000     0.0s (<@)
[ ]  2576     0     0  2576 / 10000     0.1s (<@) (collecting)
[ ]  5010     0     0  5010 / 10000     0.2s (<@) (collecting)
[ ]  7473     0     0  7473 / 10000     0.3s (<@) (collecting)
[ ]  9991     0     0  9991 / 10000     0.4s (<@) (collecting)
[✓] 10000     0     0 10000 / 10000     0.4s (<@)
- 
[ ]     0     0     0     0 / 10000     0.0s (@>)
[ ]  2445     0     0  2445 / 10000     0.1s (@>) (collecting)
[ ]  4813     0     0  4813 / 10000     0.2s (@>) (collecting)
[ ]  6940     0     0  6940 / 10000     0.3s (@>) (collecting)
[ ]  8366     0     0  8366 / 10000     0.4s (@>) (collecting)
[✓] 10000     0     0 10000 / 10000     0.5s (@>)
- ================================================================================
- success (ran 46 tests)
-> compiled  bwd.2.2.0
-> removed   bwd.2.2.0
-> installed bwd.2.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 01:51.08 ---> saved as "ff14b4d08f2c71d6db9fea796a169524135a5f775a52326ed55b03b6656dc6e4"
Job succeeded
2026-04-11 01:51.33: Job succeeded