Build:
  1. 0
2026-03-02 19:24.07: New job: test bwd.2.2.0 with dune.3.22.0~alpha0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29497/head (118a690db616b1df5c53d5fa00eb70791a80ae2c)
                              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/29497/head" && git reset --hard 118a690d
git fetch origin master
git merge --no-edit a7b8d1036328cf727af175b657f3d2b732b4d868
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:ae45d5e5a934874dc44b0d004f6b8a813fba3f355216f78a39ed4f25a53e478a
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.0~alpha0 3.22.0~alpha0
RUN opam reinstall dune.3.22.0~alpha0; \
    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.0~alpha0' && 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-03-02 19:24.07: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:ae45d5e5a934874dc44b0d004f6b8a813fba3f355216f78a39ed4f25a53e478a-dune.3.22.0~alpha0-bwd.2.2.0-118a690db616b1df5c53d5fa00eb70791a80ae2c"
2026-03-02 19:24.07: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:ae45d5e5a934874dc44b0d004f6b8a813fba3f355216f78a39ed4f25a53e478a)
 (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.0~alpha0 3.22.0~alpha0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dune.3.22.0~alpha0;\
             \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.0~alpha0' && 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-03-02 19:24.07: Waiting for resource in pool OCluster
2026-03-03 06:13.54: Waiting for worker…
2026-03-03 06:17.35: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at a7b8d10363 Merge pull request #29489 from anuragsoni/opam-publish-kqueue.0.7.0
Updating a7b8d10363..118a690db6
Fast-forward
 .../chrome-trace/chrome-trace.3.22.0~alpha0/opam   | 39 +++++++++++
 .../dune-action-plugin.3.22.0~alpha0/opam          | 52 +++++++++++++++
 .../dune-action-trace.3.22.0~alpha0/opam           | 40 ++++++++++++
 .../dune-build-info.3.22.0~alpha0/opam             | 45 +++++++++++++
 .../dune-configurator.3.22.0~alpha0/opam           | 49 ++++++++++++++
 packages/dune-glob/dune-glob.3.22.0~alpha0/opam    | 42 ++++++++++++
 .../dune-private-libs.3.22.0~alpha0/opam           | 50 +++++++++++++++
 .../dune-rpc-lwt/dune-rpc-lwt.3.22.0~alpha0/opam   | 41 ++++++++++++
 packages/dune-rpc/dune-rpc.3.22.0~alpha0/opam      | 44 +++++++++++++
 packages/dune-site/dune-site.3.22.0~alpha0/opam    | 37 +++++++++++
 packages/dune/dune.3.22.0~alpha0/opam              | 75 ++++++++++++++++++++++
 packages/dyn/dyn.3.22.0~alpha0/opam                | 40 ++++++++++++
 packages/fs-io/fs-io.3.22.0~alpha0/opam            | 39 +++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.22.0~alpha0/opam  | 43 +++++++++++++
 packages/ordering/ordering.3.22.0~alpha0/opam      | 38 +++++++++++
 packages/stdune/stdune.3.22.0~alpha0/opam          | 46 +++++++++++++
 .../top-closure/top-closure.3.22.0~alpha0/opam     | 38 +++++++++++
 packages/xdg/xdg.3.22.0~alpha0/opam                | 39 +++++++++++
 18 files changed, 797 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.22.0~alpha0/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.0~alpha0/opam
 create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.0~alpha0/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.22.0~alpha0/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.22.0~alpha0/opam
 create mode 100644 packages/dune-glob/dune-glob.3.22.0~alpha0/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.0~alpha0/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.0~alpha0/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.22.0~alpha0/opam
 create mode 100644 packages/dune-site/dune-site.3.22.0~alpha0/opam
 create mode 100644 packages/dune/dune.3.22.0~alpha0/opam
 create mode 100644 packages/dyn/dyn.3.22.0~alpha0/opam
 create mode 100644 packages/fs-io/fs-io.3.22.0~alpha0/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.0~alpha0/opam
 create mode 100644 packages/ordering/ordering.3.22.0~alpha0/opam
 create mode 100644 packages/stdune/stdune.3.22.0~alpha0/opam
 create mode 100644 packages/top-closure/top-closure.3.22.0~alpha0/opam
 create mode 100644 packages/xdg/xdg.3.22.0~alpha0/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:ae45d5e5a934874dc44b0d004f6b8a813fba3f355216f78a39ed4f25a53e478a)
2026-03-03 06:17.37 ---> using "40de8e47c13dd397f7466181b47c70cd31f6d05f624f7f51643a7089a29a5322" 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-03-03 06:17.37 ---> using "11e955cadb21ab08a7e8407d7e49d7e8b8232723aa9e80323bab6a7d993e9a38" 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
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
           opam option jobs=71 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-03 06:17.37 ---> using "b84411f14b612833c97eea3b0fb49d7afb0294cf8c4774caaff1f8b0f1bd5849" 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                 255
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages    ocaml-base-compiler.4.14.2, 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.2
2026-03-03 06:17.37 ---> using "bc1392749f7c1b1568053e91f3061e53f54f3bf6892fcf3fa14761d0f2fabccc" 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-03-03 06:17.37 ---> using "0f88aad717079fee185cb5f7b0853d5dede0158dafac18dc05292641ad1318aa" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-03 06:17.38 ---> using "cf2f29575da4e00ad2c0e3200eaf5375ace45ec778f515d81ffd2e5eb96c41f1" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-03 06:17.38 ---> using "c517023779902244dbe5c8fbf440d1dd4569daf367c1e2ee7dd7eb370c41d91c" 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 [113 kB]
- Fetched 203 kB in 0s (1833 kB/s)
- Reading package lists...
2026-03-03 06:17.38 ---> using "a2e6599fe15f34bfd0a71de19dbfccfacdc1f910f7a37fea793bb8ff67d4ba47" from cache

/home/opam: (run (shell "opam pin add -k version -yn dune.3.22.0~alpha0 3.22.0~alpha0"))
dune is now pinned to version 3.22.0~alpha0
2026-03-03 06:17.38 ---> using "9ecf7f496eb9b328aa3c8f7333a40a30e123b33b9d8b5606b7ac6bfc2b62fac7" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dune.3.22.0~alpha0;\
                        \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.0~alpha0' && 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.0~alpha0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
  - install dune 3.22.0~alpha0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.0~alpha0  (cached)
-> installed dune.3.22.0~alpha0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-03 06:17.38 ---> using "1d093925996c7908c33a8109d0c1a7be5172d79d6a00aabc511d552ee2499f33" 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  (cached)
-> installed bwd.2.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-03 06:17.41 ---> saved as "acd0ea5482d07ed80abd95ac2e95e28f7eea6a07e066bb80d0b41fc852c77f98"

/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-03-03 06:17.54 ---> saved as "d62d014ae09aa780ca45c6bf8086738f829b1f42c204ce70e4cf5e5ebbe71118"

/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" "255" (CWD=/home/opam/.opam/4.14/.opam-switch/build/bwd.2.2.0)
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "bwd" "-j" "255" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/bwd.2.2.0)
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I test/.TestBwdLabels.eobjs/byte -I test/.TestBwdLabels.eobjs/native -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I src/.Bwd.objs/byte -I src/.Bwd.objs/native -intf-suffix .ml -no-alias-deps -open Dune__exe -o test/.TestBwdLabels.eobjs/native/dune__exe__TestBwdLabels.cmx -c -impl test/TestBwdLabels.ml)
- File "test/TestBwdLabels.ml", line 25, characters 43-53:
- 25 |   Q.Test.make ~count ~name:"length" Q.Gen.(small_list unit) ~print:Q.Print.(list unit)
-                                                 ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 29, characters 17-27:
- 29 |     Q.Gen.(pair (small_list unit) (small_list unit))
-                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 29, characters 35-45:
- 29 |     Q.Gen.(pair (small_list unit) (small_list unit))
-                                         ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 34, characters 17-27:
- 34 |     Q.Gen.(pair (small_list unit) (small_int))
-                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 34, characters 35-44:
- 34 |     Q.Gen.(pair (small_list unit) (small_int))
-                                         ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- File "test/TestBwdLabels.ml", line 38, characters 47-57:
- 38 |   Q.Test.make ~count ~name:"snoc" Q.Gen.(pair (small_list int) int) ~print:Q.Print.(pair (list int) int)
-                                                     ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 42, characters 17-27:
- 42 |     Q.Gen.(pair (small_list int) small_int)
-                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 42, characters 33-42:
- 42 |     Q.Gen.(pair (small_list int) small_int)
-                                       ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- File "test/TestBwdLabels.ml", line 50, characters 17-27:
- 50 |     Q.Gen.(pair (small_list int) small_int)
-                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 50, characters 33-42:
- 50 |     Q.Gen.(pair (small_list int) small_int)
-                                       ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- File "test/TestBwdLabels.ml", line 57, characters 49-59:
- 57 |   Q.Test.make ~count ~name:"append" Q.Gen.(pair (small_list int) (small_list int))
-                                                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 57, characters 66-76:
- 57 |   Q.Test.make ~count ~name:"append" Q.Gen.(pair (small_list int) (small_list int))
-                                                                        ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 61, characters 50-60:
- 61 |   Q.Test.make ~count ~name:"prepend" Q.Gen.(pair (small_list int) (small_list int))
-                                                        ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 61, characters 67-77:
- 61 |   Q.Test.make ~count ~name:"prepend" Q.Gen.(pair (small_list int) (small_list int))
-                                                                         ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 66, characters 67-77:
- 66 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list small_int) (small_list small_int))
-                                                                         ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 66, characters 78-87:
- 66 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list small_int) (small_list small_int))
-                                                                                    ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- File "test/TestBwdLabels.ml", line 66, characters 90-100:
- 66 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list small_int) (small_list small_int))
-                                                                                                ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 66, characters 101-110:
- 66 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list small_int) (small_list small_int))
-                                                                                                           ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- File "test/TestBwdLabels.ml", line 71, characters 66-76:
- 71 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) (small_list small_int) (small_list small_int))
-                                                                        ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 71, characters 77-86:
- 71 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) (small_list small_int) (small_list small_int))
-                                                                                   ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- File "test/TestBwdLabels.ml", line 71, characters 89-99:
- 71 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) (small_list small_int) (small_list small_int))
-                                                                                               ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 71, characters 100-109:
- 71 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) (small_list small_int) (small_list small_int))
-                                                                                                          ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- File "test/TestBwdLabels.ml", line 75, characters 41-51:
- 75 |   Q.Test.make ~count ~name:"iter" Q.Gen.(small_list int)
-                                               ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 84, characters 42-52:
- 84 |   Q.Test.make ~count ~name:"iteri" Q.Gen.(small_list int)
-                                                ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 94, characters 47-57:
- 94 |     Q.Gen.(pair (Q.fun1 Q.Observable.int int) (small_list int))
-                                                     ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 99, characters 64-74:
- 99 |     Q.Gen.(pair (Q.fun2 Q.Observable.int Q.Observable.int int) (small_list int))
-                                                                      ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 104, characters 42-45:
- 104 |     Q.Gen.(pair (Q.fun1 Q.Observable.int (opt int)) (small_list int))
-                                                 ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- File "test/TestBwdLabels.ml", line 104, characters 53-63:
- 104 |     Q.Gen.(pair (Q.fun1 Q.Observable.int (opt int)) (small_list int))
-                                                            ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 109, characters 70-80:
- 109 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) int (small_list int))
-                                                                             ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 114, characters 77-87:
- 114 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int (pair int int)) (small_list int) int)
-                                                                                    ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 122, characters 66-76:
- 122 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) (small_list int) int)
-                                                                         ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 126, characters 48-58:
- 126 |   Q.Test.make ~count ~name:"iter2" Q.Gen.(pair (small_list int) (small_list int))
-                                                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 126, characters 65-75:
- 126 |   Q.Test.make ~count ~name:"iter2" Q.Gen.(pair (small_list int) (small_list int))
-                                                                        ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 138, characters 66-76:
- 138 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) (small_list int) (small_list int))
-                                                                         ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 138, characters 83-93:
- 138 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) (small_list int) (small_list int))
-                                                                                          ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 146, characters 85-95:
- 146 |     Q.Gen.(quad (Q.fun3 Q.Observable.int Q.Observable.int Q.Observable.int int) int (small_list int) (small_list int))
-                                                                                            ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 146, characters 102-112:
- 146 |     Q.Gen.(quad (Q.fun3 Q.Observable.int Q.Observable.int Q.Observable.int int) int (small_list int) (small_list int))
-                                                                                                             ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 154, characters 81-91:
- 154 |     Q.Gen.(quad (Q.fun3 Q.Observable.int Q.Observable.int Q.Observable.int int) (small_list int) (small_list int) int)
-                                                                                        ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 154, characters 98-108:
- 154 |     Q.Gen.(quad (Q.fun3 Q.Observable.int Q.Observable.int Q.Observable.int int) (small_list int) (small_list int) int)
-                                                                                                         ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 162, characters 48-58:
- 162 |     Q.Gen.(pair (Q.fun1 Q.Observable.int bool) (small_list int))
-                                                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 167, characters 48-58:
- 167 |     Q.Gen.(pair (Q.fun1 Q.Observable.int bool) (small_list int))
-                                                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 172, characters 67-77:
- 172 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list int) (small_list int))
-                                                                          ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 172, characters 84-94:
- 172 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list int) (small_list int))
-                                                                                           ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 180, characters 67-77:
- 180 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list int) (small_list int))
-                                                                          ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 180, characters 84-94:
- 180 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list int) (small_list int))
-                                                                                           ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 188, characters 16-25:
- 188 |     Q.Gen.(pair small_int (small_list small_int))
-                       ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- File "test/TestBwdLabels.ml", line 188, characters 27-37:
- 188 |     Q.Gen.(pair small_int (small_list small_int))
-                                  ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 188, characters 38-47:
- 188 |     Q.Gen.(pair small_int (small_list small_int))
-                                             ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- File "test/TestBwdLabels.ml", line 193, characters 17-20:
- 193 |     Q.Gen.(pair (opt small_int) (small_list (opt small_int))) (* use [int option] to test physical equality *)
-                        ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- File "test/TestBwdLabels.ml", line 193, characters 21-30:
- 193 |     Q.Gen.(pair (opt small_int) (small_list (opt small_int))) (* use [int option] to test physical equality *)
-                            ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- File "test/TestBwdLabels.ml", line 193, characters 33-43:
- 193 |     Q.Gen.(pair (opt small_int) (small_list (opt small_int))) (* use [int option] to test physical equality *)
-                                        ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 193, characters 45-48:
- 193 |     Q.Gen.(pair (opt small_int) (small_list (opt small_int))) (* use [int option] to test physical equality *)
-                                                    ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- File "test/TestBwdLabels.ml", line 193, characters 49-58:
- 193 |     Q.Gen.(pair (opt small_int) (small_list (opt small_int))) (* use [int option] to test physical equality *)
-                                                        ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- File "test/TestBwdLabels.ml", line 198, characters 48-58:
- 198 |     Q.Gen.(pair (Q.fun1 Q.Observable.int bool) (small_list int))
-                                                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 203, characters 48-58:
- 203 |     Q.Gen.(pair (Q.fun1 Q.Observable.int bool) (small_list int))
-                                                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 208, characters 42-45:
- 208 |     Q.Gen.(pair (Q.fun1 Q.Observable.int (opt int)) (small_list int))
-                                                 ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- File "test/TestBwdLabels.ml", line 208, characters 53-63:
- 208 |     Q.Gen.(pair (Q.fun1 Q.Observable.int (opt int)) (small_list int))
-                                                            ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 213, characters 48-58:
- 213 |     Q.Gen.(pair (Q.fun1 Q.Observable.int bool) (small_list int))
-                                                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 218, characters 48-58:
- 218 |     Q.Gen.(pair (Q.fun1 Q.Observable.int bool) (small_list int))
-                                                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 223, characters 65-75:
- 223 |     Q.Gen.(pair (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list int))
-                                                                        ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 228, characters 48-58:
- 228 |     Q.Gen.(pair (Q.fun1 Q.Observable.int bool) (small_list int))
-                                                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 236, characters 59-69:
- 236 |     Q.Gen.(pair (Q.fun1 Q.Observable.int (pair bool int)) (small_list int))
-                                                                  ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 245, characters 11-21:
- 245 |     Q.Gen.(small_list (pair int int))
-                  ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 253, characters 17-27:
- 253 |     Q.Gen.(pair (small_list int) (small_list int))
-                        ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 253, characters 34-44:
- 253 |     Q.Gen.(pair (small_list int) (small_list int))
-                                         ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 260, characters 44-54:
- 260 |   Q.Test.make ~count ~name:"to_list" Q.Gen.(small_list int) ~print:Q.Print.(list int)
-                                                   ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 263, characters 44-54:
- 263 |   Q.Test.make ~count ~name:"of_list" Q.Gen.(small_list int) ~print:Q.Print.(list int)
-                                                   ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 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: 404473246
- 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
[ ]  8341     0     0  8341 / 10000     0.1s snoc (collecting)
[✓] 10000     0     0 10000 / 10000     0.1s snoc
- 
[ ]     0     0     0     0 / 10000     0.0s nth
[ ]  8834     0     0  8834 / 10000     0.1s nth (collecting)
[✓] 10000     0     0 10000 / 10000     0.1s nth
- 
[ ]     0     0     0     0 / 10000     0.0s nth_opt
[ ]  8873     0     0  8873 / 10000     0.1s nth_opt (   testing)
[✓] 10000     0     0 10000 / 10000     0.1s nth_opt
- 
[ ]     0     0     0     0 / 10000     0.0s append
[ ]  4509     0     0  4509 / 10000     0.1s append (collecting)
[ ]  9110     0     0  9110 / 10000     0.2s append (collecting)
[✓] 10000     0     0 10000 / 10000     0.2s append
- 
[ ]     0     0     0     0 / 10000     0.0s prepend
[ ]  4496     0     0  4496 / 10000     0.1s prepend (collecting)
[ ]  9114     0     0  9114 / 10000     0.2s prepend (collecting)
[✓] 10000     0     0 10000 / 10000     0.2s 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
[✓] 10000     0     0 10000 / 10000     0.1s compare
- 
[ ]     0     0     0     0 / 10000     0.0s iter
[ ]  9176     0     0  9176 / 10000     0.1s iter
[✓] 10000     0     0 10000 / 10000     0.1s iter
- 
[ ]     0     0     0     0 / 10000     0.0s iteri
[ ]  8973     0     0  8973 / 10000     0.1s iteri (collecting)
[✓] 10000     0     0 10000 / 10000     0.1s iteri
- 
[ ]     0     0     0     0 / 10000     0.0s map
[ ]  3829     0     0  3829 / 10000     0.1s map (collecting)
[ ]  7631     0     0  7631 / 10000     0.2s map (collecting)
[✓] 10000     0     0 10000 / 10000     0.3s map
- 
[ ]     0     0     0     0 / 10000     0.0s mapi
[ ]  3571     0     0  3571 / 10000     0.1s mapi
[ ]  7167     0     0  7167 / 10000     0.2s mapi (collecting)
[✓] 10000     0     0 10000 / 10000     0.3s mapi
- 
[ ]     0     0     0     0 / 10000     0.0s filter_map
[ ]  4022     0     0  4022 / 10000     0.1s filter_map
[ ]  8199     0     0  8199 / 10000     0.2s filter_map
[✓] 10000     0     0 10000 / 10000     0.2s filter_map
- 
[ ]     0     0     0     0 / 10000     0.0s fold_left
[ ]  3554     0     0  3554 / 10000     0.1s fold_left
[ ]  7071     0     0  7071 / 10000     0.2s fold_left (collecting)
[✓] 10000     0     0 10000 / 10000     0.3s fold_left
- 
[ ]     0     0     0     0 / 10000     0.0s fold_right_map
[ ]  2075     0     0  2075 / 10000     0.1s fold_right_map (collecting)
[ ]  4091     0     0  4091 / 10000     0.2s fold_right_map (collecting)
[ ]  6089     0     0  6089 / 10000     0.3s fold_right_map (collecting)
[ ]  8004     0     0  8004 / 10000     0.4s fold_right_map
[ ]  9903     0     0  9903 / 10000     0.5s fold_right_map (collecting)
[✓] 10000     0     0 10000 / 10000     0.5s fold_right_map
- 
[ ]     0     0     0     0 / 10000     0.0s fold_right
[ ]  3554     0     0  3554 / 10000     0.1s fold_right (collecting)
[ ]  7194     0     0  7194 / 10000     0.2s fold_right
[✓] 10000     0     0 10000 / 10000     0.3s fold_right
- 
[ ]     0     0     0     0 / 10000     0.0s iter2
[ ]  4496     0     0  4496 / 10000     0.1s iter2 (collecting)
[ ]  9091     0     0  9091 / 10000     0.2s iter2 (collecting)
[✓] 10000     0     0 10000 / 10000     0.2s iter2
- 
[ ]     0     0     0     0 / 10000     0.0s map2
[ ]  3437     0     0  3437 / 10000     0.1s map2 (collecting)
[ ]  6848     0     0  6848 / 10000     0.2s map2 (collecting)
[✓] 10000     0     0 10000 / 10000     0.3s map2
- 
[ ]     0     0     0     0 / 10000     0.0s fold_left2
[ ]  3341     0     0  3341 / 10000     0.1s fold_left2
[ ]  6745     0     0  6745 / 10000     0.2s fold_left2 (collecting)
[✓] 10000     0     0 10000 / 10000     0.3s fold_left2
- 
[ ]     0     0     0     0 / 10000     0.0s fold_right2
[ ]  3332     0     0  3332 / 10000     0.1s fold_right2 (collecting)
[ ]  6630     0     0  6630 / 10000     0.2s fold_right2 (collecting)
[ ]  9869     0     0  9869 / 10000     0.3s fold_right2 (collecting)
[✓] 10000     0     0 10000 / 10000     0.3s fold_right2
- 
[ ]     0     0     0     0 / 10000     0.0s for_all
[ ]  7874     0     0  7874 / 10000     0.1s for_all (collecting)
[✓] 10000     0     0 10000 / 10000     0.1s for_all
- 
[ ]     0     0     0     0 / 10000     0.0s exists
[ ]  7867     0     0  7867 / 10000     0.1s exists (collecting)
[✓] 10000     0     0 10000 / 10000     0.1s exists
- 
[ ]     0     0     0     0 / 10000     0.0s for_all2
[ ]  4039     0     0  4039 / 10000     0.1s for_all2 (collecting)
[ ]  8126     0     0  8126 / 10000     0.2s for_all2 (collecting)
[✓] 10000     0     0 10000 / 10000     0.2s for_all2
- 
[ ]     0     0     0     0 / 10000     0.0s exists2
[ ]  4060     0     0  4060 / 10000     0.1s exists2 (collecting)
[ ]  8162     0     0  8162 / 10000     0.2s exists2 (collecting)
[✓] 10000     0     0 10000 / 10000     0.2s exists2
- 
[ ]     0     0     0     0 / 10000     0.0s mem
[✓] 10000     0     0 10000 / 10000     0.0s mem
- 
[ ]     0     0     0     0 / 10000     0.0s memq
[✓] 10000     0     0 10000 / 10000     0.0s memq
- 
[ ]     0     0     0     0 / 10000     0.0s find
[ ]  7867     0     0  7867 / 10000     0.1s find (collecting)
[✓] 10000     0     0 10000 / 10000     0.1s find
- 
[ ]     0     0     0     0 / 10000     0.0s find_opt
[ ]  7851     0     0  7851 / 10000     0.1s find_opt (collecting)
[✓] 10000     0     0 10000 / 10000     0.1s find_opt
- 
[ ]     0     0     0     0 / 10000     0.0s find_map
[ ]  7309     0     0  7309 / 10000     0.1s find_map (collecting)
[✓] 10000     0     0 10000 / 10000     0.1s find_map
- 
[ ]     0     0     0     0 / 10000     0.0s filter
[ ]  6861     0     0  6861 / 10000     0.1s filter (collecting)
[✓] 10000     0     0 10000 / 10000     0.1s filter
- 
[ ]     0     0     0     0 / 10000     0.0s find_all
[ ]  6831     0     0  6831 / 10000     0.1s find_all (collecting)
[✓] 10000     0     0 10000 / 10000     0.1s find_all
- 
[ ]     0     0     0     0 / 10000     0.0s filteri
[ ]  6254     0     0  6254 / 10000     0.1s filteri (collecting)
[✓] 10000     0     0 10000 / 10000     0.2s filteri
- 
[ ]     0     0     0     0 / 10000     0.0s partition
[ ]  6790     0     0  6790 / 10000     0.1s partition
[✓] 10000     0     0 10000 / 10000     0.1s partition
- 
[ ]     0     0     0     0 / 10000     0.0s partition_map
[ ]  2618     0     0  2618 / 10000     0.1s partition_map
[ ]  5413     0     0  5413 / 10000     0.2s partition_map
[ ]  8023     0     0  8023 / 10000     0.3s partition_map
[✓] 10000     0     0 10000 / 10000     0.4s partition_map
- 
[ ]     0     0     0     0 / 10000     0.0s split
[ ]  3471     0     0  3471 / 10000     0.1s split (collecting)
[ ]  6910     0     0  6910 / 10000     0.2s split (collecting)
[✓] 10000     0     0 10000 / 10000     0.3s split
- 
[ ]     0     0     0     0 / 10000     0.0s combine
[ ]  4416     0     0  4416 / 10000     0.1s combine (collecting)
[ ]  9032     0     0  9032 / 10000     0.2s combine (collecting)
[✓] 10000     0     0 10000 / 10000     0.2s combine
- 
[ ]     0     0     0     0 / 10000     0.0s to_list
[ ]  9401     0     0  9401 / 10000     0.1s to_list (collecting)
[✓] 10000     0     0 10000 / 10000     0.1s to_list
- 
[ ]     0     0     0     0 / 10000     0.0s of_list
[ ]  9284     0     0  9284 / 10000     0.1s of_list (collecting)
[✓] 10000     0     0 10000 / 10000     0.1s of_list
- 
[ ]     0     0     0     0 / 10000     0.0s (#<)
[ ]  8267     0     0  8267 / 10000     0.1s (#<) (collecting)
[✓] 10000     0     0 10000 / 10000     0.1s (#<)
- 
[ ]     0     0     0     0 / 10000     0.0s (<><)
[ ]  4466     0     0  4466 / 10000     0.1s (<><) (collecting)
[ ]  9026     0     0  9026 / 10000     0.2s (<><) (collecting)
[✓] 10000     0     0 10000 / 10000     0.2s (<><)
- 
[ ]     0     0     0     0 / 10000     0.0s (<>>)
[ ]  4446     0     0  4446 / 10000     0.1s (<>>) (collecting)
[ ]  9006     0     0  9006 / 10000     0.2s (<>>) (collecting)
[✓] 10000     0     0 10000 / 10000     0.2s (<>>)
- 
[ ]     0     0     0     0 / 10000     0.0s (<:)
[ ]  8321     0     0  8321 / 10000     0.1s (<:) (collecting)
[✓] 10000     0     0 10000 / 10000     0.1s (<:)
- 
[ ]     0     0     0     0 / 10000     0.0s (<@)
[ ]  4477     0     0  4477 / 10000     0.1s (<@) (collecting)
[ ]  9060     0     0  9060 / 10000     0.2s (<@) (collecting)
[✓] 10000     0     0 10000 / 10000     0.2s (<@)
- 
[ ]     0     0     0     0 / 10000     0.0s (@>)
[ ]  4488     0     0  4488 / 10000     0.1s (@>) (collecting)
[ ]  9066     0     0  9066 / 10000     0.2s (@>) (collecting)
[✓] 10000     0     0 10000 / 10000     0.2s (@>)
- ================================================================================
- 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-03-03 06:18.06 ---> saved as "09038e47b6d4f77ae2d17da356a243f8367dd2b02ed4fb2723eef4bacea8da7c"
Job succeeded
2026-03-03 06:18.13: Job succeeded