(not at the head of any monitored branch or PR)
2026-04-10 17:57.47: New job: test bwd.2.3.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.3.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.3.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.3.0) || true
RUN opam reinstall --with-test --verbose bwd.2.3.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.3.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.3.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.3.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.3.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.3.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose bwd.2.3.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.3.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.22: Waiting for worker…
2026-04-11 03:54.30: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
Updating files:  67% (12563/18686)
Updating files:  68% (12707/18686)
Updating files:  69% (12894/18686)
Updating files:  70% (13081/18686)
Updating files:  71% (13268/18686)
Updating files:  72% (13454/18686)
Updating files:  73% (13641/18686)
Updating files:  74% (13828/18686)
Updating files:  75% (14015/18686)
Updating files:  76% (14202/18686)
Updating files:  77% (14389/18686)
Updating files:  78% (14576/18686)
Updating files:  79% (14762/18686)
Updating files:  80% (14949/18686)
Updating files:  81% (15136/18686)
Updating files:  82% (15323/18686)
Updating files:  83% (15510/18686)
Updating files:  84% (15697/18686)
Updating files:  85% (15884/18686)
Updating files:  86% (16070/18686)
Updating files:  87% (16257/18686)
Updating files:  88% (16444/18686)
Updating files:  89% (16631/18686)
Updating files:  90% (16818/18686)
Updating files:  91% (17005/18686)
Updating files:  92% (17192/18686)
Updating files:  93% (17378/18686)
Updating files:  94% (17565/18686)
Updating files:  95% (17752/18686)
Updating files:  96% (17939/18686)
Updating files:  97% (18126/18686)
Updating files:  98% (18313/18686)
Updating files:  99% (18500/18686)
Updating files: 100% (18686/18686)
Updating files: 100% (18686/18686), done.
HEAD is now at 9d8ceab8e9 Merge pull request #29697 from filipeom/opam-publish-smtml.0.25.0
Updating 9d8ceab8e9..3e0c395e7b
Fast-forward
 packages/chrome-trace/chrome-trace.3.22.2/opam     | 39 +++++++++++
 .../dune-action-plugin.3.22.2/opam                 | 52 +++++++++++++++
 .../dune-action-trace.3.22.2/opam                  | 39 +++++++++++
 .../dune-build-info/dune-build-info.3.22.2/opam    | 45 +++++++++++++
 .../dune-configurator.3.22.2/opam                  | 49 ++++++++++++++
 packages/dune-glob/dune-glob.3.22.2/opam           | 42 ++++++++++++
 .../dune-private-libs.3.22.2/opam                  | 50 +++++++++++++++
 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam     | 41 ++++++++++++
 packages/dune-rpc/dune-rpc.3.22.2/opam             | 44 +++++++++++++
 packages/dune-site/dune-site.3.22.2/opam           | 37 +++++++++++
 packages/dune/dune.3.22.2/opam                     | 75 ++++++++++++++++++++++
 packages/dyn/dyn.3.22.2/opam                       | 40 ++++++++++++
 packages/fs-io/fs-io.3.22.2/opam                   | 39 +++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam         | 43 +++++++++++++
 packages/ordering/ordering.3.22.2/opam             | 38 +++++++++++
 packages/stdune/stdune.3.22.2/opam                 | 46 +++++++++++++
 packages/top-closure/top-closure.3.22.2/opam       | 38 +++++++++++
 packages/xdg/xdg.3.22.2/opam                       | 39 +++++++++++
 18 files changed, 796 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.22.2/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.2/opam
 create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.2/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.22.2/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.22.2/opam
 create mode 100644 packages/dune-glob/dune-glob.3.22.2/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.2/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.22.2/opam
 create mode 100644 packages/dune-site/dune-site.3.22.2/opam
 create mode 100644 packages/dune/dune.3.22.2/opam
 create mode 100644 packages/dyn/dyn.3.22.2/opam
 create mode 100644 packages/fs-io/fs-io.3.22.2/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam
 create mode 100644 packages/ordering/ordering.3.22.2/opam
 create mode 100644 packages/stdune/stdune.3.22.2/opam
 create mode 100644 packages/top-closure/top-closure.3.22.2/opam
 create mode 100644 packages/xdg/xdg.3.22.2/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:4457c533769cd1c32fd9fb5fb13e5a0a285ba114860db7ac2f34c1c21e5690e4)
2026-04-11 03:54.38 ---> 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:54.38 ---> 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:54.38 ---> 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:54.38 ---> 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:54.38 ---> using "2d8e28a183d0990d4c5f7a587471f7c743cdf0d9f00bdf4de7761e94ec09202a" from cache

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

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-11 03:54.39 ---> 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 (1985 kB/s)
- Reading package lists...
2026-04-11 03:54.39 ---> 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:54.39 ---> 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:54.39 ---> using "59eacf68137f7dccf94b9ebc5274fdc537230a8c71c2eb52f8fcf698829c6d46" from cache

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bwd.2.3.0  (cached)
-> installed bwd.2.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 03:54.48 ---> saved as "bb3159702cde399e49e9ba97a679edd45e1794509d5260f74337b2a29138ed59"

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

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

/home/opam: (run (shell  "opam reinstall --with-test --verbose bwd.2.3.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.3.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.3.0

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [bwd.2.3.0: extract]
-> retrieved bwd.2.3.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.3.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.3.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_signed_int))
-                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 34, characters 35-51:
- 34 |     Q.Gen.(pair (small_list unit) (small_signed_int))
-                                         ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.Gen.small_signed_int
- Use [int_small] instead
- File "test/TestBwdLabels.ml", line 39, characters 11-21:
- 39 |     Q.Gen.(small_list unit)
-                 ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 43, characters 47-57:
- 43 |   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 47, characters 17-27:
- 47 |     Q.Gen.(pair (small_list int) small_signed_int)
-                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 47, characters 33-49:
- 47 |     Q.Gen.(pair (small_list int) small_signed_int)
-                                       ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.Gen.small_signed_int
- Use [int_small] instead
- File "test/TestBwdLabels.ml", line 55, characters 17-27:
- 55 |     Q.Gen.(pair (small_list int) small_signed_int)
-                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 55, characters 33-49:
- 55 |     Q.Gen.(pair (small_list int) small_signed_int)
-                                       ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.Gen.small_signed_int
- Use [int_small] instead
- File "test/TestBwdLabels.ml", line 63, characters 16-32:
- 63 |     Q.Gen.(pair small_signed_int (Q.fun1 Q.Observable.int (opt int)))
-                      ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.Gen.small_signed_int
- Use [int_small] instead
- File "test/TestBwdLabels.ml", line 63, characters 59-62:
- 63 |     Q.Gen.(pair small_signed_int (Q.fun1 Q.Observable.int (opt int)))
-                                                                 ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- File "test/TestBwdLabels.ml", line 67, characters 49-59:
- 67 |   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 67, characters 66-76:
- 67 |   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 71, characters 50-60:
- 71 |   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 71, characters 67-77:
- 71 |   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 76, characters 67-77:
- 76 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list small_nat) (small_list small_nat))
-                                                                         ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 76, characters 78-87:
- 76 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list small_nat) (small_list small_nat))
-                                                                                    ^^^^^^^^^
- Alert deprecated: Q.Gen.small_nat
- Use [nat_small] instead
- File "test/TestBwdLabels.ml", line 76, characters 90-100:
- 76 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list small_nat) (small_list small_nat))
-                                                                                                ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 76, characters 101-110:
- 76 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list small_nat) (small_list small_nat))
-                                                                                                           ^^^^^^^^^
- Alert deprecated: Q.Gen.small_nat
- Use [nat_small] instead
- File "test/TestBwdLabels.ml", line 81, characters 66-76:
- 81 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) (small_list small_nat) (small_list small_nat))
-                                                                        ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 81, characters 77-86:
- 81 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) (small_list small_nat) (small_list small_nat))
-                                                                                   ^^^^^^^^^
- Alert deprecated: Q.Gen.small_nat
- Use [nat_small] instead
- File "test/TestBwdLabels.ml", line 81, characters 89-99:
- 81 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) (small_list small_nat) (small_list small_nat))
-                                                                                               ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 81, characters 100-109:
- 81 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) (small_list small_nat) (small_list small_nat))
-                                                                                                          ^^^^^^^^^
- Alert deprecated: Q.Gen.small_nat
- Use [nat_small] instead
- File "test/TestBwdLabels.ml", line 85, characters 41-51:
- 85 |   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 94, characters 42-52:
- 94 |   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 104, characters 47-57:
- 104 |     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 109, characters 64-74:
- 109 |     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 114, characters 42-45:
- 114 |     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 114, characters 53-63:
- 114 |     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 119, characters 70-80:
- 119 |     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 124, characters 77-87:
- 124 |     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 132, characters 66-76:
- 132 |     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 136, characters 48-58:
- 136 |   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 136, characters 65-75:
- 136 |   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 148, characters 66-76:
- 148 |     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 148, characters 83-93:
- 148 |     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 156, characters 85-95:
- 156 |     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 156, characters 102-112:
- 156 |     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 164, characters 81-91:
- 164 |     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 164, characters 98-108:
- 164 |     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 172, characters 48-58:
- 172 |     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 177, characters 48-58:
- 177 |     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 182, characters 67-77:
- 182 |     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 182, characters 84-94:
- 182 |     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 190, characters 67-77:
- 190 |     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 190, characters 84-94:
- 190 |     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 198, characters 16-25:
- 198 |     Q.Gen.(pair small_nat (small_list small_nat))
-                       ^^^^^^^^^
- Alert deprecated: Q.Gen.small_nat
- Use [nat_small] instead
- File "test/TestBwdLabels.ml", line 198, characters 27-37:
- 198 |     Q.Gen.(pair small_nat (small_list small_nat))
-                                  ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 198, characters 38-47:
- 198 |     Q.Gen.(pair small_nat (small_list small_nat))
-                                             ^^^^^^^^^
- Alert deprecated: Q.Gen.small_nat
- Use [nat_small] instead
- File "test/TestBwdLabels.ml", line 203, characters 17-20:
- 203 |     Q.Gen.(pair (opt small_nat) (small_list (opt small_nat))) (* use [int option] to test physical equality *)
-                        ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- File "test/TestBwdLabels.ml", line 203, characters 21-30:
- 203 |     Q.Gen.(pair (opt small_nat) (small_list (opt small_nat))) (* use [int option] to test physical equality *)
-                            ^^^^^^^^^
- Alert deprecated: Q.Gen.small_nat
- Use [nat_small] instead
- File "test/TestBwdLabels.ml", line 203, characters 33-43:
- 203 |     Q.Gen.(pair (opt small_nat) (small_list (opt small_nat))) (* use [int option] to test physical equality *)
-                                        ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 203, characters 45-48:
- 203 |     Q.Gen.(pair (opt small_nat) (small_list (opt small_nat))) (* use [int option] to test physical equality *)
-                                                    ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- File "test/TestBwdLabels.ml", line 203, characters 49-58:
- 203 |     Q.Gen.(pair (opt small_nat) (small_list (opt small_nat))) (* use [int option] to test physical equality *)
-                                                        ^^^^^^^^^
- Alert deprecated: Q.Gen.small_nat
- Use [nat_small] instead
- File "test/TestBwdLabels.ml", line 208, characters 48-58:
- 208 |     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 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 42-45:
- 223 |     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 223, characters 53-63:
- 223 |     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 228, characters 59-62:
- 228 |     Q.Gen.(pair (Q.fun2 Q.Observable.int Q.Observable.int (opt int)) (small_list int))
-                                                                  ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- File "test/TestBwdLabels.ml", line 228, characters 70-80:
- 228 |     Q.Gen.(pair (Q.fun2 Q.Observable.int Q.Observable.int (opt int)) (small_list int))
-                                                                             ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 233, characters 48-58:
- 233 |     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 238, characters 48-58:
- 238 |     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 243, characters 65-75:
- 243 |     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 248, characters 48-58:
- 248 |     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 256, characters 59-69:
- 256 |     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 265, characters 11-21:
- 265 |     Q.Gen.(small_list (pair int int))
-                  ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 273, characters 17-27:
- 273 |     Q.Gen.(pair (small_list int) (small_list int))
-                        ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 273, characters 34-44:
- 273 |     Q.Gen.(pair (small_list int) (small_list int))
-                                         ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- File "test/TestBwdLabels.ml", line 280, characters 44-54:
- 280 |   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 283, characters 44-54:
- 283 |   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 287, characters 47-57:
- 287 |   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 290, characters 47-57:
- 290 |   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 290, characters 64-74:
- 290 |   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 294, characters 47-57:
- 294 |   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 294, characters 64-74:
- 294 |   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: 41979795
- 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.1s compare_length_with
- 
[ ]     0     0     0     0 / 10000     0.0s is_empty
[✓] 10000     0     0 10000 / 10000     0.0s is_empty
- 
[ ]     0     0     0     0 / 10000     0.0s snoc
[ ]  2427     0     0  2427 / 10000     0.1s snoc (collecting)
[ ]  4848     0     0  4848 / 10000     0.2s snoc (collecting)
[ ]  7261     0     0  7261 / 10000     0.3s snoc (collecting)
[ ]  9654     0     0  9654 / 10000     0.4s snoc (collecting)
[✓] 10000     0     0 10000 / 10000     0.4s snoc
- 
[ ]     0     0     0     0 / 10000     0.0s nth
[ ]  2609     0     0  2609 / 10000     0.1s nth (collecting)
[ ]  5191     0     0  5191 / 10000     0.2s nth (collecting)
[ ]  7624     0     0  7624 / 10000     0.3s nth (collecting)
[ ]  9992     0     0  9992 / 10000     0.4s nth (collecting)
[✓] 10000     0     0 10000 / 10000     0.4s nth
- 
[ ]     0     0     0     0 / 10000     0.0s nth_opt
[ ]  3340     0     0  3340 / 10000     0.1s nth_opt (collecting)
[ ]  6505     0     0  6505 / 10000     0.2s nth_opt (collecting)
[ ]  8858     0     0  8858 / 10000     0.3s nth_opt (collecting)
[✓] 10000     0     0 10000 / 10000     0.3s nth_opt
- 
[ ]     0     0     0     0 / 10000     0.0s init
[ ]  3557     0     0  3557 / 10000     0.1s init
[ ]  7220     0     0  7220 / 10000     0.2s init (collecting)
[✓] 10000     0     0 10000 / 10000     0.3s init
- 
[ ]     0     0     0     0 / 10000     0.0s append
[ ]  2046     0     0  2046 / 10000     0.1s append (collecting)
[ ]  4122     0     0  4122 / 10000     0.2s append (collecting)
[ ]  6003     0     0  6003 / 10000     0.3s append (collecting)
[ ]  8085     0     0  8085 / 10000     0.4s append (collecting)
[✓] 10000     0     0 10000 / 10000     0.5s append
- 
[ ]     0     0     0     0 / 10000     0.0s prepend
[ ]  1979     0     0  1979 / 10000     0.1s prepend (collecting)
[ ]  3823     0     0  3823 / 10000     0.2s prepend (collecting)
[ ]  5169     0     0  5169 / 10000     0.3s prepend (collecting)
[ ]  6425     0     0  6425 / 10000     0.4s prepend (collecting)
[ ]  7679     0     0  7679 / 10000     0.5s prepend (collecting)
[ ]  8897     0     0  8897 / 10000     0.6s prepend (collecting)
[✓] 10000     0     0 10000 / 10000     0.7s prepend
- 
[ ]     0     0     0     0 / 10000     0.0s equal
[ ]  5571     0     0  5571 / 10000     0.1s equal (collecting)
[✓] 10000     0     0 10000 / 10000     0.2s equal
- 
[ ]     0     0     0     0 / 10000     0.0s compare
[ ]  4567     0     0  4567 / 10000     0.1s compare (collecting)
[ ]  9287     0     0  9287 / 10000     0.2s compare (collecting)
[✓] 10000     0     0 10000 / 10000     0.2s compare
- 
[ ]     0     0     0     0 / 10000     0.0s iter
[ ]  2393     0     0  2393 / 10000     0.1s iter (collecting)
[ ]  4876     0     0  4876 / 10000     0.2s iter (collecting)
[ ]  7377     0     0  7377 / 10000     0.3s iter (collecting)
[ ]  9843     0     0  9843 / 10000     0.4s iter (collecting)
[✓] 10000     0     0 10000 / 10000     0.4s iter
- 
[ ]     0     0     0     0 / 10000     0.0s iteri
[ ]  2419     0     0  2419 / 10000     0.1s iteri (collecting)
[ ]  4920     0     0  4920 / 10000     0.2s iteri (collecting)
[ ]  7477     0     0  7477 / 10000     0.3s iteri (collecting)
[ ]  9968     0     0  9968 / 10000     0.4s iteri (collecting)
[✓] 10000     0     0 10000 / 10000     0.4s iteri
- 
[ ]     0     0     0     0 / 10000     0.0s map
[ ]  1080     0     0  1080 / 10000     0.1s map (collecting)
[ ]  2169     0     0  2169 / 10000     0.2s map (collecting)
[ ]  3198     0     0  3198 / 10000     0.3s map (collecting)
[ ]  4400     0     0  4400 / 10000     0.4s map (collecting)
[ ]  5516     0     0  5516 / 10000     0.5s map
[ ]  6766     0     0  6766 / 10000     0.6s map
[ ]  8058     0     0  8058 / 10000     0.7s map
[ ]  9177     0     0  9177 / 10000     0.8s map
[✓] 10000     0     0 10000 / 10000     0.9s map
- 
[ ]     0     0     0     0 / 10000     0.0s mapi
[ ]   959     0     0   959 / 10000     0.1s mapi
[ ]  1930     0     0  1930 / 10000     0.2s mapi (collecting)
[ ]  2901     0     0  2901 / 10000     0.3s mapi
[ ]  3954     0     0  3954 / 10000     0.4s mapi (collecting)
[ ]  5001     0     0  5001 / 10000     0.5s mapi (collecting)
[ ]  6038     0     0  6038 / 10000     0.6s mapi
[ ]  7153     0     0  7153 / 10000     0.7s mapi (collecting)
[ ]  8365     0     0  8365 / 10000     0.8s mapi
[ ]  9416     0     0  9416 / 10000     0.9s mapi
[✓] 10000     0     0 10000 / 10000     1.0s mapi
- 
[ ]     0     0     0     0 / 10000     0.0s filter_map
[ ]  1173     0     0  1173 / 10000     0.1s filter_map
[ ]  2332     0     0  2332 / 10000     0.2s filter_map (collecting)
[ ]  3520     0     0  3520 / 10000     0.3s filter_map (collecting)
[ ]  4782     0     0  4782 / 10000     0.4s filter_map
[ ]  5935     0     0  5935 / 10000     0.5s filter_map (collecting)
[ ]  7027     0     0  7027 / 10000     0.6s filter_map (collecting)
[ ]  8228     0     0  8228 / 10000     0.7s filter_map (collecting)
[ ]  9356     0     0  9356 / 10000     0.8s filter_map (collecting)
[✓] 10000     0     0 10000 / 10000     0.9s filter_map
- 
[ ]     0     0     0     0 / 10000     0.0s fold_left
[ ]  1074     0     0  1074 / 10000     0.1s fold_left
[ ]  2148     0     0  2148 / 10000     0.2s fold_left (collecting)
[ ]  3226     0     0  3226 / 10000     0.3s fold_left
[ ]  4344     0     0  4344 / 10000     0.4s fold_left
[ ]  5310     0     0  5310 / 10000     0.5s fold_left
[ ]  6304     0     0  6304 / 10000     0.6s fold_left (collecting)
[ ]  7377     0     0  7377 / 10000     0.7s fold_left (collecting)
[ ]  8408     0     0  8408 / 10000     0.8s fold_left (collecting)
[ ]  9398     0     0  9398 / 10000     0.9s fold_left
[✓] 10000     0     0 10000 / 10000     1.0s fold_left
- 
[ ]     0     0     0     0 / 10000     0.0s fold_right_map
[ ]   528     0     0   528 / 10000     0.1s fold_right_map
[ ]  1042     0     0  1042 / 10000     0.2s fold_right_map
[ ]  1636     0     0  1636 / 10000     0.3s fold_right_map
[ ]  2189     0     0  2189 / 10000     0.4s fold_right_map (collecting)
[ ]  2763     0     0  2763 / 10000     0.5s fold_right_map (collecting)
[ ]  3300     0     0  3300 / 10000     0.6s fold_right_map
[ ]  3855     0     0  3855 / 10000     0.7s fold_right_map
[ ]  4391     0     0  4391 / 10000     0.8s fold_right_map (collecting)
[ ]  4920     0     0  4920 / 10000     0.9s fold_right_map (collecting)
[ ]  5429     0     0  5429 / 10000     1.0s fold_right_map (collecting)
[ ]  5939     0     0  5939 / 10000     1.1s fold_right_map
[ ]  6443     0     0  6443 / 10000     1.2s fold_right_map
[ ]  6975     0     0  6975 / 10000     1.3s fold_right_map
[ ]  7467     0     0  7467 / 10000     1.4s fold_right_map
[ ]  7991     0     0  7991 / 10000     1.5s fold_right_map
[ ]  8525     0     0  8525 / 10000     1.6s fold_right_map
[ ]  9097     0     0  9097 / 10000     1.7s fold_right_map
[ ]  9658     0     0  9658 / 10000     1.8s fold_right_map (collecting)
[✓] 10000     0     0 10000 / 10000     1.9s fold_right_map
- 
[ ]     0     0     0     0 / 10000     0.0s fold_right
[ ]   993     0     0   993 / 10000     0.1s fold_right
[ ]  1941     0     0  1941 / 10000     0.2s fold_right (collecting)
[ ]  2912     0     0  2912 / 10000     0.3s fold_right (collecting)
[ ]  3926     0     0  3926 / 10000     0.4s fold_right
[ ]  4987     0     0  4987 / 10000     0.5s fold_right
[ ]  6030     0     0  6030 / 10000     0.6s fold_right (collecting)
[ ]  7069     0     0  7069 / 10000     0.7s fold_right
[ ]  8023     0     0  8023 / 10000     0.8s fold_right (collecting)
[ ]  8990     0     0  8990 / 10000     0.9s fold_right (collecting)
[✓] 10000     0     0 10000 / 10000     1.0s fold_right
- 
[ ]     0     0     0     0 / 10000     0.0s iter2
[ ]  1314     0     0  1314 / 10000     0.1s iter2 (collecting)
[ ]  2537     0     0  2537 / 10000     0.2s iter2 (collecting)
[ ]  3798     0     0  3798 / 10000     0.3s iter2 (collecting)
[ ]  5046     0     0  5046 / 10000     0.4s iter2 (collecting)
[ ]  6224     0     0  6224 / 10000     0.5s iter2 (collecting)
[ ]  7396     0     0  7396 / 10000     0.6s iter2 (collecting)
[ ]  8540     0     0  8540 / 10000     0.7s iter2 (collecting)
[ ]  9729     0     0  9729 / 10000     0.8s iter2 (collecting)
[✓] 10000     0     0 10000 / 10000     0.8s iter2
- 
[ ]     0     0     0     0 / 10000     0.0s map2
[ ]   934     0     0   934 / 10000     0.1s map2 (collecting)
[ ]  1838     0     0  1838 / 10000     0.2s map2 (collecting)
[ ]  2815     0     0  2815 / 10000     0.3s map2 (collecting)
[ ]  3790     0     0  3790 / 10000     0.4s map2 (collecting)
[ ]  4707     0     0  4707 / 10000     0.5s map2 (collecting)
[ ]  5595     0     0  5595 / 10000     0.6s map2 (collecting)
[ ]  6546     0     0  6546 / 10000     0.7s map2 (collecting)
[ ]  7551     0     0  7551 / 10000     0.8s map2 (collecting)
[ ]  8467     0     0  8467 / 10000     0.9s map2
[ ]  9408     0     0  9408 / 10000     1.0s map2
[✓] 10000     0     0 10000 / 10000     1.1s map2
- 
[ ]     0     0     0     0 / 10000     0.0s fold_left2
[ ]   909     0     0   909 / 10000     0.1s fold_left2 (collecting)
[ ]  1851     0     0  1851 / 10000     0.2s fold_left2 (collecting)
[ ]  2767     0     0  2767 / 10000     0.3s fold_left2
[ ]  3694     0     0  3694 / 10000     0.4s fold_left2 (collecting)
[ ]  4618     0     0  4618 / 10000     0.5s fold_left2 (collecting)
[ ]  5497     0     0  5497 / 10000     0.6s fold_left2 (collecting)
[ ]  6579     0     0  6579 / 10000     0.7s fold_left2 (collecting)
[ ]  7580     0     0  7580 / 10000     0.8s fold_left2 (collecting)
[ ]  8513     0     0  8513 / 10000     0.9s fold_left2 (collecting)
[ ]  9455     0     0  9455 / 10000     1.0s fold_left2 (collecting)
[✓] 10000     0     0 10000 / 10000     1.1s fold_left2
- 
[ ]     0     0     0     0 / 10000     0.0s fold_right2
[ ]   934     0     0   934 / 10000     0.1s fold_right2 (collecting)
[ ]  1820     0     0  1820 / 10000     0.2s fold_right2 (collecting)
[ ]  2742     0     0  2742 / 10000     0.3s fold_right2 (collecting)
[ ]  3827     0     0  3827 / 10000     0.4s fold_right2 (collecting)
[ ]  4921     0     0  4921 / 10000     0.5s fold_right2
[ ]  5909     0     0  5909 / 10000     0.6s fold_right2 (collecting)
[ ]  6894     0     0  6894 / 10000     0.7s fold_right2
[ ]  7978     0     0  7978 / 10000     0.8s fold_right2 (collecting)
[ ]  9194     0     0  9194 / 10000     0.9s fold_right2
[✓] 10000     0     0 10000 / 10000     1.0s fold_right2
- 
[ ]     0     0     0     0 / 10000     0.0s for_all
[ ]  2589     0     0  2589 / 10000     0.1s for_all (collecting)
[ ]  4883     0     0  4883 / 10000     0.2s for_all (collecting)
[ ]  7150     0     0  7150 / 10000     0.3s for_all (collecting)
[ ]  9552     0     0  9552 / 10000     0.4s for_all (collecting)
[✓] 10000     0     0 10000 / 10000     0.4s for_all
- 
[ ]     0     0     0     0 / 10000     0.0s exists
[ ]  2330     0     0  2330 / 10000     0.1s exists (collecting)
[ ]  4654     0     0  4654 / 10000     0.2s exists (collecting)
[ ]  6916     0     0  6916 / 10000     0.3s exists (collecting)
[ ]  9342     0     0  9342 / 10000     0.4s exists (collecting)
[✓] 10000     0     0 10000 / 10000     0.4s exists
- 
[ ]     0     0     0     0 / 10000     0.0s for_all2
[ ]  1136     0     0  1136 / 10000     0.1s for_all2 (collecting)
[ ]  2304     0     0  2304 / 10000     0.2s for_all2 (collecting)
[ ]  3404     0     0  3404 / 10000     0.3s for_all2 (collecting)
[ ]  4543     0     0  4543 / 10000     0.4s for_all2 (collecting)
[ ]  5696     0     0  5696 / 10000     0.5s for_all2 (collecting)
[ ]  6902     0     0  6902 / 10000     0.6s for_all2 (collecting)
[ ]  8110     0     0  8110 / 10000     0.7s for_all2 (collecting)
[ ]  9266     0     0  9266 / 10000     0.8s for_all2 (collecting)
[✓] 10000     0     0 10000 / 10000     0.9s for_all2
- 
[ ]     0     0     0     0 / 10000     0.0s exists2
[ ]  1095     0     0  1095 / 10000     0.1s exists2 (collecting)
[ ]  2208     0     0  2208 / 10000     0.2s exists2 (collecting)
[ ]  3344     0     0  3344 / 10000     0.3s exists2 (collecting)
[ ]  5283     0     0  5283 / 10000     0.4s exists2 (collecting)
[ ]  7219     0     0  7219 / 10000     0.5s exists2 (collecting)
[ ]  9226     0     0  9226 / 10000     0.6s exists2 (collecting)
[✓] 10000     0     0 10000 / 10000     0.6s 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
[ ]  3779     0     0  3779 / 10000     0.1s find (collecting)
[ ]  7029     0     0  7029 / 10000     0.2s find (collecting)
[ ]  9244     0     0  9244 / 10000     0.3s find (collecting)
[✓] 10000     0     0 10000 / 10000     0.3s find
- 
[ ]     0     0     0     0 / 10000     0.0s find_opt
[ ]  2242     0     0  2242 / 10000     0.1s find_opt (collecting)
[ ]  4432     0     0  4432 / 10000     0.2s find_opt (collecting)
[ ]  6613     0     0  6613 / 10000     0.3s find_opt (collecting)
[ ]  8829     0     0  8829 / 10000     0.4s find_opt (collecting)
[✓] 10000     0     0 10000 / 10000     0.5s find_opt
- 
[ ]     0     0     0     0 / 10000     0.0s find_index
[ ]  1935     0     0  1935 / 10000     0.1s find_index (collecting)
[ ]  3968     0     0  3968 / 10000     0.2s find_index
[ ]  5869     0     0  5869 / 10000     0.3s find_index (collecting)
[ ]  7836     0     0  7836 / 10000     0.4s find_index (collecting)
[ ]  9847     0     0  9847 / 10000     0.5s find_index (collecting)
[✓] 10000     0     0 10000 / 10000     0.5s find_index
- 
[ ]     0     0     0     0 / 10000     0.0s find_map
[ ]  1957     0     0  1957 / 10000     0.1s find_map (collecting)
[ ]  3981     0     0  3981 / 10000     0.2s find_map (collecting)
[ ]  6136     0     0  6136 / 10000     0.3s find_map (collecting)
[ ]  8284     0     0  8284 / 10000     0.4s find_map (collecting)
[✓] 10000     0     0 10000 / 10000     0.5s find_map
- 
[ ]     0     0     0     0 / 10000     0.0s find_mapi
[ ]  1138     0     0  1138 / 10000     0.1s find_mapi
[ ]  2221     0     0  2221 / 10000     0.2s find_mapi
[ ]  3378     0     0  3378 / 10000     0.3s find_mapi (collecting)
[ ]  4669     0     0  4669 / 10000     0.4s find_mapi
[ ]  5783     0     0  5783 / 10000     0.5s find_mapi (collecting)
[ ]  6845     0     0  6845 / 10000     0.6s find_mapi
[ ]  8031     0     0  8031 / 10000     0.7s find_mapi (collecting)
[ ]  9165     0     0  9165 / 10000     0.8s find_mapi
[✓] 10000     0     0 10000 / 10000     0.9s find_mapi
- 
[ ]     0     0     0     0 / 10000     0.0s filter
[ ]  1921     0     0  1921 / 10000     0.1s filter (collecting)
[ ]  3938     0     0  3938 / 10000     0.2s filter (collecting)
[ ]  5824     0     0  5824 / 10000     0.3s filter (collecting)
[ ]  7830     0     0  7830 / 10000     0.4s filter (collecting)
[✓] 10000     0     0 10000 / 10000     0.5s filter
- 
[ ]     0     0     0     0 / 10000     0.0s find_all
[ ]  2450     0     0  2450 / 10000     0.1s find_all (collecting)
[ ]  4506     0     0  4506 / 10000     0.2s find_all
[ ]  6497     0     0  6497 / 10000     0.3s find_all (collecting)
[ ]  8641     0     0  8641 / 10000     0.4s find_all (collecting)
[✓] 10000     0     0 10000 / 10000     0.5s find_all
- 
[ ]     0     0     0     0 / 10000     0.0s filteri
[ ]  1847     0     0  1847 / 10000     0.1s filteri (collecting)
[ ]  3759     0     0  3759 / 10000     0.2s filteri (collecting)
[ ]  5540     0     0  5540 / 10000     0.3s filteri (collecting)
[ ]  7302     0     0  7302 / 10000     0.4s filteri (collecting)
[ ]  9115     0     0  9115 / 10000     0.5s filteri (collecting)
[✓] 10000     0     0 10000 / 10000     0.5s filteri
- 
[ ]     0     0     0     0 / 10000     0.0s partition
[ ]  1975     0     0  1975 / 10000     0.1s partition (collecting)
[ ]  3992     0     0  3992 / 10000     0.2s partition
[ ]  5966     0     0  5966 / 10000     0.3s partition (collecting)
[ ]  7879     0     0  7879 / 10000     0.4s partition (collecting)
[ ]  9876     0     0  9876 / 10000     0.5s partition (collecting)
[✓] 10000     0     0 10000 / 10000     0.5s partition
- 
[ ]     0     0     0     0 / 10000     0.0s partition_map
[ ]   744     0     0   744 / 10000     0.1s partition_map (collecting)
[ ]  1497     0     0  1497 / 10000     0.2s partition_map (collecting)
[ ]  2257     0     0  2257 / 10000     0.3s partition_map
[ ]  2970     0     0  2970 / 10000     0.4s partition_map (collecting)
[ ]  3762     0     0  3762 / 10000     0.5s partition_map
[ ]  4556     0     0  4556 / 10000     0.6s partition_map
[ ]  5310     0     0  5310 / 10000     0.7s partition_map
[ ]  6119     0     0  6119 / 10000     0.8s partition_map
[ ]  6941     0     0  6941 / 10000     0.9s partition_map (collecting)
[ ]  7820     0     0  7820 / 10000     1.0s partition_map
[ ]  8630     0     0  8630 / 10000     1.1s partition_map
[ ]  9428     0     0  9428 / 10000     1.2s partition_map
[✓] 10000     0     0 10000 / 10000     1.3s partition_map
- 
[ ]     0     0     0     0 / 10000     0.0s split
[ ]   872     0     0   872 / 10000     0.1s split
[ ]  1765     0     0  1765 / 10000     0.2s split (collecting)
[ ]  2668     0     0  2668 / 10000     0.3s split (collecting)
[ ]  3588     0     0  3588 / 10000     0.4s split (collecting)
[ ]  4423     0     0  4423 / 10000     0.5s split (collecting)
[ ]  5280     0     0  5280 / 10000     0.6s split (collecting)
[ ]  6258     0     0  6258 / 10000     0.7s split
[ ]  7300     0     0  7300 / 10000     0.8s split (collecting)
[ ]  8284     0     0  8284 / 10000     0.9s split (collecting)
[ ]  9257     0     0  9257 / 10000     1.0s split (collecting)
[✓] 10000     0     0 10000 / 10000     1.1s split
- 
[ ]     0     0     0     0 / 10000     0.0s combine
[ ]  1344     0     0  1344 / 10000     0.1s combine (collecting)
[ ]  2583     0     0  2583 / 10000     0.2s combine (collecting)
[ ]  3883     0     0  3883 / 10000     0.3s combine (collecting)
[ ]  5176     0     0  5176 / 10000     0.4s combine (collecting)
[ ]  6442     0     0  6442 / 10000     0.5s combine (collecting)
[ ]  7706     0     0  7706 / 10000     0.6s combine (collecting)
[ ]  8986     0     0  8986 / 10000     0.7s combine (collecting)
[✓] 10000     0     0 10000 / 10000     0.8s combine
- 
[ ]     0     0     0     0 / 10000     0.0s to_list
[ ]  3808     0     0  3808 / 10000     0.1s to_list (collecting)
[ ]  6255     0     0  6255 / 10000     0.2s to_list (collecting)
[ ]  8941     0     0  8941 / 10000     0.3s to_list (collecting)
[✓] 10000     0     0 10000 / 10000     0.3s to_list
- 
[ ]     0     0     0     0 / 10000     0.0s of_list
[ ]  2561     0     0  2561 / 10000     0.1s of_list (collecting)
[ ]  4994     0     0  4994 / 10000     0.2s of_list (collecting)
[ ]  7549     0     0  7549 / 10000     0.3s of_list (collecting)
[✓] 10000     0     0 10000 / 10000     0.4s of_list
- 
[ ]     0     0     0     0 / 10000     0.0s (<:)
[ ]  2312     0     0  2312 / 10000     0.1s (<:) (collecting)
[ ]  4543     0     0  4543 / 10000     0.2s (<:) (collecting)
[ ]  6675     0     0  6675 / 10000     0.3s (<:) (collecting)
[ ]  8820     0     0  8820 / 10000     0.4s (<:) (collecting)
[✓] 10000     0     0 10000 / 10000     0.5s (<:)
- 
[ ]     0     0     0     0 / 10000     0.0s (<@)
[ ]  1335     0     0  1335 / 10000     0.1s (<@) (collecting)
[ ]  2630     0     0  2630 / 10000     0.2s (<@) (collecting)
[ ]  4182     0     0  4182 / 10000     0.3s (<@) (collecting)
[ ]  5659     0     0  5659 / 10000     0.4s (<@) (collecting)
[ ]  7614     0     0  7614 / 10000     0.5s (<@) (collecting)
[ ]  9622     0     0  9622 / 10000     0.6s (<@) (collecting)
[✓] 10000     0     0 10000 / 10000     0.6s (<@)
- 
[ ]     0     0     0     0 / 10000     0.0s (@>)
[ ]  1355     0     0  1355 / 10000     0.1s (@>) (collecting)
[ ]  2754     0     0  2754 / 10000     0.2s (@>) (collecting)
[ ]  4078     0     0  4078 / 10000     0.3s (@>) (collecting)
[ ]  5342     0     0  5342 / 10000     0.4s (@>) (collecting)
[ ]  6585     0     0  6585 / 10000     0.5s (@>) (collecting)
[ ]  7835     0     0  7835 / 10000     0.6s (@>) (collecting)
[ ]  9087     0     0  9087 / 10000     0.7s (@>) (collecting)
[✓] 10000     0     0 10000 / 10000     0.8s (@>)
- 
[ ]     0     0     0     0 / 10000     0.0s (#<)
[ ]  2324     0     0  2324 / 10000     0.1s (#<) (collecting)
[ ]  4684     0     0  4684 / 10000     0.2s (#<)
[ ]  6967     0     0  6967 / 10000     0.3s (#<) (collecting)
[ ]  9752     0     0  9752 / 10000     0.4s (#<) (collecting)
[✓] 10000     0     0 10000 / 10000     0.4s (#<)
- 
[ ]     0     0     0     0 / 10000     0.0s (<><)
[ ]  2150     0     0  2150 / 10000     0.1s (<><) (collecting)
[ ]  4211     0     0  4211 / 10000     0.2s (<><) (collecting)
[ ]  6125     0     0  6125 / 10000     0.3s (<><) (collecting)
[ ]  7595     0     0  7595 / 10000     0.4s (<><) (collecting)
[ ]  8935     0     0  8935 / 10000     0.5s (<><) (collecting)
[✓] 10000     0     0 10000 / 10000     0.6s (<><)
- 
[ ]     0     0     0     0 / 10000     0.0s (<>>)
[ ]  2086     0     0  2086 / 10000     0.1s (<>>) (collecting)
[ ]  4306     0     0  4306 / 10000     0.2s (<>>) (collecting)
[ ]  6265     0     0  6265 / 10000     0.3s (<>>) (collecting)
[ ]  7867     0     0  7867 / 10000     0.4s (<>>) (collecting)
[ ]  9996     0     0  9996 / 10000     0.5s (<>>) (collecting)
[✓] 10000     0     0 10000 / 10000     0.5s (<>>)
- ================================================================================
- success (ran 50 tests)
-> compiled  bwd.2.3.0
-> removed   bwd.2.3.0
-> installed bwd.2.3.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 03:56.10 ---> saved as "d3c090ae9310b6614e9725d3f23ee3a728f50ddc09b707da4ba3e304c4995260"
Job succeeded
2026-04-11 03:56.43: Job succeeded