(not at the head of any monitored branch or PR)
2026-03-19 09:47.34: 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 (387e2f5b0d8ca5a51f4ba81536f829fd909dafd1)
                              on debian-13-ocaml-4.14/amd64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29563/head" && git reset --hard 387e2f5b
git fetch origin master
git merge --no-edit 9f189ca4f94fbb5f0045820bf3c4ffafb21145ef
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e
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-19 09:47.34: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e-ppxlib.0.38.0-ppx_deriving_qcheck.0.7-387e2f5b0d8ca5a51f4ba81536f829fd909dafd1"
2026-03-19 09:47.34: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
 (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-19 09:47.34: Waiting for resource in pool OCluster
2026-03-19 10:40.50: Waiting for worker…
2026-03-19 10:42.32: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at 9f189ca4f9 Merge pull request #29562 from shonfeder/release-dune-3.22.0
Updating 9f189ca4f9..387e2f5b0d
Fast-forward
 packages/ppxlib-tools/ppxlib-tools.0.38.0/opam | 46 +++++++++++++++++++
 packages/ppxlib/ppxlib.0.38.0/opam             | 63 ++++++++++++++++++++++++++
 2 files changed, 109 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-4.14@sha256:37323dc71cac48a3e4688e16b45b95486f3cc440c55ab3f83114e8973362f41e)
2026-03-19 10:42.53 ---> using "32cd5b5baf995c02200cf270da597dbb25becd220af2c200c00b8b241a742195" 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-19 10:42.53 ---> using "f3ed7bdbef828c9c0b079b10505c5f05c3c9adcca11ce5bf2dac2a4183e099d8" 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
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
           opam option jobs=71 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-19 10:42.53 ---> using "5bf6adb7b45bb7e0c215b8f509c71a8dae73a9a2060efcc27df9d4ef6c6d3350" 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                 255
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages    ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.2
2026-03-19 10:42.53 ---> using "0546f18fa5979677ee22eb9f2fcf19ab371564e845d317c2c70e41dd97dc22dd" 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-19 10:42.53 ---> using "0a7188cbe95f4fe0ff26694977eb8794c975bdb534078da98a06d6c7373289b4" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-19 10:42.54 ---> using "fefa9924e0604c66f1b63db7279b36eedced1f983ba1c47733fb7cfa56139b72" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-19 10:42.54 ---> using "53e26a609c7de6302da009a0d221ee07df3c5dfa4227388d9c79a2518a55dcb0" 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 [115 kB]
- Fetched 10.0 MB in 1s (11.0 MB/s)
- Reading package lists...
- 
2026-03-19 10:42.54 ---> using "fdd8d751fb4b54449ac34bbfb1b82b1fc796cdd8e1f6b3aa49ab7fbeb661a77c" 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-19 10:42.54 ---> using "14ae3bf112473780bb63ba3353907a440e666f94e2c715c888c53852d2f55d09" 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.12.4         [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.12.4  (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.12.4
-> installed ppxlib.0.38.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-19 10:42.54 ---> using "2a66371f05f597ba1fbaf6b705b1d6e7d3ee38447debc1bedb841c891c9b57b4" 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-19 10:43.05 ---> saved as "fb7133d5bc1bf72756d05665f3633b58d26d439059a6f87a7a71c9b6327a4ca5"

/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)
-> installed ocaml-syntax-shims.1.0.0
-> retrieved topkg.1.1.1  (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> 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-19 10:43.23 ---> saved as "e26451d591f305cd5b59ffb55a8e71ed155aa06bfdb7f3a0ea3ffa92df9970a9"

/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" "255" (CWD=/home/opam/.opam/4.14/.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" "255" (CWD=/home/opam/.opam/4.14/.opam-switch/build/ppx_deriving_qcheck.0.7)
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I test/ppx_deriving_qcheck/deriver/qcheck2/.test_textual.eobjs/byte -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/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/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I test/ppx_deriving_qcheck/deriver/qcheck2/.test_textual.eobjs/byte -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/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/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I test/ppx_deriving_qcheck/deriver/qcheck2/.test_textual.eobjs/byte -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/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/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I test/ppx_deriving_qcheck/deriver/qcheck2/.test_textual.eobjs/byte -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/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/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I test/ppx_deriving_qcheck/deriver/qcheck/.test_textual.eobjs/byte -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/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/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I test/ppx_deriving_qcheck/deriver/qcheck/.test_textual.eobjs/byte -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/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/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I test/ppx_deriving_qcheck/deriver/qcheck/.test_textual.eobjs/byte -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/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/4.14/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/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -I src/ppx_deriving_qcheck/.ppx_deriving_qcheck.objs/byte -I src/ppx_deriving_qcheck/.ppx_deriving_qcheck.objs/native -intf-suffix .ml -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/4.14/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/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -I src/ppx_deriving_qcheck/.ppx_deriving_qcheck.objs/byte -I src/ppx_deriving_qcheck/.ppx_deriving_qcheck.objs/native -intf-suffix .ml -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/4.14/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/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -I src/ppx_deriving_qcheck/.ppx_deriving_qcheck.objs/byte -I src/ppx_deriving_qcheck/.ppx_deriving_qcheck.objs/native -intf-suffix .ml -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/4.14/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/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -I src/ppx_deriving_qcheck/.ppx_deriving_qcheck.objs/byte -I src/ppx_deriving_qcheck/.ppx_deriving_qcheck.objs/native -intf-suffix .ml -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/4.14/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/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -I src/ppx_deriving_qcheck/.ppx_deriving_qcheck.objs/byte -I src/ppx_deriving_qcheck/.ppx_deriving_qcheck.objs/native -intf-suffix .ml -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/4.14/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/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -I src/ppx_deriving_qcheck/.ppx_deriving_qcheck.objs/byte -I src/ppx_deriving_qcheck/.ppx_deriving_qcheck.objs/native -intf-suffix .ml -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/4.14/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/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -I src/ppx_deriving_qcheck/.ppx_deriving_qcheck.objs/byte -I src/ppx_deriving_qcheck/.ppx_deriving_qcheck.objs/native -intf-suffix .ml -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/qcheck2 && ./test_qualified_names.exe)
- Testing `Test_Qualified_names'.
- This run has ID `6ZGXIC6U'.
- 
-   [OK]          Qualified names          0   test_module.
-   [OK]          Qualified names          1   test_functor.
- 
- Full test results in `~/.opam/4.14/.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.000s. 2 tests run.
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck2 && ./test_variants.exe)
- qcheck random seed: 21718843
- Testing `Test_Variant'.
- This run has ID `OWOPOOFT'.
- 
-   [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/4.14/.opam-switch/build/ppx_deriving_qcheck.0.7/_build/default/test/ppx_deriving_qcheck/deriver/qcheck2/_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 `QZ5WSR9G'.
- 
-   [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/4.14/.opam-switch/build/ppx_deriving_qcheck.0.7/_build/default/test/ppx_deriving_qcheck/deriver/qcheck2/_build/_tests/Test_Primitives'.
- Test Successful in 0.005s. 11 tests run.
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck2 && ./test_mutual.exe)
- qcheck random seed: 381444308
- Testing `Test_Recursive'.
- This run has ID `2GQCSE4E'.
- 
-   [OK]          Recursive          0   test_tree_ref.
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/ppx_deriving_qcheck.0.7/_build/default/test/ppx_deriving_qcheck/deriver/qcheck2/_build/_tests/Test_Recursive'.
- Test Successful in 0.008s. 1 test run.
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck && ./test_qualified_names.exe)
- Testing `Test_Qualified_names'.
- This run has ID `T4QJYUFL'.
- 
-   [OK]          Qualified names          0   test_module.
-   [OK]          Qualified names          1   test_functor.
- 
- Full test results in `~/.opam/4.14/.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/qcheck && ./test_tuple.exe)
- qcheck random seed: 693150988
- Testing `Test_Tuple'.
- This run has ID `LM8C0QG3'.
- 
-   [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/4.14/.opam-switch/build/ppx_deriving_qcheck.0.7/_build/default/test/ppx_deriving_qcheck/deriver/qcheck/_build/_tests/Test_Tuple'.
- Test Successful in 0.001s. 7 tests run.
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck && ./test_variants.exe)
- qcheck random seed: 846696928
- Testing `Test_Variant'.
- This run has ID `77RYF78W'.
- 
-   [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/4.14/.opam-switch/build/ppx_deriving_qcheck.0.7/_build/default/test/ppx_deriving_qcheck/deriver/qcheck/_build/_tests/Test_Variant'.
- Test Successful in 0.000s. 4 tests run.
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck && ./test_primitives.exe)
- Testing `Test_Primitives'.
- This run has ID `PRQYFR4Q'.
- 
-   [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/4.14/.opam-switch/build/ppx_deriving_qcheck.0.7/_build/default/test/ppx_deriving_qcheck/deriver/qcheck/_build/_tests/Test_Primitives'.
- Test Successful in 0.003s. 11 tests run.
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck2 && ./test_recursive.exe)
- qcheck random seed: 714818668
- Testing `Test_Recursive'.
- This run has ID `OCXZ6QB5'.
- 
-   [OK]          Recursive          0   test_tree_ref.
-   [OK]          Recursive          1   gen_tree_sized 0 = Node (_, Leaf, Leaf).
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/ppx_deriving_qcheck.0.7/_build/default/test/ppx_deriving_qcheck/deriver/qcheck2/_build/_tests/Test_Recursive'.
- Test Successful in 0.008s. 2 tests run.
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck && ./test_recursive.exe)
- qcheck random seed: 127100357
- Testing `Test_Recursive'.
- This run has ID `L9LZQD75'.
- 
-   [OK]          Recursive          0   test_tree_ref.
-   [OK]          Recursive          1   arb_tree_sized 0 = Node (_, Leaf, Leaf).
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/ppx_deriving_qcheck.0.7/_build/default/test/ppx_deriving_qcheck/deriver/qcheck/_build/_tests/Test_Recursive'.
- Test Successful in 0.005s. 2 tests run.
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck && ./test_record.exe)
- Testing `Test_Record'.
- This run has ID `AJTFWWOP'.
- 
-   [OK]          Record          0   test_env.
-   [OK]          Record          1   test_color.
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/ppx_deriving_qcheck.0.7/_build/default/test/ppx_deriving_qcheck/deriver/qcheck/_build/_tests/Test_Record'.
- Test Successful in 0.111s. 2 tests run.
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck2 && ./test_textual.exe)
- Testing `ppx_deriving_qcheck tests'.
- This run has ID `VRKIYTN5'.
- 
-   [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/4.14/.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.006s. 31 tests run.
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck && ./test_textual.exe)
- Testing `ppx_deriving_qcheck tests'.
- This run has ID `0O6603LY'.
- 
-   [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/4.14/.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.008s. 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-19 10:43.31 ---> saved as "a24eed7261a2880da4a4c43d21da81de78a5870ddcbacab99606e1eb8ed6f062"
Job succeeded
2026-03-19 10:43.38: Job succeeded