(for PR #29582)

2026-03-25 13:13.14: New job: test bwd.2.0.0 with ocaml-compiler.5.4.0~beta2, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29582/head (fa5fb3a6a806e832e4c7791145889a6bbe8b64ef)
                              on debian-13-ocaml-5.4/amd64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29582/head" && git reset --hard fa5fb3a6
git fetch origin master
git merge --no-edit 2f93e9d4614d6376ed929fc2cee7c59cb9d5833b
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6
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 ocaml-compiler.5.4.0~beta2 5.4.0~beta2
RUN opam reinstall --update-invariant ocaml-compiler.5.4.0~beta2; \
    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" != 'ocaml-compiler.5.4.0~beta2' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall bwd.2.0.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'bwd.2.0.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test bwd.2.0.0) || true
RUN opam reinstall --with-test --verbose bwd.2.0.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'bwd.2.0.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

END-OF-DOCKERFILE
docker build -f ../Dockerfile .

2026-03-25 13:13.14: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6-ocaml-compiler.5.4.0~beta2-bwd.2.0.0-fa5fb3a6a806e832e4c7791145889a6bbe8b64ef"
2026-03-25 13:13.14: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
 (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 ocaml-compiler.5.4.0~beta2 5.4.0~beta2"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall --update-invariant ocaml-compiler.5.4.0~beta2;\
             \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\" != 'ocaml-compiler.5.4.0~beta2' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall bwd.2.0.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'bwd.2.0.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test bwd.2.0.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose bwd.2.0.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'bwd.2.0.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-03-25 13:13.14: Waiting for resource in pool OCluster
2026-03-25 14:55.33: Waiting for worker…
2026-03-25 14:58.12: Got resource from pool OCluster
Building on bremusa.ocamllabs.io
All commits already cached
Updating files:  88% (16407/18520)
Updating files:  89% (16483/18520)
Updating files:  90% (16668/18520)
Updating files:  91% (16854/18520)
Updating files:  92% (17039/18520)
Updating files:  93% (17224/18520)
Updating files:  94% (17409/18520)
Updating files:  95% (17594/18520)
Updating files:  96% (17780/18520)
Updating files:  97% (17965/18520)
Updating files:  98% (18150/18520)
Updating files:  99% (18335/18520)
Updating files: 100% (18520/18520)
Updating files: 100% (18520/18520), done.
HEAD is now at 2f93e9d461 Merge pull request #29592 from dinosaure/release-miou-v0.5.5
Merge made by the 'ort' strategy.
 packages/ocaml-compiler/ocaml-compiler.5.3.0/opam      |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.3/opam        |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4.0/opam      |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.4.0~alpha1/opam    |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.4.0~beta1/opam     |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.4.0~beta2/opam     |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4.0~rc1/opam  |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4.1/opam      |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4/opam        |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.5.0~alpha1/opam    |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.5/opam        |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.6/opam        |  5 ++++-
 packages/ocaml-option-llvm/ocaml-option-llvm.1/opam    | 18 ++++++++++++++++++
 .../ocaml-options-vanilla/ocaml-options-vanilla.1/opam |  1 +
 packages/ocaml-variants/ocaml-variants.5.2.0+msvc/opam |  2 ++
 15 files changed, 69 insertions(+), 12 deletions(-)
 create mode 100644 packages/ocaml-option-llvm/ocaml-option-llvm.1/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
2026-03-25 14:58.15 ---> using "41eea30e3f639c18d8cf57c309ec76919ec7b2398036f7e41744cbce59a133d3" from cache

/: (user (uid 1000) (gid 1000))

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-25 14:58.15 ---> using "4ad7f430d684c40cedc651267e0edf890c044fe4e624255de377c471b4526bac" 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-03-25 14:58.15 ---> using "71fa58e52457bf6a7eac317c6a6ef1e2bdf53e533a1e4fd04b90c9349347e038" from cache

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=13
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.4
# invariant            ["ocaml-base-compiler" {= "5.4.0"}]
# compiler-packages    ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.0
2026-03-25 14:58.15 ---> using "ed86081cb38ca125a920162bfe6a4bb7b1c27c6973c917551687c83cf44dbfdf" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2026-03-25 14:58.15 ---> using "04a48515eea40c32b96da0c71328b4bba0edb66eed83d4f78554b39097cf1f25" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-25 14:58.16 ---> using "034191995d824300f355cbba1072d6e5fe6d815701f24eb84d82c75009d73829" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-25 14:58.16 ---> using "8232259ea36ea8848dc29ae49703acf145fd27b40f3ebd8fb785db7f8da1b9d4" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- 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 trixie/main amd64 Packages [9671 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [114 kB]
- Fetched 10.0 MB in 1s (8424 kB/s)
- Reading package lists...
2026-03-25 14:58.16 ---> using "a75782a571df4fc8f8933e94c681af881015ee87cdd4c652f8ae9af1d8cfad37" from cache

/home/opam: (run (shell "opam pin add -k version -yn ocaml-compiler.5.4.0~beta2 5.4.0~beta2"))
ocaml-compiler is now pinned to version 5.4.0~beta2
2026-03-25 14:58.16 ---> using "6a5005f94ec93c4cfbc555c3d261f1a9e44ce02f7cf737f7e023902aa066afba" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall --update-invariant ocaml-compiler.5.4.0~beta2;\
                        \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\" != 'ocaml-compiler.5.4.0~beta2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
ocaml-compiler.5.4.0~beta2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== remove 1 package
  - remove    ocaml-base-compiler 5.4.0 (pinned)                [conflicts with ocaml-compiler]
=== downgrade 1 package
  - downgrade ocaml-compiler      5.4.0 to 5.4.0~beta2 (pinned)
=== recompile 6 packages
  - recompile base-domains        base                          [uses ocaml]
  - recompile base-effects        base                          [uses ocaml]
  - recompile base-nnp            base                          [uses base-domains]
  - recompile ocaml               5.4.0                         [uses ocaml-base-compiler]
  - recompile ocaml-config        3                             [uses ocaml-base-compiler]
  - recompile opam-depext         1.2.3                         [uses ocaml]
=== install 1 package
  - install   ocaml-variants      5.4.0~beta2+options           [required by ocaml]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocaml-compiler.5.4.0~beta2  (cached)
-> retrieved ocaml-config.3  (cached)
-> retrieved opam-depext.1.2.3  (cached)
-> removed   base-effects.base
-> removed   base-nnp.base
-> removed   base-domains.base
-> removed   opam-depext.1.2.3
-> removed   ocaml.5.4.0
-> removed   ocaml-config.3
-> removed   ocaml-base-compiler.5.4.0
-> removed   ocaml-compiler.5.4.0
-> installed ocaml-compiler.5.4.0~beta2
-> installed ocaml-variants.5.4.0~beta2+options
-> installed ocaml-config.3
-> installed ocaml.5.4.0
-> installed base-domains.base
-> installed base-effects.base
-> installed base-nnp.base
-> installed opam-depext.1.2.3
[NOTE] Switch invariant was updated to ["ocaml-variants" {= "5.4.0~beta2+options"}]
       Use `opam switch set-invariant' to change it.
Done.

<><> opam-depext.1.2.3 installed successfully <><><><><><><><><><><><><><><><><>
=> opam-depext is unnecessary when used with opam >= 2.1. Please use opam install directly instead
# To update the current shell environment, run: eval $(opam env)
2026-03-25 14:58.16 ---> using "e030a93f7882e2604088ed6928ceb441b94d1a6a8f699222926e1ee68fd1dd8f" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall bwd.2.0.0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'bwd.2.0.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
bwd.2.0.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 2 packages
  - install bwd  2.0.0
  - install dune 3.22.0 [required by bwd]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bwd.2.0.0  (cached)
-> retrieved dune.3.22.0  (cached)
-> installed dune.3.22.0
-> installed bwd.2.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 14:59.12 ---> saved as "4a0b3352071a3cfdf22050729ec6388bb6c25180dd4a1b36e1fbaacac0bc3b94"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bwd.2.0.0  (https://opam.ocaml.org/cache)
-> retrieved qcheck-core.0.91  (https://opam.ocaml.org/cache)
-> removed   bwd.2.0.0
-> installed qcheck-core.0.91
-> installed bwd.2.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 14:59.33 ---> saved as "e610d50ac7c4f78efd22553f1b94fad75dd2d9d1081d33d6e8f0c55b2d3eda16"

/home/opam: (run (shell  "opam reinstall --with-test --verbose bwd.2.0.0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'bwd.2.0.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
The following actions will be performed:
=== recompile 1 package
  - recompile bwd 2.0.0

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [bwd.2.0.0: extract]
-> retrieved bwd.2.0.0  (cached)
Processing  2/4: [bwd: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "bwd" "-j" "71" (CWD=/home/opam/.opam/5.4/.opam-switch/build/bwd.2.0.0)
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "bwd" "-j" "71" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/bwd.2.0.0)
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I test/.TestBwdLabels.eobjs/byte -I test/.TestBwdLabels.eobjs/native -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/qcheck-core/runner -I src/.Bwd.objs/byte -I src/.Bwd.objs/native -cmi-file test/.TestBwdLabels.eobjs/byte/dune__exe__TestBwdLabels.cmi -no-alias-deps -open Dune__exe -o test/.TestBwdLabels.eobjs/native/dune__exe__TestBwdLabels.cmx -c -impl test/TestBwdLabels.ml)
- File "test/TestBwdLabels.ml", line 26, characters 43-53:
- 26 |   Q.Test.make ~count ~name:"length" Q.Gen.(small_list unit) ~print:Q.Print.(list unit)
-                                                 ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 30, characters 17-27:
- 30 |     Q.Gen.(pair (small_list unit) (small_list unit))
-                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 30, characters 35-45:
- 30 |     Q.Gen.(pair (small_list unit) (small_list unit))
-                                         ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 35, characters 17-27:
- 35 |     Q.Gen.(pair (small_list unit) (small_int))
-                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 35, characters 35-44:
- 35 |     Q.Gen.(pair (small_list unit) (small_int))
-                                         ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- 
- File "test/TestBwdLabels.ml", line 39, characters 47-57:
- 39 |   Q.Test.make ~count ~name:"snoc" Q.Gen.(pair (small_list int) int) ~print:Q.Print.(pair (list int) int)
-                                                     ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 43, characters 17-27:
- 43 |     Q.Gen.(pair (small_list int) small_int)
-                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 43, characters 33-42:
- 43 |     Q.Gen.(pair (small_list int) small_int)
-                                       ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- 
- File "test/TestBwdLabels.ml", line 51, characters 17-27:
- 51 |     Q.Gen.(pair (small_list int) small_int)
-                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 51, characters 33-42:
- 51 |     Q.Gen.(pair (small_list int) small_int)
-                                       ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- 
- File "test/TestBwdLabels.ml", line 58, characters 49-59:
- 58 |   Q.Test.make ~count ~name:"append" Q.Gen.(pair (small_list int) (small_list int))
-                                                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 58, characters 66-76:
- 58 |   Q.Test.make ~count ~name:"append" Q.Gen.(pair (small_list int) (small_list int))
-                                                                        ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 62, characters 50-60:
- 62 |   Q.Test.make ~count ~name:"prepend" Q.Gen.(pair (small_list int) (small_list int))
-                                                        ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 62, characters 67-77:
- 62 |   Q.Test.make ~count ~name:"prepend" Q.Gen.(pair (small_list int) (small_list int))
-                                                                         ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 67, characters 67-77:
- 67 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list small_int) (small_list small_int))
-                                                                         ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 67, characters 78-87:
- 67 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list small_int) (small_list small_int))
-                                                                                    ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- 
- File "test/TestBwdLabels.ml", line 67, characters 90-100:
- 67 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list small_int) (small_list small_int))
-                                                                                                ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 67, characters 101-110:
- 67 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list small_int) (small_list small_int))
-                                                                                                           ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- 
- File "test/TestBwdLabels.ml", line 72, characters 66-76:
- 72 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) (small_list small_int) (small_list small_int))
-                                                                        ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 72, characters 77-86:
- 72 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) (small_list small_int) (small_list small_int))
-                                                                                   ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- 
- File "test/TestBwdLabels.ml", line 72, characters 89-99:
- 72 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) (small_list small_int) (small_list small_int))
-                                                                                               ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 72, characters 100-109:
- 72 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) (small_list small_int) (small_list small_int))
-                                                                                                          ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- 
- File "test/TestBwdLabels.ml", line 76, characters 41-51:
- 76 |   Q.Test.make ~count ~name:"iter" Q.Gen.(small_list int)
-                                               ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 85, characters 42-52:
- 85 |   Q.Test.make ~count ~name:"iteri" Q.Gen.(small_list int)
-                                                ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 95, characters 47-57:
- 95 |     Q.Gen.(pair (Q.fun1 Q.Observable.int int) (small_list int))
-                                                     ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 100, characters 64-74:
- 100 |     Q.Gen.(pair (Q.fun2 Q.Observable.int Q.Observable.int int) (small_list int))
-                                                                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 105, characters 42-45:
- 105 |     Q.Gen.(pair (Q.fun1 Q.Observable.int (opt int)) (small_list int))
-                                                 ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- 
- File "test/TestBwdLabels.ml", line 105, characters 53-63:
- 105 |     Q.Gen.(pair (Q.fun1 Q.Observable.int (opt int)) (small_list int))
-                                                            ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 110, characters 70-80:
- 110 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) int (small_list int))
-                                                                             ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 115, characters 77-87:
- 115 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int (pair int int)) (small_list int) int)
-                                                                                    ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 123, characters 66-76:
- 123 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) (small_list int) int)
-                                                                         ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 127, characters 48-58:
- 127 |   Q.Test.make ~count ~name:"iter2" Q.Gen.(pair (small_list int) (small_list int))
-                                                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 127, characters 65-75:
- 127 |   Q.Test.make ~count ~name:"iter2" Q.Gen.(pair (small_list int) (small_list int))
-                                                                        ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 139, characters 66-76:
- 139 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) (small_list int) (small_list int))
-                                                                         ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 139, characters 83-93:
- 139 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) (small_list int) (small_list int))
-                                                                                          ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 147, characters 85-95:
- 147 |     Q.Gen.(quad (Q.fun3 Q.Observable.int Q.Observable.int Q.Observable.int int) int (small_list int) (small_list int))
-                                                                                            ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 147, characters 102-112:
- 147 |     Q.Gen.(quad (Q.fun3 Q.Observable.int Q.Observable.int Q.Observable.int int) int (small_list int) (small_list int))
-                                                                                                             ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 155, characters 81-91:
- 155 |     Q.Gen.(quad (Q.fun3 Q.Observable.int Q.Observable.int Q.Observable.int int) (small_list int) (small_list int) int)
-                                                                                        ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 155, characters 98-108:
- 155 |     Q.Gen.(quad (Q.fun3 Q.Observable.int Q.Observable.int Q.Observable.int int) (small_list int) (small_list int) int)
-                                                                                                         ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 163, characters 48-58:
- 163 |     Q.Gen.(pair (Q.fun1 Q.Observable.int bool) (small_list int))
-                                                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 168, characters 48-58:
- 168 |     Q.Gen.(pair (Q.fun1 Q.Observable.int bool) (small_list int))
-                                                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 173, characters 67-77:
- 173 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list int) (small_list int))
-                                                                          ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 173, characters 84-94:
- 173 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list int) (small_list int))
-                                                                                           ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 181, characters 67-77:
- 181 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list int) (small_list int))
-                                                                          ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 181, characters 84-94:
- 181 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list int) (small_list int))
-                                                                                           ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 189, characters 16-25:
- 189 |     Q.Gen.(pair small_int (small_list small_int))
-                       ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- 
- File "test/TestBwdLabels.ml", line 189, characters 27-37:
- 189 |     Q.Gen.(pair small_int (small_list small_int))
-                                  ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 189, characters 38-47:
- 189 |     Q.Gen.(pair small_int (small_list small_int))
-                                             ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- 
- File "test/TestBwdLabels.ml", line 194, characters 17-20:
- 194 |     Q.Gen.(pair (opt small_int) (small_list (opt small_int))) (* use [int option] to test physical equality *)
-                        ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- 
- File "test/TestBwdLabels.ml", line 194, characters 21-30:
- 194 |     Q.Gen.(pair (opt small_int) (small_list (opt small_int))) (* use [int option] to test physical equality *)
-                            ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- 
- File "test/TestBwdLabels.ml", line 194, characters 33-43:
- 194 |     Q.Gen.(pair (opt small_int) (small_list (opt small_int))) (* use [int option] to test physical equality *)
-                                        ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 194, characters 45-48:
- 194 |     Q.Gen.(pair (opt small_int) (small_list (opt small_int))) (* use [int option] to test physical equality *)
-                                                    ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- 
- File "test/TestBwdLabels.ml", line 194, characters 49-58:
- 194 |     Q.Gen.(pair (opt small_int) (small_list (opt small_int))) (* use [int option] to test physical equality *)
-                                                        ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- 
- File "test/TestBwdLabels.ml", line 199, characters 48-58:
- 199 |     Q.Gen.(pair (Q.fun1 Q.Observable.int bool) (small_list int))
-                                                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 204, characters 48-58:
- 204 |     Q.Gen.(pair (Q.fun1 Q.Observable.int bool) (small_list int))
-                                                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 209, characters 42-45:
- 209 |     Q.Gen.(pair (Q.fun1 Q.Observable.int (opt int)) (small_list int))
-                                                 ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- 
- File "test/TestBwdLabels.ml", line 209, characters 53-63:
- 209 |     Q.Gen.(pair (Q.fun1 Q.Observable.int (opt int)) (small_list int))
-                                                            ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 214, characters 48-58:
- 214 |     Q.Gen.(pair (Q.fun1 Q.Observable.int bool) (small_list int))
-                                                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 219, characters 48-58:
- 219 |     Q.Gen.(pair (Q.fun1 Q.Observable.int bool) (small_list int))
-                                                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 224, characters 65-75:
- 224 |     Q.Gen.(pair (Q.fun2 Q.Observable.int Q.Observable.int bool) (small_list int))
-                                                                        ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 229, characters 48-58:
- 229 |     Q.Gen.(pair (Q.fun1 Q.Observable.int bool) (small_list int))
-                                                       ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 237, characters 59-69:
- 237 |     Q.Gen.(pair (Q.fun1 Q.Observable.int (pair bool int)) (small_list int))
-                                                                  ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 246, characters 11-21:
- 246 |     Q.Gen.(small_list (pair int int))
-                  ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 254, characters 17-27:
- 254 |     Q.Gen.(pair (small_list int) (small_list int))
-                        ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 254, characters 34-44:
- 254 |     Q.Gen.(pair (small_list int) (small_list int))
-                                         ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 261, characters 44-54:
- 261 |   Q.Test.make ~count ~name:"to_list" Q.Gen.(small_list int) ~print:Q.Print.(list int)
-                                                   ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 264, characters 44-54:
- 264 |   Q.Test.make ~count ~name:"of_list" Q.Gen.(small_list int) ~print:Q.Print.(list int)
-                                                   ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 268, characters 45-55:
- 268 |   Q.Test.make ~count ~name:"#<" Q.Gen.(pair (small_list int) int) ~print:Q.Print.(pair (list int) int)
-                                                    ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 271, characters 46-56:
- 271 |   Q.Test.make ~count ~name:"<><" Q.Gen.(pair (small_list int) (small_list int))
-                                                     ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 271, characters 63-73:
- 271 |   Q.Test.make ~count ~name:"<><" Q.Gen.(pair (small_list int) (small_list int))
-                                                                      ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 275, characters 46-56:
- 275 |   Q.Test.make ~count ~name:"<>>" Q.Gen.(pair (small_list int) (small_list int))
-                                                     ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- 
- File "test/TestBwdLabels.ml", line 275, characters 63-73:
- 275 |   Q.Test.make ~count ~name:"<>>" Q.Gen.(pair (small_list int) (small_list int))
-                                                                      ^^^^^^^^^^
- Alert deprecated: Q.Gen.small_list
- Use [list_small] instead
- (cd _build/default/test && ./TestBwdLabels.exe)
- 
random seed: 299910212
- generated error  fail  pass / total     time test name
- 
[ ]     0     0     0     0 / 10000     0.0s length
[✓] 10000     0     0 10000 / 10000     0.0s length
- 
[ ]     0     0     0     0 / 10000     0.0s compare_lengths
[✓] 10000     0     0 10000 / 10000     0.0s compare_lengths
- 
[ ]     0     0     0     0 / 10000     0.0s compare_length_with
[✓] 10000     0     0 10000 / 10000     0.0s compare_length_with
- 
[ ]     0     0     0     0 / 10000     0.0s snoc
[✓] 10000     0     0 10000 / 10000     0.1s snoc
- 
[ ]     0     0     0     0 / 10000     0.0s nth
[✓] 10000     0     0 10000 / 10000     0.1s nth
- 
[ ]     0     0     0     0 / 10000     0.0s nth_opt
[✓] 10000     0     0 10000 / 10000     0.1s nth_opt
- 
[ ]     0     0     0     0 / 10000     0.0s append
[ ]  7491     0     0  7491 / 10000     0.1s append (collecting)
[✓] 10000     0     0 10000 / 10000     0.1s append
- 
[ ]     0     0     0     0 / 10000     0.0s prepend
[ ]  7274     0     0  7274 / 10000     0.1s prepend (collecting)
[✓] 10000     0     0 10000 / 10000     0.2s prepend
- 
[ ]     0     0     0     0 / 10000     0.0s equal
[✓] 10000     0     0 10000 / 10000     0.1s equal
- 
[ ]     0     0     0     0 / 10000     0.0s compare
[✓] 10000     0     0 10000 / 10000     0.0s compare
- 
[ ]     0     0     0     0 / 10000     0.0s iter
[✓] 10000     0     0 10000 / 10000     0.1s iter
- 
[ ]     0     0     0     0 / 10000     0.0s iteri
[✓] 10000     0     0 10000 / 10000     0.1s iteri
- 
[ ]     0     0     0     0 / 10000     0.0s map
[ ]  5280     0     0  5280 / 10000     0.1s map
[✓] 10000     0     0 10000 / 10000     0.2s map
- 
[ ]     0     0     0     0 / 10000     0.0s mapi
[ ]  4668     0     0  4668 / 10000     0.1s mapi
[ ]  9316     0     0  9316 / 10000     0.2s mapi
[✓] 10000     0     0 10000 / 10000     0.2s mapi
- 
[ ]     0     0     0     0 / 10000     0.0s filter_map
[ ]  5279     0     0  5279 / 10000     0.1s filter_map
[✓] 10000     0     0 10000 / 10000     0.2s filter_map
- 
[ ]     0     0     0     0 / 10000     0.0s fold_left
[ ]  4659     0     0  4659 / 10000     0.1s fold_left (collecting)
[ ]  9113     0     0  9113 / 10000     0.2s fold_left (collecting)
[✓] 10000     0     0 10000 / 10000     0.2s fold_left
- 
[ ]     0     0     0     0 / 10000     0.0s fold_right_map
[ ]  2702     0     0  2702 / 10000     0.1s fold_right_map
[ ]  5198     0     0  5198 / 10000     0.2s fold_right_map
[ ]  8066     0     0  8066 / 10000     0.3s fold_right_map (collecting)
[✓] 10000     0     0 10000 / 10000     0.4s fold_right_map
- 
[ ]     0     0     0     0 / 10000     0.0s fold_right
[ ]  4227     0     0  4227 / 10000     0.1s fold_right (collecting)
[ ]  8679     0     0  8679 / 10000     0.2s fold_right
[✓] 10000     0     0 10000 / 10000     0.2s fold_right
- 
[ ]     0     0     0     0 / 10000     0.0s iter2
[ ]  5532     0     0  5532 / 10000     0.1s iter2 (collecting)
[ ]  9111     0     0  9111 / 10000     0.2s iter2 (collecting)
[✓] 10000     0     0 10000 / 10000     0.2s iter2
- 
[ ]     0     0     0     0 / 10000     0.0s map2
[ ]  4882     0     0  4882 / 10000     0.1s map2 (collecting)
[ ]  9657     0     0  9657 / 10000     0.2s map2 (collecting)
[✓] 10000     0     0 10000 / 10000     0.2s map2
- 
[ ]     0     0     0     0 / 10000     0.0s fold_left2
[ ]  4825     0     0  4825 / 10000     0.1s fold_left2 (collecting)
[ ]  9339     0     0  9339 / 10000     0.2s fold_left2 (collecting)
[✓] 10000     0     0 10000 / 10000     0.2s fold_left2
- 
[ ]     0     0     0     0 / 10000     0.0s fold_right2
[ ]  4557     0     0  4557 / 10000     0.1s fold_right2 (collecting)
[ ]  8770     0     0  8770 / 10000     0.2s fold_right2 (collecting)
[✓] 10000     0     0 10000 / 10000     0.2s fold_right2
- 
[ ]     0     0     0     0 / 10000     0.0s for_all
[✓] 10000     0     0 10000 / 10000     0.1s for_all
- 
[ ]     0     0     0     0 / 10000     0.0s exists
[✓] 10000     0     0 10000 / 10000     0.1s exists
- 
[ ]     0     0     0     0 / 10000     0.0s for_all2
[ ]  2330     0     0  2330 / 10000     0.1s for_all2 (collecting)
[ ]  4587     0     0  4587 / 10000     0.2s for_all2 (collecting)
[ ]  6461     0     0  6461 / 10000     0.3s for_all2 (collecting)
[ ]  8682     0     0  8682 / 10000     0.4s for_all2 (collecting)
[✓] 10000     0     0 10000 / 10000     0.5s for_all2
- 
[ ]     0     0     0     0 / 10000     0.0s exists2
[ ]  2187     0     0  2187 / 10000     0.1s exists2 (collecting)
[ ]  5974     0     0  5974 / 10000     0.2s exists2 (collecting)
[✓] 10000     0     0 10000 / 10000     0.3s 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
[ ]  9427     0     0  9427 / 10000     0.1s find (collecting)
[✓] 10000     0     0 10000 / 10000     0.1s find
- 
[ ]     0     0     0     0 / 10000     0.0s find_opt
[✓] 10000     0     0 10000 / 10000     0.1s find_opt
- 
[ ]     0     0     0     0 / 10000     0.0s find_map
[ ]  8964     0     0  8964 / 10000     0.1s find_map (collecting)
[✓] 10000     0     0 10000 / 10000     0.1s find_map
- 
[ ]     0     0     0     0 / 10000     0.0s filter
[ ]  4146     0     0  4146 / 10000     0.1s filter
[✓] 10000     0     0 10000 / 10000     0.2s filter
- 
[ ]     0     0     0     0 / 10000     0.0s find_all
[ ]  8013     0     0  8013 / 10000     0.1s find_all (collecting)
[✓] 10000     0     0 10000 / 10000     0.1s find_all
- 
[ ]     0     0     0     0 / 10000     0.0s filteri
[ ]  6561     0     0  6561 / 10000     0.1s filteri
[✓] 10000     0     0 10000 / 10000     0.2s filteri
- 
[ ]     0     0     0     0 / 10000     0.0s partition
[ ]  8114     0     0  8114 / 10000     0.1s partition
[✓] 10000     0     0 10000 / 10000     0.1s partition
- 
[ ]     0     0     0     0 / 10000     0.0s partition_map
[ ]  3899     0     0  3899 / 10000     0.1s partition_map
[ ]  7406     0     0  7406 / 10000     0.2s partition_map (collecting)
[✓] 10000     0     0 10000 / 10000     0.3s partition_map
- 
[ ]     0     0     0     0 / 10000     0.0s split
[ ]  5129     0     0  5129 / 10000     0.1s split (collecting)
[✓] 10000     0     0 10000 / 10000     0.2s split
- 
[ ]     0     0     0     0 / 10000     0.0s combine
[ ]  6551     0     0  6551 / 10000     0.1s combine (collecting)
[✓] 10000     0     0 10000 / 10000     0.2s combine
- 
[ ]     0     0     0     0 / 10000     0.0s to_list
[ ]  6952     0     0  6952 / 10000     0.1s to_list (collecting)
[✓] 10000     0     0 10000 / 10000     0.1s to_list
- 
[ ]     0     0     0     0 / 10000     0.0s of_list
[ ]  7340     0     0  7340 / 10000     0.1s of_list (collecting)
[✓] 10000     0     0 10000 / 10000     0.1s of_list
- 
[ ]     0     0     0     0 / 10000     0.0s #<
[✓] 10000     0     0 10000 / 10000     0.1s #<
- 
[ ]     0     0     0     0 / 10000     0.0s <><
[ ]  5193     0     0  5193 / 10000     0.1s <>< (collecting)
[ ]  9995     0     0  9995 / 10000     0.2s <><
[✓] 10000     0     0 10000 / 10000     0.2s <><
- 
[ ]     0     0     0     0 / 10000     0.0s <>>
[ ]  5159     0     0  5159 / 10000     0.1s <>> (collecting)
[✓] 10000     0     0 10000 / 10000     0.2s <>>
- ================================================================================
- success (ran 43 tests)
-> compiled  bwd.2.0.0
-> removed   bwd.2.0.0
-> installed bwd.2.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 14:59.45 ---> saved as "8356029519683743d746959fbcdcbddc295b0b71ead6c33a5a439f32ce56d26e"
Job succeeded
2026-03-25 14:59.52: Job succeeded