(not at the head of any monitored branch or PR)
2026-03-20 10:16.23: New job: test ppx_deriving_qcheck.0.9 with ppxlib.0.38.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29563/head (6185871ccd68c72dd8f6902c863f0554508a6764)
                              on debian-13-ocaml-5.4/amd64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29563/head" && git reset --hard 6185871c
git fetch origin master
git merge --no-edit 9f189ca4f94fbb5f0045820bf3c4ffafb21145ef
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn ppxlib.0.38.0 0.38.0
RUN opam reinstall ppxlib.0.38.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'ppxlib.0.38.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall ppx_deriving_qcheck.0.9; \
    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.9' && 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.9) || true
RUN opam reinstall --with-test --verbose ppx_deriving_qcheck.0.9; \
    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.9' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

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

2026-03-20 10:16.23: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6-ppxlib.0.38.0-ppx_deriving_qcheck.0.9-6185871ccd68c72dd8f6902c863f0554508a6764"
2026-03-20 10:16.23: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -ni"))
 (run (shell "opam option solver=builtin-0install && opam config report"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMPRECISETRACKING 1)
 (env CI true)
 (env OPAM_REPO_CI true)
 (run (shell "rm -rf opam-repository/"))
 (copy (src .) (dst opam-repository/))
 (run (shell "opam repository set-url --strict default opam-repository/"))
 (run (network host)
      (shell "opam update --depexts || true"))
 (run (shell "opam pin add -k version -yn ppxlib.0.38.0 0.38.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall ppxlib.0.38.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'ppxlib.0.38.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall ppx_deriving_qcheck.0.9;\
             \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.9' && 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.9) || true"))
 (run (shell  "opam reinstall --with-test --verbose ppx_deriving_qcheck.0.9;\
             \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.9' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-03-20 10:16.23: Waiting for resource in pool OCluster
2026-03-20 10:24.16: Waiting for worker…
2026-03-20 10:26.30: Got resource from pool OCluster
Building on eumache
All commits already cached
Updating files:  96% (17857/18507)
Updating files:  97% (17952/18507)
Updating files:  98% (18137/18507)
Updating files:  99% (18322/18507)
Updating files: 100% (18507/18507)
Updating files: 100% (18507/18507), done.
HEAD is now at 9f189ca4f9 Merge pull request #29562 from shonfeder/release-dune-3.22.0
Updating 9f189ca4f9..6185871ccd
Fast-forward
Auto packing the repository in the background for optimum performance.
See "git help gc" for manual housekeeping.
warning: The last gc run reported the following. Please correct the root cause
and remove .git/gc.log
Automatic cleanup will not be performed until the file is removed.

warning: There are too many unreachable loose objects; run 'git prune' to remove them.

 packages/ppxlib-tools/ppxlib-tools.0.38.0/opam | 47 +++++++++++++++++++
 packages/ppxlib/ppxlib.0.38.0/opam             | 64 ++++++++++++++++++++++++++
 2 files changed, 111 insertions(+)
 create mode 100644 packages/ppxlib-tools/ppxlib-tools.0.38.0/opam
 create mode 100644 packages/ppxlib/ppxlib.0.38.0/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
2026-03-20 10:26.33 ---> using "41eea30e3f639c18d8cf57c309ec76919ec7b2398036f7e41744cbce59a133d3" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-20 10:26.33 ---> using "4ad7f430d684c40cedc651267e0edf890c044fe4e624255de377c471b4526bac" from cache

/home/opam: (run (network host)
                 (shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
  - you won't be able to use mercurial repositories unless you install the hg command on your system.
  - you won't be able to use darcs repositories unless you install the darcs command on your system.

This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.

Continue? [Y/n] y
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-20 10:26.33 ---> using "71fa58e52457bf6a7eac317c6a6ef1e2bdf53e533a1e4fd04b90c9349347e038" from cache

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

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2026-03-20 10:26.33 ---> using "04a48515eea40c32b96da0c71328b4bba0edb66eed83d4f78554b39097cf1f25" from cache

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

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-20 10:26.35 ---> using "c2f12173229ec5c0464d19e3d01c733329e6e921188609c50aa19b931151ea3b" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian trixie/main amd64 Packages [9671 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [116 kB]
- Fetched 10.0 MB in 1s (7167 kB/s)
- Reading package lists...
- 
2026-03-20 10:26.35 ---> using "1ca9e50729c16835fde90653123b35731a095f0cd27899846d554dded091ece2" from cache

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

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

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

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall ppx_deriving_qcheck.0.9;\
                        \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.9' && 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.9 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.9
  - 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.9  (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.9
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-20 10:27.08 ---> saved as "63035f057196c3d18275682b75bf299047e22d90dd790cbed451e4994ad936fe"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test ppx_deriving_qcheck.0.9) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile ppx_deriving_qcheck 0.9
=== 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.9  (https://opam.ocaml.org/cache)
-> retrieved qcheck-alcotest.0.91  (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> retrieved topkg.1.1.1  (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> installed ocaml-syntax-shims.1.0.0
-> installed re.1.14.0
-> installed cmdliner.2.1.0
-> removed   ppx_deriving_qcheck.0.9
-> 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.9
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-20 10:28.05 ---> saved as "c16e4b3d94d2cff31baa59f7056d81287f4e66c24c23878ff15075bf6d8266b4"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [ppx_deriving_qcheck.0.9: extract]
-> retrieved ppx_deriving_qcheck.0.9  (cached)
Processing  2/4: [ppx_deriving_qcheck: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "ppx_deriving_qcheck" "-j" "71" (CWD=/home/opam/.opam/5.4/.opam-switch/build/ppx_deriving_qcheck.0.9)
Processing  2/4: [ppx_deriving_qcheck: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "ppx_deriving_qcheck" "-j" "71" (CWD=/home/opam/.opam/5.4/.opam-switch/build/ppx_deriving_qcheck.0.9)
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck2 && ./test_qualified_names.exe)
- Testing `Test_Qualified_names'.
- This run has ID `EKER996L'.
- 
-   [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.9/_build/default/test/ppx_deriving_qcheck/deriver/qcheck2/_build/_tests/Test_Qualified_names'.
- Test Successful in 0.001s. 2 tests run.
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck2 && ./test_primitives.exe)
- Testing `Test_Primitives'.
- This run has ID `654HZ4ZK'.
- 
-   [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.9/_build/default/test/ppx_deriving_qcheck/deriver/qcheck2/_build/_tests/Test_Primitives'.
- Test Successful in 0.022s. 11 tests run.
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck2 && ./test_recursive.exe)
- qcheck random seed: 142414199
- Testing `Test_Recursive'.
- This run has ID `I2540605'.
- 
-   [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.9/_build/default/test/ppx_deriving_qcheck/deriver/qcheck2/_build/_tests/Test_Recursive'.
- Test Successful in 0.033s. 2 tests run.
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck2 && ./test_variants.exe)
- qcheck random seed: 5633971
- Testing `Test_Variant'.
- This run has ID `U3SUWUVS'.
- 
-   [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.9/_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/qcheck && ./test_qualified_names.exe)
- Testing `Test_Qualified_names'.
- This run has ID `8P8QXXQ9'.
- 
-   [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.9/_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: 736704261
- Testing `Test_Tuple'.
- This run has ID `GCDIOVEJ'.
- 
-   [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.9/_build/default/test/ppx_deriving_qcheck/deriver/qcheck/_build/_tests/Test_Tuple'.
- Test Successful in 0.002s. 7 tests run.
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck && ./test_primitives.exe)
- Testing `Test_Primitives'.
- This run has ID `UEM8P2EY'.
- 
-   [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.9/_build/default/test/ppx_deriving_qcheck/deriver/qcheck/_build/_tests/Test_Primitives'.
- Test Successful in 0.004s. 11 tests run.
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck2 && ./test_mutual.exe)
- qcheck random seed: 53328256
- Testing `Test_Recursive'.
- This run has ID `HPA9MH2A'.
- 
-   [OK]          Recursive          0   test_tree_ref.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/ppx_deriving_qcheck.0.9/_build/default/test/ppx_deriving_qcheck/deriver/qcheck2/_build/_tests/Test_Recursive'.
- Test Successful in 0.024s. 1 test run.
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck && ./test_variants.exe)
- qcheck random seed: 967494837
- Testing `Test_Variant'.
- This run has ID `IJKFSPPP'.
- 
-   [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.9/_build/default/test/ppx_deriving_qcheck/deriver/qcheck/_build/_tests/Test_Variant'.
- Test Successful in 0.005s. 4 tests run.
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck && ./test_recursive.exe)
- qcheck random seed: 370902849
- Testing `Test_Recursive'.
- This run has ID `SJ3UTIJX'.
- 
-   [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.9/_build/default/test/ppx_deriving_qcheck/deriver/qcheck/_build/_tests/Test_Recursive'.
- Test Successful in 0.022s. 2 tests run.
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck && ./test_record.exe)
- Testing `Test_Record'.
- This run has ID `FVRP8ZXI'.
- 
-   [OK]          Record          0   test_env.
-   [OK]          Record          1   test_color.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/ppx_deriving_qcheck.0.9/_build/default/test/ppx_deriving_qcheck/deriver/qcheck/_build/_tests/Test_Record'.
- Test Successful in 0.593s. 2 tests run.
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck2 && ./test_textual.exe)
- Testing `ppx_deriving_qcheck tests'.
- This run has ID `406A1Z5Z'.
- 
-   [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.9/_build/default/test/ppx_deriving_qcheck/deriver/qcheck2/_build/_tests/ppx_deriving_qcheck tests'.
- Test Successful in 0.019s. 31 tests run.
- (cd _build/default/test/ppx_deriving_qcheck/deriver/qcheck && ./test_textual.exe)
- Testing `ppx_deriving_qcheck tests'.
- This run has ID `C56PJ0Q4'.
- 
-   [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.9/_build/default/test/ppx_deriving_qcheck/deriver/qcheck/_build/_tests/ppx_deriving_qcheck tests'.
- Test Successful in 0.029s. 34 tests run.
-> compiled  ppx_deriving_qcheck.0.9
-> removed   ppx_deriving_qcheck.0.9
-> installed ppx_deriving_qcheck.0.9
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-20 10:28.31 ---> saved as "48d387e902a0e7b4710a7ff6510a707e7135fc8e21b01403187d5dcc63b75257"
Job succeeded
2026-03-20 10:28.43: Job succeeded