(for PR #29582)

2026-03-25 13:14.49: New job: test containers.3.17 with ocaml-compiler.5.4.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29582/head (fa5fb3a6a806e832e4c7791145889a6bbe8b64ef)
                              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/29582/head" && git reset --hard fa5fb3a6
git fetch origin master
git merge --no-edit 2f93e9d4614d6376ed929fc2cee7c59cb9d5833b
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 ocaml-compiler.5.4.0 5.4.0
RUN opam reinstall --update-invariant ocaml-compiler.5.4.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" != 'ocaml-compiler.5.4.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall containers.3.17; \
    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" != 'containers.3.17' && 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 containers.3.17) || true
RUN opam reinstall --with-test --verbose containers.3.17; \
    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" != 'containers.3.17' && 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-25 13:14.49: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6-ocaml-compiler.5.4.0-containers.3.17-fa5fb3a6a806e832e4c7791145889a6bbe8b64ef"
2026-03-25 13:14.49: 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 ocaml-compiler.5.4.0 5.4.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall --update-invariant ocaml-compiler.5.4.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\" != 'ocaml-compiler.5.4.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 containers.3.17;\
             \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\" != 'containers.3.17' && 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 containers.3.17) || true"))
 (run (shell  "opam reinstall --with-test --verbose containers.3.17;\
             \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\" != 'containers.3.17' && 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-25 13:14.49: Waiting for resource in pool OCluster
2026-03-25 19:37.16: Waiting for worker…
2026-03-25 19:39.38: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
HEAD is now at 2f93e9d461 Merge pull request #29592 from dinosaure/release-miou-v0.5.5
Merge made by the 'ort' strategy.
 packages/ocaml-compiler/ocaml-compiler.5.3.0/opam      |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.3/opam        |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4.0/opam      |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.4.0~alpha1/opam    |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.4.0~beta1/opam     |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.4.0~beta2/opam     |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4.0~rc1/opam  |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4.1/opam      |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.4/opam        |  5 ++++-
 .../ocaml-compiler/ocaml-compiler.5.5.0~alpha1/opam    |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.5/opam        |  5 ++++-
 packages/ocaml-compiler/ocaml-compiler.5.6/opam        |  5 ++++-
 packages/ocaml-option-llvm/ocaml-option-llvm.1/opam    | 18 ++++++++++++++++++
 .../ocaml-options-vanilla/ocaml-options-vanilla.1/opam |  1 +
 packages/ocaml-variants/ocaml-variants.5.2.0+msvc/opam |  2 ++
 15 files changed, 69 insertions(+), 12 deletions(-)
 create mode 100644 packages/ocaml-option-llvm/ocaml-option-llvm.1/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
2026-03-25 19:39.40 ---> 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-25 19:39.40 ---> 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.

Continue? [Y/n] y
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.

[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
           opam option jobs=71 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-25 19:39.40 ---> 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                 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
2026-03-25 19:39.40 ---> 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-25 19:39.40 ---> using "04a48515eea40c32b96da0c71328b4bba0edb66eed83d4f78554b39097cf1f25" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-25 19:39.41 ---> using "034191995d824300f355cbba1072d6e5fe6d815701f24eb84d82c75009d73829" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-25 19:39.41 ---> using "8232259ea36ea8848dc29ae49703acf145fd27b40f3ebd8fb785db7f8da1b9d4" 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 [114 kB]
- Fetched 10.0 MB in 1s (10.4 MB/s)
- Reading package lists...
2026-03-25 19:39.41 ---> using "a75782a571df4fc8f8933e94c681af881015ee87cdd4c652f8ae9af1d8cfad37" from cache

/home/opam: (run (shell "opam pin add -k version -yn ocaml-compiler.5.4.0 5.4.0"))
ocaml-compiler is now pinned to version 5.4.0
2026-03-25 19:39.41 ---> using "60e129f7398974b5fa5afc8f56ec09bd24a9182f5e9834464bfc959db1aa6b14" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall --update-invariant ocaml-compiler.5.4.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\" != 'ocaml-compiler.5.4.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
The following actions will be performed:
=== recompile 8 packages
  - recompile base-domains        base           [uses ocaml]
  - recompile base-effects        base           [uses ocaml]
  - recompile base-nnp            base           [uses base-domains]
  - recompile ocaml               5.4.0          [uses ocaml-base-compiler]
  - recompile ocaml-base-compiler 5.4.0 (pinned) [uses ocaml-compiler]
  - recompile ocaml-compiler      5.4.0 (pinned)
  - recompile ocaml-config        3              [uses ocaml-base-compiler]
  - recompile opam-depext         1.2.3          [uses ocaml]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocaml-compiler.5.4.0  (cached)
-> retrieved ocaml-config.3  (cached)
-> retrieved opam-depext.1.2.3  (cached)
-> removed   base-effects.base
-> removed   base-nnp.base
-> removed   base-domains.base
-> removed   opam-depext.1.2.3
-> removed   ocaml.5.4.0
-> removed   ocaml-config.3
-> removed   ocaml-base-compiler.5.4.0
-> removed   ocaml-compiler.5.4.0
-> installed ocaml-compiler.5.4.0
-> installed ocaml-base-compiler.5.4.0
-> installed ocaml-config.3
-> installed ocaml.5.4.0
-> installed base-domains.base
-> installed base-effects.base
-> installed base-nnp.base
-> installed opam-depext.1.2.3
Done.

<><> opam-depext.1.2.3 installed successfully <><><><><><><><><><><><><><><><><>
=> opam-depext is unnecessary when used with opam >= 2.1. Please use opam install directly instead
# To update the current shell environment, run: eval $(opam env)
2026-03-25 19:39.41 ---> using "efbc92fc0c607605c8bb33f9e4c8fe340a48c67e14d2f61592db8a4edc5c0b15" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall containers.3.17;\
                        \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\" != 'containers.3.17' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
containers.3.17 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 5 packages
  - install containers        3.17
  - install csexp             1.5.2  [required by dune-configurator]
  - install dune              3.22.0 [required by containers]
  - install dune-configurator 3.22.0 [required by containers]
  - install either            1.0.0  [required by containers]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved containers.3.17  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved dune.3.22.0, dune-configurator.3.22.0  (cached)
-> retrieved either.1.0.0  (cached)
-> installed dune.3.22.0
-> installed csexp.1.5.2
-> installed either.1.0.0
-> installed dune-configurator.3.22.0
-> installed containers.3.17
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 19:40.19 ---> saved as "c6cfc62cc92378f57f30eafd9526d98bcba5b4f5da1667881acd589d1d15ffe3"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test containers.3.17) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile containers  3.17
=== install 9 packages
  - install   gen         1.1    [required by containers]
  - install   iter        1.9    [required by containers]
  - install   ocamlbuild  0.16.1 [required by uutf]
  - install   ocamlfind   1.9.8  [required by uutf]
  - install   qcheck-core 0.91   [required by containers]
  - install   seq         base   [required by gen]
  - install   topkg       1.1.1  [required by uutf]
  - install   uutf        1.0.4  [required by containers]
  - install   yojson      3.0.0  [required by containers]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved containers.3.17  (https://opam.ocaml.org/cache)
-> retrieved gen.1.1  (https://opam.ocaml.org/cache)
-> retrieved iter.1.9  (https://opam.ocaml.org/cache)
-> retrieved ocamlbuild.0.16.1  (https://opam.ocaml.org/cache)
-> retrieved ocamlfind.1.9.8  (https://opam.ocaml.org/cache)
-> retrieved qcheck-core.0.91  (https://opam.ocaml.org/cache)
-> installed iter.1.9
-> retrieved seq.base  (2 extra sources)
-> retrieved seq.base  (2 extra sources)
-> installed seq.base
-> retrieved topkg.1.1.1  (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> retrieved yojson.3.0.0  (https://opam.ocaml.org/cache)
-> installed gen.1.1
-> installed qcheck-core.0.91
-> installed yojson.3.0.0
-> installed ocamlfind.1.9.8
-> removed   containers.3.17
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed containers.3.17
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 19:40.44 ---> saved as "c9ff95da1441ae77d273d180e1079968e9d1e5742e198e7592e8fcfb03a79b62"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [containers.3.17: extract]
-> retrieved containers.3.17  (cached)
Processing  2/4: [containers: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "containers" "-j" "255" (CWD=/home/opam/.opam/5.4/.opam-switch/build/containers.3.17)
Processing  2/4: [containers: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "containers" "-j" "255" (CWD=/home/opam/.opam/5.4/.opam-switch/build/containers.3.17)
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48 -g -bin-annot -bin-annot-occurrences -I tests/pvec/.t.eobjs/byte -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I src/core/.containers.objs/byte -I src/domain/.containers_domain.objs/byte -I src/monomorphic/.containers_monomorphic.objs/byte -I src/pvec/.containers_pvec.objs/byte -I src/testlib/.containers_testlib.objs/byte -no-alias-deps -open Dune__exe -o tests/pvec/.t.eobjs/byte/dune__exe__T_pvec.cmo -c -impl tests/pvec/t_pvec.ml)
- File "tests/pvec/t_pvec.ml", line 8, characters 13-23:
- 8 |   let g = Q.(small_list (pair small_int small_int)) in
-                  ^^^^^^^^^^
- Alert deprecated: Test.Q.small_list
- Use [list_small] instead
- 
- File "tests/pvec/t_pvec.ml", line 8, characters 30-39:
- 8 |   let g = Q.(small_list (pair small_int small_int)) in
-                                   ^^^^^^^^^
- Alert deprecated: Test.Q.small_int
- Use [nat_small] instead
- 
- File "tests/pvec/t_pvec.ml", line 8, characters 40-49:
- 8 |   let g = Q.(small_list (pair small_int small_int)) in
-                                             ^^^^^^^^^
- Alert deprecated: Test.Q.small_int
- Use [nat_small] instead
- 
- File "tests/pvec/t_pvec.ml", line 36, characters 15-25:
- 36 |   Q.(pair int (small_list int))
-                     ^^^^^^^^^^
- Alert deprecated: Test.Q.small_list
- Use [list_small] instead
- 
- File "tests/pvec/t_pvec.ml", line 48, characters 38-48:
- 48 |   Q.(pair (fun1 Observable.int bool) (small_list int))
-                                            ^^^^^^^^^^
- Alert deprecated: Test.Q.small_list
- Use [list_small] instead
- 
- File "tests/pvec/t_pvec.ml", line 55, characters 11-21:
- 55 |   Q.(pair (small_list int) (small_list int))
-                 ^^^^^^^^^^
- Alert deprecated: Test.Q.small_list
- Use [list_small] instead
- 
- File "tests/pvec/t_pvec.ml", line 55, characters 28-38:
- 55 |   Q.(pair (small_list int) (small_list int))
-                                  ^^^^^^^^^^
- Alert deprecated: Test.Q.small_list
- Use [list_small] instead
- 
- File "tests/pvec/t_pvec.ml", line 59, characters 5-15:
- 59 | q Q.(small_list int) (fun l -> l = to_list (of_list l));;
-           ^^^^^^^^^^
- Alert deprecated: Test.Q.small_list
- Use [list_small] instead
- 
- File "tests/pvec/t_pvec.ml", line 77, characters 11-21:
- 77 |   Q.(pair (small_list int) (small_list int))
-                 ^^^^^^^^^^
- Alert deprecated: Test.Q.small_list
- Use [list_small] instead
- 
- File "tests/pvec/t_pvec.ml", line 77, characters 28-38:
- 77 |   Q.(pair (small_list int) (small_list int))
-                                  ^^^^^^^^^^
- Alert deprecated: Test.Q.small_list
- Use [list_small] instead
- 
- File "tests/pvec/t_pvec.ml", line 81, characters 5-15:
- 81 | q Q.(small_list int) (fun l1 -> equal CCInt.equal (of_list l1) (of_list l1))
-           ^^^^^^^^^^
- Alert deprecated: Test.Q.small_list
- Use [list_small] instead
- 
- File "tests/pvec/t_pvec.ml", line 90, characters 15-25:
- 90 |       let* l = small_list int in
-                     ^^^^^^^^^^
- Alert deprecated: Test.Q.Gen.small_list
- Use [list_small] instead
- 
- File "tests/pvec/t_pvec.ml", line 241, characters 10-19:
- 241 |           frequency
-                 ^^^^^^^^^
- Alert deprecated: Test.Q.Gen.frequency
- Use [oneof_weighted] instead
- 
- File "tests/pvec/t_pvec.ml", line 263, characters 21-31:
- 263 |                      small_list gen_x >|= fun l ->
-                            ^^^^^^^^^^
- Alert deprecated: Test.Q.Gen.small_list
- Use [list_small] instead
- 
- File "tests/pvec/t_pvec.ml", line 266, characters 21-31:
- 266 |                      small_list gen_x >|= fun l ->
-                            ^^^^^^^^^^
- Alert deprecated: Test.Q.Gen.small_list
- Use [list_small] instead
- 
- File "tests/pvec/t_pvec.ml", line 287, characters 41-50:
- 287 |     Q.Gen.(0 -- 40 >>= fun len -> Op.gen small_int len)
-                                                ^^^^^^^^^
- Alert deprecated: Test.Q.Gen.small_int
- Use [nat_small] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -bin-annot -bin-annot-occurrences -I tests/core/.t.eobjs/byte -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/cbor/.containers_cbor.objs/byte -I src/core/.containers.objs/byte -I src/domain/.containers_domain.objs/byte -I src/monomorphic/.containers_monomorphic.objs/byte -I src/pp/.containers_pp.objs/byte -I src/testlib/.containers_testlib.objs/byte -I src/unix/.containers_unix.objs/byte -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/byte/dune__exe__T_IO.cmo -c -impl tests/core/t_IO.pp.ml)
- File "tests/core/t_IO.pp.ml", line 18, characters 5-17:
- 18 |   Q.(list_of_size Gen.(0 -- 40) printable_string)
-           ^^^^^^^^^^^^
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_IO.pp.ml", line 18, characters 32-48:
- 18 |   Q.(list_of_size Gen.(0 -- 40) printable_string)
-                                      ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_IO.pp.ml", line 30, characters 5-17:
- 30 |   Q.(list_of_size Gen.(0 -- 40) printable_string)
-           ^^^^^^^^^^^^
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_IO.pp.ml", line 30, characters 32-48:
- 30 |   Q.(list_of_size Gen.(0 -- 40) printable_string)
-                                      ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_IO.pp.ml", line 42, characters 5-17:
- 42 |   Q.(list_of_size Gen.(0 -- 40) printable_string)
-           ^^^^^^^^^^^^
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_IO.pp.ml", line 42, characters 32-48:
- 42 |   Q.(list_of_size Gen.(0 -- 40) printable_string)
-                                      ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -bin-annot -bin-annot-occurrences -I tests/core/.t.eobjs/byte -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/cbor/.containers_cbor.objs/byte -I src/core/.containers.objs/byte -I src/domain/.containers_domain.objs/byte -I src/monomorphic/.containers_monomorphic.objs/byte -I src/pp/.containers_pp.objs/byte -I src/testlib/.containers_testlib.objs/byte -I src/unix/.containers_unix.objs/byte -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/byte/dune__exe__T_eq.cmo -c -impl tests/core/t_eq.pp.ml)
- File "tests/core/t_eq.pp.ml", line 7, characters 12-22:
- 7 |     let p = small_list (pair small_int bool) in
-                 ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_eq.pp.ml", line 7, characters 29-38:
- 7 |     let p = small_list (pair small_int bool) in
-                                  ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -bin-annot -bin-annot-occurrences -I tests/core/.t.eobjs/byte -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/cbor/.containers_cbor.objs/byte -I src/core/.containers.objs/byte -I src/domain/.containers_domain.objs/byte -I src/monomorphic/.containers_monomorphic.objs/byte -I src/pp/.containers_pp.objs/byte -I src/testlib/.containers_testlib.objs/byte -I src/unix/.containers_unix.objs/byte -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/byte/dune__exe__T_bencode.cmo -c -impl tests/core/t_bencode.pp.ml)
- File "tests/core/t_bencode.pp.ml", line 28, characters 6-15:
- 28 |       frequency
-            ^^^^^^^^^
- Alert deprecated: Q.Gen.frequency
- Use [oneof_weighted] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -bin-annot -bin-annot-occurrences -I tests/core/.t.eobjs/byte -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/cbor/.containers_cbor.objs/byte -I src/core/.containers.objs/byte -I src/domain/.containers_domain.objs/byte -I src/monomorphic/.containers_monomorphic.objs/byte -I src/pp/.containers_pp.objs/byte -I src/testlib/.containers_testlib.objs/byte -I src/unix/.containers_unix.objs/byte -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/byte/dune__exe__T_byte_buffer.cmo -c -impl tests/core/t_byte_buffer.pp.ml)
- File "tests/core/t_byte_buffer.pp.ml", line 62, characters 2-11:
- 62 |   frequency
-        ^^^^^^^^^
- Alert deprecated: QCheck.Gen.frequency
- Use [oneof_weighted] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -bin-annot -bin-annot-occurrences -I tests/core/.t.eobjs/byte -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/cbor/.containers_cbor.objs/byte -I src/core/.containers.objs/byte -I src/domain/.containers_domain.objs/byte -I src/monomorphic/.containers_monomorphic.objs/byte -I src/pp/.containers_pp.objs/byte -I src/testlib/.containers_testlib.objs/byte -I src/unix/.containers_unix.objs/byte -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/byte/dune__exe__T_cbor.cmo -c -impl tests/core/t_cbor.pp.ml)
- File "tests/core/t_cbor.pp.ml", line 29, characters 17-26:
- 29 |         let* n = frequency [ 20, 0 -- 150; 1, 151 -- 100_000 ] in
-                       ^^^^^^^^^
- Alert deprecated: Q.Gen.frequency
- Use [oneof_weighted] instead
- 
- File "tests/core/t_cbor.pp.ml", line 33, characters 17-26:
- 33 |         let* n = frequency [ 20, 0 -- 150; 1, 151 -- 100_000 ] in
-                       ^^^^^^^^^
- Alert deprecated: Q.Gen.frequency
- Use [oneof_weighted] instead
- 
- File "tests/core/t_cbor.pp.ml", line 38, characters 15-24:
- 38 |   let g_base = frequency base in
-                     ^^^^^^^^^
- Alert deprecated: Q.Gen.frequency
- Use [oneof_weighted] instead
- 
- File "tests/core/t_cbor.pp.ml", line 62, characters 2-11:
- 62 |   frequency
-        ^^^^^^^^^
- Alert deprecated: Q.Gen.frequency
- Use [oneof_weighted] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -bin-annot -bin-annot-occurrences -I tests/core/.t.eobjs/byte -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/cbor/.containers_cbor.objs/byte -I src/core/.containers.objs/byte -I src/domain/.containers_domain.objs/byte -I src/monomorphic/.containers_monomorphic.objs/byte -I src/pp/.containers_pp.objs/byte -I src/testlib/.containers_testlib.objs/byte -I src/unix/.containers_unix.objs/byte -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/byte/dune__exe__T_char.cmo -c -impl tests/core/t_char.pp.ml)
- File "tests/core/t_char.pp.ml", line 9, characters 3-19:
- 9 |   (Q.string_of_size (Q.Gen.return 1))
-        ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.string_of_size
- Use [string_size] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -bin-annot -bin-annot-occurrences -I tests/core/.t.eobjs/byte -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/cbor/.containers_cbor.objs/byte -I src/core/.containers.objs/byte -I src/domain/.containers_domain.objs/byte -I src/monomorphic/.containers_monomorphic.objs/byte -I src/pp/.containers_pp.objs/byte -I src/testlib/.containers_testlib.objs/byte -I src/unix/.containers_unix.objs/byte -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/byte/dune__exe__T_array.cmo -c -impl tests/core/t_array.pp.ml)
- File "tests/core/t_array.pp.ml", line 111, characters 5-18:
- 111 |   Q.(array_of_size Gen.(0 -- 30) printable_string)
-            ^^^^^^^^^^^^^
- Alert deprecated: Q.array_of_size
- Use [array_size] instead
- 
- File "tests/core/t_array.pp.ml", line 111, characters 33-49:
- 111 |   Q.(array_of_size Gen.(0 -- 30) printable_string)
-                                        ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_array.pp.ml", line 130, characters 5-18:
- 130 |   Q.(array_of_size Gen.(0 -- 50) printable_string)
-            ^^^^^^^^^^^^^
- Alert deprecated: Q.array_of_size
- Use [array_size] instead
- 
- File "tests/core/t_array.pp.ml", line 130, characters 33-49:
- 130 |   Q.(array_of_size Gen.(0 -- 50) printable_string)
-                                        ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_array.pp.ml", line 137, characters 11-20:
- 137 | q Q.(array small_int) (fun a -> rev (rev a) = a);;
-                  ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_array.pp.ml", line 141, characters 11-20:
- 141 | q Q.(array small_int) (fun a -> mem 1 a = Array.mem 1 a);;
-                  ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_array.pp.ml", line 220, characters 10-19:
- 220 |   Q.(pair small_int small_int)
-                 ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_array.pp.ml", line 220, characters 20-29:
- 220 |   Q.(pair small_int small_int)
-                           ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_array.pp.ml", line 225, characters 10-19:
- 225 |   Q.(pair small_int small_int)
-                 ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_array.pp.ml", line 225, characters 20-29:
- 225 |   Q.(pair small_int small_int)
-                           ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_array.pp.ml", line 230, characters 17-26:
- 230 |   Q.(pair (array small_int) (array small_int))
-                        ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_array.pp.ml", line 230, characters 35-44:
- 230 |   Q.(pair (array small_int) (array small_int))
-                                          ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_array.pp.ml", line 253, characters 5-18:
- 253 |   Q.(array_of_size Gen.(0 -- 100) small_int)
-            ^^^^^^^^^^^^^
- Alert deprecated: Q.array_of_size
- Use [array_size] instead
- 
- File "tests/core/t_array.pp.ml", line 253, characters 34-43:
- 253 |   Q.(array_of_size Gen.(0 -- 100) small_int)
-                                         ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_array.pp.ml", line 297, characters 43-52:
- 297 | let gen_arr = Q.Gen.(array_size (1 -- 100) small_int)
-                                                  ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -bin-annot -bin-annot-occurrences -I tests/core/.t.eobjs/byte -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/cbor/.containers_cbor.objs/byte -I src/core/.containers.objs/byte -I src/domain/.containers_domain.objs/byte -I src/monomorphic/.containers_monomorphic.objs/byte -I src/pp/.containers_pp.objs/byte -I src/testlib/.containers_testlib.objs/byte -I src/unix/.containers_unix.objs/byte -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/byte/dune__exe__T_canonical_sexp.cmo -c -impl tests/core/t_canonical_sexp.pp.ml)
- File "tests/core/t_canonical_sexp.pp.ml", line 31, characters 15-24:
- 31 |                frequency
-                     ^^^^^^^^^
- Alert deprecated: Q.Gen.frequency
- Use [oneof_weighted] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -bin-annot -bin-annot-occurrences -I tests/core/.t.eobjs/byte -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/cbor/.containers_cbor.objs/byte -I src/core/.containers.objs/byte -I src/domain/.containers_domain.objs/byte -I src/monomorphic/.containers_monomorphic.objs/byte -I src/pp/.containers_pp.objs/byte -I src/testlib/.containers_testlib.objs/byte -I src/unix/.containers_unix.objs/byte -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/byte/dune__exe__T_int64.cmo -c -impl tests/core/t_int64.pp.ml)
- File "tests/core/t_int64.pp.ml", line 42, characters 24-42:
- 42 |   (Q.pair (Q.map of_int Q.small_signed_int) (Q.map of_int Q.small_nat))
-                              ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Q.small_signed_int
- Use [int_small] instead
- 
- File "tests/core/t_int64.pp.ml", line 42, characters 58-69:
- 42 |   (Q.pair (Q.map of_int Q.small_signed_int) (Q.map of_int Q.small_nat))
-                                                                ^^^^^^^^^^^
- Alert deprecated: Q.small_nat
- Use [nat_small] instead
- 
- File "tests/core/t_int64.pp.ml", line 49, characters 24-42:
- 49 |   (Q.pair (Q.map of_int Q.small_signed_int) (Q.map of_int Q.small_nat))
-                              ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Q.small_signed_int
- Use [int_small] instead
- 
- File "tests/core/t_int64.pp.ml", line 49, characters 58-69:
- 49 |   (Q.pair (Q.map of_int Q.small_signed_int) (Q.map of_int Q.small_nat))
-                                                                ^^^^^^^^^^^
- Alert deprecated: Q.small_nat
- Use [nat_small] instead
- 
- File "tests/core/t_int64.pp.ml", line 84, characters 22-31:
- 84 |   Q.(pair (map of_int small_int) (map of_int small_int))
-                            ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_int64.pp.ml", line 84, characters 45-54:
- 84 |   Q.(pair (map of_int small_int) (map of_int small_int))
-                                                   ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -bin-annot -bin-annot-occurrences -I tests/core/.t.eobjs/byte -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/cbor/.containers_cbor.objs/byte -I src/core/.containers.objs/byte -I src/domain/.containers_domain.objs/byte -I src/monomorphic/.containers_monomorphic.objs/byte -I src/pp/.containers_pp.objs/byte -I src/testlib/.containers_testlib.objs/byte -I src/unix/.containers_unix.objs/byte -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/byte/dune__exe__T_random.cmo -c -impl tests/core/t_random.pp.ml)
- File "tests/core/t_random.pp.ml", line 5, characters 10-19:
- 5 | q Q.(list small_int) (fun l -> l = [] || List.mem (run (pick_list l)) l);;
-               ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_random.pp.ml", line 8, characters 10-19:
- 8 |   Q.(pair small_int small_int)
-               ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_random.pp.ml", line 8, characters 20-29:
- 8 |   Q.(pair small_int small_int)
-                         ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -bin-annot -bin-annot-occurrences -I tests/core/.t.eobjs/byte -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/cbor/.containers_cbor.objs/byte -I src/core/.containers.objs/byte -I src/domain/.containers_domain.objs/byte -I src/monomorphic/.containers_monomorphic.objs/byte -I src/pp/.containers_pp.objs/byte -I src/testlib/.containers_testlib.objs/byte -I src/unix/.containers_unix.objs/byte -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/byte/dune__exe__T_int.cmo -c -impl tests/core/t_int.pp.ml)
- File "tests/core/t_int.pp.ml", line 48, characters 10-28:
- 48 | q (Q.pair Q.small_signed_int Q.pos_int) (fun (n, m) ->
-                ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Q.small_signed_int
- Use [int_small] instead
- 
- File "tests/core/t_int.pp.ml", line 48, characters 29-38:
- 48 | q (Q.pair Q.small_signed_int Q.pos_int) (fun (n, m) ->
-                                   ^^^^^^^^^
- Alert deprecated: Q.pos_int
- Use [int_pos] instead
- 
- File "tests/core/t_int.pp.ml", line 52, characters 10-28:
- 52 | q (Q.pair Q.small_signed_int Q.pos_int) (fun (n, m) ->
-                ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Q.small_signed_int
- Use [int_small] instead
- 
- File "tests/core/t_int.pp.ml", line 52, characters 29-38:
- 52 | q (Q.pair Q.small_signed_int Q.pos_int) (fun (n, m) ->
-                                   ^^^^^^^^^
- Alert deprecated: Q.pos_int
- Use [int_pos] instead
- 
- File "tests/core/t_int.pp.ml", line 86, characters 16-25:
- 86 | q (Q.pair Q.int Q.pos_int) (fun (n, m) ->
-                      ^^^^^^^^^
- Alert deprecated: Q.pos_int
- Use [int_pos] instead
- 
- File "tests/core/t_int.pp.ml", line 91, characters 16-25:
- 91 | q (Q.pair Q.int Q.pos_int) (fun (n, m) ->
-                      ^^^^^^^^^
- Alert deprecated: Q.pos_int
- Use [int_pos] instead
- 
- File "tests/core/t_int.pp.ml", line 96, characters 16-25:
- 96 | q (Q.pair Q.int Q.pos_int) (fun (n, m) -> n = (m * floor_div n m) + rem n m);;
-                      ^^^^^^^^^
- Alert deprecated: Q.pos_int
- Use [int_pos] instead
- 
- File "tests/core/t_int.pp.ml", line 98, characters 16-25:
- 98 | q (Q.pair Q.int Q.pos_int) (fun (n, m) ->
-                      ^^^^^^^^^
- Alert deprecated: Q.pos_int
- Use [int_pos] instead
- 
- File "tests/core/t_int.pp.ml", line 139, characters 10-19:
- 139 |   Q.(pair small_int small_int)
-                 ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_int.pp.ml", line 139, characters 20-29:
- 139 |   Q.(pair small_int small_int)
-                           ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -bin-annot -bin-annot-occurrences -I tests/core/.t.eobjs/byte -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/cbor/.containers_cbor.objs/byte -I src/core/.containers.objs/byte -I src/domain/.containers_domain.objs/byte -I src/monomorphic/.containers_monomorphic.objs/byte -I src/pp/.containers_pp.objs/byte -I src/testlib/.containers_testlib.objs/byte -I src/unix/.containers_unix.objs/byte -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/byte/dune__exe__T_int32.cmo -c -impl tests/core/t_int32.pp.ml)
- File "tests/core/t_int32.pp.ml", line 42, characters 24-42:
- 42 |   (Q.pair (Q.map of_int Q.small_signed_int) (Q.map of_int Q.small_nat))
-                              ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Q.small_signed_int
- Use [int_small] instead
- 
- File "tests/core/t_int32.pp.ml", line 42, characters 58-69:
- 42 |   (Q.pair (Q.map of_int Q.small_signed_int) (Q.map of_int Q.small_nat))
-                                                                ^^^^^^^^^^^
- Alert deprecated: Q.small_nat
- Use [nat_small] instead
- 
- File "tests/core/t_int32.pp.ml", line 49, characters 24-42:
- 49 |   (Q.pair (Q.map of_int Q.small_signed_int) (Q.map of_int Q.small_nat))
-                              ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Q.small_signed_int
- Use [int_small] instead
- 
- File "tests/core/t_int32.pp.ml", line 49, characters 58-69:
- 49 |   (Q.pair (Q.map of_int Q.small_signed_int) (Q.map of_int Q.small_nat))
-                                                                ^^^^^^^^^^^
- Alert deprecated: Q.small_nat
- Use [nat_small] instead
- 
- File "tests/core/t_int32.pp.ml", line 76, characters 22-31:
- 76 |   Q.(pair (map of_int small_int) (map of_int small_int))
-                            ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_int32.pp.ml", line 76, characters 45-54:
- 76 |   Q.(pair (map of_int small_int) (map of_int small_int))
-                                                   ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -bin-annot -bin-annot-occurrences -I tests/core/.t.eobjs/byte -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/cbor/.containers_cbor.objs/byte -I src/core/.containers.objs/byte -I src/domain/.containers_domain.objs/byte -I src/monomorphic/.containers_monomorphic.objs/byte -I src/pp/.containers_pp.objs/byte -I src/testlib/.containers_testlib.objs/byte -I src/unix/.containers_unix.objs/byte -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/byte/dune__exe__T_nativeint.cmo -c -impl tests/core/t_nativeint.pp.ml)
- File "tests/core/t_nativeint.pp.ml", line 42, characters 24-42:
- 42 |   (Q.pair (Q.map of_int Q.small_signed_int) (Q.map of_int Q.small_nat))
-                              ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Q.small_signed_int
- Use [int_small] instead
- 
- File "tests/core/t_nativeint.pp.ml", line 42, characters 58-69:
- 42 |   (Q.pair (Q.map of_int Q.small_signed_int) (Q.map of_int Q.small_nat))
-                                                                ^^^^^^^^^^^
- Alert deprecated: Q.small_nat
- Use [nat_small] instead
- 
- File "tests/core/t_nativeint.pp.ml", line 49, characters 24-42:
- 49 |   (Q.pair (Q.map of_int Q.small_signed_int) (Q.map of_int Q.small_nat))
-                              ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Q.small_signed_int
- Use [int_small] instead
- 
- File "tests/core/t_nativeint.pp.ml", line 49, characters 58-69:
- 49 |   (Q.pair (Q.map of_int Q.small_signed_int) (Q.map of_int Q.small_nat))
-                                                                ^^^^^^^^^^^
- Alert deprecated: Q.small_nat
- Use [nat_small] instead
- 
- File "tests/core/t_nativeint.pp.ml", line 76, characters 22-31:
- 76 |   Q.(pair (map of_int small_int) (map of_int small_int))
-                            ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_nativeint.pp.ml", line 76, characters 45-54:
- 76 |   Q.(pair (map of_int small_int) (map of_int small_int))
-                                                   ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -bin-annot -bin-annot-occurrences -I tests/core/.t.eobjs/byte -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/cbor/.containers_cbor.objs/byte -I src/core/.containers.objs/byte -I src/domain/.containers_domain.objs/byte -I src/monomorphic/.containers_monomorphic.objs/byte -I src/pp/.containers_pp.objs/byte -I src/testlib/.containers_testlib.objs/byte -I src/unix/.containers_unix.objs/byte -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/byte/dune__exe__T_heap.cmo -c -impl tests/core/t_heap.pp.ml)
- File "tests/core/t_heap.pp.ml", line 84, characters 5-17:
- 84 |   Q.(list_of_size Gen.small_nat medium_nat)
-           ^^^^^^^^^^^^
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_heap.pp.ml", line 84, characters 18-31:
- 84 |   Q.(list_of_size Gen.small_nat medium_nat)
-                        ^^^^^^^^^^^^^
- Alert deprecated: Q.Gen.small_nat
- Use [nat_small] instead
- 
- File "tests/core/t_heap.pp.ml", line 157, characters 5-17:
- 157 |   Q.(list_of_size Gen.small_nat medium_nat)
-            ^^^^^^^^^^^^
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_heap.pp.ml", line 157, characters 18-31:
- 157 |   Q.(list_of_size Gen.small_nat medium_nat)
-                         ^^^^^^^^^^^^^
- Alert deprecated: Q.Gen.small_nat
- Use [nat_small] instead
- 
- File "tests/core/t_heap.pp.ml", line 162, characters 5-17:
- 162 |   Q.(list_of_size Gen.small_nat medium_nat)
-            ^^^^^^^^^^^^
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_heap.pp.ml", line 162, characters 18-31:
- 162 |   Q.(list_of_size Gen.small_nat medium_nat)
-                         ^^^^^^^^^^^^^
- Alert deprecated: Q.Gen.small_nat
- Use [nat_small] instead
- 
- File "tests/core/t_heap.pp.ml", line 169, characters 5-17:
- 169 |   Q.(list_of_size Gen.small_nat medium_nat)
-            ^^^^^^^^^^^^
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_heap.pp.ml", line 169, characters 18-31:
- 169 |   Q.(list_of_size Gen.small_nat medium_nat)
-                         ^^^^^^^^^^^^^
- Alert deprecated: Q.Gen.small_nat
- Use [nat_small] instead
- 
- File "tests/core/t_heap.pp.ml", line 176, characters 5-17:
- 176 |   Q.(list_of_size Gen.small_nat medium_nat)
-            ^^^^^^^^^^^^
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_heap.pp.ml", line 176, characters 18-31:
- 176 |   Q.(list_of_size Gen.small_nat medium_nat)
-                         ^^^^^^^^^^^^^
- Alert deprecated: Q.Gen.small_nat
- Use [nat_small] instead
- 
- File "tests/core/t_heap.pp.ml", line 183, characters 5-17:
- 183 |   Q.(list_of_size Gen.small_nat medium_nat)
-            ^^^^^^^^^^^^
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_heap.pp.ml", line 183, characters 18-31:
- 183 |   Q.(list_of_size Gen.small_nat medium_nat)
-                         ^^^^^^^^^^^^^
- Alert deprecated: Q.Gen.small_nat
- Use [nat_small] instead
- 
- File "tests/core/t_heap.pp.ml", line 190, characters 5-17:
- 190 |   Q.(list_of_size Gen.small_nat medium_nat)
-            ^^^^^^^^^^^^
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_heap.pp.ml", line 190, characters 18-31:
- 190 |   Q.(list_of_size Gen.small_nat medium_nat)
-                         ^^^^^^^^^^^^^
- Alert deprecated: Q.Gen.small_nat
- Use [nat_small] instead
- 
- File "tests/core/t_heap.pp.ml", line 197, characters 5-17:
- 197 |   Q.(list_of_size Gen.small_nat medium_nat)
-            ^^^^^^^^^^^^
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_heap.pp.ml", line 197, characters 18-31:
- 197 |   Q.(list_of_size Gen.small_nat medium_nat)
-                         ^^^^^^^^^^^^^
- Alert deprecated: Q.Gen.small_nat
- Use [nat_small] instead
- 
- File "tests/core/t_heap.pp.ml", line 204, characters 5-17:
- 204 |   Q.(list_of_size Gen.small_nat medium_nat)
-            ^^^^^^^^^^^^
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_heap.pp.ml", line 204, characters 18-31:
- 204 |   Q.(list_of_size Gen.small_nat medium_nat)
-                         ^^^^^^^^^^^^^
- Alert deprecated: Q.Gen.small_nat
- Use [nat_small] instead
- 
- File "tests/core/t_heap.pp.ml", line 211, characters 5-17:
- 211 |   Q.(list_of_size Gen.small_nat medium_nat)
-            ^^^^^^^^^^^^
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_heap.pp.ml", line 211, characters 18-31:
- 211 |   Q.(list_of_size Gen.small_nat medium_nat)
-                         ^^^^^^^^^^^^^
- Alert deprecated: Q.Gen.small_nat
- Use [nat_small] instead
- 
- File "tests/core/t_heap.pp.ml", line 219, characters 5-17:
- 219 |   Q.(list_of_size Gen.small_nat medium_nat)
-            ^^^^^^^^^^^^
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_heap.pp.ml", line 219, characters 18-31:
- 219 |   Q.(list_of_size Gen.small_nat medium_nat)
-                         ^^^^^^^^^^^^^
- Alert deprecated: Q.Gen.small_nat
- Use [nat_small] instead
- 
- File "tests/core/t_heap.pp.ml", line 227, characters 5-17:
- 227 |   Q.(list_of_size Gen.small_nat medium_nat)
-            ^^^^^^^^^^^^
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_heap.pp.ml", line 227, characters 18-31:
- 227 |   Q.(list_of_size Gen.small_nat medium_nat)
-                         ^^^^^^^^^^^^^
- Alert deprecated: Q.Gen.small_nat
- Use [nat_small] instead
- 
- File "tests/core/t_heap.pp.ml", line 236, characters 5-17:
- 236 |   Q.(list_of_size Gen.small_nat medium_nat)
-            ^^^^^^^^^^^^
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_heap.pp.ml", line 236, characters 18-31:
- 236 |   Q.(list_of_size Gen.small_nat medium_nat)
-                         ^^^^^^^^^^^^^
- Alert deprecated: Q.Gen.small_nat
- Use [nat_small] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -bin-annot -bin-annot-occurrences -I tests/core/.t.eobjs/byte -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/cbor/.containers_cbor.objs/byte -I src/core/.containers.objs/byte -I src/domain/.containers_domain.objs/byte -I src/monomorphic/.containers_monomorphic.objs/byte -I src/pp/.containers_pp.objs/byte -I src/testlib/.containers_testlib.objs/byte -I src/unix/.containers_unix.objs/byte -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/byte/dune__exe__T_map.cmo -c -impl tests/core/t_map.pp.ml)
- File "tests/core/t_map.pp.ml", line 19, characters 16-25:
- 19 |   Q.(list (pair small_int small_int))
-                      ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_map.pp.ml", line 19, characters 26-35:
- 19 |   Q.(list (pair small_int small_int))
-                                ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_map.pp.ml", line 25, characters 16-25:
- 25 |   Q.(list (pair small_int small_int))
-                      ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_map.pp.ml", line 25, characters 26-35:
- 25 |   Q.(list (pair small_int small_int))
-                                ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_map.pp.ml", line 33, characters 16-25:
- 33 |   Q.(list (pair small_int small_int))
-                      ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_map.pp.ml", line 33, characters 26-35:
- 33 |   Q.(list (pair small_int small_int))
-                                ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -bin-annot -bin-annot-occurrences -I tests/core/.t.eobjs/byte -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/cbor/.containers_cbor.objs/byte -I src/core/.containers.objs/byte -I src/domain/.containers_domain.objs/byte -I src/monomorphic/.containers_monomorphic.objs/byte -I src/pp/.containers_pp.objs/byte -I src/testlib/.containers_testlib.objs/byte -I src/unix/.containers_unix.objs/byte -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/byte/dune__exe__T_seq.cmo -c -impl tests/core/t_seq.pp.ml)
- File "tests/core/t_seq.pp.ml", line 14, characters 18-29:
- 14 |   (Q.pair (Q.list Q.small_int) Q.small_int)
-                        ^^^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_seq.pp.ml", line 14, characters 31-42:
- 14 |   (Q.pair (Q.list Q.small_int) Q.small_int)
-                                     ^^^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -bin-annot -bin-annot-occurrences -I tests/core/.t.eobjs/byte -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/cbor/.containers_cbor.objs/byte -I src/core/.containers.objs/byte -I src/domain/.containers_domain.objs/byte -I src/monomorphic/.containers_monomorphic.objs/byte -I src/pp/.containers_pp.objs/byte -I src/testlib/.containers_testlib.objs/byte -I src/unix/.containers_unix.objs/byte -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/byte/dune__exe__T_sexp.cmo -c -impl tests/core/t_sexp.pp.ml)
- File "tests/core/t_sexp.pp.ml", line 77, characters 15-24:
- 77 |                frequency
-                     ^^^^^^^^^
- Alert deprecated: Q.Gen.frequency
- Use [oneof_weighted] instead
- 
- File "tests/core/t_sexp.pp.ml", line 157, characters 4-13:
- 157 |     frequency
-           ^^^^^^^^^
- Alert deprecated: Q.Gen.frequency
- Use [oneof_weighted] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -bin-annot -bin-annot-occurrences -I tests/core/.t.eobjs/byte -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/cbor/.containers_cbor.objs/byte -I src/core/.containers.objs/byte -I src/domain/.containers_domain.objs/byte -I src/monomorphic/.containers_monomorphic.objs/byte -I src/pp/.containers_pp.objs/byte -I src/testlib/.containers_testlib.objs/byte -I src/unix/.containers_unix.objs/byte -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/byte/dune__exe__T_utf8string.cmo -c -impl tests/core/t_utf8string.pp.ml)
- File "tests/core/t_utf8string.pp.ml", line 66, characters 2-16:
- 66 | q Q.small_string (fun s ->
-        ^^^^^^^^^^^^^^
- Alert deprecated: Q.small_string
- Use [string_small] instead
- 
- File "tests/core/t_utf8string.pp.ml", line 71, characters 18-32:
- 71 | q ~long_factor:10 Q.small_string (fun s ->
-                        ^^^^^^^^^^^^^^
- Alert deprecated: Q.small_string
- Use [string_small] instead
- 
- File "tests/core/t_utf8string.pp.ml", line 82, characters 5-15:
- 82 |   Q.(small_list arb_uchar)
-           ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_utf8string.pp.ml", line 89, characters 5-15:
- 89 |   Q.(small_list arb_uchar)
-           ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_utf8string.pp.ml", line 96, characters 5-15:
- 96 |   Q.(small_list arb_uchar)
-           ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_utf8string.pp.ml", line 130, characters 32-46:
- 130 | q ~long_factor:40 ~count:50_000 Q.small_string (fun s ->
-                                       ^^^^^^^^^^^^^^
- Alert deprecated: Q.small_string
- Use [string_small] instead
- 
- File "tests/core/t_utf8string.pp.ml", line 140, characters 5-15:
- 140 |   Q.(small_list arb_uchar)
-            ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_utf8string.pp.ml", line 151, characters 32-46:
- 151 | q ~long_factor:40 ~count:50_000 Q.small_string (fun s ->
-                                       ^^^^^^^^^^^^^^
- Alert deprecated: Q.small_string
- Use [string_small] instead
- 
- File "tests/core/t_utf8string.pp.ml", line 173, characters 5-15:
- 173 |   Q.(small_list arb_uchar)
-            ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_utf8string.pp.ml", line 178, characters 10-19:
- 178 |   Q.(pair small_nat arb_uchar)
-                 ^^^^^^^^^
- Alert deprecated: Q.small_nat
- Use [nat_small] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -O3 -unbox-closures -unbox-closures-factor 20 -inline 100 -I tests/core/.t.eobjs/byte -I tests/core/.t.eobjs/native -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/bencode/.containers_bencode.objs/native -I src/cbor/.containers_cbor.objs/byte -I src/cbor/.containers_cbor.objs/native -I src/core/.containers.objs/byte -I src/core/.containers.objs/native -I src/domain/.containers_domain.objs/byte -I src/domain/.containers_domain.objs/native -I src/monomorphic/.containers_monomorphic.objs/byte -I src/monomorphic/.containers_monomorphic.objs/native -I src/pp/.containers_pp.objs/byte -I src/pp/.containers_pp.objs/native -I src/testlib/.containers_testlib.objs/byte -I src/testlib/.containers_testlib.objs/native -I src/unix/.containers_unix.objs/byte -I src/unix/.containers_unix.objs/native -cmi-file tests/core/.t.eobjs/byte/dune__exe__T_eq.cmi -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/native/dune__exe__T_eq.cmx -c -impl tests/core/t_eq.pp.ml)
- File "tests/core/t_eq.pp.ml", line 7, characters 12-22:
- 7 |     let p = small_list (pair small_int bool) in
-                 ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_eq.pp.ml", line 7, characters 29-38:
- 7 |     let p = small_list (pair small_int bool) in
-                                  ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -bin-annot -bin-annot-occurrences -I tests/core/.t.eobjs/byte -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/cbor/.containers_cbor.objs/byte -I src/core/.containers.objs/byte -I src/domain/.containers_domain.objs/byte -I src/monomorphic/.containers_monomorphic.objs/byte -I src/pp/.containers_pp.objs/byte -I src/testlib/.containers_testlib.objs/byte -I src/unix/.containers_unix.objs/byte -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/byte/dune__exe__T_parse.cmo -c -impl tests/core/t_parse.pp.ml)
- File "tests/core/t_parse.pp.ml", line 164, characters 5-21:
- 164 |   Q.(printable_string)
-            ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -O3 -unbox-closures -unbox-closures-factor 20 -inline 100 -I tests/core/.t.eobjs/byte -I tests/core/.t.eobjs/native -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/bencode/.containers_bencode.objs/native -I src/cbor/.containers_cbor.objs/byte -I src/cbor/.containers_cbor.objs/native -I src/core/.containers.objs/byte -I src/core/.containers.objs/native -I src/domain/.containers_domain.objs/byte -I src/domain/.containers_domain.objs/native -I src/monomorphic/.containers_monomorphic.objs/byte -I src/monomorphic/.containers_monomorphic.objs/native -I src/pp/.containers_pp.objs/byte -I src/pp/.containers_pp.objs/native -I src/testlib/.containers_testlib.objs/byte -I src/testlib/.containers_testlib.objs/native -I src/unix/.containers_unix.objs/byte -I src/unix/.containers_unix.objs/native -cmi-file tests/core/.t.eobjs/byte/dune__exe__T_IO.cmi -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/native/dune__exe__T_IO.cmx -c -impl tests/core/t_IO.pp.ml)
- File "tests/core/t_IO.pp.ml", line 18, characters 5-17:
- 18 |   Q.(list_of_size Gen.(0 -- 40) printable_string)
-           ^^^^^^^^^^^^
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_IO.pp.ml", line 18, characters 32-48:
- 18 |   Q.(list_of_size Gen.(0 -- 40) printable_string)
-                                      ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_IO.pp.ml", line 30, characters 5-17:
- 30 |   Q.(list_of_size Gen.(0 -- 40) printable_string)
-           ^^^^^^^^^^^^
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_IO.pp.ml", line 30, characters 32-48:
- 30 |   Q.(list_of_size Gen.(0 -- 40) printable_string)
-                                      ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_IO.pp.ml", line 42, characters 5-17:
- 42 |   Q.(list_of_size Gen.(0 -- 40) printable_string)
-           ^^^^^^^^^^^^
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_IO.pp.ml", line 42, characters 32-48:
- 42 |   Q.(list_of_size Gen.(0 -- 40) printable_string)
-                                      ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -O3 -unbox-closures -unbox-closures-factor 20 -inline 100 -I tests/core/.t.eobjs/byte -I tests/core/.t.eobjs/native -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/bencode/.containers_bencode.objs/native -I src/cbor/.containers_cbor.objs/byte -I src/cbor/.containers_cbor.objs/native -I src/core/.containers.objs/byte -I src/core/.containers.objs/native -I src/domain/.containers_domain.objs/byte -I src/domain/.containers_domain.objs/native -I src/monomorphic/.containers_monomorphic.objs/byte -I src/monomorphic/.containers_monomorphic.objs/native -I src/pp/.containers_pp.objs/byte -I src/pp/.containers_pp.objs/native -I src/testlib/.containers_testlib.objs/byte -I src/testlib/.containers_testlib.objs/native -I src/unix/.containers_unix.objs/byte -I src/unix/.containers_unix.objs/native -cmi-file tests/core/.t.eobjs/byte/dune__exe__T_char.cmi -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/native/dune__exe__T_char.cmx -c -impl tests/core/t_char.pp.ml)
- File "tests/core/t_char.pp.ml", line 9, characters 3-19:
- 9 |   (Q.string_of_size (Q.Gen.return 1))
-        ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.string_of_size
- Use [string_size] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -O3 -unbox-closures -unbox-closures-factor 20 -inline 100 -I tests/core/.t.eobjs/byte -I tests/core/.t.eobjs/native -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/bencode/.containers_bencode.objs/native -I src/cbor/.containers_cbor.objs/byte -I src/cbor/.containers_cbor.objs/native -I src/core/.containers.objs/byte -I src/core/.containers.objs/native -I src/domain/.containers_domain.objs/byte -I src/domain/.containers_domain.objs/native -I src/monomorphic/.containers_monomorphic.objs/byte -I src/monomorphic/.containers_monomorphic.objs/native -I src/pp/.containers_pp.objs/byte -I src/pp/.containers_pp.objs/native -I src/testlib/.containers_testlib.objs/byte -I src/testlib/.containers_testlib.objs/native -I src/unix/.containers_unix.objs/byte -I src/unix/.containers_unix.objs/native -cmi-file tests/core/.t.eobjs/byte/dune__exe__T_bencode.cmi -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/native/dune__exe__T_bencode.cmx -c -impl tests/core/t_bencode.pp.ml)
- File "tests/core/t_bencode.pp.ml", line 28, characters 6-15:
- 28 |       frequency
-            ^^^^^^^^^
- Alert deprecated: Q.Gen.frequency
- Use [oneof_weighted] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -O3 -unbox-closures -unbox-closures-factor 20 -inline 100 -I tests/core/.t.eobjs/byte -I tests/core/.t.eobjs/native -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/bencode/.containers_bencode.objs/native -I src/cbor/.containers_cbor.objs/byte -I src/cbor/.containers_cbor.objs/native -I src/core/.containers.objs/byte -I src/core/.containers.objs/native -I src/domain/.containers_domain.objs/byte -I src/domain/.containers_domain.objs/native -I src/monomorphic/.containers_monomorphic.objs/byte -I src/monomorphic/.containers_monomorphic.objs/native -I src/pp/.containers_pp.objs/byte -I src/pp/.containers_pp.objs/native -I src/testlib/.containers_testlib.objs/byte -I src/testlib/.containers_testlib.objs/native -I src/unix/.containers_unix.objs/byte -I src/unix/.containers_unix.objs/native -cmi-file tests/core/.t.eobjs/byte/dune__exe__T_random.cmi -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/native/dune__exe__T_random.cmx -c -impl tests/core/t_random.pp.ml)
- File "tests/core/t_random.pp.ml", line 5, characters 10-19:
- 5 | q Q.(list small_int) (fun l -> l = [] || List.mem (run (pick_list l)) l);;
-               ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_random.pp.ml", line 8, characters 10-19:
- 8 |   Q.(pair small_int small_int)
-               ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_random.pp.ml", line 8, characters 20-29:
- 8 |   Q.(pair small_int small_int)
-                         ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -bin-annot -bin-annot-occurrences -I tests/core/.t.eobjs/byte -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/cbor/.containers_cbor.objs/byte -I src/core/.containers.objs/byte -I src/domain/.containers_domain.objs/byte -I src/monomorphic/.containers_monomorphic.objs/byte -I src/pp/.containers_pp.objs/byte -I src/testlib/.containers_testlib.objs/byte -I src/unix/.containers_unix.objs/byte -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/byte/dune__exe__T_string.cmo -c -impl tests/core/t_string.pp.ml)
- File "tests/core/t_string.pp.ml", line 6, characters 2-20:
- 6 | q Q.printable_string (fun s -> s = rev (rev s));;
-       ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 7, characters 2-20:
- 7 | q Q.printable_string (fun s -> length s = length (rev s));;
-       ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 8, characters 2-20:
- 8 | q Q.printable_string (fun s -> rev s = (to_list s |> List.rev |> of_list));;
-       ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 21, characters 10-26:
- 21 |   Q.(pair printable_string printable_string)
-                ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 21, characters 27-43:
- 21 |   Q.(pair printable_string printable_string)
-                                 ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 48, characters 10-26:
- 48 |   Q.(pair printable_string printable_string)
-                ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 48, characters 27-43:
- 48 |   Q.(pair printable_string printable_string)
-                                 ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 105, characters 5-21:
- 105 |   Q.(printable_string)
-            ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 119, characters 10-26:
- 119 |   Q.(pair printable_string printable_string)
-                 ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 119, characters 27-43:
- 119 |   Q.(pair printable_string printable_string)
-                                  ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 133, characters 10-26:
- 133 |   Q.(pair printable_string printable_string)
-                 ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 133, characters 27-43:
- 133 |   Q.(pair printable_string printable_string)
-                                  ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 137, characters 5-21:
- 137 | q Q.(printable_string) (fun a -> compare_natural a a = 0);;
-            ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 140, characters 12-28:
- 140 |   Q.(triple printable_string printable_string printable_string)
-                   ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 140, characters 29-45:
- 140 |   Q.(triple printable_string printable_string printable_string)
-                                    ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 140, characters 46-62:
- 140 |   Q.(triple printable_string printable_string printable_string)
-                                                     ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 148, characters 5-19:
- 148 | q Q.(string_of_size Gen.(0 -- 30)) (fun s -> edit_distance s s = 0);;
-            ^^^^^^^^^^^^^^
- Alert deprecated: Q.string_of_size
- Use [string_size] instead
- 
- File "tests/core/t_string.pp.ml", line 152, characters 12-26:
- 152 |     let p = string_of_size Gen.(0 -- 20) in
-                   ^^^^^^^^^^^^^^
- Alert deprecated: Q.string_of_size
- Use [string_size] instead
- 
- File "tests/core/t_string.pp.ml", line 159, characters 12-26:
- 159 |     let p = string_of_size Gen.(0 -- 20) in
-                   ^^^^^^^^^^^^^^
- Alert deprecated: Q.string_of_size
- Use [string_size] instead
- 
- File "tests/core/t_string.pp.ml", line 235, characters 5-21:
- 235 |   Q.(printable_string)
-            ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 246, characters 5-21:
- 246 |   Q.(printable_string)
-            ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 282, characters 5-21:
- 282 | q Q.(printable_string) (fun s -> lines s = (lines_gen s |> Gen.to_list));;
-            ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 283, characters 5-21:
- 283 | q Q.(printable_string) (fun s -> lines s = (lines_iter s |> Iter.to_list));;
-            ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 286, characters 5-15:
- 286 |   Q.(small_list printable_string)
-            ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_string.pp.ml", line 286, characters 16-32:
- 286 |   Q.(small_list printable_string)
-                       ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 291, characters 5-15:
- 291 |   Q.(small_list printable_string)
-            ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_string.pp.ml", line 291, characters 16-32:
- 291 |   Q.(small_list printable_string)
-                       ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 296, characters 5-15:
- 296 |   Q.(small_list printable_string)
-            ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_string.pp.ml", line 296, characters 16-32:
- 296 |   Q.(small_list printable_string)
-                       ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 302, characters 2-20:
- 302 | q Q.printable_string (fun s -> trim (unlines (lines s)) = trim s);;
-         ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 303, characters 2-20:
- 303 | q Q.printable_string (fun s -> trim (unlines_gen (lines_gen s)) = trim s);;
-         ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 323, characters 5-15:
- 323 |   Q.(small_list small_string)
-            ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_string.pp.ml", line 323, characters 16-28:
- 323 |   Q.(small_list small_string)
-                       ^^^^^^^^^^^^
- Alert deprecated: Q.small_string
- Use [string_small] instead
- 
- File "tests/core/t_string.pp.ml", line 355, characters 2-20:
- 355 | q Q.printable_string (fun s -> filter (fun _ -> true) s = s);;
-         ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 359, characters 5-21:
- 359 | q Q.(printable_string) (fun s -> String.trim s = (s |> ltrim |> rtrim));;
-            ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 360, characters 5-21:
- 360 | q Q.(printable_string) (fun s -> ltrim s = ltrim (ltrim s));;
-            ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 361, characters 5-21:
- 361 | q Q.(printable_string) (fun s -> rtrim s = rtrim (rtrim s));;
-            ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 364, characters 5-21:
- 364 |   Q.(printable_string)
-            ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 374, characters 5-21:
- 374 |   Q.(printable_string)
-            ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 387, characters 10-26:
- 387 |   Q.(pair printable_string printable_string)
-                 ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 387, characters 27-43:
- 387 |   Q.(pair printable_string printable_string)
-                                  ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 392, characters 5-21:
- 392 | q Q.(printable_string) (fun s -> equal_caseless s s);;
-            ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 393, characters 5-21:
- 393 | q Q.(printable_string) (fun s -> equal_caseless (uppercase_ascii s) s)
-            ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -O3 -unbox-closures -unbox-closures-factor 20 -inline 100 -I tests/core/.t.eobjs/byte -I tests/core/.t.eobjs/native -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/bencode/.containers_bencode.objs/native -I src/cbor/.containers_cbor.objs/byte -I src/cbor/.containers_cbor.objs/native -I src/core/.containers.objs/byte -I src/core/.containers.objs/native -I src/domain/.containers_domain.objs/byte -I src/domain/.containers_domain.objs/native -I src/monomorphic/.containers_monomorphic.objs/byte -I src/monomorphic/.containers_monomorphic.objs/native -I src/pp/.containers_pp.objs/byte -I src/pp/.containers_pp.objs/native -I src/testlib/.containers_testlib.objs/byte -I src/testlib/.containers_testlib.objs/native -I src/unix/.containers_unix.objs/byte -I src/unix/.containers_unix.objs/native -cmi-file tests/core/.t.eobjs/byte/dune__exe__T_cbor.cmi -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/native/dune__exe__T_cbor.cmx -c -impl tests/core/t_cbor.pp.ml)
- File "tests/core/t_cbor.pp.ml", line 29, characters 17-26:
- 29 |         let* n = frequency [ 20, 0 -- 150; 1, 151 -- 100_000 ] in
-                       ^^^^^^^^^
- Alert deprecated: Q.Gen.frequency
- Use [oneof_weighted] instead
- 
- File "tests/core/t_cbor.pp.ml", line 33, characters 17-26:
- 33 |         let* n = frequency [ 20, 0 -- 150; 1, 151 -- 100_000 ] in
-                       ^^^^^^^^^
- Alert deprecated: Q.Gen.frequency
- Use [oneof_weighted] instead
- 
- File "tests/core/t_cbor.pp.ml", line 38, characters 15-24:
- 38 |   let g_base = frequency base in
-                     ^^^^^^^^^
- Alert deprecated: Q.Gen.frequency
- Use [oneof_weighted] instead
- 
- File "tests/core/t_cbor.pp.ml", line 62, characters 2-11:
- 62 |   frequency
-        ^^^^^^^^^
- Alert deprecated: Q.Gen.frequency
- Use [oneof_weighted] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -O3 -unbox-closures -unbox-closures-factor 20 -inline 100 -I tests/core/.t.eobjs/byte -I tests/core/.t.eobjs/native -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/bencode/.containers_bencode.objs/native -I src/cbor/.containers_cbor.objs/byte -I src/cbor/.containers_cbor.objs/native -I src/core/.containers.objs/byte -I src/core/.containers.objs/native -I src/domain/.containers_domain.objs/byte -I src/domain/.containers_domain.objs/native -I src/monomorphic/.containers_monomorphic.objs/byte -I src/monomorphic/.containers_monomorphic.objs/native -I src/pp/.containers_pp.objs/byte -I src/pp/.containers_pp.objs/native -I src/testlib/.containers_testlib.objs/byte -I src/testlib/.containers_testlib.objs/native -I src/unix/.containers_unix.objs/byte -I src/unix/.containers_unix.objs/native -cmi-file tests/core/.t.eobjs/byte/dune__exe__T_byte_buffer.cmi -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/native/dune__exe__T_byte_buffer.cmx -c -impl tests/core/t_byte_buffer.pp.ml)
- File "tests/core/t_byte_buffer.pp.ml", line 62, characters 2-11:
- 62 |   frequency
-        ^^^^^^^^^
- Alert deprecated: QCheck.Gen.frequency
- Use [oneof_weighted] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -O3 -unbox-closures -unbox-closures-factor 20 -inline 100 -I tests/core/.t.eobjs/byte -I tests/core/.t.eobjs/native -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/bencode/.containers_bencode.objs/native -I src/cbor/.containers_cbor.objs/byte -I src/cbor/.containers_cbor.objs/native -I src/core/.containers.objs/byte -I src/core/.containers.objs/native -I src/domain/.containers_domain.objs/byte -I src/domain/.containers_domain.objs/native -I src/monomorphic/.containers_monomorphic.objs/byte -I src/monomorphic/.containers_monomorphic.objs/native -I src/pp/.containers_pp.objs/byte -I src/pp/.containers_pp.objs/native -I src/testlib/.containers_testlib.objs/byte -I src/testlib/.containers_testlib.objs/native -I src/unix/.containers_unix.objs/byte -I src/unix/.containers_unix.objs/native -cmi-file tests/core/.t.eobjs/byte/dune__exe__T_canonical_sexp.cmi -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/native/dune__exe__T_canonical_sexp.cmx -c -impl tests/core/t_canonical_sexp.pp.ml)
- File "tests/core/t_canonical_sexp.pp.ml", line 31, characters 15-24:
- 31 |                frequency
-                     ^^^^^^^^^
- Alert deprecated: Q.Gen.frequency
- Use [oneof_weighted] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -O3 -unbox-closures -unbox-closures-factor 20 -inline 100 -I tests/core/.t.eobjs/byte -I tests/core/.t.eobjs/native -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/bencode/.containers_bencode.objs/native -I src/cbor/.containers_cbor.objs/byte -I src/cbor/.containers_cbor.objs/native -I src/core/.containers.objs/byte -I src/core/.containers.objs/native -I src/domain/.containers_domain.objs/byte -I src/domain/.containers_domain.objs/native -I src/monomorphic/.containers_monomorphic.objs/byte -I src/monomorphic/.containers_monomorphic.objs/native -I src/pp/.containers_pp.objs/byte -I src/pp/.containers_pp.objs/native -I src/testlib/.containers_testlib.objs/byte -I src/testlib/.containers_testlib.objs/native -I src/unix/.containers_unix.objs/byte -I src/unix/.containers_unix.objs/native -cmi-file tests/core/.t.eobjs/byte/dune__exe__T_int64.cmi -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/native/dune__exe__T_int64.cmx -c -impl tests/core/t_int64.pp.ml)
- File "tests/core/t_int64.pp.ml", line 42, characters 24-42:
- 42 |   (Q.pair (Q.map of_int Q.small_signed_int) (Q.map of_int Q.small_nat))
-                              ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Q.small_signed_int
- Use [int_small] instead
- 
- File "tests/core/t_int64.pp.ml", line 42, characters 58-69:
- 42 |   (Q.pair (Q.map of_int Q.small_signed_int) (Q.map of_int Q.small_nat))
-                                                                ^^^^^^^^^^^
- Alert deprecated: Q.small_nat
- Use [nat_small] instead
- 
- File "tests/core/t_int64.pp.ml", line 49, characters 24-42:
- 49 |   (Q.pair (Q.map of_int Q.small_signed_int) (Q.map of_int Q.small_nat))
-                              ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Q.small_signed_int
- Use [int_small] instead
- 
- File "tests/core/t_int64.pp.ml", line 49, characters 58-69:
- 49 |   (Q.pair (Q.map of_int Q.small_signed_int) (Q.map of_int Q.small_nat))
-                                                                ^^^^^^^^^^^
- Alert deprecated: Q.small_nat
- Use [nat_small] instead
- 
- File "tests/core/t_int64.pp.ml", line 84, characters 22-31:
- 84 |   Q.(pair (map of_int small_int) (map of_int small_int))
-                            ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_int64.pp.ml", line 84, characters 45-54:
- 84 |   Q.(pair (map of_int small_int) (map of_int small_int))
-                                                   ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -O3 -unbox-closures -unbox-closures-factor 20 -inline 100 -I tests/core/.t.eobjs/byte -I tests/core/.t.eobjs/native -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/bencode/.containers_bencode.objs/native -I src/cbor/.containers_cbor.objs/byte -I src/cbor/.containers_cbor.objs/native -I src/core/.containers.objs/byte -I src/core/.containers.objs/native -I src/domain/.containers_domain.objs/byte -I src/domain/.containers_domain.objs/native -I src/monomorphic/.containers_monomorphic.objs/byte -I src/monomorphic/.containers_monomorphic.objs/native -I src/pp/.containers_pp.objs/byte -I src/pp/.containers_pp.objs/native -I src/testlib/.containers_testlib.objs/byte -I src/testlib/.containers_testlib.objs/native -I src/unix/.containers_unix.objs/byte -I src/unix/.containers_unix.objs/native -cmi-file tests/core/.t.eobjs/byte/dune__exe__T_nativeint.cmi -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/native/dune__exe__T_nativeint.cmx -c -impl tests/core/t_nativeint.pp.ml)
- File "tests/core/t_nativeint.pp.ml", line 42, characters 24-42:
- 42 |   (Q.pair (Q.map of_int Q.small_signed_int) (Q.map of_int Q.small_nat))
-                              ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Q.small_signed_int
- Use [int_small] instead
- 
- File "tests/core/t_nativeint.pp.ml", line 42, characters 58-69:
- 42 |   (Q.pair (Q.map of_int Q.small_signed_int) (Q.map of_int Q.small_nat))
-                                                                ^^^^^^^^^^^
- Alert deprecated: Q.small_nat
- Use [nat_small] instead
- 
- File "tests/core/t_nativeint.pp.ml", line 49, characters 24-42:
- 49 |   (Q.pair (Q.map of_int Q.small_signed_int) (Q.map of_int Q.small_nat))
-                              ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Q.small_signed_int
- Use [int_small] instead
- 
- File "tests/core/t_nativeint.pp.ml", line 49, characters 58-69:
- 49 |   (Q.pair (Q.map of_int Q.small_signed_int) (Q.map of_int Q.small_nat))
-                                                                ^^^^^^^^^^^
- Alert deprecated: Q.small_nat
- Use [nat_small] instead
- 
- File "tests/core/t_nativeint.pp.ml", line 76, characters 22-31:
- 76 |   Q.(pair (map of_int small_int) (map of_int small_int))
-                            ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_nativeint.pp.ml", line 76, characters 45-54:
- 76 |   Q.(pair (map of_int small_int) (map of_int small_int))
-                                                   ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -bin-annot -bin-annot-occurrences -I tests/core/.t.eobjs/byte -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/cbor/.containers_cbor.objs/byte -I src/core/.containers.objs/byte -I src/domain/.containers_domain.objs/byte -I src/monomorphic/.containers_monomorphic.objs/byte -I src/pp/.containers_pp.objs/byte -I src/testlib/.containers_testlib.objs/byte -I src/unix/.containers_unix.objs/byte -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/byte/dune__exe__T_vector.cmo -c -impl tests/core/t_vector.pp.ml)
- File "tests/core/t_vector.pp.ml", line 272, characters 5-17:
- 272 |   Q.(list_of_size (Gen.int_range 10 10) small_int)
-            ^^^^^^^^^^^^
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_vector.pp.ml", line 272, characters 40-49:
- 272 |   Q.(list_of_size (Gen.int_range 10 10) small_int)
-                                               ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 281, characters 5-17:
- 281 |   Q.(list_of_size (Gen.int_range 10 10) small_int)
-            ^^^^^^^^^^^^
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_vector.pp.ml", line 281, characters 40-49:
- 281 |   Q.(list_of_size (Gen.int_range 10 10) small_int)
-                                               ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 290, characters 5-17:
- 290 |   Q.(list_of_size (Gen.int_range 10 10) small_int)
-            ^^^^^^^^^^^^
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_vector.pp.ml", line 290, characters 40-49:
- 290 |   Q.(list_of_size (Gen.int_range 10 10) small_int)
-                                               ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 410, characters 12-24:
- 410 |     let g = list_of_size Gen.(0 -- 10) small_int in
-                   ^^^^^^^^^^^^
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_vector.pp.ml", line 410, characters 39-48:
- 410 |     let g = list_of_size Gen.(0 -- 10) small_int in
-                                              ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 416, characters 11-21:
- 416 |   Q.(pair (small_list small_int) (small_list small_int))
-                  ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 416, characters 22-31:
- 416 |   Q.(pair (small_list small_int) (small_list small_int))
-                             ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 416, characters 34-44:
- 416 |   Q.(pair (small_list small_int) (small_list small_int))
-                                         ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 416, characters 45-54:
- 416 |   Q.(pair (small_list small_int) (small_list small_int))
-                                                    ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 424, characters 11-21:
- 424 |   Q.(pair (small_list small_int) (small_list small_int))
-                  ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 424, characters 22-31:
- 424 |   Q.(pair (small_list small_int) (small_list small_int))
-                             ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 424, characters 34-44:
- 424 |   Q.(pair (small_list small_int) (small_list small_int))
-                                         ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 424, characters 45-54:
- 424 |   Q.(pair (small_list small_int) (small_list small_int))
-                                                    ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 455, characters 5-15:
- 455 |   Q.(small_list small_int)
-            ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 455, characters 16-25:
- 455 |   Q.(small_list small_int)
-                       ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 469, characters 7-18:
- 469 | q (gen Q.small_int) (fun v ->
-              ^^^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 478, characters 7-18:
- 478 | q (gen Q.small_int) (fun v ->
-              ^^^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 484, characters 7-18:
- 484 | q (gen Q.small_int) (fun v ->
-              ^^^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 498, characters 5-15:
- 498 |   Q.(small_list small_int)
-            ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 498, characters 16-25:
- 498 |   Q.(small_list small_int)
-                       ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 520, characters 31-40:
- 520 |   Q.(pair (fun1 Observable.int small_int) (small_list small_int))
-                                      ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 520, characters 43-53:
- 520 |   Q.(pair (fun1 Observable.int small_int) (small_list small_int))
-                                                  ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 520, characters 54-63:
- 520 |   Q.(pair (fun1 Observable.int small_int) (small_list small_int))
-                                                             ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 536, characters 46-55:
- 536 |   Q.(pair (fun2 Observable.int Observable.int small_int) (small_list small_int))
-                                                     ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 536, characters 58-68:
- 536 |   Q.(pair (fun2 Observable.int Observable.int small_int) (small_list small_int))
-                                                                 ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 536, characters 69-78:
- 536 |   Q.(pair (fun2 Observable.int Observable.int small_int) (small_list small_int))
-                                                                            ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 543, characters 31-40:
- 543 |   Q.(pair (fun1 Observable.int small_int) (small_list small_int))
-                                      ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 543, characters 43-53:
- 543 |   Q.(pair (fun1 Observable.int small_int) (small_list small_int))
-                                                  ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 543, characters 54-63:
- 543 |   Q.(pair (fun1 Observable.int small_int) (small_list small_int))
-                                                             ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 557, characters 38-48:
- 557 |   Q.(pair (fun1 Observable.int bool) (small_list small_int))
-                                             ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 557, characters 49-58:
- 557 |   Q.(pair (fun1 Observable.int bool) (small_list small_int))
-                                                        ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 573, characters 38-48:
- 573 |   Q.(pair (fun1 Observable.int bool) (small_list small_int))
-                                             ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 573, characters 49-58:
- 573 |   Q.(pair (fun1 Observable.int bool) (small_list small_int))
-                                                        ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 583, characters 46-55:
- 583 |   Q.(pair (fun2 Observable.int Observable.int small_int) (small_list small_int))
-                                                     ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 583, characters 58-68:
- 583 |   Q.(pair (fun2 Observable.int Observable.int small_int) (small_list small_int))
-                                                                 ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 583, characters 69-78:
- 583 |   Q.(pair (fun2 Observable.int Observable.int small_int) (small_list small_int))
-                                                                            ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 590, characters 38-48:
- 590 |   Q.(pair (fun1 Observable.int bool) (small_list small_int))
-                                             ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 590, characters 49-58:
- 590 |   Q.(pair (fun1 Observable.int bool) (small_list small_int))
-                                                        ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 597, characters 38-48:
- 597 |   Q.(pair (fun1 Observable.int bool) (small_list small_int))
-                                             ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 597, characters 49-58:
- 597 |   Q.(pair (fun1 Observable.int bool) (small_list small_int))
-                                                        ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 604, characters 38-48:
- 604 |   Q.(pair (fun1 Observable.int bool) (small_list small_int))
-                                             ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 604, characters 49-58:
- 604 |   Q.(pair (fun1 Observable.int bool) (small_list small_int))
-                                                        ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 611, characters 10-19:
- 611 |   Q.(list small_int)
-                 ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 626, characters 47-57:
- 626 |   Q.(pair (fun1 Observable.int (option bool)) (small_list small_int))
-                                                      ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 626, characters 58-67:
- 626 |   Q.(pair (fun1 Observable.int (option bool)) (small_list small_int))
-                                                                 ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 633, characters 39-48:
- 633 |   Q.(pair (fun1 Observable.int (option small_int)) (small_list small_int))
-                                              ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 633, characters 52-62:
- 633 |   Q.(pair (fun1 Observable.int (option small_int)) (small_list small_int))
-                                                           ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 633, characters 63-72:
- 633 |   Q.(pair (fun1 Observable.int (option small_int)) (small_list small_int))
-                                                                      ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 671, characters 5-15:
- 671 |   Q.(small_list small_int)
-            ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 671, characters 16-25:
- 671 |   Q.(small_list small_int)
-                       ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 683, characters 5-15:
- 683 |   Q.(small_list small_int)
-            ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 683, characters 16-25:
- 683 |   Q.(small_list small_int)
-                       ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 727, characters 10-19:
- 727 |   Q.(pair small_int small_int)
-                 ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 727, characters 20-29:
- 727 |   Q.(pair small_int small_int)
-                           ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 732, characters 10-19:
- 732 |   Q.(pair small_int small_int)
-                 ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 732, characters 20-29:
- 732 |   Q.(pair small_int small_int)
-                           ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -O3 -unbox-closures -unbox-closures-factor 20 -inline 100 -I tests/core/.t.eobjs/byte -I tests/core/.t.eobjs/native -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/bencode/.containers_bencode.objs/native -I src/cbor/.containers_cbor.objs/byte -I src/cbor/.containers_cbor.objs/native -I src/core/.containers.objs/byte -I src/core/.containers.objs/native -I src/domain/.containers_domain.objs/byte -I src/domain/.containers_domain.objs/native -I src/monomorphic/.containers_monomorphic.objs/byte -I src/monomorphic/.containers_monomorphic.objs/native -I src/pp/.containers_pp.objs/byte -I src/pp/.containers_pp.objs/native -I src/testlib/.containers_testlib.objs/byte -I src/testlib/.containers_testlib.objs/native -I src/unix/.containers_unix.objs/byte -I src/unix/.containers_unix.objs/native -cmi-file tests/core/.t.eobjs/byte/dune__exe__T_int32.cmi -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/native/dune__exe__T_int32.cmx -c -impl tests/core/t_int32.pp.ml)
- File "tests/core/t_int32.pp.ml", line 42, characters 24-42:
- 42 |   (Q.pair (Q.map of_int Q.small_signed_int) (Q.map of_int Q.small_nat))
-                              ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Q.small_signed_int
- Use [int_small] instead
- 
- File "tests/core/t_int32.pp.ml", line 42, characters 58-69:
- 42 |   (Q.pair (Q.map of_int Q.small_signed_int) (Q.map of_int Q.small_nat))
-                                                                ^^^^^^^^^^^
- Alert deprecated: Q.small_nat
- Use [nat_small] instead
- 
- File "tests/core/t_int32.pp.ml", line 49, characters 24-42:
- 49 |   (Q.pair (Q.map of_int Q.small_signed_int) (Q.map of_int Q.small_nat))
-                              ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Q.small_signed_int
- Use [int_small] instead
- 
- File "tests/core/t_int32.pp.ml", line 49, characters 58-69:
- 49 |   (Q.pair (Q.map of_int Q.small_signed_int) (Q.map of_int Q.small_nat))
-                                                                ^^^^^^^^^^^
- Alert deprecated: Q.small_nat
- Use [nat_small] instead
- 
- File "tests/core/t_int32.pp.ml", line 76, characters 22-31:
- 76 |   Q.(pair (map of_int small_int) (map of_int small_int))
-                            ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_int32.pp.ml", line 76, characters 45-54:
- 76 |   Q.(pair (map of_int small_int) (map of_int small_int))
-                                                   ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -O3 -unbox-closures -unbox-closures-factor 20 -inline 100 -I tests/core/.t.eobjs/byte -I tests/core/.t.eobjs/native -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/bencode/.containers_bencode.objs/native -I src/cbor/.containers_cbor.objs/byte -I src/cbor/.containers_cbor.objs/native -I src/core/.containers.objs/byte -I src/core/.containers.objs/native -I src/domain/.containers_domain.objs/byte -I src/domain/.containers_domain.objs/native -I src/monomorphic/.containers_monomorphic.objs/byte -I src/monomorphic/.containers_monomorphic.objs/native -I src/pp/.containers_pp.objs/byte -I src/pp/.containers_pp.objs/native -I src/testlib/.containers_testlib.objs/byte -I src/testlib/.containers_testlib.objs/native -I src/unix/.containers_unix.objs/byte -I src/unix/.containers_unix.objs/native -cmi-file tests/core/.t.eobjs/byte/dune__exe__T_map.cmi -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/native/dune__exe__T_map.cmx -c -impl tests/core/t_map.pp.ml)
- File "tests/core/t_map.pp.ml", line 19, characters 16-25:
- 19 |   Q.(list (pair small_int small_int))
-                      ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_map.pp.ml", line 19, characters 26-35:
- 19 |   Q.(list (pair small_int small_int))
-                                ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_map.pp.ml", line 25, characters 16-25:
- 25 |   Q.(list (pair small_int small_int))
-                      ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_map.pp.ml", line 25, characters 26-35:
- 25 |   Q.(list (pair small_int small_int))
-                                ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_map.pp.ml", line 33, characters 16-25:
- 33 |   Q.(list (pair small_int small_int))
-                      ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_map.pp.ml", line 33, characters 26-35:
- 33 |   Q.(list (pair small_int small_int))
-                                ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48 -g -O3 -unbox-closures -unbox-closures-factor 20 -inline 100 -I tests/pvec/.t.eobjs/byte -I tests/pvec/.t.eobjs/native -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I src/core/.containers.objs/byte -I src/core/.containers.objs/native -I src/domain/.containers_domain.objs/byte -I src/domain/.containers_domain.objs/native -I src/monomorphic/.containers_monomorphic.objs/byte -I src/monomorphic/.containers_monomorphic.objs/native -I src/pvec/.containers_pvec.objs/byte -I src/pvec/.containers_pvec.objs/native -I src/testlib/.containers_testlib.objs/byte -I src/testlib/.containers_testlib.objs/native -cmi-file tests/pvec/.t.eobjs/byte/dune__exe__T_pvec.cmi -no-alias-deps -open Dune__exe -o tests/pvec/.t.eobjs/native/dune__exe__T_pvec.cmx -c -impl tests/pvec/t_pvec.ml)
- File "tests/pvec/t_pvec.ml", line 8, characters 13-23:
- 8 |   let g = Q.(small_list (pair small_int small_int)) in
-                  ^^^^^^^^^^
- Alert deprecated: Test.Q.small_list
- Use [list_small] instead
- 
- File "tests/pvec/t_pvec.ml", line 8, characters 30-39:
- 8 |   let g = Q.(small_list (pair small_int small_int)) in
-                                   ^^^^^^^^^
- Alert deprecated: Test.Q.small_int
- Use [nat_small] instead
- 
- File "tests/pvec/t_pvec.ml", line 8, characters 40-49:
- 8 |   let g = Q.(small_list (pair small_int small_int)) in
-                                             ^^^^^^^^^
- Alert deprecated: Test.Q.small_int
- Use [nat_small] instead
- 
- File "tests/pvec/t_pvec.ml", line 36, characters 15-25:
- 36 |   Q.(pair int (small_list int))
-                     ^^^^^^^^^^
- Alert deprecated: Test.Q.small_list
- Use [list_small] instead
- 
- File "tests/pvec/t_pvec.ml", line 48, characters 38-48:
- 48 |   Q.(pair (fun1 Observable.int bool) (small_list int))
-                                            ^^^^^^^^^^
- Alert deprecated: Test.Q.small_list
- Use [list_small] instead
- 
- File "tests/pvec/t_pvec.ml", line 55, characters 11-21:
- 55 |   Q.(pair (small_list int) (small_list int))
-                 ^^^^^^^^^^
- Alert deprecated: Test.Q.small_list
- Use [list_small] instead
- 
- File "tests/pvec/t_pvec.ml", line 55, characters 28-38:
- 55 |   Q.(pair (small_list int) (small_list int))
-                                  ^^^^^^^^^^
- Alert deprecated: Test.Q.small_list
- Use [list_small] instead
- 
- File "tests/pvec/t_pvec.ml", line 59, characters 5-15:
- 59 | q Q.(small_list int) (fun l -> l = to_list (of_list l));;
-           ^^^^^^^^^^
- Alert deprecated: Test.Q.small_list
- Use [list_small] instead
- 
- File "tests/pvec/t_pvec.ml", line 77, characters 11-21:
- 77 |   Q.(pair (small_list int) (small_list int))
-                 ^^^^^^^^^^
- Alert deprecated: Test.Q.small_list
- Use [list_small] instead
- 
- File "tests/pvec/t_pvec.ml", line 77, characters 28-38:
- 77 |   Q.(pair (small_list int) (small_list int))
-                                  ^^^^^^^^^^
- Alert deprecated: Test.Q.small_list
- Use [list_small] instead
- 
- File "tests/pvec/t_pvec.ml", line 81, characters 5-15:
- 81 | q Q.(small_list int) (fun l1 -> equal CCInt.equal (of_list l1) (of_list l1))
-           ^^^^^^^^^^
- Alert deprecated: Test.Q.small_list
- Use [list_small] instead
- 
- File "tests/pvec/t_pvec.ml", line 90, characters 15-25:
- 90 |       let* l = small_list int in
-                     ^^^^^^^^^^
- Alert deprecated: Test.Q.Gen.small_list
- Use [list_small] instead
- 
- File "tests/pvec/t_pvec.ml", line 241, characters 10-19:
- 241 |           frequency
-                 ^^^^^^^^^
- Alert deprecated: Test.Q.Gen.frequency
- Use [oneof_weighted] instead
- 
- File "tests/pvec/t_pvec.ml", line 263, characters 21-31:
- 263 |                      small_list gen_x >|= fun l ->
-                            ^^^^^^^^^^
- Alert deprecated: Test.Q.Gen.small_list
- Use [list_small] instead
- 
- File "tests/pvec/t_pvec.ml", line 266, characters 21-31:
- 266 |                      small_list gen_x >|= fun l ->
-                            ^^^^^^^^^^
- Alert deprecated: Test.Q.Gen.small_list
- Use [list_small] instead
- 
- File "tests/pvec/t_pvec.ml", line 287, characters 41-50:
- 287 |     Q.Gen.(0 -- 40 >>= fun len -> Op.gen small_int len)
-                                                ^^^^^^^^^
- Alert deprecated: Test.Q.Gen.small_int
- Use [nat_small] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -O3 -unbox-closures -unbox-closures-factor 20 -inline 100 -I tests/core/.t.eobjs/byte -I tests/core/.t.eobjs/native -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/bencode/.containers_bencode.objs/native -I src/cbor/.containers_cbor.objs/byte -I src/cbor/.containers_cbor.objs/native -I src/core/.containers.objs/byte -I src/core/.containers.objs/native -I src/domain/.containers_domain.objs/byte -I src/domain/.containers_domain.objs/native -I src/monomorphic/.containers_monomorphic.objs/byte -I src/monomorphic/.containers_monomorphic.objs/native -I src/pp/.containers_pp.objs/byte -I src/pp/.containers_pp.objs/native -I src/testlib/.containers_testlib.objs/byte -I src/testlib/.containers_testlib.objs/native -I src/unix/.containers_unix.objs/byte -I src/unix/.containers_unix.objs/native -cmi-file tests/core/.t.eobjs/byte/dune__exe__T_seq.cmi -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/native/dune__exe__T_seq.cmx -c -impl tests/core/t_seq.pp.ml)
- File "tests/core/t_seq.pp.ml", line 14, characters 18-29:
- 14 |   (Q.pair (Q.list Q.small_int) Q.small_int)
-                        ^^^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_seq.pp.ml", line 14, characters 31-42:
- 14 |   (Q.pair (Q.list Q.small_int) Q.small_int)
-                                     ^^^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -O3 -unbox-closures -unbox-closures-factor 20 -inline 100 -I tests/core/.t.eobjs/byte -I tests/core/.t.eobjs/native -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/bencode/.containers_bencode.objs/native -I src/cbor/.containers_cbor.objs/byte -I src/cbor/.containers_cbor.objs/native -I src/core/.containers.objs/byte -I src/core/.containers.objs/native -I src/domain/.containers_domain.objs/byte -I src/domain/.containers_domain.objs/native -I src/monomorphic/.containers_monomorphic.objs/byte -I src/monomorphic/.containers_monomorphic.objs/native -I src/pp/.containers_pp.objs/byte -I src/pp/.containers_pp.objs/native -I src/testlib/.containers_testlib.objs/byte -I src/testlib/.containers_testlib.objs/native -I src/unix/.containers_unix.objs/byte -I src/unix/.containers_unix.objs/native -cmi-file tests/core/.t.eobjs/byte/dune__exe__T_utf8string.cmi -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/native/dune__exe__T_utf8string.cmx -c -impl tests/core/t_utf8string.pp.ml)
- File "tests/core/t_utf8string.pp.ml", line 66, characters 2-16:
- 66 | q Q.small_string (fun s ->
-        ^^^^^^^^^^^^^^
- Alert deprecated: Q.small_string
- Use [string_small] instead
- 
- File "tests/core/t_utf8string.pp.ml", line 71, characters 18-32:
- 71 | q ~long_factor:10 Q.small_string (fun s ->
-                        ^^^^^^^^^^^^^^
- Alert deprecated: Q.small_string
- Use [string_small] instead
- 
- File "tests/core/t_utf8string.pp.ml", line 82, characters 5-15:
- 82 |   Q.(small_list arb_uchar)
-           ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_utf8string.pp.ml", line 89, characters 5-15:
- 89 |   Q.(small_list arb_uchar)
-           ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_utf8string.pp.ml", line 96, characters 5-15:
- 96 |   Q.(small_list arb_uchar)
-           ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_utf8string.pp.ml", line 130, characters 32-46:
- 130 | q ~long_factor:40 ~count:50_000 Q.small_string (fun s ->
-                                       ^^^^^^^^^^^^^^
- Alert deprecated: Q.small_string
- Use [string_small] instead
- 
- File "tests/core/t_utf8string.pp.ml", line 140, characters 5-15:
- 140 |   Q.(small_list arb_uchar)
-            ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_utf8string.pp.ml", line 151, characters 32-46:
- 151 | q ~long_factor:40 ~count:50_000 Q.small_string (fun s ->
-                                       ^^^^^^^^^^^^^^
- Alert deprecated: Q.small_string
- Use [string_small] instead
- 
- File "tests/core/t_utf8string.pp.ml", line 173, characters 5-15:
- 173 |   Q.(small_list arb_uchar)
-            ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_utf8string.pp.ml", line 178, characters 10-19:
- 178 |   Q.(pair small_nat arb_uchar)
-                 ^^^^^^^^^
- Alert deprecated: Q.small_nat
- Use [nat_small] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -bin-annot -bin-annot-occurrences -I tests/core/.t.eobjs/byte -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/cbor/.containers_cbor.objs/byte -I src/core/.containers.objs/byte -I src/domain/.containers_domain.objs/byte -I src/monomorphic/.containers_monomorphic.objs/byte -I src/pp/.containers_pp.objs/byte -I src/testlib/.containers_testlib.objs/byte -I src/unix/.containers_unix.objs/byte -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/byte/dune__exe__T_list.cmo -c -impl tests/core/t_list.pp.ml)
- File "tests/core/t_list.pp.ml", line 7, characters 10-19:
- 7 | q Q.(pair small_nat (list int)) (fun (i, l) -> nth_opt l i = get_at_idx i l);;
-               ^^^^^^^^^
- Alert deprecated: Q.small_nat
- Use [nat_small] instead
- 
- File "tests/core/t_list.pp.ml", line 18, characters 21-30:
- 18 |   Q.(pair (list int) small_int)
-                           ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.pp.ml", line 23, characters 10-21:
- 23 | q (Q.list Q.small_int) (fun l ->
-                ^^^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.pp.ml", line 30, characters 5-15:
- 30 | q Q.(small_list int) (fun l -> List.rev l = List.fold_left cons' [] l);;
-           ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_list.pp.ml", line 50, characters 10-21:
- 50 | q (Q.list Q.small_int) (fun l -> l = fold_right (fun x y -> x :: y) l []);;
-                ^^^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 306, characters 12-22:
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_list.ml", line 317, characters 12-22:
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_list.ml", line 353, characters 5-17:
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_list.ml", line 353, characters 42-51:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 353, characters 52-64:
- Alert deprecated: Q.small_string
- Use [string_small] instead
- 
- File "tests/core/t_list.ml", line 360, characters 5-17:
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_list.ml", line 360, characters 42-51:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 360, characters 52-61:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 394, characters 5-17:
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_list.ml", line 394, characters 32-44:
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_list.ml", line 394, characters 58-67:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 399, characters 10-19:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 399, characters 26-35:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 435, characters 16-25:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 435, characters 33-42:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 442, characters 16-25:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 442, characters 33-42:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 454, characters 12-21:
- Alert deprecated: Q.small_nat
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 454, characters 22-31:
- Alert deprecated: Q.small_nat
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 465, characters 16-25:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 465, characters 33-42:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 485, characters 10-19:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 490, characters 10-19:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 490, characters 26-35:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 497, characters 10-19:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 497, characters 26-35:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 505, characters 10-19:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 505, characters 26-35:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 513, characters 10-19:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 513, characters 26-35:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 521, characters 10-19:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 521, characters 26-35:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 528, characters 10-19:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 528, characters 26-35:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 535, characters 10-19:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 535, characters 26-35:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 543, characters 10-19:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 543, characters 26-35:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 551, characters 10-19:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 551, characters 26-35:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 565, characters 10-19:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 565, characters 26-35:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 573, characters 10-19:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 573, characters 26-35:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 587, characters 10-19:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 587, characters 26-35:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 601, characters 10-19:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 601, characters 26-35:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 615, characters 10-19:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 615, characters 26-35:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 679, characters 16-25:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 679, characters 33-42:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 687, characters 16-25:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 687, characters 33-42:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 701, characters 18-29:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 718, characters 18-29:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 726, characters 18-29:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 773, characters 5-15:
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_list.ml", line 773, characters 16-25:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 774, characters 5-15:
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_list.ml", line 774, characters 16-25:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 777, characters 5-15:
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_list.ml", line 777, characters 16-25:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 805, characters 11-21:
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_list.ml", line 805, characters 28-38:
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_list.ml", line 809, characters 5-15:
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_list.ml", line 810, characters 5-15:
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_list.ml", line 818, characters 43-52:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 825, characters 43-52:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 830, characters 43-52:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 936, characters 5-15:
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_list.ml", line 936, characters 16-25:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 968, characters 5-15:
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_list.ml", line 968, characters 16-25:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 1016, characters 10-19:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 1016, characters 20-29:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 1032, characters 10-19:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 1032, characters 20-29:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 1041, characters 10-19:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 1041, characters 21-31:
- Alert deprecated: Q.small_list
- Use [list_small] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -O3 -unbox-closures -unbox-closures-factor 20 -inline 100 -I tests/core/.t.eobjs/byte -I tests/core/.t.eobjs/native -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/bencode/.containers_bencode.objs/native -I src/cbor/.containers_cbor.objs/byte -I src/cbor/.containers_cbor.objs/native -I src/core/.containers.objs/byte -I src/core/.containers.objs/native -I src/domain/.containers_domain.objs/byte -I src/domain/.containers_domain.objs/native -I src/monomorphic/.containers_monomorphic.objs/byte -I src/monomorphic/.containers_monomorphic.objs/native -I src/pp/.containers_pp.objs/byte -I src/pp/.containers_pp.objs/native -I src/testlib/.containers_testlib.objs/byte -I src/testlib/.containers_testlib.objs/native -I src/unix/.containers_unix.objs/byte -I src/unix/.containers_unix.objs/native -cmi-file tests/core/.t.eobjs/byte/dune__exe__T_int.cmi -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/native/dune__exe__T_int.cmx -c -impl tests/core/t_int.pp.ml)
- File "tests/core/t_int.pp.ml", line 48, characters 10-28:
- 48 | q (Q.pair Q.small_signed_int Q.pos_int) (fun (n, m) ->
-                ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Q.small_signed_int
- Use [int_small] instead
- 
- File "tests/core/t_int.pp.ml", line 48, characters 29-38:
- 48 | q (Q.pair Q.small_signed_int Q.pos_int) (fun (n, m) ->
-                                   ^^^^^^^^^
- Alert deprecated: Q.pos_int
- Use [int_pos] instead
- 
- File "tests/core/t_int.pp.ml", line 52, characters 10-28:
- 52 | q (Q.pair Q.small_signed_int Q.pos_int) (fun (n, m) ->
-                ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Q.small_signed_int
- Use [int_small] instead
- 
- File "tests/core/t_int.pp.ml", line 52, characters 29-38:
- 52 | q (Q.pair Q.small_signed_int Q.pos_int) (fun (n, m) ->
-                                   ^^^^^^^^^
- Alert deprecated: Q.pos_int
- Use [int_pos] instead
- 
- File "tests/core/t_int.pp.ml", line 86, characters 16-25:
- 86 | q (Q.pair Q.int Q.pos_int) (fun (n, m) ->
-                      ^^^^^^^^^
- Alert deprecated: Q.pos_int
- Use [int_pos] instead
- 
- File "tests/core/t_int.pp.ml", line 91, characters 16-25:
- 91 | q (Q.pair Q.int Q.pos_int) (fun (n, m) ->
-                      ^^^^^^^^^
- Alert deprecated: Q.pos_int
- Use [int_pos] instead
- 
- File "tests/core/t_int.pp.ml", line 96, characters 16-25:
- 96 | q (Q.pair Q.int Q.pos_int) (fun (n, m) -> n = (m * floor_div n m) + rem n m);;
-                      ^^^^^^^^^
- Alert deprecated: Q.pos_int
- Use [int_pos] instead
- 
- File "tests/core/t_int.pp.ml", line 98, characters 16-25:
- 98 | q (Q.pair Q.int Q.pos_int) (fun (n, m) ->
-                      ^^^^^^^^^
- Alert deprecated: Q.pos_int
- Use [int_pos] instead
- 
- File "tests/core/t_int.pp.ml", line 139, characters 10-19:
- 139 |   Q.(pair small_int small_int)
-                 ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_int.pp.ml", line 139, characters 20-29:
- 139 |   Q.(pair small_int small_int)
-                           ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -O3 -unbox-closures -unbox-closures-factor 20 -inline 100 -I tests/core/.t.eobjs/byte -I tests/core/.t.eobjs/native -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/bencode/.containers_bencode.objs/native -I src/cbor/.containers_cbor.objs/byte -I src/cbor/.containers_cbor.objs/native -I src/core/.containers.objs/byte -I src/core/.containers.objs/native -I src/domain/.containers_domain.objs/byte -I src/domain/.containers_domain.objs/native -I src/monomorphic/.containers_monomorphic.objs/byte -I src/monomorphic/.containers_monomorphic.objs/native -I src/pp/.containers_pp.objs/byte -I src/pp/.containers_pp.objs/native -I src/testlib/.containers_testlib.objs/byte -I src/testlib/.containers_testlib.objs/native -I src/unix/.containers_unix.objs/byte -I src/unix/.containers_unix.objs/native -cmi-file tests/core/.t.eobjs/byte/dune__exe__T_sexp.cmi -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/native/dune__exe__T_sexp.cmx -c -impl tests/core/t_sexp.pp.ml)
- File "tests/core/t_sexp.pp.ml", line 77, characters 15-24:
- 77 |                frequency
-                     ^^^^^^^^^
- Alert deprecated: Q.Gen.frequency
- Use [oneof_weighted] instead
- 
- File "tests/core/t_sexp.pp.ml", line 157, characters 4-13:
- 157 |     frequency
-           ^^^^^^^^^
- Alert deprecated: Q.Gen.frequency
- Use [oneof_weighted] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -O3 -unbox-closures -unbox-closures-factor 20 -inline 100 -I tests/core/.t.eobjs/byte -I tests/core/.t.eobjs/native -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/bencode/.containers_bencode.objs/native -I src/cbor/.containers_cbor.objs/byte -I src/cbor/.containers_cbor.objs/native -I src/core/.containers.objs/byte -I src/core/.containers.objs/native -I src/domain/.containers_domain.objs/byte -I src/domain/.containers_domain.objs/native -I src/monomorphic/.containers_monomorphic.objs/byte -I src/monomorphic/.containers_monomorphic.objs/native -I src/pp/.containers_pp.objs/byte -I src/pp/.containers_pp.objs/native -I src/testlib/.containers_testlib.objs/byte -I src/testlib/.containers_testlib.objs/native -I src/unix/.containers_unix.objs/byte -I src/unix/.containers_unix.objs/native -cmi-file tests/core/.t.eobjs/byte/dune__exe__T_heap.cmi -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/native/dune__exe__T_heap.cmx -c -impl tests/core/t_heap.pp.ml)
- File "tests/core/t_heap.pp.ml", line 84, characters 5-17:
- 84 |   Q.(list_of_size Gen.small_nat medium_nat)
-           ^^^^^^^^^^^^
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_heap.pp.ml", line 84, characters 18-31:
- 84 |   Q.(list_of_size Gen.small_nat medium_nat)
-                        ^^^^^^^^^^^^^
- Alert deprecated: Q.Gen.small_nat
- Use [nat_small] instead
- 
- File "tests/core/t_heap.pp.ml", line 157, characters 5-17:
- 157 |   Q.(list_of_size Gen.small_nat medium_nat)
-            ^^^^^^^^^^^^
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_heap.pp.ml", line 157, characters 18-31:
- 157 |   Q.(list_of_size Gen.small_nat medium_nat)
-                         ^^^^^^^^^^^^^
- Alert deprecated: Q.Gen.small_nat
- Use [nat_small] instead
- 
- File "tests/core/t_heap.pp.ml", line 162, characters 5-17:
- 162 |   Q.(list_of_size Gen.small_nat medium_nat)
-            ^^^^^^^^^^^^
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_heap.pp.ml", line 162, characters 18-31:
- 162 |   Q.(list_of_size Gen.small_nat medium_nat)
-                         ^^^^^^^^^^^^^
- Alert deprecated: Q.Gen.small_nat
- Use [nat_small] instead
- 
- File "tests/core/t_heap.pp.ml", line 169, characters 5-17:
- 169 |   Q.(list_of_size Gen.small_nat medium_nat)
-            ^^^^^^^^^^^^
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_heap.pp.ml", line 169, characters 18-31:
- 169 |   Q.(list_of_size Gen.small_nat medium_nat)
-                         ^^^^^^^^^^^^^
- Alert deprecated: Q.Gen.small_nat
- Use [nat_small] instead
- 
- File "tests/core/t_heap.pp.ml", line 176, characters 5-17:
- 176 |   Q.(list_of_size Gen.small_nat medium_nat)
-            ^^^^^^^^^^^^
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_heap.pp.ml", line 176, characters 18-31:
- 176 |   Q.(list_of_size Gen.small_nat medium_nat)
-                         ^^^^^^^^^^^^^
- Alert deprecated: Q.Gen.small_nat
- Use [nat_small] instead
- 
- File "tests/core/t_heap.pp.ml", line 183, characters 5-17:
- 183 |   Q.(list_of_size Gen.small_nat medium_nat)
-            ^^^^^^^^^^^^
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_heap.pp.ml", line 183, characters 18-31:
- 183 |   Q.(list_of_size Gen.small_nat medium_nat)
-                         ^^^^^^^^^^^^^
- Alert deprecated: Q.Gen.small_nat
- Use [nat_small] instead
- 
- File "tests/core/t_heap.pp.ml", line 190, characters 5-17:
- 190 |   Q.(list_of_size Gen.small_nat medium_nat)
-            ^^^^^^^^^^^^
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_heap.pp.ml", line 190, characters 18-31:
- 190 |   Q.(list_of_size Gen.small_nat medium_nat)
-                         ^^^^^^^^^^^^^
- Alert deprecated: Q.Gen.small_nat
- Use [nat_small] instead
- 
- File "tests/core/t_heap.pp.ml", line 197, characters 5-17:
- 197 |   Q.(list_of_size Gen.small_nat medium_nat)
-            ^^^^^^^^^^^^
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_heap.pp.ml", line 197, characters 18-31:
- 197 |   Q.(list_of_size Gen.small_nat medium_nat)
-                         ^^^^^^^^^^^^^
- Alert deprecated: Q.Gen.small_nat
- Use [nat_small] instead
- 
- File "tests/core/t_heap.pp.ml", line 204, characters 5-17:
- 204 |   Q.(list_of_size Gen.small_nat medium_nat)
-            ^^^^^^^^^^^^
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_heap.pp.ml", line 204, characters 18-31:
- 204 |   Q.(list_of_size Gen.small_nat medium_nat)
-                         ^^^^^^^^^^^^^
- Alert deprecated: Q.Gen.small_nat
- Use [nat_small] instead
- 
- File "tests/core/t_heap.pp.ml", line 211, characters 5-17:
- 211 |   Q.(list_of_size Gen.small_nat medium_nat)
-            ^^^^^^^^^^^^
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_heap.pp.ml", line 211, characters 18-31:
- 211 |   Q.(list_of_size Gen.small_nat medium_nat)
-                         ^^^^^^^^^^^^^
- Alert deprecated: Q.Gen.small_nat
- Use [nat_small] instead
- 
- File "tests/core/t_heap.pp.ml", line 219, characters 5-17:
- 219 |   Q.(list_of_size Gen.small_nat medium_nat)
-            ^^^^^^^^^^^^
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_heap.pp.ml", line 219, characters 18-31:
- 219 |   Q.(list_of_size Gen.small_nat medium_nat)
-                         ^^^^^^^^^^^^^
- Alert deprecated: Q.Gen.small_nat
- Use [nat_small] instead
- 
- File "tests/core/t_heap.pp.ml", line 227, characters 5-17:
- 227 |   Q.(list_of_size Gen.small_nat medium_nat)
-            ^^^^^^^^^^^^
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_heap.pp.ml", line 227, characters 18-31:
- 227 |   Q.(list_of_size Gen.small_nat medium_nat)
-                         ^^^^^^^^^^^^^
- Alert deprecated: Q.Gen.small_nat
- Use [nat_small] instead
- 
- File "tests/core/t_heap.pp.ml", line 236, characters 5-17:
- 236 |   Q.(list_of_size Gen.small_nat medium_nat)
-            ^^^^^^^^^^^^
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_heap.pp.ml", line 236, characters 18-31:
- 236 |   Q.(list_of_size Gen.small_nat medium_nat)
-                         ^^^^^^^^^^^^^
- Alert deprecated: Q.Gen.small_nat
- Use [nat_small] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -O3 -unbox-closures -unbox-closures-factor 20 -inline 100 -I tests/core/.t.eobjs/byte -I tests/core/.t.eobjs/native -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/bencode/.containers_bencode.objs/native -I src/cbor/.containers_cbor.objs/byte -I src/cbor/.containers_cbor.objs/native -I src/core/.containers.objs/byte -I src/core/.containers.objs/native -I src/domain/.containers_domain.objs/byte -I src/domain/.containers_domain.objs/native -I src/monomorphic/.containers_monomorphic.objs/byte -I src/monomorphic/.containers_monomorphic.objs/native -I src/pp/.containers_pp.objs/byte -I src/pp/.containers_pp.objs/native -I src/testlib/.containers_testlib.objs/byte -I src/testlib/.containers_testlib.objs/native -I src/unix/.containers_unix.objs/byte -I src/unix/.containers_unix.objs/native -cmi-file tests/core/.t.eobjs/byte/dune__exe__T_array.cmi -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/native/dune__exe__T_array.cmx -c -impl tests/core/t_array.pp.ml)
- File "tests/core/t_array.pp.ml", line 111, characters 5-18:
- 111 |   Q.(array_of_size Gen.(0 -- 30) printable_string)
-            ^^^^^^^^^^^^^
- Alert deprecated: Q.array_of_size
- Use [array_size] instead
- 
- File "tests/core/t_array.pp.ml", line 111, characters 33-49:
- 111 |   Q.(array_of_size Gen.(0 -- 30) printable_string)
-                                        ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_array.pp.ml", line 130, characters 5-18:
- 130 |   Q.(array_of_size Gen.(0 -- 50) printable_string)
-            ^^^^^^^^^^^^^
- Alert deprecated: Q.array_of_size
- Use [array_size] instead
- 
- File "tests/core/t_array.pp.ml", line 130, characters 33-49:
- 130 |   Q.(array_of_size Gen.(0 -- 50) printable_string)
-                                        ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_array.pp.ml", line 137, characters 11-20:
- 137 | q Q.(array small_int) (fun a -> rev (rev a) = a);;
-                  ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_array.pp.ml", line 141, characters 11-20:
- 141 | q Q.(array small_int) (fun a -> mem 1 a = Array.mem 1 a);;
-                  ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_array.pp.ml", line 220, characters 10-19:
- 220 |   Q.(pair small_int small_int)
-                 ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_array.pp.ml", line 220, characters 20-29:
- 220 |   Q.(pair small_int small_int)
-                           ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_array.pp.ml", line 225, characters 10-19:
- 225 |   Q.(pair small_int small_int)
-                 ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_array.pp.ml", line 225, characters 20-29:
- 225 |   Q.(pair small_int small_int)
-                           ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_array.pp.ml", line 230, characters 17-26:
- 230 |   Q.(pair (array small_int) (array small_int))
-                        ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_array.pp.ml", line 230, characters 35-44:
- 230 |   Q.(pair (array small_int) (array small_int))
-                                          ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_array.pp.ml", line 253, characters 5-18:
- 253 |   Q.(array_of_size Gen.(0 -- 100) small_int)
-            ^^^^^^^^^^^^^
- Alert deprecated: Q.array_of_size
- Use [array_size] instead
- 
- File "tests/core/t_array.pp.ml", line 253, characters 34-43:
- 253 |   Q.(array_of_size Gen.(0 -- 100) small_int)
-                                         ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_array.pp.ml", line 297, characters 43-52:
- 297 | let gen_arr = Q.Gen.(array_size (1 -- 100) small_int)
-                                                  ^^^^^^^^^
- Alert deprecated: Q.Gen.small_int
- Use [nat_small] instead
- (cd _build/default/tests/cbor && ./t_appendix_a.exe ./appendix_a.json)
- 
- 
- #####
- OK: 78 ok, 4 skip
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -O3 -unbox-closures -unbox-closures-factor 20 -inline 100 -I tests/core/.t.eobjs/byte -I tests/core/.t.eobjs/native -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/bencode/.containers_bencode.objs/native -I src/cbor/.containers_cbor.objs/byte -I src/cbor/.containers_cbor.objs/native -I src/core/.containers.objs/byte -I src/core/.containers.objs/native -I src/domain/.containers_domain.objs/byte -I src/domain/.containers_domain.objs/native -I src/monomorphic/.containers_monomorphic.objs/byte -I src/monomorphic/.containers_monomorphic.objs/native -I src/pp/.containers_pp.objs/byte -I src/pp/.containers_pp.objs/native -I src/testlib/.containers_testlib.objs/byte -I src/testlib/.containers_testlib.objs/native -I src/unix/.containers_unix.objs/byte -I src/unix/.containers_unix.objs/native -cmi-file tests/core/.t.eobjs/byte/dune__exe__T_string.cmi -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/native/dune__exe__T_string.cmx -c -impl tests/core/t_string.pp.ml)
- File "tests/core/t_string.pp.ml", line 6, characters 2-20:
- 6 | q Q.printable_string (fun s -> s = rev (rev s));;
-       ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 7, characters 2-20:
- 7 | q Q.printable_string (fun s -> length s = length (rev s));;
-       ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 8, characters 2-20:
- 8 | q Q.printable_string (fun s -> rev s = (to_list s |> List.rev |> of_list));;
-       ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 21, characters 10-26:
- 21 |   Q.(pair printable_string printable_string)
-                ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 21, characters 27-43:
- 21 |   Q.(pair printable_string printable_string)
-                                 ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 48, characters 10-26:
- 48 |   Q.(pair printable_string printable_string)
-                ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 48, characters 27-43:
- 48 |   Q.(pair printable_string printable_string)
-                                 ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 105, characters 5-21:
- 105 |   Q.(printable_string)
-            ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 119, characters 10-26:
- 119 |   Q.(pair printable_string printable_string)
-                 ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 119, characters 27-43:
- 119 |   Q.(pair printable_string printable_string)
-                                  ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 133, characters 10-26:
- 133 |   Q.(pair printable_string printable_string)
-                 ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 133, characters 27-43:
- 133 |   Q.(pair printable_string printable_string)
-                                  ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 137, characters 5-21:
- 137 | q Q.(printable_string) (fun a -> compare_natural a a = 0);;
-            ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 140, characters 12-28:
- 140 |   Q.(triple printable_string printable_string printable_string)
-                   ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 140, characters 29-45:
- 140 |   Q.(triple printable_string printable_string printable_string)
-                                    ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 140, characters 46-62:
- 140 |   Q.(triple printable_string printable_string printable_string)
-                                                     ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 148, characters 5-19:
- 148 | q Q.(string_of_size Gen.(0 -- 30)) (fun s -> edit_distance s s = 0);;
-            ^^^^^^^^^^^^^^
- Alert deprecated: Q.string_of_size
- Use [string_size] instead
- 
- File "tests/core/t_string.pp.ml", line 152, characters 12-26:
- 152 |     let p = string_of_size Gen.(0 -- 20) in
-                   ^^^^^^^^^^^^^^
- Alert deprecated: Q.string_of_size
- Use [string_size] instead
- 
- File "tests/core/t_string.pp.ml", line 159, characters 12-26:
- 159 |     let p = string_of_size Gen.(0 -- 20) in
-                   ^^^^^^^^^^^^^^
- Alert deprecated: Q.string_of_size
- Use [string_size] instead
- 
- File "tests/core/t_string.pp.ml", line 235, characters 5-21:
- 235 |   Q.(printable_string)
-            ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 246, characters 5-21:
- 246 |   Q.(printable_string)
-            ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 282, characters 5-21:
- 282 | q Q.(printable_string) (fun s -> lines s = (lines_gen s |> Gen.to_list));;
-            ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 283, characters 5-21:
- 283 | q Q.(printable_string) (fun s -> lines s = (lines_iter s |> Iter.to_list));;
-            ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 286, characters 5-15:
- 286 |   Q.(small_list printable_string)
-            ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_string.pp.ml", line 286, characters 16-32:
- 286 |   Q.(small_list printable_string)
-                       ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 291, characters 5-15:
- 291 |   Q.(small_list printable_string)
-            ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_string.pp.ml", line 291, characters 16-32:
- 291 |   Q.(small_list printable_string)
-                       ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 296, characters 5-15:
- 296 |   Q.(small_list printable_string)
-            ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_string.pp.ml", line 296, characters 16-32:
- 296 |   Q.(small_list printable_string)
-                       ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 302, characters 2-20:
- 302 | q Q.printable_string (fun s -> trim (unlines (lines s)) = trim s);;
-         ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 303, characters 2-20:
- 303 | q Q.printable_string (fun s -> trim (unlines_gen (lines_gen s)) = trim s);;
-         ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 323, characters 5-15:
- 323 |   Q.(small_list small_string)
-            ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_string.pp.ml", line 323, characters 16-28:
- 323 |   Q.(small_list small_string)
-                       ^^^^^^^^^^^^
- Alert deprecated: Q.small_string
- Use [string_small] instead
- 
- File "tests/core/t_string.pp.ml", line 355, characters 2-20:
- 355 | q Q.printable_string (fun s -> filter (fun _ -> true) s = s);;
-         ^^^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 359, characters 5-21:
- 359 | q Q.(printable_string) (fun s -> String.trim s = (s |> ltrim |> rtrim));;
-            ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 360, characters 5-21:
- 360 | q Q.(printable_string) (fun s -> ltrim s = ltrim (ltrim s));;
-            ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 361, characters 5-21:
- 361 | q Q.(printable_string) (fun s -> rtrim s = rtrim (rtrim s));;
-            ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 364, characters 5-21:
- 364 |   Q.(printable_string)
-            ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 374, characters 5-21:
- 374 |   Q.(printable_string)
-            ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 387, characters 10-26:
- 387 |   Q.(pair printable_string printable_string)
-                 ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 387, characters 27-43:
- 387 |   Q.(pair printable_string printable_string)
-                                  ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 392, characters 5-21:
- 392 | q Q.(printable_string) (fun s -> equal_caseless s s);;
-            ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- 
- File "tests/core/t_string.pp.ml", line 393, characters 5-21:
- 393 | q Q.(printable_string) (fun s -> equal_caseless (uppercase_ascii s) s)
-            ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- (cd _build/default/src/core/tests && ./check_labelled_mods.exe)
- labelled modules are consistent ✔
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -O3 -unbox-closures -unbox-closures-factor 20 -inline 100 -I tests/core/.t.eobjs/byte -I tests/core/.t.eobjs/native -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/bencode/.containers_bencode.objs/native -I src/cbor/.containers_cbor.objs/byte -I src/cbor/.containers_cbor.objs/native -I src/core/.containers.objs/byte -I src/core/.containers.objs/native -I src/domain/.containers_domain.objs/byte -I src/domain/.containers_domain.objs/native -I src/monomorphic/.containers_monomorphic.objs/byte -I src/monomorphic/.containers_monomorphic.objs/native -I src/pp/.containers_pp.objs/byte -I src/pp/.containers_pp.objs/native -I src/testlib/.containers_testlib.objs/byte -I src/testlib/.containers_testlib.objs/native -I src/unix/.containers_unix.objs/byte -I src/unix/.containers_unix.objs/native -cmi-file tests/core/.t.eobjs/byte/dune__exe__T_vector.cmi -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/native/dune__exe__T_vector.cmx -c -impl tests/core/t_vector.pp.ml)
- File "tests/core/t_vector.pp.ml", line 272, characters 5-17:
- 272 |   Q.(list_of_size (Gen.int_range 10 10) small_int)
-            ^^^^^^^^^^^^
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_vector.pp.ml", line 272, characters 40-49:
- 272 |   Q.(list_of_size (Gen.int_range 10 10) small_int)
-                                               ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 281, characters 5-17:
- 281 |   Q.(list_of_size (Gen.int_range 10 10) small_int)
-            ^^^^^^^^^^^^
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_vector.pp.ml", line 281, characters 40-49:
- 281 |   Q.(list_of_size (Gen.int_range 10 10) small_int)
-                                               ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 290, characters 5-17:
- 290 |   Q.(list_of_size (Gen.int_range 10 10) small_int)
-            ^^^^^^^^^^^^
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_vector.pp.ml", line 290, characters 40-49:
- 290 |   Q.(list_of_size (Gen.int_range 10 10) small_int)
-                                               ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 410, characters 12-24:
- 410 |     let g = list_of_size Gen.(0 -- 10) small_int in
-                   ^^^^^^^^^^^^
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_vector.pp.ml", line 410, characters 39-48:
- 410 |     let g = list_of_size Gen.(0 -- 10) small_int in
-                                              ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 416, characters 11-21:
- 416 |   Q.(pair (small_list small_int) (small_list small_int))
-                  ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 416, characters 22-31:
- 416 |   Q.(pair (small_list small_int) (small_list small_int))
-                             ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 416, characters 34-44:
- 416 |   Q.(pair (small_list small_int) (small_list small_int))
-                                         ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 416, characters 45-54:
- 416 |   Q.(pair (small_list small_int) (small_list small_int))
-                                                    ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 424, characters 11-21:
- 424 |   Q.(pair (small_list small_int) (small_list small_int))
-                  ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 424, characters 22-31:
- 424 |   Q.(pair (small_list small_int) (small_list small_int))
-                             ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 424, characters 34-44:
- 424 |   Q.(pair (small_list small_int) (small_list small_int))
-                                         ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 424, characters 45-54:
- 424 |   Q.(pair (small_list small_int) (small_list small_int))
-                                                    ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 455, characters 5-15:
- 455 |   Q.(small_list small_int)
-            ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 455, characters 16-25:
- 455 |   Q.(small_list small_int)
-                       ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 469, characters 7-18:
- 469 | q (gen Q.small_int) (fun v ->
-              ^^^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 478, characters 7-18:
- 478 | q (gen Q.small_int) (fun v ->
-              ^^^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 484, characters 7-18:
- 484 | q (gen Q.small_int) (fun v ->
-              ^^^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 498, characters 5-15:
- 498 |   Q.(small_list small_int)
-            ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 498, characters 16-25:
- 498 |   Q.(small_list small_int)
-                       ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 520, characters 31-40:
- 520 |   Q.(pair (fun1 Observable.int small_int) (small_list small_int))
-                                      ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 520, characters 43-53:
- 520 |   Q.(pair (fun1 Observable.int small_int) (small_list small_int))
-                                                  ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 520, characters 54-63:
- 520 |   Q.(pair (fun1 Observable.int small_int) (small_list small_int))
-                                                             ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 536, characters 46-55:
- 536 |   Q.(pair (fun2 Observable.int Observable.int small_int) (small_list small_int))
-                                                     ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 536, characters 58-68:
- 536 |   Q.(pair (fun2 Observable.int Observable.int small_int) (small_list small_int))
-                                                                 ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 536, characters 69-78:
- 536 |   Q.(pair (fun2 Observable.int Observable.int small_int) (small_list small_int))
-                                                                            ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 543, characters 31-40:
- 543 |   Q.(pair (fun1 Observable.int small_int) (small_list small_int))
-                                      ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 543, characters 43-53:
- 543 |   Q.(pair (fun1 Observable.int small_int) (small_list small_int))
-                                                  ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 543, characters 54-63:
- 543 |   Q.(pair (fun1 Observable.int small_int) (small_list small_int))
-                                                             ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 557, characters 38-48:
- 557 |   Q.(pair (fun1 Observable.int bool) (small_list small_int))
-                                             ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 557, characters 49-58:
- 557 |   Q.(pair (fun1 Observable.int bool) (small_list small_int))
-                                                        ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 573, characters 38-48:
- 573 |   Q.(pair (fun1 Observable.int bool) (small_list small_int))
-                                             ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 573, characters 49-58:
- 573 |   Q.(pair (fun1 Observable.int bool) (small_list small_int))
-                                                        ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 583, characters 46-55:
- 583 |   Q.(pair (fun2 Observable.int Observable.int small_int) (small_list small_int))
-                                                     ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 583, characters 58-68:
- 583 |   Q.(pair (fun2 Observable.int Observable.int small_int) (small_list small_int))
-                                                                 ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 583, characters 69-78:
- 583 |   Q.(pair (fun2 Observable.int Observable.int small_int) (small_list small_int))
-                                                                            ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 590, characters 38-48:
- 590 |   Q.(pair (fun1 Observable.int bool) (small_list small_int))
-                                             ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 590, characters 49-58:
- 590 |   Q.(pair (fun1 Observable.int bool) (small_list small_int))
-                                                        ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 597, characters 38-48:
- 597 |   Q.(pair (fun1 Observable.int bool) (small_list small_int))
-                                             ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 597, characters 49-58:
- 597 |   Q.(pair (fun1 Observable.int bool) (small_list small_int))
-                                                        ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 604, characters 38-48:
- 604 |   Q.(pair (fun1 Observable.int bool) (small_list small_int))
-                                             ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 604, characters 49-58:
- 604 |   Q.(pair (fun1 Observable.int bool) (small_list small_int))
-                                                        ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 611, characters 10-19:
- 611 |   Q.(list small_int)
-                 ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 626, characters 47-57:
- 626 |   Q.(pair (fun1 Observable.int (option bool)) (small_list small_int))
-                                                      ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 626, characters 58-67:
- 626 |   Q.(pair (fun1 Observable.int (option bool)) (small_list small_int))
-                                                                 ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 633, characters 39-48:
- 633 |   Q.(pair (fun1 Observable.int (option small_int)) (small_list small_int))
-                                              ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 633, characters 52-62:
- 633 |   Q.(pair (fun1 Observable.int (option small_int)) (small_list small_int))
-                                                           ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 633, characters 63-72:
- 633 |   Q.(pair (fun1 Observable.int (option small_int)) (small_list small_int))
-                                                                      ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 671, characters 5-15:
- 671 |   Q.(small_list small_int)
-            ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 671, characters 16-25:
- 671 |   Q.(small_list small_int)
-                       ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 683, characters 5-15:
- 683 |   Q.(small_list small_int)
-            ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 683, characters 16-25:
- 683 |   Q.(small_list small_int)
-                       ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 727, characters 10-19:
- 727 |   Q.(pair small_int small_int)
-                 ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 727, characters 20-29:
- 727 |   Q.(pair small_int small_int)
-                           ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 732, characters 10-19:
- 732 |   Q.(pair small_int small_int)
-                 ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_vector.pp.ml", line 732, characters 20-29:
- 732 |   Q.(pair small_int small_int)
-                           ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -O3 -unbox-closures -unbox-closures-factor 20 -inline 100 -I tests/core/.t.eobjs/byte -I tests/core/.t.eobjs/native -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/bencode/.containers_bencode.objs/native -I src/cbor/.containers_cbor.objs/byte -I src/cbor/.containers_cbor.objs/native -I src/core/.containers.objs/byte -I src/core/.containers.objs/native -I src/domain/.containers_domain.objs/byte -I src/domain/.containers_domain.objs/native -I src/monomorphic/.containers_monomorphic.objs/byte -I src/monomorphic/.containers_monomorphic.objs/native -I src/pp/.containers_pp.objs/byte -I src/pp/.containers_pp.objs/native -I src/testlib/.containers_testlib.objs/byte -I src/testlib/.containers_testlib.objs/native -I src/unix/.containers_unix.objs/byte -I src/unix/.containers_unix.objs/native -cmi-file tests/core/.t.eobjs/byte/dune__exe__T_list.cmi -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/native/dune__exe__T_list.cmx -c -impl tests/core/t_list.pp.ml)
- File "tests/core/t_list.pp.ml", line 7, characters 10-19:
- 7 | q Q.(pair small_nat (list int)) (fun (i, l) -> nth_opt l i = get_at_idx i l);;
-               ^^^^^^^^^
- Alert deprecated: Q.small_nat
- Use [nat_small] instead
- 
- File "tests/core/t_list.pp.ml", line 18, characters 21-30:
- 18 |   Q.(pair (list int) small_int)
-                           ^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.pp.ml", line 23, characters 10-21:
- 23 | q (Q.list Q.small_int) (fun l ->
-                ^^^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.pp.ml", line 30, characters 5-15:
- 30 | q Q.(small_list int) (fun l -> List.rev l = List.fold_left cons' [] l);;
-           ^^^^^^^^^^
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_list.pp.ml", line 50, characters 10-21:
- 50 | q (Q.list Q.small_int) (fun l -> l = fold_right (fun x y -> x :: y) l []);;
-                ^^^^^^^^^^^
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 306, characters 12-22:
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_list.ml", line 317, characters 12-22:
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_list.ml", line 353, characters 5-17:
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_list.ml", line 353, characters 42-51:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 353, characters 52-64:
- Alert deprecated: Q.small_string
- Use [string_small] instead
- 
- File "tests/core/t_list.ml", line 360, characters 5-17:
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_list.ml", line 360, characters 42-51:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 360, characters 52-61:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 394, characters 5-17:
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_list.ml", line 394, characters 32-44:
- Alert deprecated: Q.list_of_size
- Use [list_size] instead
- 
- File "tests/core/t_list.ml", line 394, characters 58-67:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 399, characters 10-19:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 399, characters 26-35:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 435, characters 16-25:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 435, characters 33-42:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 442, characters 16-25:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 442, characters 33-42:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 454, characters 12-21:
- Alert deprecated: Q.small_nat
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 454, characters 22-31:
- Alert deprecated: Q.small_nat
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 465, characters 16-25:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 465, characters 33-42:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 485, characters 10-19:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 490, characters 10-19:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 490, characters 26-35:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 497, characters 10-19:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 497, characters 26-35:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 505, characters 10-19:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 505, characters 26-35:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 513, characters 10-19:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 513, characters 26-35:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 521, characters 10-19:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 521, characters 26-35:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 528, characters 10-19:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 528, characters 26-35:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 535, characters 10-19:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 535, characters 26-35:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 543, characters 10-19:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 543, characters 26-35:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 551, characters 10-19:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 551, characters 26-35:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 565, characters 10-19:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 565, characters 26-35:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 573, characters 10-19:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 573, characters 26-35:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 587, characters 10-19:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 587, characters 26-35:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 601, characters 10-19:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 601, characters 26-35:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 615, characters 10-19:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 615, characters 26-35:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 679, characters 16-25:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 679, characters 33-42:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 687, characters 16-25:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 687, characters 33-42:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 701, characters 18-29:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 718, characters 18-29:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 726, characters 18-29:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 773, characters 5-15:
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_list.ml", line 773, characters 16-25:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 774, characters 5-15:
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_list.ml", line 774, characters 16-25:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 777, characters 5-15:
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_list.ml", line 777, characters 16-25:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 805, characters 11-21:
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_list.ml", line 805, characters 28-38:
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_list.ml", line 809, characters 5-15:
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_list.ml", line 810, characters 5-15:
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_list.ml", line 818, characters 43-52:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 825, characters 43-52:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 830, characters 43-52:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 936, characters 5-15:
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_list.ml", line 936, characters 16-25:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 968, characters 5-15:
- Alert deprecated: Q.small_list
- Use [list_small] instead
- 
- File "tests/core/t_list.ml", line 968, characters 16-25:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 1016, characters 10-19:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 1016, characters 20-29:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 1032, characters 10-19:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 1032, characters 20-29:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 1041, characters 10-19:
- Alert deprecated: Q.small_int
- Use [nat_small] instead
- 
- File "tests/core/t_list.ml", line 1041, characters 21-31:
- Alert deprecated: Q.small_list
- Use [list_small] instead
- (cd _build/default/tests/pvec && ./t.exe)
- seed: da38fe6093febba2
- testing containers.pvec: running 17 tests…
- 17 tests done in 0.099s
- OK
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -warn-error -a+8 -w -32-48-60-70 -w +a-4-40-42-44-70 -color always -safe-string -strict-sequence -strict-sequence -warn-error -a+8 -w -48-60 -g -O3 -unbox-closures -unbox-closures-factor 20 -inline 100 -I tests/core/.t.eobjs/byte -I tests/core/.t.eobjs/native -I /home/opam/.opam/5.4/lib/csexp -I /home/opam/.opam/5.4/lib/either -I /home/opam/.opam/5.4/lib/gen -I /home/opam/.opam/5.4/lib/iter -I /home/opam/.opam/5.4/lib/ocaml/threads -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/qcheck-core -I /home/opam/.opam/5.4/lib/seq -I /home/opam/.opam/5.4/lib/uutf -I src/bencode/.containers_bencode.objs/byte -I src/bencode/.containers_bencode.objs/native -I src/cbor/.containers_cbor.objs/byte -I src/cbor/.containers_cbor.objs/native -I src/core/.containers.objs/byte -I src/core/.containers.objs/native -I src/domain/.containers_domain.objs/byte -I src/domain/.containers_domain.objs/native -I src/monomorphic/.containers_monomorphic.objs/byte -I src/monomorphic/.containers_monomorphic.objs/native -I src/pp/.containers_pp.objs/byte -I src/pp/.containers_pp.objs/native -I src/testlib/.containers_testlib.objs/byte -I src/testlib/.containers_testlib.objs/native -I src/unix/.containers_unix.objs/byte -I src/unix/.containers_unix.objs/native -cmi-file tests/core/.t.eobjs/byte/dune__exe__T_parse.cmi -no-alias-deps -open Dune__exe -o tests/core/.t.eobjs/native/dune__exe__T_parse.cmx -c -impl tests/core/t_parse.pp.ml)
- File "tests/core/t_parse.pp.ml", line 164, characters 5-21:
- 164 |   Q.(printable_string)
-            ^^^^^^^^^^^^^^^^
- Alert deprecated: Q.printable_string
- Use [string_printable] instead
- (cd _build/default/tests/core && ./t.exe)
- seed: 0cf226930fc5552e
- testing containers: running 1220 tests…
- 1220 tests done in 4.933s
- OK
-> compiled  containers.3.17
-> removed   containers.3.17
-> installed containers.3.17
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 19:40.59 ---> saved as "eb6f9b993b49c46813bbc1eb552bcd5f8f2e84d27e360034b006839f3af93b9c"
Job succeeded
2026-03-25 19:41.10: Job succeeded