(not at the head of any monitored branch or PR)
2026-03-20 10:16.23: New job: test ppx_deriving_qcheck.0.7 with ppxlib.0.38.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29563/head (6185871ccd68c72dd8f6902c863f0554508a6764)
                              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/29563/head" && git reset --hard 6185871c
git fetch origin master
git merge --no-edit 9f189ca4f94fbb5f0045820bf3c4ffafb21145ef
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 ppxlib.0.38.0 0.38.0
RUN opam reinstall ppxlib.0.38.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" != 'ppxlib.0.38.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall ppx_deriving_qcheck.0.7; \
    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" != 'ppx_deriving_qcheck.0.7' && 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 ppx_deriving_qcheck.0.7) || true
RUN opam reinstall --with-test --verbose ppx_deriving_qcheck.0.7; \
    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" != 'ppx_deriving_qcheck.0.7' && 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-20 10:16.23: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6-ppxlib.0.38.0-ppx_deriving_qcheck.0.7-6185871ccd68c72dd8f6902c863f0554508a6764"
2026-03-20 10:16.23: 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 ppxlib.0.38.0 0.38.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall ppxlib.0.38.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\" != 'ppxlib.0.38.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 (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall ppx_deriving_qcheck.0.7;\
             \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\" != 'ppx_deriving_qcheck.0.7' && 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 ppx_deriving_qcheck.0.7) || true"))
 (run (shell  "opam reinstall --with-test --verbose ppx_deriving_qcheck.0.7;\
             \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\" != 'ppx_deriving_qcheck.0.7' && 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-20 10:16.23: Waiting for resource in pool OCluster
2026-03-20 10:24.18: Waiting for worker…
2026-03-20 10:26.32: Got resource from pool OCluster
Building on clete
All commits already cached
Updating files:  61% (11325/18507)
Updating files:  62% (11475/18507)
Updating files:  63% (11660/18507)
Updating files:  64% (11845/18507)
Updating files:  65% (12030/18507)
Updating files:  66% (12215/18507)
Updating files:  67% (12400/18507)
Updating files:  68% (12585/18507)
Updating files:  69% (12770/18507)
Updating files:  70% (12955/18507)
Updating files:  71% (13140/18507)
Updating files:  72% (13326/18507)
Updating files:  73% (13511/18507)
Updating files:  74% (13696/18507)
Updating files:  75% (13881/18507)
Updating files:  76% (14066/18507)
Updating files:  77% (14251/18507)
Updating files:  78% (14436/18507)
Updating files:  79% (14621/18507)
Updating files:  80% (14806/18507)
Updating files:  81% (14991/18507)
Updating files:  82% (15176/18507)
Updating files:  83% (15361/18507)
Updating files:  84% (15546/18507)
Updating files:  85% (15731/18507)
Updating files:  86% (15917/18507)
Updating files:  87% (16102/18507)
Updating files:  88% (16287/18507)
Updating files:  89% (16472/18507)
Updating files:  90% (16657/18507)
Updating files:  91% (16842/18507)
Updating files:  92% (17027/18507)
Updating files:  93% (17212/18507)
Updating files:  94% (17397/18507)
Updating files:  95% (17582/18507)
Updating files:  96% (17767/18507)
Updating files:  97% (17952/18507)
Updating files:  98% (18137/18507)
Updating files:  99% (18322/18507)
Updating files: 100% (18507/18507)
Updating files: 100% (18507/18507), done.
HEAD is now at 9f189ca4f9 Merge pull request #29562 from shonfeder/release-dune-3.22.0
Updating 9f189ca4f9..6185871ccd
Fast-forward
 packages/ppxlib-tools/ppxlib-tools.0.38.0/opam | 47 +++++++++++++++++++
 packages/ppxlib/ppxlib.0.38.0/opam             | 64 ++++++++++++++++++++++++++
 2 files changed, 111 insertions(+)
 create mode 100644 packages/ppxlib-tools/ppxlib-tools.0.38.0/opam
 create mode 100644 packages/ppxlib/ppxlib.0.38.0/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
2026-03-20 10:26.54 ---> 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-20 10:26.54 ---> 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-20 10:26.54 ---> 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-20 10:26.54 ---> 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-20 10:26.54 ---> using "04a48515eea40c32b96da0c71328b4bba0edb66eed83d4f78554b39097cf1f25" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-20 10:26.56 ---> using "b9bfc01bc62f278eafaeecd4cba248359fbe1b80633e4dfcfdb8b1397899d446" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-20 10:26.56 ---> using "c2f12173229ec5c0464d19e3d01c733329e6e921188609c50aa19b931151ea3b" 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 [116 kB]
- Fetched 10.0 MB in 1s (7248 kB/s)
- Reading package lists...
- 
2026-03-20 10:26.56 ---> using "1ca9e50729c16835fde90653123b35731a095f0cd27899846d554dded091ece2" from cache

/home/opam: (run (shell "opam pin add -k version -yn ppxlib.0.38.0 0.38.0"))
ppxlib is now pinned to version 0.38.0
2026-03-20 10:26.56 ---> using "a7d81f2b18a884b8610282e584d445f91905f76979db91435db3eff3db093b60" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall ppxlib.0.38.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\" != 'ppxlib.0.38.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
ppxlib.0.38.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 6 packages
  - install dune                3.22.0          [required by ppxlib]
  - install ocaml-compiler-libs v0.17.0         [required by ppxlib]
  - install ppx_derivers        1.2.1           [required by ppxlib]
  - install ppxlib              0.38.0 (pinned)
  - install sexplib0            v0.17.0         [required by ppxlib]
  - install stdlib-shims        0.3.0           [required by ppxlib]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.0  (cached)
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppxlib.0.38.0  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> installed dune.3.22.0
-> installed ppx_derivers.1.2.1
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.17.0
-> installed ocaml-compiler-libs.v0.17.0
-> installed ppxlib.0.38.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-20 10:26.56 ---> using "d3b908d2aea2b5be4153c81511debffe40fb194226c5ab54b10dc20db93d3a50" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall ppx_deriving_qcheck.0.7;\
                        \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\" != 'ppx_deriving_qcheck.0.7' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
ppx_deriving_qcheck.0.7 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 5 packages
  - install cppo                1.8.0 [required by ppx_deriving]
  - install ocamlfind           1.9.8 [required by ppx_deriving]
  - install ppx_deriving        6.1.1 [required by ppx_deriving_qcheck]
  - install ppx_deriving_qcheck 0.7
  - install qcheck-core         0.91  [required by ppx_deriving_qcheck]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cppo.1.8.0  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ppx_deriving.6.1.1  (cached)
-> retrieved ppx_deriving_qcheck.0.7  (cached)
-> retrieved qcheck-core.0.91  (cached)
-> installed cppo.1.8.0
-> installed qcheck-core.0.91
-> installed ocamlfind.1.9.8
-> installed ppx_deriving.6.1.1
-> installed ppx_deriving_qcheck.0.7
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-20 10:27.24 ---> saved as "fb3dc4b2d9373bdd4bf35b31a392ce0bc2791dd8c5835c967447a16feef53728"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test ppx_deriving_qcheck.0.7) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile ppx_deriving_qcheck 0.7
=== install 10 packages
  - install   alcotest            1.9.1  [required by ppx_deriving_qcheck]
  - install   astring             0.8.5  [required by alcotest]
  - install   cmdliner            2.1.0  [required by alcotest]
  - install   fmt                 0.11.0 [required by alcotest]
  - install   ocaml-syntax-shims  1.0.0  [required by alcotest]
  - install   ocamlbuild          0.16.1 [required by fmt, astring, uutf]
  - install   qcheck-alcotest     0.91   [required by ppx_deriving_qcheck]
  - install   re                  1.14.0 [required by alcotest]
  - install   topkg               1.1.1  [required by fmt, astring, uutf]
  - install   uutf                1.0.4  [required by alcotest]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1  (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5  (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.0  (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0  (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0  (https://opam.ocaml.org/cache)
-> retrieved ocamlbuild.0.16.1  (https://opam.ocaml.org/cache)
-> retrieved ppx_deriving_qcheck.0.7  (https://opam.ocaml.org/cache)
-> retrieved qcheck-alcotest.0.91  (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> retrieved topkg.1.1.1  (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> installed ocaml-syntax-shims.1.0.0
-> installed re.1.14.0
-> installed cmdliner.2.1.0
-> removed   ppx_deriving_qcheck.0.7
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed alcotest.1.9.1
-> installed qcheck-alcotest.0.91
-> installed ppx_deriving_qcheck.0.7
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-20 10:28.56 ---> saved as "614494a661e5d4c5ca198ffa8ceea152e65d9596bf287d744f0b877c66b46384"

/home/opam: (run (shell  "opam reinstall --with-test --verbose ppx_deriving_qcheck.0.7;\
                        \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\" != 'ppx_deriving_qcheck.0.7' && 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 ppx_deriving_qcheck 0.7

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [ppx_deriving_qcheck.0.7: extract]
-> retrieved ppx_deriving_qcheck.0.7  (cached)
Processing  2/4: [ppx_deriving_qcheck: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "ppx_deriving_qcheck" "-j" "71" (CWD=/home/opam/.opam/5.4/.opam-switch/build/ppx_deriving_qcheck.0.7)
Processing  2/4: [ppx_deriving_qcheck: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "ppx_deriving_qcheck" "-j" "71" (CWD=/home/opam/.opam/5.4/.opam-switch/build/ppx_deriving_qcheck.0.7)
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I test/ppx_deriving_qcheck/deriver/qcheck2/.test_textual.eobjs/byte -I /home/opam/.opam/5.4/lib/alcotest -I /home/opam/.opam/5.4/lib/alcotest/engine -I /home/opam/.opam/5.4/lib/alcotest/stdlib_ext -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fmt/cli -I /home/opam/.opam/5.4/lib/fmt/tty -I /home/opam/.opam/5.4/lib/ocaml-compiler-libs/common -I /home/opam/.opam/5.4/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/5.4/lib/ocaml/compiler-libs -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ppx_derivers -I /home/opam/.opam/5.4/lib/ppxlib -I /home/opam/.opam/5.4/lib/ppxlib/ast -I /home/opam/.opam/5.4/lib/ppxlib/astlib -I /home/opam/.opam/5.4/lib/ppxlib/print_diff -I /home/opam/.opam/5.4/lib/ppxlib/stdppx -I /home/opam/.opam/5.4/lib/ppxlib/traverse_builtins -I /home/opam/.opam/5.4/lib/qcheck-alcotest -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/qcheck-core/runner -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/sexplib0 -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/uutf -I src/ppx_deriving_qcheck/.ppx_deriving_qcheck.objs/byte -no-alias-deps -open Dune__exe -o test/ppx_deriving_qcheck/deriver/qcheck2/.test_textual.eobjs/byte/dune__exe__Test_primitives.cmo -c -impl test/ppx_deriving_qcheck/deriver/qcheck2/test_primitives.pp.ml)
- File "test/ppx_deriving_qcheck/deriver/qcheck2/test_primitives.ml", line 39, characters 0-40:
- 39 | type int32' = int32 [@@deriving qcheck2]
-      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: QCheck2.Gen.ui32
- Use [int32] instead
- 
- File "test/ppx_deriving_qcheck/deriver/qcheck2/test_primitives.ml", line 42, characters 70-78:
- 42 |   test_compare ~msg:"Gen.int32 <=> deriving int32" ~eq:Alcotest.int32 Gen.ui32 gen_int32'
-                                                                            ^^^^^^^^
- Alert deprecated: QCheck2.Gen.ui32
- Use [int32] instead
- 
- File "test/ppx_deriving_qcheck/deriver/qcheck2/test_primitives.ml", line 44, characters 0-40:
- 44 | type int64' = int64 [@@deriving qcheck2]
-      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: QCheck2.Gen.ui64
- Use [int64] instead
- 
- File "test/ppx_deriving_qcheck/deriver/qcheck2/test_primitives.ml", line 47, characters 70-78:
- 47 |   test_compare ~msg:"Gen.int64 <=> deriving int64" ~eq:Alcotest.int64 Gen.ui64 gen_int64'
-                                                                            ^^^^^^^^
- Alert deprecated: QCheck2.Gen.ui64
- Use [int64] instead
- 
- File "test/ppx_deriving_qcheck/deriver/qcheck2/test_primitives.ml", line 55, characters 5-12:
- 55 |     (Gen.opt zero) (gen_option' zero)
-           ^^^^^^^
- Alert deprecated: QCheck2.Gen.opt
- Use [option] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I test/ppx_deriving_qcheck/deriver/qcheck2/.test_textual.eobjs/byte -I /home/opam/.opam/5.4/lib/alcotest -I /home/opam/.opam/5.4/lib/alcotest/engine -I /home/opam/.opam/5.4/lib/alcotest/stdlib_ext -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fmt/cli -I /home/opam/.opam/5.4/lib/fmt/tty -I /home/opam/.opam/5.4/lib/ocaml-compiler-libs/common -I /home/opam/.opam/5.4/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/5.4/lib/ocaml/compiler-libs -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ppx_derivers -I /home/opam/.opam/5.4/lib/ppxlib -I /home/opam/.opam/5.4/lib/ppxlib/ast -I /home/opam/.opam/5.4/lib/ppxlib/astlib -I /home/opam/.opam/5.4/lib/ppxlib/print_diff -I /home/opam/.opam/5.4/lib/ppxlib/stdppx -I /home/opam/.opam/5.4/lib/ppxlib/traverse_builtins -I /home/opam/.opam/5.4/lib/qcheck-alcotest -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/qcheck-core/runner -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/sexplib0 -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/uutf -I src/ppx_deriving_qcheck/.ppx_deriving_qcheck.objs/byte -no-alias-deps -open Dune__exe -o test/ppx_deriving_qcheck/deriver/qcheck2/.test_textual.eobjs/byte/dune__exe__Test_mutual.cmo -c -impl test/ppx_deriving_qcheck/deriver/qcheck2/test_mutual.pp.ml)
- File "test/ppx_deriving_qcheck/deriver/qcheck2/test_mutual.ml", lines 4-6, characters 0-20:
- 4 | type tree = Leaf | Node of  tree * tree
- 5 | and name  = { a: tree }
- 6 | [@@deriving qcheck2]
- Alert deprecated: QCheck2.Gen.frequency
- Use [oneof_weighted] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I test/ppx_deriving_qcheck/deriver/qcheck/.test_textual.eobjs/byte -I /home/opam/.opam/5.4/lib/alcotest -I /home/opam/.opam/5.4/lib/alcotest/engine -I /home/opam/.opam/5.4/lib/alcotest/stdlib_ext -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fmt/cli -I /home/opam/.opam/5.4/lib/fmt/tty -I /home/opam/.opam/5.4/lib/ocaml-compiler-libs/common -I /home/opam/.opam/5.4/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/5.4/lib/ocaml/compiler-libs -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ppx_derivers -I /home/opam/.opam/5.4/lib/ppxlib -I /home/opam/.opam/5.4/lib/ppxlib/ast -I /home/opam/.opam/5.4/lib/ppxlib/astlib -I /home/opam/.opam/5.4/lib/ppxlib/print_diff -I /home/opam/.opam/5.4/lib/ppxlib/stdppx -I /home/opam/.opam/5.4/lib/ppxlib/traverse_builtins -I /home/opam/.opam/5.4/lib/qcheck-alcotest -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/qcheck-core/runner -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/sexplib0 -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/uutf -I src/ppx_deriving_qcheck/.ppx_deriving_qcheck.objs/byte -no-alias-deps -open Dune__exe -o test/ppx_deriving_qcheck/deriver/qcheck/.test_textual.eobjs/byte/dune__exe__Test_primitives.cmo -c -impl test/ppx_deriving_qcheck/deriver/qcheck/test_primitives.pp.ml)
- File "test/ppx_deriving_qcheck/deriver/qcheck/test_primitives.ml", line 39, characters 0-39:
- 39 | type int32' = int32 [@@deriving qcheck]
-      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: QCheck.Gen.ui32
- Use [int32] instead
- 
- File "test/ppx_deriving_qcheck/deriver/qcheck/test_primitives.ml", line 44, characters 0-39:
- 44 | type int64' = int64 [@@deriving qcheck]
-      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: QCheck.Gen.ui64
- Use [int64] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I test/ppx_deriving_qcheck/deriver/qcheck2/.test_textual.eobjs/byte -I /home/opam/.opam/5.4/lib/alcotest -I /home/opam/.opam/5.4/lib/alcotest/engine -I /home/opam/.opam/5.4/lib/alcotest/stdlib_ext -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fmt/cli -I /home/opam/.opam/5.4/lib/fmt/tty -I /home/opam/.opam/5.4/lib/ocaml-compiler-libs/common -I /home/opam/.opam/5.4/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/5.4/lib/ocaml/compiler-libs -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ppx_derivers -I /home/opam/.opam/5.4/lib/ppxlib -I /home/opam/.opam/5.4/lib/ppxlib/ast -I /home/opam/.opam/5.4/lib/ppxlib/astlib -I /home/opam/.opam/5.4/lib/ppxlib/print_diff -I /home/opam/.opam/5.4/lib/ppxlib/stdppx -I /home/opam/.opam/5.4/lib/ppxlib/traverse_builtins -I /home/opam/.opam/5.4/lib/qcheck-alcotest -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/qcheck-core/runner -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/sexplib0 -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/uutf -I src/ppx_deriving_qcheck/.ppx_deriving_qcheck.objs/byte -no-alias-deps -open Dune__exe -o test/ppx_deriving_qcheck/deriver/qcheck2/.test_textual.eobjs/byte/dune__exe__Test_variants.cmo -c -impl test/ppx_deriving_qcheck/deriver/qcheck2/test_variants.pp.ml)
- File "test/ppx_deriving_qcheck/deriver/qcheck2/test_variants.ml", line 8, characters 0-53:
- 8 | type colors = Red | Green | Blue [@@deriving qcheck2]
-     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: QCheck2.Gen.frequency
- Use [oneof_weighted] instead
- 
- File "test/ppx_deriving_qcheck/deriver/qcheck2/test_variants.ml", line 19, characters 15-24:
- 19 | let gen = Gen.(frequency [1,pure Red; 1,pure Green; 1,pure Blue])
-                     ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.frequency
- Use [oneof_weighted] instead
- 
- File "test/ppx_deriving_qcheck/deriver/qcheck2/test_variants.ml", line 24, characters 0-63:
- 24 | type poly_colors = [`Red | `Green | `Blue] [@@deriving qcheck2]
-      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: QCheck2.Gen.frequency
- Use [oneof_weighted] instead
- 
- File "test/ppx_deriving_qcheck/deriver/qcheck2/test_variants.ml", line 35, characters 40-49:
- 35 | let gen_poly : poly_colors Gen.t = Gen.(frequency [1,pure `Red; 1,pure `Green; 1,pure `Blue])
-                                              ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.frequency
- Use [oneof_weighted] instead
- 
- File "test/ppx_deriving_qcheck/deriver/qcheck2/test_variants.ml", lines 43-46, characters 0-20:
- 43 | type letters =
- 44 |   | A [@weight 0]
- 45 |   | B
- 46 | [@@deriving qcheck2]
- Alert deprecated: QCheck2.Gen.frequency
- Use [oneof_weighted] instead
- 
- File "test/ppx_deriving_qcheck/deriver/qcheck2/test_variants.ml", lines 57-61, characters 0-20:
- 57 | type poly_letters = [
- 58 |     | `A [@weight 0]
- 59 |     | `B
- 60 |   ]
- 61 | [@@deriving qcheck2]
- Alert deprecated: QCheck2.Gen.frequency
- Use [oneof_weighted] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I test/ppx_deriving_qcheck/deriver/qcheck2/.test_textual.eobjs/byte -I /home/opam/.opam/5.4/lib/alcotest -I /home/opam/.opam/5.4/lib/alcotest/engine -I /home/opam/.opam/5.4/lib/alcotest/stdlib_ext -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fmt/cli -I /home/opam/.opam/5.4/lib/fmt/tty -I /home/opam/.opam/5.4/lib/ocaml-compiler-libs/common -I /home/opam/.opam/5.4/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/5.4/lib/ocaml/compiler-libs -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ppx_derivers -I /home/opam/.opam/5.4/lib/ppxlib -I /home/opam/.opam/5.4/lib/ppxlib/ast -I /home/opam/.opam/5.4/lib/ppxlib/astlib -I /home/opam/.opam/5.4/lib/ppxlib/print_diff -I /home/opam/.opam/5.4/lib/ppxlib/stdppx -I /home/opam/.opam/5.4/lib/ppxlib/traverse_builtins -I /home/opam/.opam/5.4/lib/qcheck-alcotest -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/qcheck-core/runner -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/sexplib0 -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/uutf -I src/ppx_deriving_qcheck/.ppx_deriving_qcheck.objs/byte -no-alias-deps -open Dune__exe -o test/ppx_deriving_qcheck/deriver/qcheck2/.test_textual.eobjs/byte/dune__exe__Test_recursive.cmo -c -impl test/ppx_deriving_qcheck/deriver/qcheck2/test_recursive.pp.ml)
- File "test/ppx_deriving_qcheck/deriver/qcheck2/test_recursive.ml", lines 4-5, characters 0-20:
- 4 | type 'a tree = Leaf | Node of 'a * 'a tree * 'a tree
- 5 | [@@deriving qcheck2]
- Alert deprecated: QCheck2.Gen.frequency
- Use [oneof_weighted] instead
- 
- File "test/ppx_deriving_qcheck/deriver/qcheck2/test_recursive.ml", lines 56-57, characters 0-20:
- 56 | type 'a my_list = Cons of 'a * 'a my_list | Nil
- 57 | [@@deriving qcheck2]
- Alert deprecated: QCheck2.Gen.frequency
- Use [oneof_weighted] instead
- 
- File "test/ppx_deriving_qcheck/deriver/qcheck2/test_recursive.ml", line 66, characters 4-17:
- 66 |     Gen.small_int
-          ^^^^^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_int
- Use [nat_small] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I test/ppx_deriving_qcheck/deriver/qcheck/.test_textual.eobjs/byte -I /home/opam/.opam/5.4/lib/alcotest -I /home/opam/.opam/5.4/lib/alcotest/engine -I /home/opam/.opam/5.4/lib/alcotest/stdlib_ext -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fmt/cli -I /home/opam/.opam/5.4/lib/fmt/tty -I /home/opam/.opam/5.4/lib/ocaml-compiler-libs/common -I /home/opam/.opam/5.4/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/5.4/lib/ocaml/compiler-libs -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ppx_derivers -I /home/opam/.opam/5.4/lib/ppxlib -I /home/opam/.opam/5.4/lib/ppxlib/ast -I /home/opam/.opam/5.4/lib/ppxlib/astlib -I /home/opam/.opam/5.4/lib/ppxlib/print_diff -I /home/opam/.opam/5.4/lib/ppxlib/stdppx -I /home/opam/.opam/5.4/lib/ppxlib/traverse_builtins -I /home/opam/.opam/5.4/lib/qcheck-alcotest -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/qcheck-core/runner -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/sexplib0 -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/uutf -I src/ppx_deriving_qcheck/.ppx_deriving_qcheck.objs/byte -no-alias-deps -open Dune__exe -o test/ppx_deriving_qcheck/deriver/qcheck/.test_textual.eobjs/byte/dune__exe__Test_variants.cmo -c -impl test/ppx_deriving_qcheck/deriver/qcheck/test_variants.pp.ml)
- File "test/ppx_deriving_qcheck/deriver/qcheck/test_variants.ml", line 8, characters 0-52:
- 8 | type colors = Red | Green | Blue [@@deriving qcheck]
-     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: QCheck.Gen.frequency
- Use [oneof_weighted] instead
- 
- File "test/ppx_deriving_qcheck/deriver/qcheck/test_variants.ml", line 19, characters 10-16:
- 19 | let arb = oneofl [Red; Green; Blue]
-                ^^^^^^
- Alert deprecated: QCheck.oneofl
- Use [oneof_list] instead
- 
- File "test/ppx_deriving_qcheck/deriver/qcheck/test_variants.ml", line 24, characters 0-62:
- 24 | type poly_colors = [`Red | `Green | `Blue] [@@deriving qcheck]
-      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: QCheck.Gen.frequency
- Use [oneof_weighted] instead
- 
- File "test/ppx_deriving_qcheck/deriver/qcheck/test_variants.ml", line 35, characters 15-21:
- 35 | let arb_poly = oneofl [`Red; `Green; `Blue]
-                     ^^^^^^
- Alert deprecated: QCheck.oneofl
- Use [oneof_list] instead
- 
- File "test/ppx_deriving_qcheck/deriver/qcheck/test_variants.ml", lines 43-46, characters 0-19:
- 43 | type letters =
- 44 |   | A [@weight 0]
- 45 |   | B
- 46 | [@@deriving qcheck]
- Alert deprecated: QCheck.Gen.frequency
- Use [oneof_weighted] instead
- 
- File "test/ppx_deriving_qcheck/deriver/qcheck/test_variants.ml", lines 57-61, characters 0-19:
- 57 | type poly_letters = [
- 58 |     | `A [@weight 0]
- 59 |     | `B
- 60 |   ]
- 61 | [@@deriving qcheck]
- Alert deprecated: QCheck.Gen.frequency
- Use [oneof_weighted] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I test/ppx_deriving_qcheck/deriver/qcheck/.test_textual.eobjs/byte -I /home/opam/.opam/5.4/lib/alcotest -I /home/opam/.opam/5.4/lib/alcotest/engine -I /home/opam/.opam/5.4/lib/alcotest/stdlib_ext -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fmt/cli -I /home/opam/.opam/5.4/lib/fmt/tty -I /home/opam/.opam/5.4/lib/ocaml-compiler-libs/common -I /home/opam/.opam/5.4/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/5.4/lib/ocaml/compiler-libs -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ppx_derivers -I /home/opam/.opam/5.4/lib/ppxlib -I /home/opam/.opam/5.4/lib/ppxlib/ast -I /home/opam/.opam/5.4/lib/ppxlib/astlib -I /home/opam/.opam/5.4/lib/ppxlib/print_diff -I /home/opam/.opam/5.4/lib/ppxlib/stdppx -I /home/opam/.opam/5.4/lib/ppxlib/traverse_builtins -I /home/opam/.opam/5.4/lib/qcheck-alcotest -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/qcheck-core/runner -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/sexplib0 -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/uutf -I src/ppx_deriving_qcheck/.ppx_deriving_qcheck.objs/byte -no-alias-deps -open Dune__exe -o test/ppx_deriving_qcheck/deriver/qcheck/.test_textual.eobjs/byte/dune__exe__Test_recursive.cmo -c -impl test/ppx_deriving_qcheck/deriver/qcheck/test_recursive.pp.ml)
- File "test/ppx_deriving_qcheck/deriver/qcheck/test_recursive.ml", lines 4-5, characters 0-19:
- 4 | type 'a tree = Leaf | Node of 'a * 'a tree * 'a tree
- 5 | [@@deriving qcheck]
- Alert deprecated: QCheck.Gen.frequency
- Use [oneof_weighted] instead
- 
- File "test/ppx_deriving_qcheck/deriver/qcheck/test_recursive.ml", lines 58-59, characters 0-19:
- 58 | type 'a my_list = Cons of 'a * 'a my_list | Nil
- 59 | [@@deriving qcheck]
- Alert deprecated: QCheck.Gen.frequency
- Use [oneof_weighted] instead
- 
- File "test/ppx_deriving_qcheck/deriver/qcheck/test_recursive.ml", line 68, characters 4-13:
- 68 |     small_int
-          ^^^^^^^^^
- Alert deprecated: QCheck.small_int
- Use [nat_small] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I test/ppx_deriving_qcheck/deriver/qcheck2/.test_textual.eobjs/byte -I test/ppx_deriving_qcheck/deriver/qcheck2/.test_textual.eobjs/native -I /home/opam/.opam/5.4/lib/alcotest -I /home/opam/.opam/5.4/lib/alcotest/engine -I /home/opam/.opam/5.4/lib/alcotest/stdlib_ext -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fmt/cli -I /home/opam/.opam/5.4/lib/fmt/tty -I /home/opam/.opam/5.4/lib/ocaml-compiler-libs/common -I /home/opam/.opam/5.4/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/5.4/lib/ocaml/compiler-libs -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ppx_derivers -I /home/opam/.opam/5.4/lib/ppxlib -I /home/opam/.opam/5.4/lib/ppxlib/ast -I /home/opam/.opam/5.4/lib/ppxlib/astlib -I /home/opam/.opam/5.4/lib/ppxlib/print_diff -I /home/opam/.opam/5.4/lib/ppxlib/stdppx -I /home/opam/.opam/5.4/lib/ppxlib/traverse_builtins -I /home/opam/.opam/5.4/lib/qcheck-alcotest -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/qcheck-core/runner -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/sexplib0 -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/uutf -I src/ppx_deriving_qcheck/.ppx_deriving_qcheck.objs/byte -I src/ppx_deriving_qcheck/.ppx_deriving_qcheck.objs/native -cmi-file test/ppx_deriving_qcheck/deriver/qcheck2/.test_textual.eobjs/byte/dune__exe__Test_primitives.cmi -no-alias-deps -open Dune__exe -o test/ppx_deriving_qcheck/deriver/qcheck2/.test_textual.eobjs/native/dune__exe__Test_primitives.cmx -c -impl test/ppx_deriving_qcheck/deriver/qcheck2/test_primitives.pp.ml)
- File "test/ppx_deriving_qcheck/deriver/qcheck2/test_primitives.ml", line 39, characters 0-40:
- 39 | type int32' = int32 [@@deriving qcheck2]
-      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: QCheck2.Gen.ui32
- Use [int32] instead
- 
- File "test/ppx_deriving_qcheck/deriver/qcheck2/test_primitives.ml", line 42, characters 70-78:
- 42 |   test_compare ~msg:"Gen.int32 <=> deriving int32" ~eq:Alcotest.int32 Gen.ui32 gen_int32'
-                                                                            ^^^^^^^^
- Alert deprecated: QCheck2.Gen.ui32
- Use [int32] instead
- 
- File "test/ppx_deriving_qcheck/deriver/qcheck2/test_primitives.ml", line 44, characters 0-40:
- 44 | type int64' = int64 [@@deriving qcheck2]
-      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: QCheck2.Gen.ui64
- Use [int64] instead
- 
- File "test/ppx_deriving_qcheck/deriver/qcheck2/test_primitives.ml", line 47, characters 70-78:
- 47 |   test_compare ~msg:"Gen.int64 <=> deriving int64" ~eq:Alcotest.int64 Gen.ui64 gen_int64'
-                                                                            ^^^^^^^^
- Alert deprecated: QCheck2.Gen.ui64
- Use [int64] instead
- 
- File "test/ppx_deriving_qcheck/deriver/qcheck2/test_primitives.ml", line 55, characters 5-12:
- 55 |     (Gen.opt zero) (gen_option' zero)
-           ^^^^^^^
- Alert deprecated: QCheck2.Gen.opt
- Use [option] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I test/ppx_deriving_qcheck/deriver/qcheck2/.test_textual.eobjs/byte -I test/ppx_deriving_qcheck/deriver/qcheck2/.test_textual.eobjs/native -I /home/opam/.opam/5.4/lib/alcotest -I /home/opam/.opam/5.4/lib/alcotest/engine -I /home/opam/.opam/5.4/lib/alcotest/stdlib_ext -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fmt/cli -I /home/opam/.opam/5.4/lib/fmt/tty -I /home/opam/.opam/5.4/lib/ocaml-compiler-libs/common -I /home/opam/.opam/5.4/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/5.4/lib/ocaml/compiler-libs -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ppx_derivers -I /home/opam/.opam/5.4/lib/ppxlib -I /home/opam/.opam/5.4/lib/ppxlib/ast -I /home/opam/.opam/5.4/lib/ppxlib/astlib -I /home/opam/.opam/5.4/lib/ppxlib/print_diff -I /home/opam/.opam/5.4/lib/ppxlib/stdppx -I /home/opam/.opam/5.4/lib/ppxlib/traverse_builtins -I /home/opam/.opam/5.4/lib/qcheck-alcotest -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/qcheck-core/runner -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/sexplib0 -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/uutf -I src/ppx_deriving_qcheck/.ppx_deriving_qcheck.objs/byte -I src/ppx_deriving_qcheck/.ppx_deriving_qcheck.objs/native -cmi-file test/ppx_deriving_qcheck/deriver/qcheck2/.test_textual.eobjs/byte/dune__exe__Test_variants.cmi -no-alias-deps -open Dune__exe -o test/ppx_deriving_qcheck/deriver/qcheck2/.test_textual.eobjs/native/dune__exe__Test_variants.cmx -c -impl test/ppx_deriving_qcheck/deriver/qcheck2/test_variants.pp.ml)
- File "test/ppx_deriving_qcheck/deriver/qcheck2/test_variants.ml", line 8, characters 0-53:
- 8 | type colors = Red | Green | Blue [@@deriving qcheck2]
-     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: QCheck2.Gen.frequency
- Use [oneof_weighted] instead
- 
- File "test/ppx_deriving_qcheck/deriver/qcheck2/test_variants.ml", line 19, characters 15-24:
- 19 | let gen = Gen.(frequency [1,pure Red; 1,pure Green; 1,pure Blue])
-                     ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.frequency
- Use [oneof_weighted] instead
- 
- File "test/ppx_deriving_qcheck/deriver/qcheck2/test_variants.ml", line 24, characters 0-63:
- 24 | type poly_colors = [`Red | `Green | `Blue] [@@deriving qcheck2]
-      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: QCheck2.Gen.frequency
- Use [oneof_weighted] instead
- 
- File "test/ppx_deriving_qcheck/deriver/qcheck2/test_variants.ml", line 35, characters 40-49:
- 35 | let gen_poly : poly_colors Gen.t = Gen.(frequency [1,pure `Red; 1,pure `Green; 1,pure `Blue])
-                                              ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.frequency
- Use [oneof_weighted] instead
- 
- File "test/ppx_deriving_qcheck/deriver/qcheck2/test_variants.ml", lines 43-46, characters 0-20:
- 43 | type letters =
- 44 |   | A [@weight 0]
- 45 |   | B
- 46 | [@@deriving qcheck2]
- Alert deprecated: QCheck2.Gen.frequency
- Use [oneof_weighted] instead
- 
- File "test/ppx_deriving_qcheck/deriver/qcheck2/test_variants.ml", lines 57-61, characters 0-20:
- 57 | type poly_letters = [
- 58 |     | `A [@weight 0]
- 59 |     | `B
- 60 |   ]
- 61 | [@@deriving qcheck2]
- Alert deprecated: QCheck2.Gen.frequency
- Use [oneof_weighted] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I test/ppx_deriving_qcheck/deriver/qcheck2/.test_textual.eobjs/byte -I test/ppx_deriving_qcheck/deriver/qcheck2/.test_textual.eobjs/native -I /home/opam/.opam/5.4/lib/alcotest -I /home/opam/.opam/5.4/lib/alcotest/engine -I /home/opam/.opam/5.4/lib/alcotest/stdlib_ext -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fmt/cli -I /home/opam/.opam/5.4/lib/fmt/tty -I /home/opam/.opam/5.4/lib/ocaml-compiler-libs/common -I /home/opam/.opam/5.4/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/5.4/lib/ocaml/compiler-libs -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ppx_derivers -I /home/opam/.opam/5.4/lib/ppxlib -I /home/opam/.opam/5.4/lib/ppxlib/ast -I /home/opam/.opam/5.4/lib/ppxlib/astlib -I /home/opam/.opam/5.4/lib/ppxlib/print_diff -I /home/opam/.opam/5.4/lib/ppxlib/stdppx -I /home/opam/.opam/5.4/lib/ppxlib/traverse_builtins -I /home/opam/.opam/5.4/lib/qcheck-alcotest -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/qcheck-core/runner -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/sexplib0 -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/uutf -I src/ppx_deriving_qcheck/.ppx_deriving_qcheck.objs/byte -I src/ppx_deriving_qcheck/.ppx_deriving_qcheck.objs/native -cmi-file test/ppx_deriving_qcheck/deriver/qcheck2/.test_textual.eobjs/byte/dune__exe__Test_mutual.cmi -no-alias-deps -open Dune__exe -o test/ppx_deriving_qcheck/deriver/qcheck2/.test_textual.eobjs/native/dune__exe__Test_mutual.cmx -c -impl test/ppx_deriving_qcheck/deriver/qcheck2/test_mutual.pp.ml)
- File "test/ppx_deriving_qcheck/deriver/qcheck2/test_mutual.ml", lines 4-6, characters 0-20:
- 4 | type tree = Leaf | Node of  tree * tree
- 5 | and name  = { a: tree }
- 6 | [@@deriving qcheck2]
- Alert deprecated: QCheck2.Gen.frequency
- Use [oneof_weighted] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I test/ppx_deriving_qcheck/deriver/qcheck/.test_textual.eobjs/byte -I test/ppx_deriving_qcheck/deriver/qcheck/.test_textual.eobjs/native -I /home/opam/.opam/5.4/lib/alcotest -I /home/opam/.opam/5.4/lib/alcotest/engine -I /home/opam/.opam/5.4/lib/alcotest/stdlib_ext -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fmt/cli -I /home/opam/.opam/5.4/lib/fmt/tty -I /home/opam/.opam/5.4/lib/ocaml-compiler-libs/common -I /home/opam/.opam/5.4/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/5.4/lib/ocaml/compiler-libs -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ppx_derivers -I /home/opam/.opam/5.4/lib/ppxlib -I /home/opam/.opam/5.4/lib/ppxlib/ast -I /home/opam/.opam/5.4/lib/ppxlib/astlib -I /home/opam/.opam/5.4/lib/ppxlib/print_diff -I /home/opam/.opam/5.4/lib/ppxlib/stdppx -I /home/opam/.opam/5.4/lib/ppxlib/traverse_builtins -I /home/opam/.opam/5.4/lib/qcheck-alcotest -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/qcheck-core/runner -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/sexplib0 -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/uutf -I src/ppx_deriving_qcheck/.ppx_deriving_qcheck.objs/byte -I src/ppx_deriving_qcheck/.ppx_deriving_qcheck.objs/native -cmi-file test/ppx_deriving_qcheck/deriver/qcheck/.test_textual.eobjs/byte/dune__exe__Test_primitives.cmi -no-alias-deps -open Dune__exe -o test/ppx_deriving_qcheck/deriver/qcheck/.test_textual.eobjs/native/dune__exe__Test_primitives.cmx -c -impl test/ppx_deriving_qcheck/deriver/qcheck/test_primitives.pp.ml)
- File "test/ppx_deriving_qcheck/deriver/qcheck/test_primitives.ml", line 39, characters 0-39:
- 39 | type int32' = int32 [@@deriving qcheck]
-      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: QCheck.Gen.ui32
- Use [int32] instead
- 
- File "test/ppx_deriving_qcheck/deriver/qcheck/test_primitives.ml", line 44, characters 0-39:
- 44 | type int64' = int64 [@@deriving qcheck]
-      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: QCheck.Gen.ui64
- Use [int64] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I test/ppx_deriving_qcheck/deriver/qcheck2/.test_textual.eobjs/byte -I test/ppx_deriving_qcheck/deriver/qcheck2/.test_textual.eobjs/native -I /home/opam/.opam/5.4/lib/alcotest -I /home/opam/.opam/5.4/lib/alcotest/engine -I /home/opam/.opam/5.4/lib/alcotest/stdlib_ext -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fmt/cli -I /home/opam/.opam/5.4/lib/fmt/tty -I /home/opam/.opam/5.4/lib/ocaml-compiler-libs/common -I /home/opam/.opam/5.4/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/5.4/lib/ocaml/compiler-libs -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ppx_derivers -I /home/opam/.opam/5.4/lib/ppxlib -I /home/opam/.opam/5.4/lib/ppxlib/ast -I /home/opam/.opam/5.4/lib/ppxlib/astlib -I /home/opam/.opam/5.4/lib/ppxlib/print_diff -I /home/opam/.opam/5.4/lib/ppxlib/stdppx -I /home/opam/.opam/5.4/lib/ppxlib/traverse_builtins -I /home/opam/.opam/5.4/lib/qcheck-alcotest -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/qcheck-core/runner -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/sexplib0 -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/uutf -I src/ppx_deriving_qcheck/.ppx_deriving_qcheck.objs/byte -I src/ppx_deriving_qcheck/.ppx_deriving_qcheck.objs/native -cmi-file test/ppx_deriving_qcheck/deriver/qcheck2/.test_textual.eobjs/byte/dune__exe__Test_recursive.cmi -no-alias-deps -open Dune__exe -o test/ppx_deriving_qcheck/deriver/qcheck2/.test_textual.eobjs/native/dune__exe__Test_recursive.cmx -c -impl test/ppx_deriving_qcheck/deriver/qcheck2/test_recursive.pp.ml)
- File "test/ppx_deriving_qcheck/deriver/qcheck2/test_recursive.ml", lines 4-5, characters 0-20:
- 4 | type 'a tree = Leaf | Node of 'a * 'a tree * 'a tree
- 5 | [@@deriving qcheck2]
- Alert deprecated: QCheck2.Gen.frequency
- Use [oneof_weighted] instead
- 
- File "test/ppx_deriving_qcheck/deriver/qcheck2/test_recursive.ml", lines 56-57, characters 0-20:
- 56 | type 'a my_list = Cons of 'a * 'a my_list | Nil
- 57 | [@@deriving qcheck2]
- Alert deprecated: QCheck2.Gen.frequency
- Use [oneof_weighted] instead
- 
- File "test/ppx_deriving_qcheck/deriver/qcheck2/test_recursive.ml", line 66, characters 4-17:
- 66 |     Gen.small_int
-          ^^^^^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_int
- Use [nat_small] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I test/ppx_deriving_qcheck/deriver/qcheck/.test_textual.eobjs/byte -I test/ppx_deriving_qcheck/deriver/qcheck/.test_textual.eobjs/native -I /home/opam/.opam/5.4/lib/alcotest -I /home/opam/.opam/5.4/lib/alcotest/engine -I /home/opam/.opam/5.4/lib/alcotest/stdlib_ext -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fmt/cli -I /home/opam/.opam/5.4/lib/fmt/tty -I /home/opam/.opam/5.4/lib/ocaml-compiler-libs/common -I /home/opam/.opam/5.4/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/5.4/lib/ocaml/compiler-libs -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ppx_derivers -I /home/opam/.opam/5.4/lib/ppxlib -I /home/opam/.opam/5.4/lib/ppxlib/ast -I /home/opam/.opam/5.4/lib/ppxlib/astlib -I /home/opam/.opam/5.4/lib/ppxlib/print_diff -I /home/opam/.opam/5.4/lib/ppxlib/stdppx -I /home/opam/.opam/5.4/lib/ppxlib/traverse_builtins -I /home/opam/.opam/5.4/lib/qcheck-alcotest -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/qcheck-core/runner -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/sexplib0 -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/uutf -I src/ppx_deriving_qcheck/.ppx_deriving_qcheck.objs/byte -I src/ppx_deriving_qcheck/.ppx_deriving_qcheck.objs/native -cmi-file test/ppx_deriving_qcheck/deriver/qcheck/.test_textual.eobjs/byte/dune__exe__Test_variants.cmi -no-alias-deps -open Dune__exe -o test/ppx_deriving_qcheck/deriver/qcheck/.test_textual.eobjs/native/dune__exe__Test_variants.cmx -c -impl test/ppx_deriving_qcheck/deriver/qcheck/test_variants.pp.ml)
- File "test/ppx_deriving_qcheck/deriver/qcheck/test_variants.ml", line 8, characters 0-52:
- 8 | type colors = Red | Green | Blue [@@deriving qcheck]
-     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: QCheck.Gen.frequency
- Use [oneof_weighted] instead
- 
- File "test/ppx_deriving_qcheck/deriver/qcheck/test_variants.ml", line 19, characters 10-16:
- 19 | let arb = oneofl [Red; Green; Blue]
-                ^^^^^^
- Alert deprecated: QCheck.oneofl
- Use [oneof_list] instead
- 
- File "test/ppx_deriving_qcheck/deriver/qcheck/test_variants.ml", line 24, characters 0-62:
- 24 | type poly_colors = [`Red | `Green | `Blue] [@@deriving qcheck]
-      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- Alert deprecated: QCheck.Gen.frequency
- Use [oneof_weighted] instead
- 
- File "test/ppx_deriving_qcheck/deriver/qcheck/test_variants.ml", line 35, characters 15-21:
- 35 | let arb_poly = oneofl [`Red; `Green; `Blue]
-                     ^^^^^^
- Alert deprecated: QCheck.oneofl
- Use [oneof_list] instead
- 
- File "test/ppx_deriving_qcheck/deriver/qcheck/test_variants.ml", lines 43-46, characters 0-19:
- 43 | type letters =
- 44 |   | A [@weight 0]
- 45 |   | B
- 46 | [@@deriving qcheck]
- Alert deprecated: QCheck.Gen.frequency
- Use [oneof_weighted] instead
- 
- File "test/ppx_deriving_qcheck/deriver/qcheck/test_variants.ml", lines 57-61, characters 0-19:
- 57 | type poly_letters = [
- 58 |     | `A [@weight 0]
- 59 |     | `B
- 60 |   ]
- 61 | [@@deriving qcheck]
- Alert deprecated: QCheck.Gen.frequency
- Use [oneof_weighted] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I test/ppx_deriving_qcheck/deriver/qcheck/.test_textual.eobjs/byte -I test/ppx_deriving_qcheck/deriver/qcheck/.test_textual.eobjs/native -I /home/opam/.opam/5.4/lib/alcotest -I /home/opam/.opam/5.4/lib/alcotest/engine -I /home/opam/.opam/5.4/lib/alcotest/stdlib_ext -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/fmt -I /home/opam/.opam/5.4/lib/fmt/cli -I /home/opam/.opam/5.4/lib/fmt/tty -I /home/opam/.opam/5.4/lib/ocaml-compiler-libs/common -I /home/opam/.opam/5.4/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/5.4/lib/ocaml/compiler-libs -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ppx_derivers -I /home/opam/.opam/5.4/lib/ppxlib -I /home/opam/.opam/5.4/lib/ppxlib/ast -I /home/opam/.opam/5.4/lib/ppxlib/astlib -I /home/opam/.opam/5.4/lib/ppxlib/print_diff -I /home/opam/.opam/5.4/lib/ppxlib/stdppx -I /home/opam/.opam/5.4/lib/ppxlib/traverse_builtins -I /home/opam/.opam/5.4/lib/qcheck-alcotest -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/qcheck-core/runner -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/sexplib0 -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/uutf -I src/ppx_deriving_qcheck/.ppx_deriving_qcheck.objs/byte -I src/ppx_deriving_qcheck/.ppx_deriving_qcheck.objs/native -cmi-file test/ppx_deriving_qcheck/deriver/qcheck/.test_textual.eobjs/byte/dune__exe__Test_recursive.cmi -no-alias-deps -open Dune__exe -o test/ppx_deriving_qcheck/deriver/qcheck/.test_textual.eobjs/native/dune__exe__Test_recursive.cmx -c -impl test/ppx_deriving_qcheck/deriver/qcheck/test_recursive.pp.ml)
- File "test/ppx_deriving_qcheck/deriver/qcheck/test_recursive.ml", lines 4-5, characters 0-19:
- 4 | type 'a tree = Leaf | Node of 'a * 'a tree * 'a tree
- 5 | [@@deriving qcheck]
- Alert deprecated: QCheck.Gen.frequency
- Use [oneof_weighted] instead
- 
- File "test/ppx_deriving_qcheck/deriver/qcheck/test_recursive.ml", lines 58-59, characters 0-19:
- 58 | type 'a my_list = Cons of 'a * 'a my_list | Nil
- 59 | [@@deriving qcheck]
- Alert deprecated: QCheck.Gen.frequency
- Use [oneof_weighted] instead
- 
- File "test/ppx_deriving_qcheck/deriver/qcheck/test_recursive.ml", line 68, characters 4-13:
- 68 |     small_int
-          ^^^^^^^^^
- Alert deprecated: QCheck.small_int
- Use [nat_small] instead
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck && ./test_variants.exe)
- qcheck random seed: 445436142
- Testing `Test_Variant'.
- This run has ID `PANT2AZJ'.
- 
-   [OK]          Variants          0   test_variants.
-   [OK]          Variants          1   test_poly_variants.
-   [OK]          Variants          2   arb_letters always produces B.
-   [OK]          Variants          3   arb_poly_letters always produces B.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/ppx_deriving_qcheck.0.7/_build/default/test/ppx_deriving_qcheck/deriver/qcheck/_build/_tests/Test_Variant'.
- Test Successful in 0.001s. 4 tests run.
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck2 && ./test_primitives.exe)
- Testing `Test_Primitives'.
- This run has ID `H0PTM31B'.
- 
-   [OK]          Primitives          0   test_int.
-   [OK]          Primitives          1   test_unit.
-   [OK]          Primitives          2   test_string.
-   [OK]          Primitives          3   test_char.
-   [OK]          Primitives          4   test_bool.
-   [OK]          Primitives          5   test_float.
-   [OK]          Primitives          6   test_int32.
-   [OK]          Primitives          7   test_int64.
-   [OK]          Primitives          8   test_option.
-   [OK]          Primitives          9   test_array.
-   [OK]          Primitives         10   test_list.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/ppx_deriving_qcheck.0.7/_build/default/test/ppx_deriving_qcheck/deriver/qcheck2/_build/_tests/Test_Primitives'.
- Test Successful in 0.021s. 11 tests run.
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck2 && ./test_recursive.exe)
- qcheck random seed: 1530360
- Testing `Test_Recursive'.
- This run has ID `81S6AHKC'.
- 
-   [OK]          Recursive          0   test_tree_ref.
-   [OK]          Recursive          1   gen_tree_sized 0 = Node (_, Leaf, Leaf).
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/ppx_deriving_qcheck.0.7/_build/default/test/ppx_deriving_qcheck/deriver/qcheck2/_build/_tests/Test_Recursive'.
- Test Successful in 0.056s. 2 tests run.
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck && ./test_primitives.exe)
- Testing `Test_Primitives'.
- This run has ID `MNXDKH1F'.
- 
-   [OK]          Primitives          0   test_int.
-   [OK]          Primitives          1   test_unit.
-   [OK]          Primitives          2   test_string.
-   [OK]          Primitives          3   test_char.
-   [OK]          Primitives          4   test_bool.
-   [OK]          Primitives          5   test_float.
-   [OK]          Primitives          6   test_int32.
-   [OK]          Primitives          7   test_int64.
-   [OK]          Primitives          8   test_option.
-   [OK]          Primitives          9   test_array.
-   [OK]          Primitives         10   test_list.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/ppx_deriving_qcheck.0.7/_build/default/test/ppx_deriving_qcheck/deriver/qcheck/_build/_tests/Test_Primitives'.
- Test Successful in 0.013s. 11 tests run.
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck && ./test_qualified_names.exe)
- Testing `Test_Qualified_names'.
- This run has ID `ZVGSUXH2'.
- 
-   [OK]          Qualified names          0   test_module.
-   [OK]          Qualified names          1   test_functor.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/ppx_deriving_qcheck.0.7/_build/default/test/ppx_deriving_qcheck/deriver/qcheck/_build/_tests/Test_Qualified_names'.
- Test Successful in 0.000s. 2 tests run.
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck2 && ./test_qualified_names.exe)
- Testing `Test_Qualified_names'.
- This run has ID `8565UDGS'.
- 
-   [OK]          Qualified names          0   test_module.
-   [OK]          Qualified names          1   test_functor.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/ppx_deriving_qcheck.0.7/_build/default/test/ppx_deriving_qcheck/deriver/qcheck2/_build/_tests/Test_Qualified_names'.
- Test Successful in 0.001s. 2 tests run.
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck && ./test_tuple.exe)
- qcheck random seed: 780336344
- Testing `Test_Tuple'.
- This run has ID `K4KH9140'.
- 
-   [OK]          Tuple          0   forall x in ('a', 'b'): x = ('a', 'b').
-   [OK]          Tuple          1   forall x in ('a', 'b', 'c'): x = ('a', 'b'...
-   [OK]          Tuple          2   forall x in ('a', 'b', 'c', 'd'): x = ('a'...
-   [OK]          Tuple          3   forall x in ('a', 'b', 'c', 'd', 'e'): x =...
-   [OK]          Tuple          4   forall x in ('a', 'b', 'c', 'd', 'e', 'f')...
-   [OK]          Tuple          5   forall x in ('a', 'b', 'c', 'd', 'e', 'f',...
-   [OK]          Tuple          6   forall x in ('a', 'b', 'c', 'd', 'e', 'f',...
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/ppx_deriving_qcheck.0.7/_build/default/test/ppx_deriving_qcheck/deriver/qcheck/_build/_tests/Test_Tuple'.
- Test Successful in 0.002s. 7 tests run.
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck2 && ./test_variants.exe)
- qcheck random seed: 736264665
- Testing `Test_Variant'.
- This run has ID `PUS5DYUE'.
- 
-   [OK]          Variants          0   test_variants.
-   [OK]          Variants          1   test_poly_variants.
-   [OK]          Variants          2   gen_letters always produces B.
-   [OK]          Variants          3   gen_poly_letters always produces B.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/ppx_deriving_qcheck.0.7/_build/default/test/ppx_deriving_qcheck/deriver/qcheck2/_build/_tests/Test_Variant'.
- Test Successful in 0.002s. 4 tests run.
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck && ./test_recursive.exe)
- qcheck random seed: 694834626
- Testing `Test_Recursive'.
- This run has ID `3TJ6QRXT'.
- 
-   [OK]          Recursive          0   test_tree_ref.
-   [OK]          Recursive          1   arb_tree_sized 0 = Node (_, Leaf, Leaf).
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/ppx_deriving_qcheck.0.7/_build/default/test/ppx_deriving_qcheck/deriver/qcheck/_build/_tests/Test_Recursive'.
- Test Successful in 0.046s. 2 tests run.
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck2 && ./test_mutual.exe)
- qcheck random seed: 668019323
- Testing `Test_Recursive'.
- This run has ID `U092MVKD'.
- 
-   [OK]          Recursive          0   test_tree_ref.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/ppx_deriving_qcheck.0.7/_build/default/test/ppx_deriving_qcheck/deriver/qcheck2/_build/_tests/Test_Recursive'.
- Test Successful in 0.040s. 1 test run.
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck && ./test_record.exe)
- Testing `Test_Record'.
- This run has ID `SU57RZVI'.
- 
-   [OK]          Record          0   test_env.
-   [OK]          Record          1   test_color.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/ppx_deriving_qcheck.0.7/_build/default/test/ppx_deriving_qcheck/deriver/qcheck/_build/_tests/Test_Record'.
- Test Successful in 0.694s. 2 tests run.
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck2 && ./test_textual.exe)
- Testing `ppx_deriving_qcheck tests'.
- This run has ID `MHXJ7FH1'.
- 
-   [OK]          deriving generator good          0   deriving int.
-   [OK]          deriving generator good          1   deriving float.
-   [OK]          deriving generator good          2   deriving char.
-   [OK]          deriving generator good          3   deriving string.
-   [OK]          deriving generator good          4   deriving unit.
-   [OK]          deriving generator good          5   deriving bool.
-   [OK]          deriving generator good          6   deriving int32.
-   [OK]          deriving generator good          7   deriving int32'.
-   [OK]          deriving generator good          8   deriving int64.
-   [OK]          deriving generator good          9   deriving int64'.
-   [OK]          deriving generator good         10   deriving tuple.
-   [OK]          deriving generator good         11   deriving option.
-   [OK]          deriving generator good         12   deriving array.
-   [OK]          deriving generator good         13   deriving list.
-   [OK]          deriving generator good         14   deriving constructors.
-   [OK]          deriving generator good         15   deriving dependencies.
-   [OK]          deriving generator good         16   deriving record.
-   [OK]          deriving generator good         17   deriving equal.
-   [OK]          deriving generator good         18   deriving tree like.
-   [OK]          deriving generator good         19   deriving expr like.
-   [OK]          deriving generator good         20   deriving alpha.
-   [OK]          deriving generator good         21   deriving variant.
-   [OK]          deriving generator good         22   deriving weight construc...
-   [OK]          deriving generator good         23   deriving forest.
-   [OK]          deriving generator good         24   deriving fun primitives.
-   [OK]          deriving generator good         25   deriving fun option.
-   [OK]          deriving generator good         26   deriving fun array.
-   [OK]          deriving generator good         27   deriving fun list.
-   [OK]          deriving generator good         28   deriving fun n.
-   [OK]          deriving generator good         29   deriving fun tuple.
-   [OK]          deriving generator good         30   deriving rec poly variants.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/ppx_deriving_qcheck.0.7/_build/default/test/ppx_deriving_qcheck/deriver/qcheck2/_build/_tests/ppx_deriving_qcheck tests'.
- Test Successful in 0.020s. 31 tests run.
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck && ./test_textual.exe)
- Testing `ppx_deriving_qcheck tests'.
- This run has ID `438Y1I1M'.
- 
-   [OK]          deriving generator good          0   deriving int.
-   [OK]          deriving generator good          1   deriving float.
-   [OK]          deriving generator good          2   deriving char.
-   [OK]          deriving generator good          3   deriving string.
-   [OK]          deriving generator good          4   deriving unit.
-   [OK]          deriving generator good          5   deriving bool.
-   [OK]          deriving generator good          6   deriving int32.
-   [OK]          deriving generator good          7   deriving int32'.
-   [OK]          deriving generator good          8   deriving int64.
-   [OK]          deriving generator good          9   deriving int64'.
-   [OK]          deriving generator good         10   deriving tuple.
-   [OK]          deriving generator good         11   deriving option.
-   [OK]          deriving generator good         12   deriving array.
-   [OK]          deriving generator good         13   deriving list.
-   [OK]          deriving generator good         14   deriving constructors.
-   [OK]          deriving generator good         15   deriving dependencies.
-   [OK]          deriving generator good         16   deriving record.
-   [OK]          deriving generator good         17   deriving equal.
-   [OK]          deriving generator good         18   deriving tree like.
-   [OK]          deriving generator good         19   deriving expr like.
-   [OK]          deriving generator good         20   deriving alpha.
-   [OK]          deriving generator good         21   deriving variant.
-   [OK]          deriving generator good         22   deriving weight construc...
-   [OK]          deriving generator good         23   deriving forest.
-   [OK]          deriving generator good         24   deriving fun primitives.
-   [OK]          deriving generator good         25   deriving fun option.
-   [OK]          deriving generator good         26   deriving fun array.
-   [OK]          deriving generator good         27   deriving fun list.
-   [OK]          deriving generator good         28   deriving fun n.
-   [OK]          deriving generator good         29   deriving fun tuple.
-   [OK]          deriving generator good         30   deriving rec poly variants.
-   [OK]          deriving generator good         31   deriving variant with un...
-   [OK]          deriving generator good         32   deriving rec type in a t...
-   [OK]          deriving generator good         33   deriving rec type in a t...
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/ppx_deriving_qcheck.0.7/_build/default/test/ppx_deriving_qcheck/deriver/qcheck/_build/_tests/ppx_deriving_qcheck tests'.
- Test Successful in 0.026s. 34 tests run.
-> compiled  ppx_deriving_qcheck.0.7
-> removed   ppx_deriving_qcheck.0.7
-> installed ppx_deriving_qcheck.0.7
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-20 10:29.29 ---> saved as "623f89e9a8757a5cf23a2be5dea28401dc0444e1b2932281c1ea8f812b9270cf"
Job succeeded
2026-03-20 10:30.03: Job succeeded