Build:
  1. 0
2025-12-21 22:55.31: New job: test ppx_deriving_qcheck.0.7 with qcheck-alcotest.0.91, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29123/head (3abc5e19a0570a67c50eff574c3afafed94ce314)
                              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/29123/head" && git reset --hard 3abc5e19
git fetch origin master
git merge --no-edit 946c37ec4bd5d51e99c14e0041cf4db8009530dc
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04
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 qcheck-alcotest.0.91 0.91
RUN opam reinstall qcheck-alcotest.0.91; \
    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" != 'qcheck-alcotest.0.91' && 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 .

2025-12-21 22:55.31: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04-qcheck-alcotest.0.91-ppx_deriving_qcheck.0.7-3abc5e19a0570a67c50eff574c3afafed94ce314"
2025-12-21 22:55.31: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04)
 (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 qcheck-alcotest.0.91 0.91"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall qcheck-alcotest.0.91;\
             \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\" != 'qcheck-alcotest.0.91' && 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"))
)

2025-12-21 22:55.31: Waiting for resource in pool OCluster
2025-12-22 02:48.50: Waiting for worker…
2025-12-22 02:57.01: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at 946c37ec4b Merge pull request #29113 from redianthus/synchronizer
Updating 946c37ec4b..3abc5e19a0
Fast-forward
 packages/qcheck-alcotest/qcheck-alcotest.0.91/opam | 37 +++++++++++++++++++
 packages/qcheck-core/qcheck-core.0.91/opam         | 38 ++++++++++++++++++++
 packages/qcheck-ounit/qcheck-ounit.0.91/opam       | 37 +++++++++++++++++++
 packages/qcheck/qcheck.0.91/opam                   | 42 ++++++++++++++++++++++
 4 files changed, 154 insertions(+)
 create mode 100644 packages/qcheck-alcotest/qcheck-alcotest.0.91/opam
 create mode 100644 packages/qcheck-core/qcheck-core.0.91/opam
 create mode 100644 packages/qcheck-ounit/qcheck-ounit.0.91/opam
 create mode 100644 packages/qcheck/qcheck.0.91/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:8c62cc7b043f64833949d4049211997093b28a2f1b98377748d3e185ae301c04)
2025-12-22 02:57.03 ---> using "5f87df8c1f6f0886e7311dfd3df40b8bbb961cc34c83c0d033c6dd248c84bc7d" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-12-22 02:57.03 ---> using "f1296791f2d76481058db697105a569091a6b6345f05c94bbc5a650f1a364f9a" 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
2025-12-22 02:57.03 ---> using "0cac9a31b4750e6a46df8ed8d2f68352091a988199fdf62c52779549510cd6bf" 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       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
2025-12-22 02:57.03 ---> using "1deb91dc3badca969976ed6f3bc5fe7c443d73a2cfa957be662fd6f93e30aa7b" 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/"))
2025-12-22 02:57.03 ---> using "1a02438c8753bf7228a9eb625e65b7af26778a022b9ce0b16be5ef4f294c58cd" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-12-22 02:57.04 ---> using "d056a15953057465d2286f7292cf0270de87ff26d856aa652b6730fa8c6cd7be" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-22 02:57.04 ---> using "5821a994ed2b6888c3df54803c54601c99c5a74d52055b6bb8eb8cc545dc013d" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [93.7 kB]
- Fetched 184 kB in 0s (1572 kB/s)
- Reading package lists...
2025-12-22 02:57.04 ---> using "c97cfaaf686ed0021347041d059d36647677ec297a81e99e27e07358d2ec714f" from cache

/home/opam: (run (shell "opam pin add -k version -yn qcheck-alcotest.0.91 0.91"))
qcheck-alcotest is now pinned to version 0.91
2025-12-22 02:57.04 ---> using "35be0b4a500aaa1780aa33df5ecde8f920aec27b29ebfb010418e6d0e79eccfb" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall qcheck-alcotest.0.91;\
                        \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\" != 'qcheck-alcotest.0.91' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
qcheck-alcotest.0.91 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 14 packages
  - install alcotest           1.9.1         [required by qcheck-alcotest]
  - install astring            0.8.5         [required by alcotest]
  - install cmdliner           2.1.0         [required by alcotest]
  - install dune               3.20.2        [required by qcheck-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 ocamlfind          1.9.8         [required by fmt, astring, uutf]
  - install qcheck-alcotest    0.91 (pinned)
  - install qcheck-core        0.91          [required by qcheck-alcotest]
  - install re                 1.14.0        [required by alcotest]
  - install stdlib-shims       0.3.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  (cached)
-> retrieved astring.0.8.5  (cached)
-> retrieved cmdliner.2.1.0  (cached)
-> retrieved dune.3.20.2  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved qcheck-alcotest.0.91, qcheck-core.0.91  (cached)
-> retrieved re.1.14.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved uutf.1.0.4  (cached)
-> installed cmdliner.2.1.0
-> installed ocamlfind.1.9.8
-> 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 dune.3.20.2
-> installed stdlib-shims.0.3.0
-> installed ocaml-syntax-shims.1.0.0
-> installed re.1.14.0
-> installed qcheck-core.0.91
-> installed alcotest.1.9.1
-> installed qcheck-alcotest.0.91
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-22 02:57.04 ---> using "d53a991572c0a83c10adc7ad6654d2afe48af559863e3e65428d64b53b61fada" 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 7 packages
  - install cppo                1.8.0   [required by ppx_deriving]
  - install ocaml-compiler-libs v0.17.0 [required by ppxlib]
  - install ppx_derivers        1.2.1   [required by ppx_deriving]
  - install ppx_deriving        6.1.1   [required by ppx_deriving_qcheck]
  - install ppx_deriving_qcheck 0.7
  - install ppxlib              0.37.0  [required by ppx_deriving_qcheck]
  - install sexplib0            v0.17.0 [required by ppxlib]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cppo.1.8.0  (cached)
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_deriving.6.1.1  (cached)
-> retrieved ppx_deriving_qcheck.0.7  (cached)
-> retrieved ppxlib.0.37.0  (cached)
-> installed ppx_derivers.1.2.1
-> retrieved sexplib0.v0.17.0  (cached)
-> installed sexplib0.v0.17.0
-> installed cppo.1.8.0
-> installed ocaml-compiler-libs.v0.17.0
-> installed ppxlib.0.37.0
-> installed ppx_deriving.6.1.1
-> installed ppx_deriving_qcheck.0.7
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-22 02:57.28 ---> saved as "5771524e12bf7c7826041ddbe3e2cea3934aa759fb1542f59d9a5c066fa927b2"

/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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ppx_deriving_qcheck.0.7  (https://opam.ocaml.org/cache)
-> removed   ppx_deriving_qcheck.0.7
-> installed ppx_deriving_qcheck.0.7
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-22 02:57.38 ---> saved as "901260983259f85c8f0fcd9c3ff1f08427e98c5e38c845582ba17050b6029ab2"

/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/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" "255" (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/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/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/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/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_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/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_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_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/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/qcheck2 && ./test_qualified_names.exe)
- Testing `Test_Qualified_names'.
- This run has ID `K6E8MRLW'.
- 
-   [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.000s. 2 tests run.
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck2 && ./test_primitives.exe)
- Testing `Test_Primitives'.
- This run has ID `6SKV4QXP'.
- 
-   [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.006s. 11 tests run.
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck && ./test_qualified_names.exe)
- Testing `Test_Qualified_names'.
- This run has ID `HUHEJ40I'.
- 
-   [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/qcheck && ./test_primitives.exe)
- Testing `Test_Primitives'.
- This run has ID `LZ2W7TV8'.
- 
-   [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.002s. 11 tests run.
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck && ./test_variants.exe)
- qcheck random seed: 687154746
- Testing `Test_Variant'.
- This run has ID `I0JN1KZ1'.
- 
-   [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/qcheck && ./test_tuple.exe)
- qcheck random seed: 670432374
- Testing `Test_Tuple'.
- This run has ID `GHJ2ZBRM'.
- 
-   [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.001s. 7 tests run.
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck2 && ./test_variants.exe)
- qcheck random seed: 66144124
- Testing `Test_Variant'.
- This run has ID `R3CNBFOP'.
- 
-   [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.001s. 4 tests run.
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck2 && ./test_recursive.exe)
- qcheck random seed: 257739556
- Testing `Test_Recursive'.
- This run has ID `5746OT6U'.
- 
-   [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.010s. 2 tests run.
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck && ./test_recursive.exe)
- qcheck random seed: 388567679
- Testing `Test_Recursive'.
- This run has ID `XURKUC8N'.
- 
-   [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.008s. 2 tests run.
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck2 && ./test_mutual.exe)
- qcheck random seed: 952366084
- Testing `Test_Recursive'.
- This run has ID `I8O0TTQQ'.
- 
-   [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.012s. 1 test run.
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck && ./test_record.exe)
- Testing `Test_Record'.
- This run has ID `PT6J8SM6'.
- 
-   [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.150s. 2 tests run.
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck2 && ./test_textual.exe)
- Testing `ppx_deriving_qcheck tests'.
- This run has ID `KHF5P12J'.
- 
-   [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.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 `Q87G9VWE'.
- 
-   [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.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)
2025-12-22 02:57.48 ---> saved as "1d294a317ba029aefafbd3fbd1cec1f24786c15feb896cc01db04d8cfcd3134a"
Job succeeded
2025-12-22 02:57.54: Job succeeded