(not at the head of any monitored branch or PR)
2026-04-10 17:57.47: 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-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/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-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4
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:57.47: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4-dune.3.22.2-bwd.2.2.0-3e0c395e7b1393a792367f8edca3654dac71e6fd"
2026-04-10 17:57.47: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4)
 (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:57.47: Waiting for resource in pool OCluster
2026-04-11 03:52.25: Waiting for worker…
2026-04-11 03:54.30: Got resource from pool OCluster
Building on phoebe.caelum.ci.dev
All commits already cached
Updating files:  71% (13284/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-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4)
2026-04-11 03:56.21 ---> using "e7349b5faa6e8ea47e3f73a0784842b9d8524e468ce596e92633dbea53bd1c16" 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 03:56.21 ---> using "345d07c1ddcf0b692213607682954d9bdf190a7dc793f33951a109185e732dcb" 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 03:56.21 ---> using "6e021c655ca00bde9af60e23db55b09a0bcc3db0d3ca38d66f78ad53e254a31c" 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       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.3"}]
# compiler-packages    ocaml-base-compiler.4.14.3, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.3
2026-04-11 03:56.21 ---> using "7b2a5ae62cf702b99c177da358372ff585494a0b1c5dfffe5c4eda3046bc59fb" 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 03:56.21 ---> using "2d8e28a183d0990d4c5f7a587471f7c743cdf0d9f00bdf4de7761e94ec09202a" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-11 03:56.22 ---> using "43c49734bd8015921029b9a907dd77c0e05208c46b686916515831f5a9e9d500" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-11 03:56.22 ---> using "bb36992fd0066703535b2984ee1ead3db92bb1f04a8df092631924067dac4082" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [121 kB]
- Fetched 211 kB in 0s (1545 kB/s)
- Reading package lists...
- 
2026-04-11 03:56.22 ---> using "e0d9ada0baddc41d2c835edef7d0cf7cceebd2dadac41fda17c9e860b5313a74" 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 03:56.22 ---> using "a60db6b945be7f2fc9953546cee71bf416921d54f02951a4c9176dbdf1065520" 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 03:56.22 ---> using "59eacf68137f7dccf94b9ebc5274fdc537230a8c71c2eb52f8fcf698829c6d46" 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 03:56.30 ---> saved as "42b4da5672de2bd17b46fbefa106ce2b5a89327e8b1fbbebd8ed4e3363a69cdc"

/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 03:57.11 ---> saved as "c03d4d0bc4a6e4efb0c2af4dbe97771c19b8e612ba2561e5663d78fcbf607df6"

/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/4.14/.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/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: 257956239
- 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.1s 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
[ ]  2453     0     0  2453 / 10000     0.1s snoc (collecting)
[ ]  4879     0     0  4879 / 10000     0.2s snoc (collecting)
[ ]  7271     0     0  7271 / 10000     0.3s snoc (collecting)
[ ]  9702     0     0  9702 / 10000     0.4s snoc (collecting)
[✓] 10000     0     0 10000 / 10000     0.4s snoc
- 
[ ]     0     0     0     0 / 10000     0.0s nth
[ ]  2571     0     0  2571 / 10000     0.1s nth (collecting)
[ ]  5014     0     0  5014 / 10000     0.2s nth (collecting)
[ ]  7524     0     0  7524 / 10000     0.3s nth (collecting)
[✓] 10000     0     0 10000 / 10000     0.4s nth
- 
[ ]     0     0     0     0 / 10000     0.0s nth_opt
[ ]  2747     0     0  2747 / 10000     0.1s nth_opt (collecting)
[ ]  5366     0     0  5366 / 10000     0.2s nth_opt (collecting)
[ ]  7937     0     0  7937 / 10000     0.3s nth_opt (collecting)
[✓] 10000     0     0 10000 / 10000     0.4s nth_opt
- 
[ ]     0     0     0     0 / 10000     0.0s append
[ ]  1337     0     0  1337 / 10000     0.1s append (collecting)
[ ]  2730     0     0  2730 / 10000     0.2s append (collecting)
[ ]  4033     0     0  4033 / 10000     0.3s append (collecting)
[ ]  5329     0     0  5329 / 10000     0.4s append (collecting)
[ ]  6620     0     0  6620 / 10000     0.5s append (collecting)
[ ]  7952     0     0  7952 / 10000     0.6s append (collecting)
[ ]  9337     0     0  9337 / 10000     0.7s append (collecting)
[✓] 10000     0     0 10000 / 10000     0.8s append
- 
[ ]     0     0     0     0 / 10000     0.0s prepend
[ ]  1289     0     0  1289 / 10000     0.1s prepend (collecting)
[ ]  2583     0     0  2583 / 10000     0.2s prepend (collecting)
[ ]  3890     0     0  3890 / 10000     0.3s prepend (collecting)
[ ]  5128     0     0  5128 / 10000     0.4s prepend (collecting)
[ ]  6282     0     0  6282 / 10000     0.5s prepend (collecting)
[ ]  7512     0     0  7512 / 10000     0.6s prepend (collecting)
[ ]  8870     0     0  8870 / 10000     0.7s prepend (collecting)
[✓] 10000     0     0 10000 / 10000     0.8s prepend
- 
[ ]     0     0     0     0 / 10000     0.0s equal
[ ]  5789     0     0  5789 / 10000     0.1s equal (collecting)
[✓] 10000     0     0 10000 / 10000     0.2s equal
- 
[ ]     0     0     0     0 / 10000     0.0s compare
[ ]  4495     0     0  4495 / 10000     0.1s compare (collecting)
[ ]  9296     0     0  9296 / 10000     0.2s compare (collecting)
[✓] 10000     0     0 10000 / 10000     0.2s compare
- 
[ ]     0     0     0     0 / 10000     0.0s iter
[ ]  2283     0     0  2283 / 10000     0.1s iter (collecting)
[ ]  4874     0     0  4874 / 10000     0.2s iter (collecting)
[ ]  7486     0     0  7486 / 10000     0.3s iter (collecting)
[✓] 10000     0     0 10000 / 10000     0.4s iter
- 
[ ]     0     0     0     0 / 10000     0.0s iteri
[ ]  2476     0     0  2476 / 10000     0.1s iteri (collecting)
[ ]  5025     0     0  5025 / 10000     0.2s iteri (collecting)
[ ]  7475     0     0  7475 / 10000     0.3s iteri (collecting)
[ ]  9945     0     0  9945 / 10000     0.4s iteri (collecting)
[✓] 10000     0     0 10000 / 10000     0.4s iteri
- 
[ ]     0     0     0     0 / 10000     0.0s map
[ ]  1172     0     0  1172 / 10000     0.1s map (collecting)
[ ]  2379     0     0  2379 / 10000     0.2s map
[ ]  3491     0     0  3491 / 10000     0.3s map (collecting)
[ ]  4658     0     0  4658 / 10000     0.4s map (collecting)
[ ]  5756     0     0  5756 / 10000     0.5s map (collecting)
[ ]  6913     0     0  6913 / 10000     0.6s map (collecting)
[ ]  8111     0     0  8111 / 10000     0.7s map
[ ]  9157     0     0  9157 / 10000     0.8s map (collecting)
[✓] 10000     0     0 10000 / 10000     0.9s map
- 
[ ]     0     0     0     0 / 10000     0.0s mapi
[ ]  1085     0     0  1085 / 10000     0.1s mapi (collecting)
[ ]  2113     0     0  2113 / 10000     0.2s mapi (collecting)
[ ]  3027     0     0  3027 / 10000     0.3s mapi (collecting)
[ ]  4045     0     0  4045 / 10000     0.4s mapi
[ ]  5133     0     0  5133 / 10000     0.5s mapi (collecting)
[ ]  6254     0     0  6254 / 10000     0.6s mapi
[ ]  7430     0     0  7430 / 10000     0.7s mapi (collecting)
[ ]  8571     0     0  8571 / 10000     0.8s mapi (collecting)
[ ]  9481     0     0  9481 / 10000     0.9s mapi
[✓] 10000     0     0 10000 / 10000     0.9s mapi
- 
[ ]     0     0     0     0 / 10000     0.0s filter_map
[ ]  1206     0     0  1206 / 10000     0.1s filter_map
[ ]  2366     0     0  2366 / 10000     0.2s filter_map (collecting)
[ ]  3524     0     0  3524 / 10000     0.3s filter_map (collecting)
[ ]  4758     0     0  4758 / 10000     0.4s filter_map (collecting)
[ ]  5939     0     0  5939 / 10000     0.5s filter_map (collecting)
[ ]  7192     0     0  7192 / 10000     0.6s filter_map
[ ]  8377     0     0  8377 / 10000     0.7s filter_map
[ ]  9628     0     0  9628 / 10000     0.8s filter_map
[✓] 10000     0     0 10000 / 10000     0.8s filter_map
- 
[ ]     0     0     0     0 / 10000     0.0s fold_left
[ ]  1001     0     0  1001 / 10000     0.1s fold_left
[ ]  2105     0     0  2105 / 10000     0.2s fold_left (collecting)
[ ]  3168     0     0  3168 / 10000     0.3s fold_left
[ ]  4270     0     0  4270 / 10000     0.4s fold_left
[ ]  5328     0     0  5328 / 10000     0.5s fold_left
[ ]  6435     0     0  6435 / 10000     0.6s fold_left (collecting)
[ ]  7514     0     0  7514 / 10000     0.7s fold_left
[ ]  8568     0     0  8568 / 10000     0.8s fold_left
[ ]  9602     0     0  9602 / 10000     0.9s fold_left (collecting)
[✓] 10000     0     0 10000 / 10000     0.9s fold_left
- 
[ ]     0     0     0     0 / 10000     0.0s fold_right_map
[ ]   583     0     0   583 / 10000     0.1s fold_right_map (collecting)
[ ]  1113     0     0  1113 / 10000     0.2s fold_right_map (collecting)
[ ]  1729     0     0  1729 / 10000     0.3s fold_right_map
[ ]  2342     0     0  2342 / 10000     0.4s fold_right_map
[ ]  2904     0     0  2904 / 10000     0.5s fold_right_map (collecting)
[ ]  3483     0     0  3483 / 10000     0.6s fold_right_map
[ ]  3982     0     0  3982 / 10000     0.7s fold_right_map
[ ]  4578     0     0  4578 / 10000     0.8s fold_right_map
[ ]  5120     0     0  5120 / 10000     0.9s fold_right_map
[ ]  5664     0     0  5664 / 10000     1.0s fold_right_map (collecting)
[ ]  6206     0     0  6206 / 10000     1.1s fold_right_map (collecting)
[ ]  6780     0     0  6780 / 10000     1.2s fold_right_map
[ ]  7359     0     0  7359 / 10000     1.3s fold_right_map
[ ]  7944     0     0  7944 / 10000     1.4s fold_right_map
[ ]  8480     0     0  8480 / 10000     1.5s fold_right_map
[ ]  9047     0     0  9047 / 10000     1.6s fold_right_map
[ ]  9626     0     0  9626 / 10000     1.7s fold_right_map
[✓] 10000     0     0 10000 / 10000     1.8s fold_right_map
- 
[ ]     0     0     0     0 / 10000     0.0s fold_right
[ ]  1074     0     0  1074 / 10000     0.1s fold_right
[ ]  2168     0     0  2168 / 10000     0.2s fold_right (collecting)
[ ]  3173     0     0  3173 / 10000     0.3s fold_right
[ ]  4133     0     0  4133 / 10000     0.4s fold_right
[ ]  5119     0     0  5119 / 10000     0.5s fold_right (collecting)
[ ]  6094     0     0  6094 / 10000     0.6s fold_right
[ ]  7128     0     0  7128 / 10000     0.7s fold_right (collecting)
[ ]  8171     0     0  8171 / 10000     0.8s fold_right (collecting)
[ ]  9131     0     0  9131 / 10000     0.9s fold_right (collecting)
[✓] 10000     0     0 10000 / 10000     1.0s fold_right
- 
[ ]     0     0     0     0 / 10000     0.0s iter2
[ ]  1195     0     0  1195 / 10000     0.1s iter2 (collecting)
[ ]  2363     0     0  2363 / 10000     0.2s iter2 (collecting)
[ ]  3653     0     0  3653 / 10000     0.3s iter2 (collecting)
[ ]  4889     0     0  4889 / 10000     0.4s iter2 (collecting)
[ ]  6156     0     0  6156 / 10000     0.5s iter2 (collecting)
[ ]  7445     0     0  7445 / 10000     0.6s iter2 (collecting)
[ ]  8655     0     0  8655 / 10000     0.7s iter2 (collecting)
[ ]  9856     0     0  9856 / 10000     0.8s iter2 (collecting)
[✓] 10000     0     0 10000 / 10000     0.8s iter2
- 
[ ]     0     0     0     0 / 10000     0.0s map2
[ ]   980     0     0   980 / 10000     0.1s map2 (collecting)
[ ]  1967     0     0  1967 / 10000     0.2s map2 (collecting)
[ ]  2905     0     0  2905 / 10000     0.3s map2 (collecting)
[ ]  3968     0     0  3968 / 10000     0.4s map2 (collecting)
[ ]  4932     0     0  4932 / 10000     0.5s map2 (collecting)
[ ]  5956     0     0  5956 / 10000     0.6s map2
[ ]  6953     0     0  6953 / 10000     0.7s map2 (collecting)
[ ]  8037     0     0  8037 / 10000     0.8s map2
[ ]  9041     0     0  9041 / 10000     0.9s map2 (collecting)
[✓] 10000     0     0 10000 / 10000     1.0s map2
- 
[ ]     0     0     0     0 / 10000     0.0s fold_left2
[ ]   929     0     0   929 / 10000     0.1s fold_left2 (collecting)
[ ]  1967     0     0  1967 / 10000     0.2s fold_left2 (collecting)
[ ]  2933     0     0  2933 / 10000     0.3s fold_left2 (collecting)
[ ]  3872     0     0  3872 / 10000     0.4s fold_left2 (collecting)
[ ]  4863     0     0  4863 / 10000     0.5s fold_left2 (collecting)
[ ]  5862     0     0  5862 / 10000     0.6s fold_left2 (collecting)
[ ]  6855     0     0  6855 / 10000     0.7s fold_left2 (collecting)
[ ]  7855     0     0  7855 / 10000     0.8s fold_left2 (collecting)
[ ]  8845     0     0  8845 / 10000     0.9s fold_left2 (collecting)
[ ]  9811     0     0  9811 / 10000     1.0s fold_left2 (collecting)
[✓] 10000     0     0 10000 / 10000     1.0s fold_left2
- 
[ ]     0     0     0     0 / 10000     0.0s fold_right2
[ ]   919     0     0   919 / 10000     0.1s fold_right2 (collecting)
[ ]  1937     0     0  1937 / 10000     0.2s fold_right2 (collecting)
[ ]  2851     0     0  2851 / 10000     0.3s fold_right2 (collecting)
[ ]  3753     0     0  3753 / 10000     0.4s fold_right2 (collecting)
[ ]  4672     0     0  4672 / 10000     0.5s fold_right2 (collecting)
[ ]  5660     0     0  5660 / 10000     0.6s fold_right2
[ ]  6579     0     0  6579 / 10000     0.7s fold_right2 (collecting)
[ ]  7538     0     0  7538 / 10000     0.8s fold_right2 (collecting)
[ ]  8479     0     0  8479 / 10000     0.9s fold_right2
[ ]  9445     0     0  9445 / 10000     1.0s fold_right2 (collecting)
[✓] 10000     0     0 10000 / 10000     1.1s fold_right2
- 
[ ]     0     0     0     0 / 10000     0.0s for_all
[ ]  2294     0     0  2294 / 10000     0.1s for_all (collecting)
[ ]  4556     0     0  4556 / 10000     0.2s for_all (collecting)
[ ]  6893     0     0  6893 / 10000     0.3s for_all (collecting)
[ ]  9463     0     0  9463 / 10000     0.4s for_all (collecting)
[✓] 10000     0     0 10000 / 10000     0.4s for_all
- 
[ ]     0     0     0     0 / 10000     0.0s exists
[ ]  2326     0     0  2326 / 10000     0.1s exists (collecting)
[ ]  4628     0     0  4628 / 10000     0.2s exists (collecting)
[ ]  6992     0     0  6992 / 10000     0.3s exists (collecting)
[ ]  9508     0     0  9508 / 10000     0.4s exists (collecting)
[✓] 10000     0     0 10000 / 10000     0.4s exists
- 
[ ]     0     0     0     0 / 10000     0.0s for_all2
[ ]  1193     0     0  1193 / 10000     0.1s for_all2 (collecting)
[ ]  2456     0     0  2456 / 10000     0.2s for_all2 (collecting)
[ ]  3679     0     0  3679 / 10000     0.3s for_all2 (collecting)
[ ]  4857     0     0  4857 / 10000     0.4s for_all2 (collecting)
[ ]  6012     0     0  6012 / 10000     0.5s for_all2 (collecting)
[ ]  7120     0     0  7120 / 10000     0.6s for_all2 (collecting)
[ ]  8316     0     0  8316 / 10000     0.7s for_all2 (collecting)
[ ]  9512     0     0  9512 / 10000     0.8s for_all2 (collecting)
[✓] 10000     0     0 10000 / 10000     0.8s for_all2
- 
[ ]     0     0     0     0 / 10000     0.0s exists2
[ ]  1189     0     0  1189 / 10000     0.1s exists2 (collecting)
[ ]  2449     0     0  2449 / 10000     0.2s exists2 (collecting)
[ ]  3673     0     0  3673 / 10000     0.3s exists2 (collecting)
[ ]  4856     0     0  4856 / 10000     0.4s exists2 (collecting)
[ ]  5995     0     0  5995 / 10000     0.5s exists2 (collecting)
[ ]  7201     0     0  7201 / 10000     0.6s exists2 (collecting)
[ ]  8389     0     0  8389 / 10000     0.7s exists2 (collecting)
[ ]  9554     0     0  9554 / 10000     0.8s exists2 (collecting)
[✓] 10000     0     0 10000 / 10000     0.8s exists2
- 
[ ]     0     0     0     0 / 10000     0.0s mem
[✓] 10000     0     0 10000 / 10000     0.1s mem
- 
[ ]     0     0     0     0 / 10000     0.0s memq
[✓] 10000     0     0 10000 / 10000     0.1s memq
- 
[ ]     0     0     0     0 / 10000     0.0s find
[ ]  2285     0     0  2285 / 10000     0.1s find (collecting)
[ ]  4621     0     0  4621 / 10000     0.2s find (collecting)
[ ]  6924     0     0  6924 / 10000     0.3s find (collecting)
[ ]  9353     0     0  9353 / 10000     0.4s find (collecting)
[✓] 10000     0     0 10000 / 10000     0.4s find
- 
[ ]     0     0     0     0 / 10000     0.0s find_opt
[ ]  2303     0     0  2303 / 10000     0.1s find_opt (collecting)
[ ]  4628     0     0  4628 / 10000     0.2s find_opt (collecting)
[ ]  6846     0     0  6846 / 10000     0.3s find_opt
[ ]  9223     0     0  9223 / 10000     0.4s find_opt (collecting)
[✓] 10000     0     0 10000 / 10000     0.4s find_opt
- 
[ ]     0     0     0     0 / 10000     0.0s find_map
[ ]  2103     0     0  2103 / 10000     0.1s find_map (collecting)
[ ]  4260     0     0  4260 / 10000     0.2s find_map (collecting)
[ ]  6377     0     0  6377 / 10000     0.3s find_map
[ ]  8550     0     0  8550 / 10000     0.4s find_map (collecting)
[✓] 10000     0     0 10000 / 10000     0.5s find_map
- 
[ ]     0     0     0     0 / 10000     0.0s filter
[ ]  2016     0     0  2016 / 10000     0.1s filter (collecting)
[ ]  4049     0     0  4049 / 10000     0.2s filter (collecting)
[ ]  6144     0     0  6144 / 10000     0.3s filter (collecting)
[ ]  8264     0     0  8264 / 10000     0.4s filter (collecting)
[✓] 10000     0     0 10000 / 10000     0.5s filter
- 
[ ]     0     0     0     0 / 10000     0.0s find_all
[ ]  2051     0     0  2051 / 10000     0.1s find_all (collecting)
[ ]  4107     0     0  4107 / 10000     0.2s find_all (collecting)
[ ]  6210     0     0  6210 / 10000     0.3s find_all
[ ]  8329     0     0  8329 / 10000     0.4s find_all (collecting)
[✓] 10000     0     0 10000 / 10000     0.5s find_all
- 
[ ]     0     0     0     0 / 10000     0.0s filteri
[ ]  1832     0     0  1832 / 10000     0.1s filteri (collecting)
[ ]  3723     0     0  3723 / 10000     0.2s filteri (collecting)
[ ]  5527     0     0  5527 / 10000     0.3s filteri (collecting)
[ ]  7475     0     0  7475 / 10000     0.4s filteri
[ ]  9493     0     0  9493 / 10000     0.5s filteri (collecting)
[✓] 10000     0     0 10000 / 10000     0.5s filteri
- 
[ ]     0     0     0     0 / 10000     0.0s partition
[ ]  1905     0     0  1905 / 10000     0.1s partition
[ ]  3917     0     0  3917 / 10000     0.2s partition
[ ]  5972     0     0  5972 / 10000     0.3s partition (collecting)
[ ]  8107     0     0  8107 / 10000     0.4s partition (collecting)
[✓] 10000     0     0 10000 / 10000     0.5s partition
- 
[ ]     0     0     0     0 / 10000     0.0s partition_map
[ ]   800     0     0   800 / 10000     0.1s partition_map (collecting)
[ ]  1683     0     0  1683 / 10000     0.2s partition_map (collecting)
[ ]  2536     0     0  2536 / 10000     0.3s partition_map (collecting)
[ ]  3308     0     0  3308 / 10000     0.4s partition_map
[ ]  4085     0     0  4085 / 10000     0.5s partition_map
[ ]  4935     0     0  4935 / 10000     0.6s partition_map (collecting)
[ ]  5688     0     0  5688 / 10000     0.7s partition_map
[ ]  6520     0     0  6520 / 10000     0.8s partition_map (collecting)
[ ]  7365     0     0  7365 / 10000     0.9s partition_map
[ ]  8226     0     0  8226 / 10000     1.0s partition_map
[ ]  9003     0     0  9003 / 10000     1.1s partition_map
[ ]  9732     0     0  9732 / 10000     1.2s partition_map (collecting)
[✓] 10000     0     0 10000 / 10000     1.2s partition_map
- 
[ ]     0     0     0     0 / 10000     0.0s split
[ ]   946     0     0   946 / 10000     0.1s split (collecting)
[ ]  1730     0     0  1730 / 10000     0.2s split (collecting)
[ ]  2585     0     0  2585 / 10000     0.3s split (collecting)
[ ]  3613     0     0  3613 / 10000     0.4s split (collecting)
[ ]  4497     0     0  4497 / 10000     0.5s split (collecting)
[ ]  5352     0     0  5352 / 10000     0.6s split (collecting)
[ ]  6315     0     0  6315 / 10000     0.7s split (collecting)
[ ]  7192     0     0  7192 / 10000     0.8s split (collecting)
[ ]  8076     0     0  8076 / 10000     0.9s split (collecting)
[ ]  8833     0     0  8833 / 10000     1.0s split (collecting)
[ ]  9611     0     0  9611 / 10000     1.1s split (collecting)
[✓] 10000     0     0 10000 / 10000     1.1s split
- 
[ ]     0     0     0     0 / 10000     0.0s combine
[ ]  1239     0     0  1239 / 10000     0.1s combine (collecting)
[ ]  2514     0     0  2514 / 10000     0.2s combine (collecting)
[ ]  3859     0     0  3859 / 10000     0.3s combine (collecting)
[ ]  5178     0     0  5178 / 10000     0.4s combine (collecting)
[ ]  6502     0     0  6502 / 10000     0.5s combine (collecting)
[ ]  7820     0     0  7820 / 10000     0.6s combine (collecting)
[ ]  9105     0     0  9105 / 10000     0.7s combine (collecting)
[✓] 10000     0     0 10000 / 10000     0.8s combine
- 
[ ]     0     0     0     0 / 10000     0.0s to_list
[ ]  2509     0     0  2509 / 10000     0.1s to_list (collecting)
[ ]  5074     0     0  5074 / 10000     0.2s to_list (collecting)
[ ]  7593     0     0  7593 / 10000     0.3s to_list (collecting)
[✓] 10000     0     0 10000 / 10000     0.4s to_list
- 
[ ]     0     0     0     0 / 10000     0.0s of_list
[ ]  2596     0     0  2596 / 10000     0.1s of_list (collecting)
[ ]  5218     0     0  5218 / 10000     0.2s of_list (collecting)
[ ]  7830     0     0  7830 / 10000     0.3s of_list (collecting)
[✓] 10000     0     0 10000 / 10000     0.4s of_list
- 
[ ]     0     0     0     0 / 10000     0.0s (#<)
[ ]  2337     0     0  2337 / 10000     0.1s (#<) (collecting)
[ ]  4726     0     0  4726 / 10000     0.2s (#<) (collecting)
[ ]  7045     0     0  7045 / 10000     0.3s (#<) (collecting)
[ ]  9412     0     0  9412 / 10000     0.4s (#<) (collecting)
[✓] 10000     0     0 10000 / 10000     0.4s (#<)
- 
[ ]     0     0     0     0 / 10000     0.0s (<><)
[ ]  1239     0     0  1239 / 10000     0.1s (<><) (collecting)
[ ]  2565     0     0  2565 / 10000     0.2s (<><) (collecting)
[ ]  3680     0     0  3680 / 10000     0.3s (<><) (collecting)
[ ]  4953     0     0  4953 / 10000     0.4s (<><) (collecting)
[ ]  6244     0     0  6244 / 10000     0.5s (<><) (collecting)
[ ]  7470     0     0  7470 / 10000     0.6s (<><) (collecting)
[ ]  8787     0     0  8787 / 10000     0.7s (<><) (collecting)
[✓] 10000     0     0 10000 / 10000     0.8s (<><)
- 
[ ]     0     0     0     0 / 10000     0.0s (<>>)
[ ]  1295     0     0  1295 / 10000     0.1s (<>>) (collecting)
[ ]  2629     0     0  2629 / 10000     0.2s (<>>) (collecting)
[ ]  3888     0     0  3888 / 10000     0.3s (<>>) (collecting)
[ ]  5142     0     0  5142 / 10000     0.4s (<>>) (collecting)
[ ]  6416     0     0  6416 / 10000     0.5s (<>>) (collecting)
[ ]  7706     0     0  7706 / 10000     0.6s (<>>) (collecting)
[ ]  9022     0     0  9022 / 10000     0.7s (<>>) (collecting)
[✓] 10000     0     0 10000 / 10000     0.8s (<>>)
- 
[ ]     0     0     0     0 / 10000     0.0s (<:)
[ ]  2488     0     0  2488 / 10000     0.1s (<:) (collecting)
[ ]  4996     0     0  4996 / 10000     0.2s (<:) (collecting)
[ ]  7427     0     0  7427 / 10000     0.3s (<:) (collecting)
[ ]  9951     0     0  9951 / 10000     0.4s (<:) (collecting)
[✓] 10000     0     0 10000 / 10000     0.4s (<:)
- 
[ ]     0     0     0     0 / 10000     0.0s (<@)
[ ]  1366     0     0  1366 / 10000     0.1s (<@) (collecting)
[ ]  2648     0     0  2648 / 10000     0.2s (<@) (collecting)
[ ]  3908     0     0  3908 / 10000     0.3s (<@) (collecting)
[ ]  5177     0     0  5177 / 10000     0.4s (<@) (collecting)
[ ]  6453     0     0  6453 / 10000     0.5s (<@) (collecting)
[ ]  7671     0     0  7671 / 10000     0.6s (<@) (collecting)
[ ]  8981     0     0  8981 / 10000     0.7s (<@) (collecting)
[✓] 10000     0     0 10000 / 10000     0.8s (<@)
- 
[ ]     0     0     0     0 / 10000     0.0s (@>)
[ ]  1153     0     0  1153 / 10000     0.1s (@>) (collecting)
[ ]  2378     0     0  2378 / 10000     0.2s (@>) (collecting)
[ ]  3673     0     0  3673 / 10000     0.3s (@>) (collecting)
[ ]  4874     0     0  4874 / 10000     0.4s (@>) (collecting)
[ ]  6153     0     0  6153 / 10000     0.5s (@>) (collecting)
[ ]  7212     0     0  7212 / 10000     0.6s (@>) (collecting)
[ ]  8368     0     0  8368 / 10000     0.7s (@>) (collecting)
[ ]  9597     0     0  9597 / 10000     0.8s (@>) (collecting)
[✓] 10000     0     0 10000 / 10000     0.8s (@>)
- ================================================================================
- 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 03:57.49 ---> saved as "23b37a30c06e94540ddb24857df908c79884fac230be751c6b762d19e0289a66"
Job succeeded
2026-04-11 03:58.17: Job succeeded