(not at the head of any monitored branch or PR)
2026-04-30 02:03.25: New job: test bwd.1.2.0 with dune.3.23.0~alpha2, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29824/head (89a6ae888498500bf7c0fc05361da936fc6acacf)
                              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/29824/head" && git reset --hard 89a6ae88
git fetch origin master
git merge --no-edit d1c56642b8ca7e1166c90bfe0c74f38007bbad58
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:00f499d6f7e3b1be41e5b77f79fcd94054ac0247cdd1991aa7156482fe125d44
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.23.0~alpha2 3.23.0~alpha2
RUN opam reinstall dune.3.23.0~alpha2; \
    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.23.0~alpha2' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall bwd.1.2.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'bwd.1.2.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test bwd.1.2.0) || true
RUN opam reinstall --with-test --verbose bwd.1.2.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'bwd.1.2.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

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

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

2026-04-30 02:03.25: Waiting for resource in pool OCluster
2026-04-30 06:07.37: Waiting for worker…
2026-04-30 06:10.40: Got resource from pool OCluster
Building on phoebe.caelum.ci.dev
All commits already cached
Updating files:  96% (18140/18887)
Updating files:  97% (18321/18887)
Updating files:  98% (18510/18887)
Updating files:  99% (18699/18887)
Updating files: 100% (18887/18887)
Updating files: 100% (18887/18887), done.
HEAD is now at d1c56642b8 Merge pull request #29820 from jmid/core-0.17.1-bound
Merge made by the 'ort' strategy.
 .../chrome-trace/chrome-trace.3.23.0~alpha2/opam   | 39 +++++++++++
 .../dune-action-plugin.3.23.0~alpha2/opam          | 52 ++++++++++++++
 .../dune-action-trace.3.23.0~alpha2/opam           | 39 +++++++++++
 .../dune-build-info.3.23.0~alpha2/opam             | 45 ++++++++++++
 .../dune-configurator.3.23.0~alpha2/opam           | 49 +++++++++++++
 packages/dune-glob/dune-glob.3.23.0~alpha2/opam    | 42 ++++++++++++
 .../dune-private-libs.3.23.0~alpha2/opam           | 50 ++++++++++++++
 .../dune-rpc-lwt/dune-rpc-lwt.3.23.0~alpha2/opam   | 41 +++++++++++
 packages/dune-rpc/dune-rpc.3.23.0~alpha2/opam      | 44 ++++++++++++
 packages/dune-site/dune-site.3.23.0~alpha2/opam    | 37 ++++++++++
 packages/dune/dune.3.23.0~alpha2/opam              | 80 ++++++++++++++++++++++
 packages/dyn/dyn.3.23.0~alpha2/opam                | 40 +++++++++++
 packages/fs-io/fs-io.3.23.0~alpha2/opam            | 39 +++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.23.0~alpha2/opam  | 43 ++++++++++++
 packages/ordering/ordering.3.23.0~alpha2/opam      | 38 ++++++++++
 packages/stdune/stdune.3.23.0~alpha2/opam          | 46 +++++++++++++
 .../top-closure/top-closure.3.23.0~alpha2/opam     | 38 ++++++++++
 packages/xdg/xdg.3.23.0~alpha2/opam                | 39 +++++++++++
 18 files changed, 801 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.23.0~alpha2/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.23.0~alpha2/opam
 create mode 100644 packages/dune-action-trace/dune-action-trace.3.23.0~alpha2/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.23.0~alpha2/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.23.0~alpha2/opam
 create mode 100644 packages/dune-glob/dune-glob.3.23.0~alpha2/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.23.0~alpha2/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.23.0~alpha2/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.23.0~alpha2/opam
 create mode 100644 packages/dune-site/dune-site.3.23.0~alpha2/opam
 create mode 100644 packages/dune/dune.3.23.0~alpha2/opam
 create mode 100644 packages/dyn/dyn.3.23.0~alpha2/opam
 create mode 100644 packages/fs-io/fs-io.3.23.0~alpha2/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.23.0~alpha2/opam
 create mode 100644 packages/ordering/ordering.3.23.0~alpha2/opam
 create mode 100644 packages/stdune/stdune.3.23.0~alpha2/opam
 create mode 100644 packages/top-closure/top-closure.3.23.0~alpha2/opam
 create mode 100644 packages/xdg/xdg.3.23.0~alpha2/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:00f499d6f7e3b1be41e5b77f79fcd94054ac0247cdd1991aa7156482fe125d44)
2026-04-30 06:11.37 ---> using "3ad720629c2266fa8bdd5d2923dac1e3690d78741c5f65fb1eb4d33725df507c" 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-30 06:11.37 ---> using "0d128a17914946ba4fe4852d9c905008c6396e0502e54d164cf768f35be583e7" 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-30 06:11.38 ---> using "d70296180507e779e1710b2206cbd2ed2063f4f7ba3a5617311725a56ede5942" 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.1
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=13
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.4
# invariant            ["ocaml-base-compiler" {= "5.4.1"}]
# compiler-packages    ocaml-base-compiler.5.4.1, ocaml-compiler.5.4.1, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.1
2026-04-30 06:11.38 ---> using "8495d51697191c14a2d936280d33309feb632049461097708f2914849f49e434" 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-30 06:11.38 ---> using "e71fcfd10a966fea9cbc39c81a8170d118ef6c5bc3e82b827a8fc5873a3b02c4" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-30 06:11.39 ---> using "1a95fcfdbe33d3db5ee6da23907452f21ceefede84b20ffd63d9951a0582315e" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-30 06:11.39 ---> using "c06cea79d066df0e24bbd5a14e3fb6af810f6c2510831dea6a3f9b3abe543bc6" 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 [129 kB]
- Fetched 219 kB in 0s (1095 kB/s)
- Reading package lists...
- 
2026-04-30 06:11.39 ---> using "79dc76009a07376b7d0a125988001bdfe429c021968c950cc37d4850b4405ed8" from cache

/home/opam: (run (shell "opam pin add -k version -yn dune.3.23.0~alpha2 3.23.0~alpha2"))
dune is now pinned to version 3.23.0~alpha2
2026-04-30 06:11.39 ---> using "0fceafb872b30d0895792b4eaa943f03be2c3da266d1c709c5e111c4f9d0ce56" from cache

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.23.0~alpha2  (cached)
-> installed dune.3.23.0~alpha2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 06:11.40 ---> using "33f3806b768ed3bccb769c14ec85f285cc9a11aedea3160e9b687d42e8d992f8" from cache

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bwd.1.2.0  (https://opam.ocaml.org/cache)
-> installed bwd.1.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 06:11.55 ---> saved as "57a02eab0639c911d0fc08ab5df81f56ca2d6eb33b1b9506b413e30a41e75bef"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bwd.1.2.0  (https://opam.ocaml.org/cache)
-> retrieved qcheck-core.0.91  (https://opam.ocaml.org/cache)
-> removed   bwd.1.2.0
-> installed qcheck-core.0.91
-> installed bwd.1.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 06:12.23 ---> saved as "636d7bd640086e0c87268c8d3083874c3f0d6523359df5e245aff614b9bfb23b"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [bwd.1.2.0: extract]
-> retrieved bwd.1.2.0  (cached)
Processing  2/4: [bwd: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "bwd" "-j" "71" (CWD=/home/opam/.opam/5.4/.opam-switch/build/bwd.1.2.0)
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "bwd" "-j" "71" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/bwd.1.2.0)
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I test/.TestBwd.eobjs/byte -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 -no-alias-deps -open Dune__exe -o test/.TestBwd.eobjs/byte/dune__exe__TestBwd.cmo -c -impl test/TestBwd.ml)
- File "test/TestBwd.ml", line 33, characters 27-36:
- 33 |     Q.Gen.(pair (list int) small_int)
-                                 ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- 
- File "test/TestBwd.ml", line 41, characters 27-36:
- 41 |     Q.Gen.(pair (list int) small_int)
-                                 ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- 
- File "test/TestBwd.ml", line 57, characters 72-81:
- 57 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (list small_int) (list small_int))
-                                                                              ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- 
- File "test/TestBwd.ml", line 57, characters 89-98:
- 57 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (list small_int) (list small_int))
-                                                                                               ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- 
- File "test/TestBwd.ml", line 62, characters 71-80:
- 62 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) (list small_int) (list small_int))
-                                                                             ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- 
- File "test/TestBwd.ml", line 62, characters 88-97:
- 62 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) (list small_int) (list small_int))
-                                                                                              ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- 
- File "test/TestBwd.ml", line 86, characters 42-45:
- 86 |     Q.Gen.(pair (Q.fun1 Q.Observable.int (opt int)) (list int))
-                                                ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- 
- File "test/TestBwd.ml", line 119, characters 16-25:
- 119 |     Q.Gen.(pair small_int (list small_int))
-                       ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- 
- File "test/TestBwd.ml", line 119, characters 32-41:
- 119 |     Q.Gen.(pair small_int (list small_int))
-                                       ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I test/.TestBwd.eobjs/byte -I test/.TestBwd.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/.TestBwd.eobjs/byte/dune__exe__TestBwd.cmi -no-alias-deps -open Dune__exe -o test/.TestBwd.eobjs/native/dune__exe__TestBwd.cmx -c -impl test/TestBwd.ml)
- File "test/TestBwd.ml", line 33, characters 27-36:
- 33 |     Q.Gen.(pair (list int) small_int)
-                                 ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- 
- File "test/TestBwd.ml", line 41, characters 27-36:
- 41 |     Q.Gen.(pair (list int) small_int)
-                                 ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- 
- File "test/TestBwd.ml", line 57, characters 72-81:
- 57 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (list small_int) (list small_int))
-                                                                              ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- 
- File "test/TestBwd.ml", line 57, characters 89-98:
- 57 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int bool) (list small_int) (list small_int))
-                                                                                               ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- 
- File "test/TestBwd.ml", line 62, characters 71-80:
- 62 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) (list small_int) (list small_int))
-                                                                             ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- 
- File "test/TestBwd.ml", line 62, characters 88-97:
- 62 |     Q.Gen.(triple (Q.fun2 Q.Observable.int Q.Observable.int int) (list small_int) (list small_int))
-                                                                                              ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- 
- File "test/TestBwd.ml", line 86, characters 42-45:
- 86 |     Q.Gen.(pair (Q.fun1 Q.Observable.int (opt int)) (list int))
-                                                ^^^
- Alert deprecated: Q.Gen.opt
- Use [option] instead
- 
- File "test/TestBwd.ml", line 119, characters 16-25:
- 119 |     Q.Gen.(pair small_int (list small_int))
-                       ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- 
- File "test/TestBwd.ml", line 119, characters 32-41:
- 119 |     Q.Gen.(pair small_int (list small_int))
-                                       ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- (cd _build/default/test && ./TestBwd.exe)
- 
random seed: 526389482
- generated error fail pass / total     time test name
- 
[ ]    0    0    0    0 / 1000     0.0s length
[ ]  181    0    0  181 / 1000     0.1s length (collecting)
[ ]  394    0    0  394 / 1000     0.2s length (collecting)
[ ]  610    0    0  610 / 1000     0.3s length (collecting)
[ ]  888    0    0  888 / 1000     0.4s length (collecting)
[✓] 1000    0    0 1000 / 1000     0.5s length
- 
[ ]    0    0    0    0 / 1000     0.0s snoc
[ ]  204    0    0  204 / 1000     0.1s snoc (collecting)
[ ]  328    0    0  328 / 1000     0.2s snoc (collecting)
[ ]  455    0    0  455 / 1000     0.3s snoc (collecting)
[ ]  575    0    0  575 / 1000     0.4s snoc (collecting)
[ ]  753    0    0  753 / 1000     0.5s snoc (collecting)
[ ]  863    0    0  863 / 1000     0.6s snoc (collecting)
[ ]  952    0    0  952 / 1000     0.7s snoc (collecting)
[✓] 1000    0    0 1000 / 1000     0.8s snoc
- 
[ ]    0    0    0    0 / 1000     0.0s nth
[ ]  204    0    0  204 / 1000     0.1s nth (collecting)
[ ]  328    0    0  328 / 1000     0.2s nth (collecting)
[ ]  478    0    0  478 / 1000     0.3s nth (collecting)
[ ]  645    0    0  645 / 1000     0.4s nth (collecting)
[ ]  772    0    0  772 / 1000     0.5s nth (collecting)
[ ]  894    0    0  894 / 1000     0.6s nth (collecting)
[ ]  979    0    0  979 / 1000     0.7s nth (collecting)
[✓] 1000    0    0 1000 / 1000     0.8s nth
- 
[ ]    0    0    0    0 / 1000     0.0s nth_opt
[ ]  204    0    0  204 / 1000     0.1s nth_opt (collecting)
[ ]  327    0    0  327 / 1000     0.2s nth_opt (collecting)
[ ]  445    0    0  445 / 1000     0.3s nth_opt (collecting)
[ ]  575    0    0  575 / 1000     0.4s nth_opt (collecting)
[ ]  754    0    0  754 / 1000     0.5s nth_opt
[ ]  863    0    0  863 / 1000     0.6s nth_opt (collecting)
[ ]  949    0    0  949 / 1000     0.7s nth_opt
[✓] 1000    0    0 1000 / 1000     0.8s nth_opt
- 
[ ]    0    0    0    0 / 1000     0.0s append
[ ]   98    0    0   98 / 1000     0.1s append (collecting)
[ ]  201    0    0  201 / 1000     0.2s append (collecting)
[ ]  282    0    0  282 / 1000     0.3s append (collecting)
[ ]  334    0    0  334 / 1000     0.4s append (collecting)
[ ]  438    0    0  438 / 1000     0.5s append (collecting)
[ ]  599    0    0  599 / 1000     0.6s append (collecting)
[ ]  748    0    0  748 / 1000     0.7s append (collecting)
[ ]  856    0    0  856 / 1000     0.8s append
[ ]  948    0    0  948 / 1000     0.9s append (collecting)
[✓] 1000    0    0 1000 / 1000     1.0s append
- 
[ ]    0    0    0    0 / 1000     0.0s prepend
[ ]  184    0    0  184 / 1000     0.1s prepend (collecting)
[ ]  315    0    0  315 / 1000     0.2s prepend (collecting)
[ ]  441    0    0  441 / 1000     0.3s prepend (collecting)
[ ]  656    0    0  656 / 1000     0.4s prepend (collecting)
[ ]  774    0    0  774 / 1000     0.5s prepend (collecting)
[ ]  895    0    0  895 / 1000     0.6s prepend (collecting)
[✓] 1000    0    0 1000 / 1000     0.7s prepend
- 
[ ]    0    0    0    0 / 1000     0.0s equal
[✓] 1000    0    0 1000 / 1000     0.1s equal
- 
[ ]    0    0    0    0 / 1000     0.0s compare
[✓] 1000    0    0 1000 / 1000     0.1s compare
- 
[ ]    0    0    0    0 / 1000     0.0s iter
[ ]  181    0    0  181 / 1000     0.1s iter (collecting)
[ ]  364    0    0  364 / 1000     0.2s iter (collecting)
[ ]  717    0    0  717 / 1000     0.3s iter (collecting)
[ ]  929    0    0  929 / 1000     0.4s iter (collecting)
[✓] 1000    0    0 1000 / 1000     0.4s iter
- 
[ ]    0    0    0    0 / 1000     0.0s map
[ ]   82    0    0   82 / 1000     0.1s map
[ ]  298    0    0  298 / 1000     0.2s map
[ ]  386    0    0  386 / 1000     0.3s map (collecting)
[ ]  477    0    0  477 / 1000     0.4s map
[ ]  621    0    0  621 / 1000     0.5s map
[ ]  701    0    0  701 / 1000     0.6s map
[ ]  816    0    0  816 / 1000     0.7s map
[ ]  902    0    0  902 / 1000     0.8s map
[ ]  974    0    0  974 / 1000     0.9s map
[✓] 1000    0    0 1000 / 1000     1.0s map
- 
[ ]    0    0    0    0 / 1000     0.0s mapi
[ ]   73    0    0   73 / 1000     0.1s mapi
[ ]  230    0    0  230 / 1000     0.2s mapi (collecting)
[ ]  336    0    0  336 / 1000     0.3s mapi
[ ]  387    0    0  387 / 1000     0.4s mapi
[ ]  476    0    0  476 / 1000     0.5s mapi (collecting)
[ ]  575    0    0  575 / 1000     0.6s mapi (collecting)
[ ]  646    0    0  646 / 1000     0.7s mapi
[ ]  716    0    0  716 / 1000     0.8s mapi
[ ]  795    0    0  795 / 1000     0.9s mapi
[ ]  846    0    0  846 / 1000     1.0s mapi
[ ]  911    0    0  911 / 1000     1.2s mapi (collecting)
[ ]  935    0    0  935 / 1000     1.3s mapi
[✓] 1000    0    0 1000 / 1000     1.3s mapi
- 
[ ]    0    0    0    0 / 1000     0.0s filter_map
[ ]   76    0    0   76 / 1000     0.1s filter_map
[ ]  113    0    0  113 / 1000     0.2s filter_map
[ ]  250    0    0  250 / 1000     0.3s filter_map
[ ]  412    0    0  412 / 1000     0.4s filter_map (collecting)
[ ]  485    0    0  485 / 1000     0.5s filter_map
[ ]  586    0    0  586 / 1000     0.6s filter_map (collecting)
[ ]  765    0    0  765 / 1000     0.7s filter_map (collecting)
[ ]  912    0    0  912 / 1000     0.8s filter_map (collecting)
[ ]  947    0    0  947 / 1000     0.9s filter_map (collecting)
[✓] 1000    0    0 1000 / 1000     1.0s filter_map
- 
[ ]    0    0    0    0 / 1000     0.0s fold_left
[ ]   80    0    0   80 / 1000     0.1s fold_left
[ ]  137    0    0  137 / 1000     0.2s fold_left (collecting)
[ ]  204    0    0  204 / 1000     0.3s fold_left (collecting)
[ ]  211    0    0  211 / 1000     0.4s fold_left (collecting)
[ ]  239    0    0  239 / 1000     0.5s fold_left
[ ]  315    0    0  315 / 1000     0.6s fold_left (collecting)
[ ]  364    0    0  364 / 1000     0.7s fold_left (collecting)
[ ]  379    0    0  379 / 1000     0.8s fold_left (collecting)
[ ]  451    0    0  451 / 1000     0.9s fold_left
[ ]  485    0    0  485 / 1000     1.1s fold_left (collecting)
[ ]  507    0    0  507 / 1000     1.2s fold_left
[ ]  573    0    0  573 / 1000     1.3s fold_left
[ ]  603    0    0  603 / 1000     1.4s fold_left
[ ]  680    0    0  680 / 1000     1.5s fold_left
[ ]  698    0    0  698 / 1000     1.6s fold_left
[ ]  736    0    0  736 / 1000     1.8s fold_left
[ ]  776    0    0  776 / 1000     1.9s fold_left
[ ]  830    0    0  830 / 1000     2.0s fold_left
[ ]  883    0    0  883 / 1000     2.1s fold_left
[ ]  919    0    0  919 / 1000     2.2s fold_left
[✓] 1000    0    0 1000 / 1000     2.3s fold_left
- 
[ ]    0    0    0    0 / 1000     0.0s fold_right
[ ]   73    0    0   73 / 1000     0.1s fold_right
[ ]  111    0    0  111 / 1000     0.2s fold_right
[ ]  132    0    0  132 / 1000     0.3s fold_right
[ ]  199    0    0  199 / 1000     0.5s fold_right
[ ]  273    0    0  273 / 1000     0.6s fold_right (collecting)
[ ]  362    0    0  362 / 1000     0.7s fold_right (collecting)
[ ]  452    0    0  452 / 1000     0.8s fold_right (collecting)
[ ]  470    0    0  470 / 1000     0.9s fold_right
[ ]  516    0    0  516 / 1000     1.0s fold_right
[ ]  544    0    0  544 / 1000     1.1s fold_right
[ ]  615    0    0  615 / 1000     1.2s fold_right (collecting)
[ ]  651    0    0  651 / 1000     1.3s fold_right (collecting)
[ ]  707    0    0  707 / 1000     1.4s fold_right
[ ]  730    0    0  730 / 1000     1.5s fold_right (collecting)
[ ]  763    0    0  763 / 1000     1.6s fold_right
[ ]  835    0    0  835 / 1000     1.7s fold_right
[ ]  910    0    0  910 / 1000     1.8s fold_right (collecting)
[ ]  940    0    0  940 / 1000     1.9s fold_right
[ ]  970    0    0  970 / 1000     2.1s fold_right
[✓] 1000    0    0 1000 / 1000     2.1s fold_right
- 
[ ]    0    0    0    0 / 1000     0.0s fold_right2
[ ]   92    0    0   92 / 1000     0.1s fold_right2 (collecting)
[ ]  197    0    0  197 / 1000     0.2s fold_right2 (collecting)
[ ]  367    0    0  367 / 1000     0.3s fold_right2 (collecting)
[ ]  494    0    0  494 / 1000     0.4s fold_right2 (collecting)
[ ]  556    0    0  556 / 1000     0.5s fold_right2 (collecting)
[ ]  637    0    0  637 / 1000     0.6s fold_right2 (collecting)
[ ]  724    0    0  724 / 1000     0.7s fold_right2 (collecting)
[ ]  861    0    0  861 / 1000     0.8s fold_right2 (collecting)
[ ]  922    0    0  922 / 1000     0.9s fold_right2 (collecting)
[ ]  994    0    0  994 / 1000     1.0s fold_right2
[✓] 1000    0    0 1000 / 1000     1.0s fold_right2
- 
[ ]    0    0    0    0 / 1000     0.0s for_all
[ ]  103    0    0  103 / 1000     0.1s for_all (collecting)
[ ]  410    0    0  410 / 1000     0.2s for_all (collecting)
[ ]  685    0    0  685 / 1000     0.3s for_all (collecting)
[ ]  966    0    0  966 / 1000     0.4s for_all (collecting)
[✓] 1000    0    0 1000 / 1000     0.4s for_all
- 
[ ]    0    0    0    0 / 1000     0.0s exists
[ ]  205    0    0  205 / 1000     0.1s exists (collecting)
[ ]  501    0    0  501 / 1000     0.2s exists (collecting)
[ ]  864    0    0  864 / 1000     0.3s exists (collecting)
[✓] 1000    0    0 1000 / 1000     0.4s exists
- 
[ ]    0    0    0    0 / 1000     0.0s mem
[✓] 1000    0    0 1000 / 1000     0.0s mem
- 
[ ]    0    0    0    0 / 1000     0.0s filter
[ ]  104    0    0  104 / 1000     0.1s filter (collecting)
[ ]  223    0    0  223 / 1000     0.2s filter (collecting)
[ ]  355    0    0  355 / 1000     0.3s filter
[ ]  430    0    0  430 / 1000     0.4s filter (collecting)
[ ]  577    0    0  577 / 1000     0.5s filter
[ ]  677    0    0  677 / 1000     0.6s filter
[ ]  821    0    0  821 / 1000     0.7s filter (collecting)
[ ]  916    0    0  916 / 1000     0.8s filter (collecting)
[ ]  967    0    0  967 / 1000     0.9s filter
[✓] 1000    0    0 1000 / 1000     0.9s filter
- 
[ ]    0    0    0    0 / 1000     0.0s to_list
[ ]  176    0    0  176 / 1000     0.1s to_list (collecting)
[ ]  351    0    0  351 / 1000     0.2s to_list (collecting)
[ ]  557    0    0  557 / 1000     0.3s to_list (collecting)
[ ]  836    0    0  836 / 1000     0.4s to_list (collecting)
[ ]  943    0    0  943 / 1000     0.5s to_list (collecting)
[✓] 1000    0    0 1000 / 1000     0.5s to_list
- 
[ ]    0    0    0    0 / 1000     0.0s of_list
[ ]  178    0    0  178 / 1000     0.1s of_list (collecting)
[ ]  351    0    0  351 / 1000     0.2s of_list (collecting)
[ ]  531    0    0  531 / 1000     0.3s of_list (collecting)
[ ]  822    0    0  822 / 1000     0.4s of_list (collecting)
[ ]  921    0    0  921 / 1000     0.5s of_list (collecting)
[✓] 1000    0    0 1000 / 1000     0.6s of_list
- 
[ ]    0    0    0    0 / 1000     0.0s #<
[ ]  201    0    0  201 / 1000     0.1s #< (collecting)
[ ]  377    0    0  377 / 1000     0.2s #< (collecting)
[ ]  533    0    0  533 / 1000     0.3s #< (collecting)
[ ]  777    0    0  777 / 1000     0.4s #< (collecting)
[ ]  948    0    0  948 / 1000     0.5s #< (collecting)
[✓] 1000    0    0 1000 / 1000     0.5s #<
- 
[ ]    0    0    0    0 / 1000     0.0s <><
[ ]  124    0    0  124 / 1000     0.1s <>< (collecting)
[ ]  201    0    0  201 / 1000     0.2s <>< (collecting)
[ ]  271    0    0  271 / 1000     0.3s <>< (collecting)
[ ]  328    0    0  328 / 1000     0.4s <>< (collecting)
[ ]  426    0    0  426 / 1000     0.5s <>< (collecting)
[ ]  512    0    0  512 / 1000     0.6s <>< (collecting)
[ ]  596    0    0  596 / 1000     0.7s <>< (collecting)
[ ]  693    0    0  693 / 1000     0.8s <>< (collecting)
[ ]  753    0    0  753 / 1000     0.9s <>< (collecting)
[ ]  832    0    0  832 / 1000     1.0s <>< (collecting)
[ ]  864    0    0  864 / 1000     1.1s <>< (collecting)
[ ]  943    0    0  943 / 1000     1.2s <>< (collecting)
[ ]  989    0    0  989 / 1000     1.4s <>< (collecting)
[✓] 1000    0    0 1000 / 1000     1.4s <><
- 
[ ]    0    0    0    0 / 1000     0.0s <>>
[ ]   98    0    0   98 / 1000     0.1s <>> (collecting)
[ ]  201    0    0  201 / 1000     0.2s <>> (collecting)
[ ]  327    0    0  327 / 1000     0.3s <>> (collecting)
[ ]  445    0    0  445 / 1000     0.4s <>> (collecting)
[ ]  653    0    0  653 / 1000     0.5s <>> (collecting)
[ ]  772    0    0  772 / 1000     0.6s <>> (collecting)
[ ]  863    0    0  863 / 1000     0.7s <>> (collecting)
[ ]  943    0    0  943 / 1000     0.8s <>> (collecting)
[✓] 1000    0    0 1000 / 1000     0.9s <>>
- ================================================================================
- success (ran 24 tests)
-> compiled  bwd.1.2.0
-> removed   bwd.1.2.0
-> installed bwd.1.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 06:12.51 ---> saved as "b16e901752f6d2e2a353546944466741a2641d8023233f3464b5878073646030"
Job succeeded
2026-04-30 06:16.14: Job succeeded