Build:
  1. 0
2026-01-27 19:22.42: New job: test octez-libs.18.1 with mirage-runtime.4.10.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29297/head (bec96dd4b29b0e3eb148af9966895e70442e68e2)
                              on debian-13-ocaml-4.14/amd64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29297/head" && git reset --hard bec96dd4
git fetch origin master
git merge --no-edit 88150787b3c9df767fd8dadf5d416641f8ee58f8
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:b77f64f7a162903a6fb8a0d50071a7eb7a4a9bc4421699c19d2ab9050981c012
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 mirage-runtime.4.10.0 4.10.0
RUN opam reinstall mirage-runtime.4.10.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" != 'mirage-runtime.4.10.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall octez-libs.18.1; \
    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" != 'octez-libs.18.1' && 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 octez-libs.18.1) || true
RUN opam reinstall --with-test --verbose octez-libs.18.1; \
    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" != 'octez-libs.18.1' && 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-01-27 19:22.42: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:b77f64f7a162903a6fb8a0d50071a7eb7a4a9bc4421699c19d2ab9050981c012-mirage-runtime.4.10.0-octez-libs.18.1-bec96dd4b29b0e3eb148af9966895e70442e68e2"
2026-01-27 19:22.42: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:b77f64f7a162903a6fb8a0d50071a7eb7a4a9bc4421699c19d2ab9050981c012)
 (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 mirage-runtime.4.10.0 4.10.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall mirage-runtime.4.10.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\" != 'mirage-runtime.4.10.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 octez-libs.18.1;\
             \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\" != 'octez-libs.18.1' && 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 octez-libs.18.1) || true"))
 (run (shell  "opam reinstall --with-test --verbose octez-libs.18.1;\
             \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\" != 'octez-libs.18.1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-01-27 19:22.42: Waiting for resource in pool OCluster
2026-01-27 21:37.39: Waiting for worker…
2026-01-27 22:32.01: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at 88150787b3 Merge pull request #29287 from dinosaure/release-git-kv-v0.2.1
Merge made by the 'ort' strategy.
 packages/mirage-runtime/mirage-runtime.4.0.0/opam       | 2 +-
 packages/mirage-runtime/mirage-runtime.4.0.0~beta3/opam | 2 +-
 packages/mirage-runtime/mirage-runtime.4.10.0/opam      | 2 +-
 packages/mirage-runtime/mirage-runtime.4.10.1/opam      | 2 +-
 packages/mirage-runtime/mirage-runtime.4.10.2/opam      | 2 +-
 packages/mirage-runtime/mirage-runtime.4.10.3/opam      | 2 +-
 packages/mirage-runtime/mirage-runtime.4.10.4/opam      | 2 +-
 packages/mirage-runtime/mirage-runtime.4.7.0/opam       | 2 +-
 packages/mirage-runtime/mirage-runtime.4.9.0/opam       | 2 +-
 9 files changed, 9 insertions(+), 9 deletions(-)

(from ocaml/opam:debian-13-ocaml-4.14@sha256:b77f64f7a162903a6fb8a0d50071a7eb7a4a9bc4421699c19d2ab9050981c012)
2026-01-27 22:34.41 ---> using "3fd264bad5105e854dbd96d70e0cfc1d39526afdd30eb5071f64946db0e5017f" 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-01-27 22:34.41 ---> using "c3cd77d504ddaf309a58ec97d6990fbd674dfde7b2abb842e8428debfcc0578e" from cache

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

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

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

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-01-27 22:34.41 ---> using "465a85423ed866bf442b5d4ea44e6d67ced29e9b9e842e1931d4e6d88019fbd3" from cache

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=13
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 255
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages    ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.2
2026-01-27 22:34.41 ---> using "600a99cbfa8eb664d95037ff02fc36b5d64190bc45ec2fd4792c21267b01f885" 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-01-27 22:34.41 ---> using "7a36498140d9470d1651f2f43060608bb30c70da80a143f96ae11f513ef0d2f1" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-01-27 22:34.42 ---> using "c9c281874add8ec6f824059ed6bc4b1cfa517948ec5e9031033d3104a09c31cb" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-27 22:34.42 ---> using "53502e89c855ed9f94e21d4f7bd4f9f40b749d1356523774f70e07d214514475" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [97.9 kB]
- Fetched 189 kB in 0s (1619 kB/s)
- Reading package lists...
2026-01-27 22:34.42 ---> using "fd9c746d3f7a0ef758e388fb04e10d9013e6617bfbced5cd67effbd293bab80d" from cache

/home/opam: (run (shell "opam pin add -k version -yn mirage-runtime.4.10.0 4.10.0"))
mirage-runtime is now pinned to version 4.10.0
2026-01-27 22:34.42 ---> using "3195f1cae4eb2899135326933414219ac5b4256ad4863150c1eb7dcc6920d920" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall mirage-runtime.4.10.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\" != 'mirage-runtime.4.10.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
mirage-runtime.4.10.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 16 packages
  - install base-bytes        base            [required by ocplib-endian]
  - install cmdliner          2.1.0           [required by mirage-runtime]
  - install cppo              1.8.0           [required by lwt]
  - install csexp             1.5.2           [required by dune-configurator]
  - install domain-name       0.5.0           [required by ipaddr]
  - install dune              3.21.0          [required by mirage-runtime]
  - install dune-configurator 3.21.0          [required by lwt]
  - install ipaddr            5.6.1           [required by mirage-runtime]
  - install logs              0.10.0          [required by mirage-runtime]
  - install lwt               5.9.2           [required by mirage-runtime]
  - install macaddr           5.6.1           [required by ipaddr]
  - install mirage-runtime    4.10.0 (pinned)
  - install ocamlbuild        0.16.1          [required by logs]
  - install ocamlfind         1.9.8           [required by logs]
  - install ocplib-endian     1.2             [required by lwt]
  - install topkg             1.1.1           [required by logs]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cmdliner.2.1.0  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved domain-name.0.5.0  (cached)
-> retrieved dune.3.21.0, dune-configurator.3.21.0  (cached)
-> retrieved ipaddr.5.6.1, macaddr.5.6.1  (cached)
-> retrieved logs.0.10.0  (cached)
-> retrieved lwt.5.9.2  (cached)
-> retrieved mirage-runtime.4.10.0  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> installed cmdliner.2.1.0
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved topkg.1.1.1  (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed dune.3.21.0
-> installed macaddr.5.6.1
-> installed domain-name.0.5.0
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed ipaddr.5.6.1
-> installed ocplib-endian.1.2
-> installed dune-configurator.3.21.0
-> installed lwt.5.9.2
-> installed logs.0.10.0
-> installed mirage-runtime.4.10.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-27 22:34.42 ---> using "fb7d9011e1a8f60a66df5f2fc9b25e802ca858ddbbb85afd3b1d92af796a681f" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall octez-libs.18.1;\
                        \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\" != 'octez-libs.18.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
octez-libs.18.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== downgrade 4 packages
  - downgrade cmdliner                       2.1.0 to 1.3.0   [required by octez-libs]
  - downgrade dune                           3.21.0 to 3.10.0 [required by octez-libs]
  - downgrade dune-configurator              3.21.0 to 3.13.1 [required by ctypes, bigstringaf, secp256k1-internal]
  - downgrade lwt                            5.9.2 to 5.9.1   [required by octez-libs]
=== recompile 8 packages
  - recompile cppo                           1.8.0            [uses dune]
  - recompile csexp                          1.5.2            [uses dune]
  - recompile domain-name                    0.5.0            [uses dune]
  - recompile ipaddr                         5.6.1            [uses dune]
  - recompile logs                           0.10.0           [uses cmdliner]
  - recompile macaddr                        5.6.1            [uses dune]
  - recompile mirage-runtime                 4.10.0 (pinned)  [uses cmdliner]
  - recompile ocplib-endian                  1.2              [uses dune]
=== install 139 packages
  - install   aches                          1.1.0            [required by octez-libs]
  - install   aches-lwt                      1.1.0            [required by octez-libs]
  - install   alcotest                       1.9.1            [required by octez-libs]
  - install   angstrom                       0.16.1           [required by uri]
  - install   asn1-combinators               0.2.6            [required by x509]
  - install   astring                        0.8.5            [required by alcotest, irmin]
  - install   base                           v0.16.4          [required by ppx_expect]
  - install   base64                         3.5.2            [required by cohttp]
  - install   bheap                          2.0.0            [required by irmin]
  - install   bigarray-compat                1.1.0            [required by octez-libs]
  - install   bigstring                      0.3              [required by secp256k1-internal]
  - install   bigstringaf                    0.10.0           [required by octez-libs]
  - install   bls12-381                      18.1             [required by octez-libs]
  - install   bos                            0.2.1            [required by ca-certs]
  - install   ca-certs                       0.2.3            [required by conduit-lwt-unix]
  - install   checkseum                      0.5.2            [required by irmin-pack]
  - install   cohttp                         5.3.1            [required by cohttp-lwt]
  - install   cohttp-lwt                     5.3.0            [required by resto-cohttp, cohttp-lwt-unix, resto-cohttp-client]
  - install   cohttp-lwt-unix                5.3.0            [required by octez-libs]
  - install   conduit                        8.0.0            [required by conduit-lwt]
  - install   conduit-lwt                    8.0.0            [required by cohttp-lwt-unix]
  - install   conduit-lwt-unix               8.0.0            [required by cohttp-lwt-unix, resto-cohttp-server]
  - install   conf-cmake                     1                [required by hacl-star-raw]
  - install   conf-gmp                       5                [required by secp256k1-internal]
  - install   conf-gmp-powm-sec              4                [required by mirage-crypto-pk]
  - install   conf-libev                     4-13             [required by octez-libs]
  - install   conf-pkg-config                4                [required by secp256k1-internal]
  - install   conf-rust                      0.1              [required by octez-libs]
  - install   conf-rust-2021                 1                [required by tezos-rust-libs]
  - install   conf-which                     1                [required by hacl-star-raw]
  - install   cstruct                        6.2.0            [required by secp256k1-internal]
  - install   ctypes                         0.24.0           [required by octez-libs]
  - install   ctypes_stubs_js                0.1              [required by octez-libs]
  - install   data-encoding                  0.7.1            [required by octez-libs]
  - install   digestif                       1.3.0            [required by irmin]
  - install   duration                       0.2.1            [required by mirage-crypto-rng]
  - install   either                         1.0.0            [required by data-encoding]
  - install   eqaf                           0.9              [required by octez-libs]
  - install   ezjsonm                        1.3.0            [required by octez-libs]
  - install   fmt                            0.11.0           [required by octez-libs]
  - install   fpath                          0.7.3            [required by ca-certs]
  - install   gen                            1.1              [required by sedlex]
  - install   gmap                           0.3.0            [required by x509]
  - install   hacl-star                      0.7.2            [required by octez-libs]
  - install   hacl-star-raw                  0.7.2            [required by octez-libs]
  - install   hex                            1.5.0            [required by octez-libs]
  - install   index                          1.6.0            [required by irmin-pack]
  - install   integers                       0.7.0            [required by octez-libs]
  - install   integers_stubs_js              1.0              [required by octez-libs]
  - install   ipaddr-sexp                    5.6.1            [required by conduit-lwt-unix]
  - install   irmin                          3.7.2            [required by octez-libs]
  - install   irmin-pack                     3.7.2            [required by octez-libs]
  - install   jane-street-headers            v0.16.0          [required by time_now]
  - install   js_of_ocaml                    5.8.2            [required by integers_stubs_js, tezt]
  - install   js_of_ocaml-compiler           5.8.2            [required by logs]
  - install   json-data-encoding             0.12.1           [required by data-encoding]
  - install   json-data-encoding-bson        0.12.1           [required by data-encoding]
  - install   jsonm                          1.0.2            [required by irmin]
  - install   jst-config                     v0.16.0          [required by time_now]
  - install   lru                            0.3.1            [required by index]
  - install   lwt-canceler                   0.3              [required by octez-libs]
  - install   lwt-watcher                    0.2              [required by octez-libs]
  - install   magic-mime                     1.3.1            [required by cohttp-lwt-unix]
  - install   menhir                         20250912         [required by js_of_ocaml-compiler]
  - install   menhirCST                      20250912         [required by menhir]
  - install   menhirLib                      20250912         [required by js_of_ocaml-compiler]
  - install   menhirSdk                      20250912         [required by js_of_ocaml-compiler]
  - install   mirage-crypto                  0.11.3           [required by ca-certs]
  - install   mirage-crypto-ec               0.11.3           [required by x509]
  - install   mirage-crypto-pk               0.11.3           [required by x509]
  - install   mirage-crypto-rng              0.11.3           [required by x509]
  - install   mtime                          1.4.0            [required by octez-libs]
  - install   ocaml-compiler-libs            v0.12.4          [required by ppxlib]
  - install   ocaml-syntax-shims             1.0.0            [required by alcotest]
  - install   ocamlgraph                     2.2.0            [required by irmin]
  - install   octez-alcotezt                 18.1             [required by octez-libs]
  - install   octez-distributed-internal     18.1             [required by octez-distributed-lwt-internal]
  - install   octez-distributed-lwt-internal 18.1             [required by octez-libs]
  - install   octez-libs                     18.1
  - install   optint                         0.3.0            [required by irmin-pack]
  - install   pbkdf                          1.2.0            [required by x509]
  - install   ppx_assert                     v0.16.0          [required by jst-config]
  - install   ppx_base                       v0.16.0          [required by time_now]
  - install   ppx_cold                       v0.16.0          [required by ppx_base]
  - install   ppx_compare                    v0.16.0          [required by ppx_hash]
  - install   ppx_derivers                   1.2.1            [required by ppxlib, ppx_deriving]
  - install   ppx_deriving                   6.0.3            [required by octez-libs]
  - install   ppx_enumerate                  v0.16.0          [required by ppx_base]
  - install   ppx_expect                     v0.16.2          [required by octez-libs]
  - install   ppx_globalize                  v0.16.0          [required by ppx_base]
  - install   ppx_hash                       v0.16.0          [required by data-encoding]
  - install   ppx_here                       v0.16.0          [required by ppx_expect]
  - install   ppx_inline_test                v0.16.0          [required by ppx_expect]
  - install   ppx_irmin                      3.7.2            [required by irmin, irmin-pack]
  - install   ppx_optcomp                    v0.16.0          [required by time_now]
  - install   ppx_repr                       0.7.0            [required by octez-libs]
  - install   ppx_sexp_conv                  v0.16.0          [required by cohttp-lwt-unix]
  - install   ppxlib                         0.35.0           [required by ppx_expect]
  - install   progress                       0.2.1            [required by index]
  - install   psq                            0.2.1            [required by lru]
  - install   ptime                          1.2.0            [required by octez-libs]
  - install   pure-splitmix                  0.3              [required by octez-libs]
  - install   qcheck-alcotest                0.91             [required by octez-libs]
  - install   qcheck-core                    0.91             [required by qcheck-alcotest]
  - install   re                             1.12.0           [required by octez-libs]
  - install   repr                           0.7.0            [required by octez-libs]
  - install   resto                          1.2              [required by octez-libs]
  - install   resto-acl                      1.2              [required by octez-libs]
  - install   resto-cohttp                   1.2              [required by octez-libs]
  - install   resto-cohttp-client            1.2              [required by octez-libs]
  - install   resto-cohttp-server            1.2              [required by octez-libs]
  - install   resto-directory                1.2              [required by octez-libs]
  - install   ringo                          1.1.0            [required by octez-libs]
  - install   rresult                        0.7.0            [required by bos]
  - install   rusage                         1.0.0            [required by irmin-pack]
  - install   secp256k1-internal             0.4.0            [required by octez-libs]
  - install   sedlex                         3.7              [required by js_of_ocaml-compiler]
  - install   semaphore-compat               1.0.2            [required by index]
  - install   seq                            base             [required by re]
  - install   seqes                          0.4              [required by octez-libs]
  - install   sexplib0                       v0.16.0          [required by conduit-lwt, cohttp-lwt, ezjsonm]
  - install   stdint                         0.7.2            [required by octez-libs]
  - install   stdio                          v0.16.0          [required by ppx_expect]
  - install   stdlib-shims                   0.3.0            [required by alcotest]
  - install   stringext                      1.6.0            [required by cohttp]
  - install   terminal                       0.2.1            [required by progress]
  - install   tezos-rust-libs                1.6              [required by octez-libs]
  - install   tezos-sapling-parameters       1.1.0            [required by octez-libs]
  - install   tezt                           3.1.1            [required by octez-alcotezt]
  - install   time_now                       v0.16.0          [required by ppx_inline_test]
  - install   uri                            4.4.0            [required by octez-libs]
  - install   uri-sexp                       4.4.0            [required by cohttp]
  - install   uucp                           17.0.0           [required by progress]
  - install   uutf                           1.0.4            [required by octez-libs]
  - install   vector                         1.0.0            [required by progress]
  - install   x509                           0.16.5           [required by ca-certs]
  - install   yojson                         2.2.2            [required by js_of_ocaml-compiler]
  - install   zarith                         1.12             [required by octez-libs]
  - install   zarith_stubs_js                v0.16.1          [required by octez-libs]

The following system packages will first need to be installed:
    cargo cmake libev-dev libgmp-dev pkg-config

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
  2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
  3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
  4. Abort the installation

[1/2/3/4] 1

+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "cargo" "cmake" "libev-dev" "libgmp-dev" "pkg-config"
- Selecting previously unselected package libpipeline1:amd64.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20623 files and directories currently installed.)
- Preparing to unpack .../libpipeline1_1.5.8-1_amd64.deb ...
- Unpacking libpipeline1:amd64 (1.5.8-1) ...
- Selecting previously unselected package binfmt-support.
- Preparing to unpack .../binfmt-support_2.2.2-7_amd64.deb ...
- Unpacking binfmt-support (2.2.2-7) ...
- Selecting previously unselected package libpython3.13-minimal:amd64.
- Preparing to unpack .../libpython3.13-minimal_3.13.5-2_amd64.deb ...
- Unpacking libpython3.13-minimal:amd64 (3.13.5-2) ...
- Selecting previously unselected package python3.13-minimal.
- Preparing to unpack .../python3.13-minimal_3.13.5-2_amd64.deb ...
- Unpacking python3.13-minimal (3.13.5-2) ...
- Setting up libpython3.13-minimal:amd64 (3.13.5-2) ...
- Setting up python3.13-minimal (3.13.5-2) ...
- Selecting previously unselected package python3-minimal.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20970 files and directories currently installed.)
- Preparing to unpack .../0-python3-minimal_3.13.5-1_amd64.deb ...
- Unpacking python3-minimal (3.13.5-1) ...
- Selecting previously unselected package media-types.
- Preparing to unpack .../1-media-types_13.0.0_all.deb ...
- Unpacking media-types (13.0.0) ...
- Selecting previously unselected package readline-common.
- Preparing to unpack .../2-readline-common_8.2-6_all.deb ...
- Unpacking readline-common (8.2-6) ...
- Selecting previously unselected package libreadline8t64:amd64.
- Preparing to unpack .../3-libreadline8t64_8.2-6_amd64.deb ...
- Adding 'diversion of /lib/x86_64-linux-gnu/libhistory.so.8 to /lib/x86_64-linux-gnu/libhistory.so.8.usr-is-merged by libreadline8t64'
- Adding 'diversion of /lib/x86_64-linux-gnu/libhistory.so.8.2 to /lib/x86_64-linux-gnu/libhistory.so.8.2.usr-is-merged by libreadline8t64'
- Adding 'diversion of /lib/x86_64-linux-gnu/libreadline.so.8 to /lib/x86_64-linux-gnu/libreadline.so.8.usr-is-merged by libreadline8t64'
- Adding 'diversion of /lib/x86_64-linux-gnu/libreadline.so.8.2 to /lib/x86_64-linux-gnu/libreadline.so.8.2.usr-is-merged by libreadline8t64'
- Unpacking libreadline8t64:amd64 (8.2-6) ...
- Selecting previously unselected package libpython3.13-stdlib:amd64.
- Preparing to unpack .../4-libpython3.13-stdlib_3.13.5-2_amd64.deb ...
- Unpacking libpython3.13-stdlib:amd64 (3.13.5-2) ...
- Selecting previously unselected package python3.13.
- Preparing to unpack .../5-python3.13_3.13.5-2_amd64.deb ...
- Unpacking python3.13 (3.13.5-2) ...
- Selecting previously unselected package libpython3-stdlib:amd64.
- Preparing to unpack .../6-libpython3-stdlib_3.13.5-1_amd64.deb ...
- Unpacking libpython3-stdlib:amd64 (3.13.5-1) ...
- Setting up python3-minimal (3.13.5-1) ...
- Selecting previously unselected package python3.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 21456 files and directories currently installed.)
- Preparing to unpack .../00-python3_3.13.5-1_amd64.deb ...
- Unpacking python3 (3.13.5-1) ...
- Selecting previously unselected package libhttp-parser2.9:amd64.
- Preparing to unpack .../01-libhttp-parser2.9_2.9.4-6+b2_amd64.deb ...
- Unpacking libhttp-parser2.9:amd64 (2.9.4-6+b2) ...
- Selecting previously unselected package libmbedcrypto16:amd64.
- Preparing to unpack .../02-libmbedcrypto16_3.6.5-0.1~deb13u1_amd64.deb ...
- Unpacking libmbedcrypto16:amd64 (3.6.5-0.1~deb13u1) ...
- Selecting previously unselected package libmbedx509-7:amd64.
- Preparing to unpack .../03-libmbedx509-7_3.6.5-0.1~deb13u1_amd64.deb ...
- Unpacking libmbedx509-7:amd64 (3.6.5-0.1~deb13u1) ...
- Selecting previously unselected package libmbedtls21:amd64.
- Preparing to unpack .../04-libmbedtls21_3.6.5-0.1~deb13u1_amd64.deb ...
- Unpacking libmbedtls21:amd64 (3.6.5-0.1~deb13u1) ...
- Selecting previously unselected package libgit2-1.9:amd64.
- Preparing to unpack .../05-libgit2-1.9_1.9.0+ds-2_amd64.deb ...
- Unpacking libgit2-1.9:amd64 (1.9.0+ds-2) ...
- Selecting previously unselected package libxml2:amd64.
- Preparing to unpack .../06-libxml2_2.12.7+dfsg+really2.9.14-2.1+deb13u2_amd64.deb ...
- Unpacking libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Selecting previously unselected package libz3-4:amd64.
- Preparing to unpack .../07-libz3-4_4.13.3-1_amd64.deb ...
- Unpacking libz3-4:amd64 (4.13.3-1) ...
- Selecting previously unselected package libllvm19:amd64.
- Preparing to unpack .../08-libllvm19_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking libllvm19:amd64 (1:19.1.7-3+b1) ...
- Selecting previously unselected package libstd-rust-1.85:amd64.
- Preparing to unpack .../09-libstd-rust-1.85_1.85.0+dfsg3-1_amd64.deb ...
- Unpacking libstd-rust-1.85:amd64 (1.85.0+dfsg3-1) ...
- Selecting previously unselected package libstd-rust-dev:amd64.
- Preparing to unpack .../10-libstd-rust-dev_1.85.0+dfsg3-1_amd64.deb ...
- Unpacking libstd-rust-dev:amd64 (1.85.0+dfsg3-1) ...
- Selecting previously unselected package rustc.
- Preparing to unpack .../11-rustc_1.85.0+dfsg3-1_amd64.deb ...
- Unpacking rustc (1.85.0+dfsg3-1) ...
- Selecting previously unselected package libclang-cpp19.
- Preparing to unpack .../12-libclang-cpp19_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking libclang-cpp19 (1:19.1.7-3+b1) ...
- Selecting previously unselected package libgc1:amd64.
- Preparing to unpack .../13-libgc1_1%3a8.2.8-1_amd64.deb ...
- Unpacking libgc1:amd64 (1:8.2.8-1) ...
- Selecting previously unselected package libobjc4:amd64.
- Preparing to unpack .../14-libobjc4_14.2.0-19_amd64.deb ...
- Unpacking libobjc4:amd64 (14.2.0-19) ...
- Selecting previously unselected package libobjc-14-dev:amd64.
- Preparing to unpack .../15-libobjc-14-dev_14.2.0-19_amd64.deb ...
- Unpacking libobjc-14-dev:amd64 (14.2.0-19) ...
- Selecting previously unselected package libclang-common-19-dev:amd64.
- Preparing to unpack .../16-libclang-common-19-dev_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking libclang-common-19-dev:amd64 (1:19.1.7-3+b1) ...
- Selecting previously unselected package llvm-19-linker-tools.
- Preparing to unpack .../17-llvm-19-linker-tools_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking llvm-19-linker-tools (1:19.1.7-3+b1) ...
- Selecting previously unselected package libclang1-19.
- Preparing to unpack .../18-libclang1-19_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking libclang1-19 (1:19.1.7-3+b1) ...
- Selecting previously unselected package clang-19.
- Preparing to unpack .../19-clang-19_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking clang-19 (1:19.1.7-3+b1) ...
- Selecting previously unselected package cargo.
- Preparing to unpack .../20-cargo_1.85.0+dfsg3-1_amd64.deb ...
- Unpacking cargo (1.85.0+dfsg3-1) ...
- Selecting previously unselected package clang-tools-19.
- Preparing to unpack .../21-clang-tools-19_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking clang-tools-19 (1:19.1.7-3+b1) ...
- Selecting previously unselected package cmake-data.
- Preparing to unpack .../22-cmake-data_3.31.6-2_all.deb ...
- Unpacking cmake-data (3.31.6-2) ...
- Selecting previously unselected package libarchive13t64:amd64.
- Preparing to unpack .../23-libarchive13t64_3.7.4-4_amd64.deb ...
- Unpacking libarchive13t64:amd64 (3.7.4-4) ...
- Selecting previously unselected package libjsoncpp26:amd64.
- Preparing to unpack .../24-libjsoncpp26_1.9.6-3_amd64.deb ...
- Unpacking libjsoncpp26:amd64 (1.9.6-3) ...
- Selecting previously unselected package librhash1:amd64.
- Preparing to unpack .../25-librhash1_1.4.5-1_amd64.deb ...
- Unpacking librhash1:amd64 (1.4.5-1) ...
- Selecting previously unselected package libuv1t64:amd64.
- Preparing to unpack .../26-libuv1t64_1.50.0-2_amd64.deb ...
- Unpacking libuv1t64:amd64 (1.50.0-2) ...
- Selecting previously unselected package cmake.
- Preparing to unpack .../27-cmake_3.31.6-2_amd64.deb ...
- Unpacking cmake (3.31.6-2) ...
- Selecting previously unselected package libc6-i386.
- Preparing to unpack .../28-libc6-i386_2.41-12+deb13u1_amd64.deb ...
- Unpacking libc6-i386 (2.41-12+deb13u1) ...
- Selecting previously unselected package lib32gcc-s1.
- Preparing to unpack .../29-lib32gcc-s1_14.2.0-19_amd64.deb ...
- Unpacking lib32gcc-s1 (14.2.0-19) ...
- Selecting previously unselected package lib32stdc++6.
- Preparing to unpack .../30-lib32stdc++6_14.2.0-19_amd64.deb ...
- Unpacking lib32stdc++6 (14.2.0-19) ...
- Selecting previously unselected package libclang-rt-19-dev:amd64.
- Preparing to unpack .../31-libclang-rt-19-dev_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking libclang-rt-19-dev:amd64 (1:19.1.7-3+b1) ...
- Selecting previously unselected package libev4t64:amd64.
- Preparing to unpack .../32-libev4t64_1%3a4.33-2.1+b1_amd64.deb ...
- Unpacking libev4t64:amd64 (1:4.33-2.1+b1) ...
- Selecting previously unselected package libev-dev:amd64.
- Preparing to unpack .../33-libev-dev_1%3a4.33-2.1+b1_amd64.deb ...
- Unpacking libev-dev:amd64 (1:4.33-2.1+b1) ...
- Selecting previously unselected package libffi-dev:amd64.
- Preparing to unpack .../34-libffi-dev_3.4.8-2_amd64.deb ...
- Unpacking libffi-dev:amd64 (3.4.8-2) ...
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- Preparing to unpack .../35-libgmpxx4ldbl_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../36-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libncurses6:amd64.
- Preparing to unpack .../37-libncurses6_6.5+20250216-2_amd64.deb ...
- Unpacking libncurses6:amd64 (6.5+20250216-2) ...
- Selecting previously unselected package libncurses-dev:amd64.
- Preparing to unpack .../38-libncurses-dev_6.5+20250216-2_amd64.deb ...
- Unpacking libncurses-dev:amd64 (6.5+20250216-2) ...
- Selecting previously unselected package libpfm4:amd64.
- Preparing to unpack .../39-libpfm4_4.13.0+git99-gc5587f9-1_amd64.deb ...
- Unpacking libpfm4:amd64 (4.13.0+git99-gc5587f9-1) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../40-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package libxml2-dev:amd64.
- Preparing to unpack .../41-libxml2-dev_2.12.7+dfsg+really2.9.14-2.1+deb13u2_amd64.deb ...
- Unpacking libxml2-dev:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Selecting previously unselected package libyaml-0-2:amd64.
- Preparing to unpack .../42-libyaml-0-2_0.2.5-2_amd64.deb ...
- Unpacking libyaml-0-2:amd64 (0.2.5-2) ...
- Selecting previously unselected package libz3-dev:amd64.
- Preparing to unpack .../43-libz3-dev_4.13.3-1_amd64.deb ...
- Unpacking libz3-dev:amd64 (4.13.3-1) ...
- Selecting previously unselected package lld-19.
- Preparing to unpack .../44-lld-19_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking lld-19 (1:19.1.7-3+b1) ...
- Selecting previously unselected package llvm-19-runtime.
- Preparing to unpack .../45-llvm-19-runtime_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking llvm-19-runtime (1:19.1.7-3+b1) ...
- Selecting previously unselected package llvm-19.
- Preparing to unpack .../46-llvm-19_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking llvm-19 (1:19.1.7-3+b1) ...
- Selecting previously unselected package python3-pygments.
- Preparing to unpack .../47-python3-pygments_2.18.0+dfsg-2_all.deb ...
- Unpacking python3-pygments (2.18.0+dfsg-2) ...
- Selecting previously unselected package python3-yaml.
- Preparing to unpack .../48-python3-yaml_6.0.2-1+b2_amd64.deb ...
- Unpacking python3-yaml (6.0.2-1+b2) ...
- Selecting previously unselected package llvm-19-tools.
- Preparing to unpack .../49-llvm-19-tools_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking llvm-19-tools (1:19.1.7-3+b1) ...
- Selecting previously unselected package llvm-19-dev.
- Preparing to unpack .../50-llvm-19-dev_1%3a19.1.7-3+b1_amd64.deb ...
- Unpacking llvm-19-dev (1:19.1.7-3+b1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../51-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../52-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../53-pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Selecting previously unselected package rust-llvm.
- Preparing to unpack .../54-rust-llvm_1.85.0+dfsg3-1_amd64.deb ...
- Unpacking rust-llvm (1.85.0+dfsg3-1) ...
- Setting up media-types (13.0.0) ...
- Setting up libpipeline1:amd64 (1.5.8-1) ...
- Setting up libev4t64:amd64 (1:4.33-2.1+b1) ...
- Setting up libclang-common-19-dev:amd64 (1:19.1.7-3+b1) ...
- Setting up libyaml-0-2:amd64 (0.2.5-2) ...
- Setting up libuv1t64:amd64 (1.50.0-2) ...
- Setting up libffi-dev:amd64 (3.4.8-2) ...
- Setting up libz3-4:amd64 (4.13.3-1) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up libpfm4:amd64 (4.13.0+git99-gc5587f9-1) ...
- Setting up libjsoncpp26:amd64 (1.9.6-3) ...
- Setting up libncurses6:amd64 (6.5+20250216-2) ...
- Setting up binfmt-support (2.2.2-7) ...
- invoke-rc.d: could not determine current runlevel
- invoke-rc.d: policy-rc.d denied execution of start.
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up libgc1:amd64 (1:8.2.8-1) ...
- Setting up libc6-i386 (2.41-12+deb13u1) ...
- Setting up cmake-data (3.31.6-2) ...
- Setting up librhash1:amd64 (1.4.5-1) ...
- Setting up libmbedcrypto16:amd64 (3.6.5-0.1~deb13u1) ...
- Setting up libev-dev:amd64 (1:4.33-2.1+b1) ...
- Setting up readline-common (8.2-6) ...
- Setting up libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Setting up libhttp-parser2.9:amd64 (2.9.4-6+b2) ...
- Setting up libllvm19:amd64 (1:19.1.7-3+b1) ...
- Setting up libz3-dev:amd64 (4.13.3-1) ...
- Setting up libncurses-dev:amd64 (6.5+20250216-2) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up libclang1-19 (1:19.1.7-3+b1) ...
- Setting up libobjc4:amd64 (14.2.0-19) ...
- Setting up libobjc-14-dev:amd64 (14.2.0-19) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up libxml2-dev:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
- Setting up libmbedx509-7:amd64 (3.6.5-0.1~deb13u1) ...
- Setting up lib32gcc-s1 (14.2.0-19) ...
- Setting up lib32stdc++6 (14.2.0-19) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Setting up libmbedtls21:amd64 (3.6.5-0.1~deb13u1) ...
- Setting up libreadline8t64:amd64 (8.2-6) ...
- Setting up libclang-rt-19-dev:amd64 (1:19.1.7-3+b1) ...
- Setting up libstd-rust-1.85:amd64 (1.85.0+dfsg3-1) ...
- Setting up llvm-19-linker-tools (1:19.1.7-3+b1) ...
- Setting up llvm-19-runtime (1:19.1.7-3+b1) ...
- Setting up lld-19 (1:19.1.7-3+b1) ...
- Setting up libarchive13t64:amd64 (3.7.4-4) ...
- Setting up libpython3.13-stdlib:amd64 (3.13.5-2) ...
- Setting up libpython3-stdlib:amd64 (3.13.5-1) ...
- Setting up libclang-cpp19 (1:19.1.7-3+b1) ...
- Setting up python3.13 (3.13.5-2) ...
- Setting up python3 (3.13.5-1) ...
- running python rtupdate hooks for python3.13...
- running python post-rtupdate hooks for python3.13...
- Setting up clang-19 (1:19.1.7-3+b1) ...
- Setting up clang-tools-19 (1:19.1.7-3+b1) ...
- Setting up libstd-rust-dev:amd64 (1.85.0+dfsg3-1) ...
- Setting up python3-pygments (2.18.0+dfsg-2) ...
- Setting up libgit2-1.9:amd64 (1.9.0+ds-2) ...
- Setting up rustc (1.85.0+dfsg3-1) ...
- Setting up cmake (3.31.6-2) ...
- Setting up llvm-19 (1:19.1.7-3+b1) ...
- Setting up rust-llvm (1.85.0+dfsg3-1) ...
- Setting up python3-yaml (6.0.2-1+b2) ...
- Setting up cargo (1.85.0+dfsg3-1) ...
- Setting up llvm-19-tools (1:19.1.7-3+b1) ...
- Setting up llvm-19-dev (1:19.1.7-3+b1) ...
- Processing triggers for libc-bin (2.41-12+deb13u1) ...
- Processing triggers for base-files (13.8+deb13u3) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved aches.1.1.0, aches-lwt.1.1.0, ringo.1.1.0  (cached)
-> retrieved alcotest.1.9.1  (cached)
-> retrieved angstrom.0.16.1  (cached)
-> retrieved asn1-combinators.0.2.6  (cached)
-> retrieved astring.0.8.5  (cached)
-> retrieved base.v0.16.4  (cached)
-> retrieved base64.3.5.2  (cached)
-> retrieved bheap.2.0.0  (cached)
-> retrieved bigarray-compat.1.1.0  (cached)
-> retrieved bigstring.0.3  (cached)
-> retrieved bigstringaf.0.10.0  (cached)
-> retrieved bls12-381.18.1, octez-alcotezt.18.1, octez-distributed-internal.18.1, octez-distributed-lwt-internal.18.1, octez-libs.18.1  (cached)
-> installed astring.0.8.5
-> retrieved bos.0.2.1  (cached)
-> retrieved ca-certs.0.2.3  (cached)
-> retrieved checkseum.0.5.2  (cached)
-> retrieved cmdliner.1.3.0  (cached)
-> retrieved cohttp.5.3.1  (cached)
-> retrieved cohttp-lwt.5.3.0, cohttp-lwt-unix.5.3.0  (cached)
-> retrieved conduit.8.0.0, conduit-lwt.8.0.0, conduit-lwt-unix.8.0.0  (cached)
-> retrieved conf-cmake.1  (cached)
-> retrieved conf-gmp.5  (cached)
-> retrieved conf-gmp-powm-sec.4  (cached)
-> retrieved conf-libev.4-13  (cached)
-> retrieved conf-rust-2021.1  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved cstruct.6.2.0  (cached)
-> retrieved ctypes.0.24.0  (cached)
-> installed conf-cmake.1
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> installed conf-which.1
-> retrieved ctypes_stubs_js.0.1  (cached)
-> retrieved data-encoding.0.7.1  (cached)
-> installed conf-gmp-powm-sec.4
-> installed conf-rust.0.1
-> installed conf-libev.4-13
-> installed conf-rust-2021.1
-> retrieved digestif.1.3.0  (cached)
-> retrieved domain-name.0.5.0  (cached)
-> retrieved dune.3.10.0  (cached)
-> retrieved dune-configurator.3.13.1  (cached)
-> retrieved duration.0.2.1  (cached)
-> retrieved either.1.0.0  (cached)
-> retrieved eqaf.0.9  (cached)
-> retrieved ezjsonm.1.3.0  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved fpath.0.7.3  (cached)
-> retrieved gen.1.1  (cached)
-> retrieved gmap.0.3.0  (cached)
-> retrieved hacl-star.0.7.2, hacl-star-raw.0.7.2  (cached)
-> retrieved hex.1.5.0  (cached)
-> retrieved index.1.6.0  (cached)
-> retrieved integers.0.7.0  (cached)
-> retrieved integers_stubs_js.1.0  (cached)
-> retrieved ipaddr.5.6.1, ipaddr-sexp.5.6.1, macaddr.5.6.1  (cached)
-> installed fpath.0.7.3
-> retrieved irmin.3.7.2, irmin-pack.3.7.2, ppx_irmin.3.7.2  (cached)
-> retrieved jane-street-headers.v0.16.0  (cached)
-> retrieved js_of_ocaml.5.8.2, js_of_ocaml-compiler.5.8.2  (cached)
-> retrieved json-data-encoding.0.12.1, json-data-encoding-bson.0.12.1  (cached)
-> retrieved jsonm.1.0.2  (cached)
-> retrieved jst-config.v0.16.0  (cached)
-> retrieved logs.0.10.0  (cached)
-> retrieved lru.0.3.1  (cached)
-> retrieved lwt.5.9.1  (cached)
-> retrieved lwt-canceler.0.3  (cached)
-> retrieved lwt-watcher.0.2  (cached)
-> retrieved magic-mime.1.3.1  (cached)
-> retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912  (cached)
-> retrieved mirage-crypto.0.11.3, mirage-crypto-ec.0.11.3, mirage-crypto-pk.0.11.3, mirage-crypto-rng.0.11.3  (cached)
-> retrieved mtime.1.4.0  (cached)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocamlgraph.2.2.0  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved optint.0.3.0  (cached)
-> retrieved pbkdf.1.2.0  (cached)
-> retrieved ppx_assert.v0.16.0  (cached)
-> retrieved ppx_base.v0.16.0  (cached)
-> retrieved ppx_cold.v0.16.0  (cached)
-> retrieved ppx_compare.v0.16.0  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_deriving.6.0.3  (cached)
-> retrieved ppx_enumerate.v0.16.0  (cached)
-> retrieved ppx_expect.v0.16.2  (cached)
-> retrieved ppx_globalize.v0.16.0  (cached)
-> retrieved ppx_hash.v0.16.0  (cached)
-> retrieved ppx_here.v0.16.0  (cached)
-> retrieved ppx_inline_test.v0.16.0  (cached)
-> retrieved ppx_optcomp.v0.16.0  (cached)
-> retrieved ppx_repr.0.7.0, repr.0.7.0  (cached)
-> retrieved ppx_sexp_conv.v0.16.0  (cached)
-> retrieved ppxlib.0.35.0  (cached)
-> retrieved progress.0.2.1, terminal.0.2.1  (cached)
-> retrieved psq.0.2.1  (cached)
-> retrieved ptime.1.2.0  (cached)
-> retrieved pure-splitmix.0.3  (cached)
-> retrieved qcheck-alcotest.0.91, qcheck-core.0.91  (cached)
-> retrieved re.1.12.0  (cached)
-> retrieved resto.1.2, resto-acl.1.2, resto-cohttp.1.2, resto-cohttp-client.1.2, resto-cohttp-server.1.2, resto-directory.1.2  (cached)
-> retrieved rresult.0.7.0  (cached)
-> retrieved rusage.1.0.0  (cached)
-> retrieved secp256k1-internal.0.4.0  (cached)
-> retrieved sedlex.3.7  (cached)
-> retrieved semaphore-compat.1.0.2  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> installed mtime.1.4.0
-> retrieved seqes.0.4  (cached)
-> retrieved sexplib0.v0.16.0  (cached)
-> retrieved stdint.0.7.2  (cached)
-> retrieved stdio.v0.16.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved stringext.1.6.0  (cached)
-> installed ptime.1.2.0
-> installed rresult.0.7.0
-> removed   mirage-runtime.4.10.0
-> removed   ipaddr.5.6.1
-> removed   domain-name.0.5.0
-> removed   logs.0.10.0
-> removed   cmdliner.2.1.0
-> removed   lwt.5.9.2
-> removed   dune-configurator.3.21.0
-> removed   csexp.1.5.2
-> removed   macaddr.5.6.1
-> removed   ocplib-endian.1.2
-> removed   cppo.1.8.0
-> removed   dune.3.21.0
-> retrieved tezos-rust-libs.1.6  (cached)
-> installed cmdliner.1.3.0
-> installed dune.3.10.0
-> retrieved tezos-sapling-parameters.1.1.0  (cached)
-> installed tezos-sapling-parameters.1.1.0
-> installed fmt.0.11.0
-> installed base64.3.5.2
-> installed bheap.2.0.0
-> installed bigarray-compat.1.1.0
-> installed bigstring.0.3
-> installed cppo.1.8.0
-> installed csexp.1.5.2
-> installed domain-name.0.5.0
-> installed duration.0.2.1
-> installed either.1.0.0
-> installed gen.1.1
-> installed gmap.0.3.0
-> installed jane-street-headers.v0.16.0
-> installed macaddr.5.6.1
-> installed magic-mime.1.3.1
-> installed menhirCST.20250912
-> installed menhirLib.20250912
-> installed menhirSdk.20250912
-> installed ocaml-compiler-libs.v0.12.4
-> installed ocaml-syntax-shims.1.0.0
-> installed ocamlgraph.2.2.0
-> installed optint.0.3.0
-> installed ppx_derivers.1.2.1
-> installed psq.0.2.1
-> installed pure-splitmix.0.3
-> installed qcheck-core.0.91
-> installed re.1.12.0
-> installed ringo.1.1.0
-> installed rusage.1.0.0
-> installed semaphore-compat.1.0.2
-> installed seqes.0.4
-> installed sexplib0.v0.16.0
-> installed stdint.0.7.2
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> retrieved tezt.3.1.1  (cached)
-> installed cstruct.6.2.0
-> installed ocplib-endian.1.2
-> installed ipaddr.5.6.1
-> installed lru.0.3.1
-> retrieved time_now.v0.16.0  (cached)
-> retrieved uri.4.4.0, uri-sexp.4.4.0  (cached)
-> installed aches.1.1.0
-> retrieved uucp.17.0.0  (cached)
-> retrieved uutf.1.0.4  (cached)
-> retrieved vector.1.0.0  (cached)
-> installed hex.1.5.0
-> retrieved x509.0.16.5  (cached)
-> retrieved yojson.2.2.2  (cached)
-> installed integers.0.7.0
-> retrieved zarith.1.12  (cached)
-> retrieved zarith_stubs_js.v0.16.1  (cached)
-> installed vector.1.0.0
-> installed eqaf.0.9
-> installed zarith_stubs_js.v0.16.1
-> installed octez-distributed-internal.18.1
-> installed dune-configurator.3.13.1
-> installed uutf.1.0.4
-> installed digestif.1.3.0
-> installed yojson.2.2.2
-> installed bigstringaf.0.10.0
-> installed checkseum.0.5.2
-> installed angstrom.0.16.1
-> installed alcotest.1.9.1
-> installed jsonm.1.0.2
-> installed zarith.1.12
-> installed qcheck-alcotest.0.91
-> installed mirage-crypto.0.11.3
-> installed ezjsonm.1.3.0
-> installed pbkdf.1.2.0
-> installed asn1-combinators.0.2.6
-> installed repr.0.7.0
-> installed uri.4.4.0
-> installed secp256k1-internal.0.4.0
-> installed lwt.5.9.1
-> installed resto.1.2
-> installed lwt-canceler.0.3
-> installed lwt-watcher.0.2
-> installed aches-lwt.1.1.0
-> installed resto-acl.1.2
-> installed resto-directory.1.2
-> installed json-data-encoding.0.12.1
-> installed json-data-encoding-bson.0.12.1
-> installed ctypes.0.24.0
-> installed base.v0.16.4
-> installed stdio.v0.16.0
-> installed menhir.20250912
-> installed ppxlib.0.35.0
-> installed ppx_globalize.v0.16.0
-> installed ppx_optcomp.v0.16.0
-> installed ppx_cold.v0.16.0
-> installed ppx_here.v0.16.0
-> installed ppx_enumerate.v0.16.0
-> installed ppx_compare.v0.16.0
-> installed ppx_sexp_conv.v0.16.0
-> installed sedlex.3.7
-> installed ppx_deriving.6.0.3
-> installed ipaddr-sexp.5.6.1
-> installed uri-sexp.4.4.0
-> installed ppx_hash.v0.16.0
-> installed ppx_assert.v0.16.0
-> installed ppx_base.v0.16.0
-> installed ppx_repr.0.7.0
-> installed cohttp.5.3.1
-> installed data-encoding.0.7.1
-> installed uucp.17.0.0
-> installed jst-config.v0.16.0
-> installed terminal.0.2.1
-> installed time_now.v0.16.0
-> installed ppx_inline_test.v0.16.0
-> installed js_of_ocaml-compiler.5.8.2
-> installed ppx_expect.v0.16.2
-> installed logs.0.10.0
-> installed cohttp-lwt.5.3.0
-> installed conduit.8.0.0
-> installed bos.0.2.1
-> installed mirage-crypto-rng.0.11.3
-> installed mirage-runtime.4.10.0
-> installed resto-cohttp.1.2
-> installed mirage-crypto-pk.0.11.3
-> installed resto-cohttp-client.1.2
-> installed progress.0.2.1
-> installed conduit-lwt.8.0.0
-> installed octez-distributed-lwt-internal.18.1
-> installed ppx_irmin.3.7.2
-> installed index.1.6.0
-> installed mirage-crypto-ec.0.11.3
-> installed x509.0.16.5
-> installed ca-certs.0.2.3
-> installed conduit-lwt-unix.8.0.0
-> installed cohttp-lwt-unix.5.3.0
-> installed irmin.3.7.2
-> installed resto-cohttp-server.1.2
-> installed js_of_ocaml.5.8.2
-> installed integers_stubs_js.1.0
-> installed tezt.3.1.1
-> installed ctypes_stubs_js.0.1
-> installed octez-alcotezt.18.1
-> installed bls12-381.18.1
-> installed irmin-pack.3.7.2
-> installed tezos-rust-libs.1.6
-> installed hacl-star-raw.0.7.2
-> installed hacl-star.0.7.2
-> installed octez-libs.18.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-27 22:40.21 ---> saved as "035ffb8f070dac6aed1771a699719196f571ea7e2e37960c99af3c47be6c36c0"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test octez-libs.18.1) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile octez-libs 18.1

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved octez-libs.18.1  (https://opam.ocaml.org/cache)
-> removed   octez-libs.18.1
-> installed octez-libs.18.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-27 22:45.00 ---> saved as "a37622d8e6936dfec121055a1e45fbfb7f2e401882840cfe95fb6258491ef9ab"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [octez-libs.18.1: extract]
-> retrieved octez-libs.18.1  (cached)
Processing  2/4: [octez-libs: rm vendors]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "rm" "-r" "vendors" "contrib" (CWD=/home/opam/.opam/4.14/.opam-switch/build/octez-libs.18.1)
Processing  2/4: [octez-libs: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "octez-libs" "-j" "255" (CWD=/home/opam/.opam/4.14/.opam-switch/build/octez-libs.18.1)
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I src/lib_test/.tezos_test_helpers.objs/byte -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/data-encoding -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/ezjsonm -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/json-data-encoding -I /home/opam/.opam/4.14/lib/json-data-encoding-bson -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ppx_compare/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_hash/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/pure-splitmix -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zarith_stubs_js -intf-suffix .ml -no-alias-deps -open Tezos_test_helpers -o src/lib_test/.tezos_test_helpers.objs/byte/tezos_test_helpers__Qcheck_helpers.cmo -c -impl src/lib_test/qcheck_helpers.ml)
- File "src/lib_test/qcheck_helpers.ml", line 131, characters 21-27:
- 131 |   let protocol_gen = oneofl ["http"; "https"] in
-                            ^^^^^^
- Alert deprecated: QCheck.Gen.oneofl
- Use [oneof_list] instead
- File "src/lib_test/qcheck_helpers.ml", line 145, characters 36-39:
- 145 |       triple protocol_gen path_gen (opt port_arb)
-                                           ^^^
- Alert deprecated: QCheck.Gen.opt
- Use [option] instead
- File "src/lib_test/qcheck_helpers.ml", line 183, characters 43-57:
- 183 | let string_fixed n = QCheck.(Gen.pure n |> string_of_size)
-                                                  ^^^^^^^^^^^^^^
- Alert deprecated: QCheck.string_of_size
- Use [string_size] instead
- File "src/lib_test/qcheck_helpers.ml", line 204, characters 23-32:
- 204 |         let+ shuffle = shuffle_l elems in
-                              ^^^^^^^^^
- Alert deprecated: QCheck.Gen.shuffle_l
- Use [shuffle_list] instead
- File "src/lib_test/qcheck_helpers.ml", line 210, characters 15-26:
- 210 |   let+ bools = list_repeat (List.length l) bool in
-                      ^^^^^^^^^^^
- Alert deprecated: QCheck.Gen.list_repeat
- Use [list_size (return i) g] instead
- File "src/lib_test/qcheck_helpers.ml", line 227, characters 7-19:
- 227 |       (list_of_size size_gen @@ pair key_arb val_arb)
-              ^^^^^^^^^^^^
- Alert deprecated: QCheck.list_of_size
- Use [list_size] instead
- File "src/lib_test/qcheck_helpers.ml", line 231, characters 16-29:
- 231 |     arb_of_size Gen.small_nat key_arb val_arb
-                       ^^^^^^^^^^^^^
- Alert deprecated: QCheck.Gen.small_nat
- Use [nat_small] instead
- File "src/lib_test/qcheck_helpers.ml", line 241, characters 16-29:
- 241 |     gen_of_size Gen.small_nat key_gen val_gen
-                       ^^^^^^^^^^^^^
- Alert deprecated: QCheck.Gen.small_nat
- Use [nat_small] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -O3 -I src/lib_test/.tezos_test_helpers.objs/byte -I src/lib_test/.tezos_test_helpers.objs/native -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/data-encoding -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/ezjsonm -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/json-data-encoding -I /home/opam/.opam/4.14/lib/json-data-encoding-bson -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ppx_compare/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_hash/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/pure-splitmix -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zarith_stubs_js -intf-suffix .ml -no-alias-deps -open Tezos_test_helpers -o src/lib_test/.tezos_test_helpers.objs/native/tezos_test_helpers__Qcheck_helpers.cmx -c -impl src/lib_test/qcheck_helpers.ml)
- File "src/lib_test/qcheck_helpers.ml", line 131, characters 21-27:
- 131 |   let protocol_gen = oneofl ["http"; "https"] in
-                            ^^^^^^
- Alert deprecated: QCheck.Gen.oneofl
- Use [oneof_list] instead
- File "src/lib_test/qcheck_helpers.ml", line 145, characters 36-39:
- 145 |       triple protocol_gen path_gen (opt port_arb)
-                                           ^^^
- Alert deprecated: QCheck.Gen.opt
- Use [option] instead
- File "src/lib_test/qcheck_helpers.ml", line 183, characters 43-57:
- 183 | let string_fixed n = QCheck.(Gen.pure n |> string_of_size)
-                                                  ^^^^^^^^^^^^^^
- Alert deprecated: QCheck.string_of_size
- Use [string_size] instead
- File "src/lib_test/qcheck_helpers.ml", line 204, characters 23-32:
- 204 |         let+ shuffle = shuffle_l elems in
-                              ^^^^^^^^^
- Alert deprecated: QCheck.Gen.shuffle_l
- Use [shuffle_list] instead
- File "src/lib_test/qcheck_helpers.ml", line 210, characters 15-26:
- 210 |   let+ bools = list_repeat (List.length l) bool in
-                      ^^^^^^^^^^^
- Alert deprecated: QCheck.Gen.list_repeat
- Use [list_size (return i) g] instead
- File "src/lib_test/qcheck_helpers.ml", line 227, characters 7-19:
- 227 |       (list_of_size size_gen @@ pair key_arb val_arb)
-              ^^^^^^^^^^^^
- Alert deprecated: QCheck.list_of_size
- Use [list_size] instead
- File "src/lib_test/qcheck_helpers.ml", line 231, characters 16-29:
- 231 |     arb_of_size Gen.small_nat key_arb val_arb
-                       ^^^^^^^^^^^^^
- Alert deprecated: QCheck.Gen.small_nat
- Use [nat_small] instead
- File "src/lib_test/qcheck_helpers.ml", line 241, characters 16-29:
- 241 |     gen_of_size Gen.small_nat key_gen val_gen
-                       ^^^^^^^^^^^^^
- Alert deprecated: QCheck.Gen.small_nat
- Use [nat_small] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I src/lib_test/.tezos_test_helpers.objs/byte -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/data-encoding -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/ezjsonm -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/json-data-encoding -I /home/opam/.opam/4.14/lib/json-data-encoding-bson -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ppx_compare/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_hash/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/pure-splitmix -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zarith_stubs_js -intf-suffix .ml -no-alias-deps -open Tezos_test_helpers -o src/lib_test/.tezos_test_helpers.objs/byte/tezos_test_helpers__Qcheck2_helpers.cmo -c -impl src/lib_test/qcheck2_helpers.ml)
- File "src/lib_test/qcheck2_helpers.ml", line 222, characters 38-50:
- 222 |   QCheck2.Gen.(map Bytes.of_string @@ small_string ~gen:char)
-                                             ^^^^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_string
- Use [string_small] instead
- File "src/lib_test/qcheck2_helpers.ml", line 240, characters 23-32:
- 240 |         let+ shuffle = shuffle_l elems in
-                              ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.shuffle_l
- Use [shuffle_list] instead
- File "src/lib_test/qcheck2_helpers.ml", line 246, characters 15-26:
- 246 |   let+ bools = list_repeat (List.length l) bool in
-                      ^^^^^^^^^^^
- Alert deprecated: QCheck2.Gen.list_repeat
- Use [list_size (return i) g] instead
- File "src/lib_test/qcheck2_helpers.ml", line 262, characters 21-27:
- 262 |   let protocol_gen = oneofl ["http"; "https"] in
-                            ^^^^^^
- Alert deprecated: QCheck2.Gen.oneofl
- Use [oneof_list] instead
- File "src/lib_test/qcheck2_helpers.ml", line 276, characters 36-39:
- 276 |       triple protocol_gen path_gen (opt port_gen)
-                                           ^^^
- Alert deprecated: QCheck2.Gen.opt
- Use [option] instead
- File "src/lib_test/qcheck2_helpers.ml", line 301, characters 16-29:
- 301 |     gen_of_size Gen.small_nat key_gen val_gen
-                       ^^^^^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_nat
- Use [nat_small] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -O3 -I src/lib_test/.tezos_test_helpers.objs/byte -I src/lib_test/.tezos_test_helpers.objs/native -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/data-encoding -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/ezjsonm -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/json-data-encoding -I /home/opam/.opam/4.14/lib/json-data-encoding-bson -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ppx_compare/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_hash/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/pure-splitmix -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zarith_stubs_js -intf-suffix .ml -no-alias-deps -open Tezos_test_helpers -o src/lib_test/.tezos_test_helpers.objs/native/tezos_test_helpers__Qcheck2_helpers.cmx -c -impl src/lib_test/qcheck2_helpers.ml)
- File "src/lib_test/qcheck2_helpers.ml", line 222, characters 38-50:
- 222 |   QCheck2.Gen.(map Bytes.of_string @@ small_string ~gen:char)
-                                             ^^^^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_string
- Use [string_small] instead
- File "src/lib_test/qcheck2_helpers.ml", line 240, characters 23-32:
- 240 |         let+ shuffle = shuffle_l elems in
-                              ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.shuffle_l
- Use [shuffle_list] instead
- File "src/lib_test/qcheck2_helpers.ml", line 246, characters 15-26:
- 246 |   let+ bools = list_repeat (List.length l) bool in
-                      ^^^^^^^^^^^
- Alert deprecated: QCheck2.Gen.list_repeat
- Use [list_size (return i) g] instead
- File "src/lib_test/qcheck2_helpers.ml", line 262, characters 21-27:
- 262 |   let protocol_gen = oneofl ["http"; "https"] in
-                            ^^^^^^
- Alert deprecated: QCheck2.Gen.oneofl
- Use [oneof_list] instead
- File "src/lib_test/qcheck2_helpers.ml", line 276, characters 36-39:
- 276 |       triple protocol_gen path_gen (opt port_gen)
-                                           ^^^
- Alert deprecated: QCheck2.Gen.opt
- Use [option] instead
- File "src/lib_test/qcheck2_helpers.ml", line 301, characters 16-29:
- 301 |     gen_of_size Gen.small_nat key_gen val_gen
-                       ^^^^^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_nat
- Use [nat_small] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -O3 -I src/lib_hacl/gen/.gen.eobjs/byte -I src/lib_hacl/gen/.gen.eobjs/native -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/ctypes -I /home/opam/.opam/4.14/lib/ctypes/stubs -I /home/opam/.opam/4.14/lib/ezjsonm -I /home/opam/.opam/4.14/lib/hacl-star-raw -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/integers -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -intf-suffix .ml -no-alias-deps -open Dune__exe -o src/lib_hacl/gen/.gen.eobjs/native/dune__exe__Gen.cmx -c -impl src/lib_hacl/gen/gen.ml)
- File "src/lib_hacl/gen/gen.ml", lines 218-265, characters 2-39:
- 218 | ..match (typ, api) with
- 219 |   | Void, Void -> Void
- 220 |   | Primitive Uint32_t, Int -> Uint32
- 221 |   | Primitive Uint8_t, Int -> Uint8
- 222 |   | Primitive Bool, Bool -> Bool
- ...
- 262 |   | Bigarray _, _ -> assert false
- 263 |   | OCaml String, _ -> assert false
- 264 |   | OCaml Bytes, _ -> assert false
- 265 |   | OCaml FloatArray, _ -> assert false
- Warning 8 [partial-match]: this pattern-matching is not exhaustive.
- Here is an example of a case that is not matched:
- (Qualified (_, _), _)
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -open Tezos_base.TzPervasives -open Tezos_test_helpers -open Octez_alcotezt -g -bin-annot -I src/lib_base/test_helpers/.tezos_base_test_helpers.objs/byte -I /home/opam/.opam/4.14/lib/aches -I /home/opam/.opam/4.14/lib/aches-lwt -I /home/opam/.opam/4.14/lib/aches-lwt/lache -I /home/opam/.opam/4.14/lib/aches/rache -I /home/opam/.opam/4.14/lib/aches/vache -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bigstring -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bls12-381 -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/ctypes -I /home/opam/.opam/4.14/lib/ctypes/stubs -I /home/opam/.opam/4.14/lib/ctypes_stubs_js -I /home/opam/.opam/4.14/lib/data-encoding -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/ezjsonm -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/hacl-star -I /home/opam/.opam/4.14/lib/hacl-star-raw -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/integers -I /home/opam/.opam/4.14/lib/integers_stubs_js -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/ipaddr/unix -I /home/opam/.opam/4.14/lib/jane-street-headers -I /home/opam/.opam/4.14/lib/json-data-encoding -I /home/opam/.opam/4.14/lib/json-data-encoding-bson -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt-canceler -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/clock/os -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/octez-alcotezt -I /home/opam/.opam/4.14/lib/ppx_compare/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_enumerate/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_expect/collector -I /home/opam/.opam/4.14/lib/ppx_expect/common -I /home/opam/.opam/4.14/lib/ppx_expect/config -I /home/opam/.opam/4.14/lib/ppx_expect/config_types -I /home/opam/.opam/4.14/lib/ppx_hash/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_here/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_inline_test/config -I /home/opam/.opam/4.14/lib/ppx_inline_test/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/pure-splitmix -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/resto -I /home/opam/.opam/4.14/lib/resto-directory -I /home/opam/.opam/4.14/lib/ringo -I /home/opam/.opam/4.14/lib/secp256k1-internal -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/seqes -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/tezt/core -I /home/opam/.opam/4.14/lib/time_now -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zarith_stubs_js -I src/lib_base/.tezos_base.objs/byte -I src/lib_base/unix/.tezos_base_unix.objs/byte -I src/lib_bls12_381_signature/.bls12_381_signature.objs/byte -I src/lib_crypto/.tezos_crypto.objs/byte -I src/lib_error_monad/.tezos_error_monad.objs/byte -I src/lib_event_logging/.tezos_event_logging.objs/byte -I src/lib_event_logging/test_helpers/.tezos_event_logging_test_helpers.objs/byte -I src/lib_hacl/.tezos_hacl.objs/byte -I src/lib_lwt_result_stdlib/.tezos_lwt_result_stdlib.objs/byte -I src/lib_lwt_result_stdlib/bare/functor_outputs/.bare_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/bare/sigs/.bare_sigs.objs/byte -I src/lib_lwt_result_stdlib/bare/structs/.bare_structs.objs/byte -I src/lib_lwt_result_stdlib/traced/functor_outputs/.traced_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/traced/sigs/.traced_sigs.objs/byte -I src/lib_lwt_result_stdlib/traced/structs/.traced_structs.objs/byte -I src/lib_micheline/.tezos_micheline.objs/byte -I src/lib_rpc/.tezos_rpc.objs/byte -I src/lib_stdlib/.tezos_stdlib.objs/byte -I src/lib_stdlib_unix/.tezos_stdlib_unix.objs/byte -I src/lib_test/.tezos_test_helpers.objs/byte -no-alias-deps -open Tezos_base_test_helpers -o src/lib_base/test_helpers/.tezos_base_test_helpers.objs/byte/tezos_base_test_helpers__Tz_gen.cmo -c -impl src/lib_base/test_helpers/tz_gen.ml)
- File "src/lib_base/test_helpers/tz_gen.ml", line 38, characters 14-17:
- 38 |   and* port = opt Qcheck2_helpers.uint16 in
-                    ^^^
- Alert deprecated: QCheck2.Gen.opt
- Use [option] instead
- File "src/lib_base/test_helpers/tz_gen.ml", line 43, characters 15-18:
- 43 | let port_opt = opt port
-                     ^^^
- Alert deprecated: QCheck2.Gen.opt
- Use [option] instead
- File "src/lib_base/test_helpers/tz_gen.ml", line 49, characters 14-17:
- 49 | let peer_id = opt (map P2p_identity.generate_with_pow_target_0 unit)
-                    ^^^
- Alert deprecated: QCheck2.Gen.opt
- Use [option] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -open Tezos_base.TzPervasives -open Tezos_test_helpers -open Octez_alcotezt -g -O3 -I src/lib_base/test_helpers/.tezos_base_test_helpers.objs/byte -I src/lib_base/test_helpers/.tezos_base_test_helpers.objs/native -I /home/opam/.opam/4.14/lib/aches -I /home/opam/.opam/4.14/lib/aches-lwt -I /home/opam/.opam/4.14/lib/aches-lwt/lache -I /home/opam/.opam/4.14/lib/aches/rache -I /home/opam/.opam/4.14/lib/aches/vache -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bigstring -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bls12-381 -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/ctypes -I /home/opam/.opam/4.14/lib/ctypes/stubs -I /home/opam/.opam/4.14/lib/ctypes_stubs_js -I /home/opam/.opam/4.14/lib/data-encoding -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/ezjsonm -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/hacl-star -I /home/opam/.opam/4.14/lib/hacl-star-raw -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/integers -I /home/opam/.opam/4.14/lib/integers_stubs_js -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/ipaddr/unix -I /home/opam/.opam/4.14/lib/jane-street-headers -I /home/opam/.opam/4.14/lib/json-data-encoding -I /home/opam/.opam/4.14/lib/json-data-encoding-bson -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt-canceler -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/clock/os -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/octez-alcotezt -I /home/opam/.opam/4.14/lib/ppx_compare/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_enumerate/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_expect/collector -I /home/opam/.opam/4.14/lib/ppx_expect/common -I /home/opam/.opam/4.14/lib/ppx_expect/config -I /home/opam/.opam/4.14/lib/ppx_expect/config_types -I /home/opam/.opam/4.14/lib/ppx_hash/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_here/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_inline_test/config -I /home/opam/.opam/4.14/lib/ppx_inline_test/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/pure-splitmix -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/resto -I /home/opam/.opam/4.14/lib/resto-directory -I /home/opam/.opam/4.14/lib/ringo -I /home/opam/.opam/4.14/lib/secp256k1-internal -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/seqes -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/tezt/core -I /home/opam/.opam/4.14/lib/time_now -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zarith_stubs_js -I src/lib_base/.tezos_base.objs/byte -I src/lib_base/.tezos_base.objs/native -I src/lib_base/unix/.tezos_base_unix.objs/byte -I src/lib_base/unix/.tezos_base_unix.objs/native -I src/lib_bls12_381_signature/.bls12_381_signature.objs/byte -I src/lib_bls12_381_signature/.bls12_381_signature.objs/native -I src/lib_crypto/.tezos_crypto.objs/byte -I src/lib_crypto/.tezos_crypto.objs/native -I src/lib_error_monad/.tezos_error_monad.objs/byte -I src/lib_error_monad/.tezos_error_monad.objs/native -I src/lib_event_logging/.tezos_event_logging.objs/byte -I src/lib_event_logging/.tezos_event_logging.objs/native -I src/lib_event_logging/test_helpers/.tezos_event_logging_test_helpers.objs/byte -I src/lib_event_logging/test_helpers/.tezos_event_logging_test_helpers.objs/native -I src/lib_hacl/.tezos_hacl.objs/byte -I src/lib_hacl/.tezos_hacl.objs/native -I src/lib_lwt_result_stdlib/.tezos_lwt_result_stdlib.objs/byte -I src/lib_lwt_result_stdlib/.tezos_lwt_result_stdlib.objs/native -I src/lib_lwt_result_stdlib/bare/functor_outputs/.bare_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/bare/functor_outputs/.bare_functor_outputs.objs/native -I src/lib_lwt_result_stdlib/bare/sigs/.bare_sigs.objs/byte -I src/lib_lwt_result_stdlib/bare/sigs/.bare_sigs.objs/native -I src/lib_lwt_result_stdlib/bare/structs/.bare_structs.objs/byte -I src/lib_lwt_result_stdlib/bare/structs/.bare_structs.objs/native -I src/lib_lwt_result_stdlib/traced/functor_outputs/.traced_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/traced/functor_outputs/.traced_functor_outputs.objs/native -I src/lib_lwt_result_stdlib/traced/sigs/.traced_sigs.objs/byte -I src/lib_lwt_result_stdlib/traced/sigs/.traced_sigs.objs/native -I src/lib_lwt_result_stdlib/traced/structs/.traced_structs.objs/byte -I src/lib_lwt_result_stdlib/traced/structs/.traced_structs.objs/native -I src/lib_micheline/.tezos_micheline.objs/byte -I src/lib_micheline/.tezos_micheline.objs/native -I src/lib_rpc/.tezos_rpc.objs/byte -I src/lib_rpc/.tezos_rpc.objs/native -I src/lib_stdlib/.tezos_stdlib.objs/byte -I src/lib_stdlib/.tezos_stdlib.objs/native -I src/lib_stdlib_unix/.tezos_stdlib_unix.objs/byte -I src/lib_stdlib_unix/.tezos_stdlib_unix.objs/native -I src/lib_test/.tezos_test_helpers.objs/byte -I src/lib_test/.tezos_test_helpers.objs/native -intf-suffix .ml -no-alias-deps -open Tezos_base_test_helpers -o src/lib_base/test_helpers/.tezos_base_test_helpers.objs/native/tezos_base_test_helpers__Tz_gen.cmx -c -impl src/lib_base/test_helpers/tz_gen.ml)
- File "src/lib_base/test_helpers/tz_gen.ml", line 38, characters 14-17:
- 38 |   and* port = opt Qcheck2_helpers.uint16 in
-                    ^^^
- Alert deprecated: QCheck2.Gen.opt
- Use [option] instead
- File "src/lib_base/test_helpers/tz_gen.ml", line 43, characters 15-18:
- 43 | let port_opt = opt port
-                     ^^^
- Alert deprecated: QCheck2.Gen.opt
- Use [option] instead
- File "src/lib_base/test_helpers/tz_gen.ml", line 49, characters 14-17:
- 49 | let peer_id = opt (map P2p_identity.generate_with_pow_target_0 unit)
-                    ^^^
- Alert deprecated: QCheck2.Gen.opt
- Use [option] instead
Processing  2/4: [octez-libs: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "octez-libs" "-j" "255" (CWD=/home/opam/.opam/4.14/.opam-switch/build/octez-libs.18.1)
- (cd _build/default/src/lib_bls12_381_hash/test && ./main.exe)
- [22:45:29.266] [SUCCESS] (1/23) Rescue: Consistency with MEC (vectors)
- [22:45:29.266] [SUCCESS] (2/23) Rescue: State (get and set)
- [22:45:29.268] [SUCCESS] (3/23) Poseidon: State (get and set)
- [22:45:29.274] [SUCCESS] (4/23) Poseidon: Batch size consistency (Poseidon128 with random batch sizes)
- [22:45:29.278] [SUCCESS] (5/23) Poseidon: Batch size consistency (Random instance of Poseidon)
- [22:45:29.280] [SUCCESS] (6/23) Poseidon: Test vectors (Poseidon252 (Dusk))
- [22:45:29.283] [SUCCESS] (7/23) Poseidon: Test vectors (Poseidon128 (consistency with MEC))
- [22:45:29.283] [SUCCESS] (8/23) The mode of operation Jive: Exceptions (input size does not correspond to parameters)
- [22:45:29.283] [SUCCESS] (9/23) The mode of operation Jive: Exceptions (b does not divide the state size)
- [22:45:29.283] [SUCCESS] (10/23) The mode of operation Jive: Anemoi (b = 2, state_size = 2)
- [22:45:29.283] [SUCCESS] (11/23) The mode of operation Jive: Anemoi (b = 2, state_size = 4)
- [22:45:29.284] [SUCCESS] (12/23) The mode of operation Jive: Anemoi (b = 2, state_size = 6)
- [22:45:29.284] [SUCCESS] (13/23) Griffin: Test vectors (from reference implementation: Griffin 3)
- [22:45:29.284] [SUCCESS] (14/23) Griffin: Test vectors (from reference implementation: Griffin 4)
- [22:45:29.284] [SUCCESS] (15/23) Griffin: State (get and set)
- [22:45:29.285] [SUCCESS] (16/23) The permutation Anemoi and the mode of operation Jive: From reference implementation (Tests vectors from reference implementation)
- [22:45:29.285] [SUCCESS] (17/23) The permutation Anemoi and the mode of operation Jive: Generic instantiations (l = 1 <==> jive128_1)
- [22:45:29.286] [SUCCESS] (18/23) The permutation Anemoi and the mode of operation Jive: Generic instantiations (l = 2 -> tests vectors from reference implementation)
- [22:45:29.287] [SUCCESS] (19/23) The permutation Anemoi and the mode of operation Jive: Generic instantiations (l = 4 -> tests vectors from reference implementation)
- [22:45:29.287] [SUCCESS] (20/23) The permutation Anemoi and the mode of operation Jive: Generic instantiations (l = 3 -> tests vectors from reference implementation)
- [22:45:29.287] [SUCCESS] (21/23) The permutation Anemoi and the mode of operation Jive: Additional functions (State initialisation and get state)
- [22:45:29.288] [SUCCESS] (22/23) The permutation Anemoi and the mode of operation Jive: Additional functions (Constant generation)
- [22:45:29.288] [SUCCESS] (23/23) The permutation Anemoi and the mode of operation Jive: Additional functions (Compute number of rounds)
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -open Tezt_core -open Tezt_core.Base -open Tezos_stdlib -open Octez_alcotezt -open Tezos_test_helpers -g -bin-annot -I src/lib_stdlib/test/.src_lib_stdlib_test_tezt_lib.objs/byte -I /home/opam/.opam/4.14/lib/aches -I /home/opam/.opam/4.14/lib/aches/rache -I /home/opam/.opam/4.14/lib/aches/vache -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bigstring -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/data-encoding -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/ezjsonm -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/jane-street-headers -I /home/opam/.opam/4.14/lib/json-data-encoding -I /home/opam/.opam/4.14/lib/json-data-encoding-bson -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/octez-alcotezt -I /home/opam/.opam/4.14/lib/ppx_compare/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_enumerate/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_expect/collector -I /home/opam/.opam/4.14/lib/ppx_expect/common -I /home/opam/.opam/4.14/lib/ppx_expect/config -I /home/opam/.opam/4.14/lib/ppx_expect/config_types -I /home/opam/.opam/4.14/lib/ppx_hash/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_here/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_inline_test/config -I /home/opam/.opam/4.14/lib/ppx_inline_test/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/pure-splitmix -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/ringo -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/tezt/core -I /home/opam/.opam/4.14/lib/time_now -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zarith_stubs_js -I src/lib_stdlib/.tezos_stdlib.objs/byte -I src/lib_test/.tezos_test_helpers.objs/byte -no-alias-deps -open Src_lib_stdlib_test_tezt_lib -o src/lib_stdlib/test/.src_lib_stdlib_test_tezt_lib.objs/byte/src_lib_stdlib_test_tezt_lib__Test_tzString.cmo -c -impl src/lib_stdlib/test/test_tzString.ml)
- File "src/lib_stdlib/test/test_tzString.ml", line 57, characters 15-18:
- 57 |     let* lim = opt (1 -- 32) in
-                     ^^^
- Alert deprecated: QCheck2.Gen.opt
- Use [option] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -open Tezt_core -open Tezt_core.Base -open Tezos_error_monad -open Tezos_error_monad.TzLwtreslib -open Tezos_stdlib_unix -open Tezos_event_logging -open Tezos_test_helpers -open Octez_alcotezt -g -bin-annot -I src/lib_stdlib_unix/test/.src_lib_stdlib_unix_test__tezt_lib.objs/byte -I /home/opam/.opam/4.14/lib/aches -I /home/opam/.opam/4.14/lib/aches-lwt -I /home/opam/.opam/4.14/lib/aches-lwt/lache -I /home/opam/.opam/4.14/lib/aches/rache -I /home/opam/.opam/4.14/lib/aches/vache -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/data-encoding -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/ezjsonm -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/ipaddr/unix -I /home/opam/.opam/4.14/lib/jane-street-headers -I /home/opam/.opam/4.14/lib/json-data-encoding -I /home/opam/.opam/4.14/lib/json-data-encoding-bson -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt-canceler -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/clock/os -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/octez-alcotezt -I /home/opam/.opam/4.14/lib/ppx_compare/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_enumerate/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_expect/collector -I /home/opam/.opam/4.14/lib/ppx_expect/common -I /home/opam/.opam/4.14/lib/ppx_expect/config -I /home/opam/.opam/4.14/lib/ppx_expect/config_types -I /home/opam/.opam/4.14/lib/ppx_hash/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_here/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_inline_test/config -I /home/opam/.opam/4.14/lib/ppx_inline_test/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/pure-splitmix -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/ringo -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/seqes -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/tezt/core -I /home/opam/.opam/4.14/lib/time_now -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zarith_stubs_js -I src/lib_error_monad/.tezos_error_monad.objs/byte -I src/lib_event_logging/.tezos_event_logging.objs/byte -I src/lib_lwt_result_stdlib/.tezos_lwt_result_stdlib.objs/byte -I src/lib_lwt_result_stdlib/bare/functor_outputs/.bare_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/bare/sigs/.bare_sigs.objs/byte -I src/lib_lwt_result_stdlib/bare/structs/.bare_structs.objs/byte -I src/lib_lwt_result_stdlib/traced/functor_outputs/.traced_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/traced/sigs/.traced_sigs.objs/byte -I src/lib_lwt_result_stdlib/traced/structs/.traced_structs.objs/byte -I src/lib_stdlib/.tezos_stdlib.objs/byte -I src/lib_stdlib_unix/.tezos_stdlib_unix.objs/byte -I src/lib_test/.tezos_test_helpers.objs/byte -no-alias-deps -open Src_lib_stdlib_unix_test__tezt_lib -o src/lib_stdlib_unix/test/.src_lib_stdlib_unix_test__tezt_lib.objs/byte/src_lib_stdlib_unix_test__tezt_lib__Test_key_value_store_fuzzy.cmo -c -impl src/lib_stdlib_unix/test/test_key_value_store_fuzzy.ml)
- File "src/lib_stdlib_unix/test/test_key_value_store_fuzzy.ml", line 198, characters 17-35:
- 198 |   let bind_gen = QCheck2.Gen.oneofa [|Sequential; Parallel|]
-                        ^^^^^^^^^^^^^^^^^^
- Alert deprecated: QCheck2.Gen.oneofa
- Use [oneof_array] instead
- File "src/lib_stdlib_unix/test/test_key_value_store_fuzzy.ml", line 231, characters 6-18:
- 231 |       array_repeat key_max (bytes_size ~gen:char (return value_size))
-             ^^^^^^^^^^^^
- Alert deprecated: QCheck2.Gen.array_repeat
- Use [array_size (return i) g] instead
- File "src/lib_stdlib_unix/test/test_key_value_store_fuzzy.ml", line 317, characters 23-34:
- 317 |     tup2 first_action (list_repeat 2 action_bind)
-                              ^^^^^^^^^^^
- Alert deprecated: QCheck2.Gen.list_repeat
- Use [list_size (return i) g] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -open Tezt_core -open Tezt_core.Base -open Tezos_base -open Tezos_error_monad -open Tezos_test_helpers -open Octez_alcotezt -g -bin-annot -I src/lib_base/test/.src_lib_base_test_tezt_lib.objs/byte -I /home/opam/.opam/4.14/lib/aches -I /home/opam/.opam/4.14/lib/aches/rache -I /home/opam/.opam/4.14/lib/aches/vache -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bigstring -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bls12-381 -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/ctypes -I /home/opam/.opam/4.14/lib/ctypes/stubs -I /home/opam/.opam/4.14/lib/ctypes_stubs_js -I /home/opam/.opam/4.14/lib/data-encoding -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/ezjsonm -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/hacl-star -I /home/opam/.opam/4.14/lib/hacl-star-raw -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/integers -I /home/opam/.opam/4.14/lib/integers_stubs_js -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/jane-street-headers -I /home/opam/.opam/4.14/lib/json-data-encoding -I /home/opam/.opam/4.14/lib/json-data-encoding-bson -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt-canceler -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/octez-alcotezt -I /home/opam/.opam/4.14/lib/ppx_compare/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_enumerate/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_expect/collector -I /home/opam/.opam/4.14/lib/ppx_expect/common -I /home/opam/.opam/4.14/lib/ppx_expect/config -I /home/opam/.opam/4.14/lib/ppx_expect/config_types -I /home/opam/.opam/4.14/lib/ppx_hash/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_here/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_inline_test/config -I /home/opam/.opam/4.14/lib/ppx_inline_test/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/pure-splitmix -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/resto -I /home/opam/.opam/4.14/lib/resto-directory -I /home/opam/.opam/4.14/lib/ringo -I /home/opam/.opam/4.14/lib/secp256k1-internal -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/seqes -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/tezt/core -I /home/opam/.opam/4.14/lib/time_now -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zarith_stubs_js -I src/lib_base/.tezos_base.objs/byte -I src/lib_bls12_381_signature/.bls12_381_signature.objs/byte -I src/lib_crypto/.tezos_crypto.objs/byte -I src/lib_error_monad/.tezos_error_monad.objs/byte -I src/lib_event_logging/.tezos_event_logging.objs/byte -I src/lib_hacl/.tezos_hacl.objs/byte -I src/lib_lwt_result_stdlib/.tezos_lwt_result_stdlib.objs/byte -I src/lib_lwt_result_stdlib/bare/functor_outputs/.bare_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/bare/sigs/.bare_sigs.objs/byte -I src/lib_lwt_result_stdlib/bare/structs/.bare_structs.objs/byte -I src/lib_lwt_result_stdlib/traced/functor_outputs/.traced_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/traced/sigs/.traced_sigs.objs/byte -I src/lib_lwt_result_stdlib/traced/structs/.traced_structs.objs/byte -I src/lib_micheline/.tezos_micheline.objs/byte -I src/lib_rpc/.tezos_rpc.objs/byte -I src/lib_stdlib/.tezos_stdlib.objs/byte -I src/lib_test/.tezos_test_helpers.objs/byte -no-alias-deps -open Src_lib_base_test_tezt_lib -o src/lib_base/test/.src_lib_base_test_tezt_lib.objs/byte/src_lib_base_test_tezt_lib__Test_p2p_addr.cmo -c -impl src/lib_base/test/test_p2p_addr.ml)
- File "src/lib_base/test/test_p2p_addr.ml", line 46, characters 17-24:
- 46 |   let port_opt = Gen.opt port
-                       ^^^^^^^
- Alert deprecated: QCheck2.Gen.opt
- Use [option] instead
- File "src/lib_base/test/test_p2p_addr.ml", line 52, characters 21-24:
- 52 |   let peer_id = Gen.(opt @@ map P2p_identity.generate_with_pow_target_0 unit)
-                           ^^^
- Alert deprecated: QCheck2.Gen.opt
- Use [option] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -open Tezt_core -open Tezt_core.Base -open Tezos_base -open Tezos_error_monad -open Tezos_test_helpers -open Octez_alcotezt -g -bin-annot -I src/lib_base/test/.src_lib_base_test_tezt_lib.objs/byte -I /home/opam/.opam/4.14/lib/aches -I /home/opam/.opam/4.14/lib/aches/rache -I /home/opam/.opam/4.14/lib/aches/vache -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bigstring -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bls12-381 -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/ctypes -I /home/opam/.opam/4.14/lib/ctypes/stubs -I /home/opam/.opam/4.14/lib/ctypes_stubs_js -I /home/opam/.opam/4.14/lib/data-encoding -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/ezjsonm -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/hacl-star -I /home/opam/.opam/4.14/lib/hacl-star-raw -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/integers -I /home/opam/.opam/4.14/lib/integers_stubs_js -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/jane-street-headers -I /home/opam/.opam/4.14/lib/json-data-encoding -I /home/opam/.opam/4.14/lib/json-data-encoding-bson -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt-canceler -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/octez-alcotezt -I /home/opam/.opam/4.14/lib/ppx_compare/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_enumerate/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_expect/collector -I /home/opam/.opam/4.14/lib/ppx_expect/common -I /home/opam/.opam/4.14/lib/ppx_expect/config -I /home/opam/.opam/4.14/lib/ppx_expect/config_types -I /home/opam/.opam/4.14/lib/ppx_hash/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_here/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_inline_test/config -I /home/opam/.opam/4.14/lib/ppx_inline_test/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/pure-splitmix -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/resto -I /home/opam/.opam/4.14/lib/resto-directory -I /home/opam/.opam/4.14/lib/ringo -I /home/opam/.opam/4.14/lib/secp256k1-internal -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/seqes -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/tezt/core -I /home/opam/.opam/4.14/lib/time_now -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zarith_stubs_js -I src/lib_base/.tezos_base.objs/byte -I src/lib_bls12_381_signature/.bls12_381_signature.objs/byte -I src/lib_crypto/.tezos_crypto.objs/byte -I src/lib_error_monad/.tezos_error_monad.objs/byte -I src/lib_event_logging/.tezos_event_logging.objs/byte -I src/lib_hacl/.tezos_hacl.objs/byte -I src/lib_lwt_result_stdlib/.tezos_lwt_result_stdlib.objs/byte -I src/lib_lwt_result_stdlib/bare/functor_outputs/.bare_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/bare/sigs/.bare_sigs.objs/byte -I src/lib_lwt_result_stdlib/bare/structs/.bare_structs.objs/byte -I src/lib_lwt_result_stdlib/traced/functor_outputs/.traced_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/traced/sigs/.traced_sigs.objs/byte -I src/lib_lwt_result_stdlib/traced/structs/.traced_structs.objs/byte -I src/lib_micheline/.tezos_micheline.objs/byte -I src/lib_rpc/.tezos_rpc.objs/byte -I src/lib_stdlib/.tezos_stdlib.objs/byte -I src/lib_test/.tezos_test_helpers.objs/byte -no-alias-deps -open Src_lib_base_test_tezt_lib -o src/lib_base/test/.src_lib_base_test_tezt_lib.objs/byte/src_lib_base_test_tezt_lib__Test_time.cmo -c -impl src/lib_base/test/test_time.ml)
- File "src/lib_base/test/test_time.ml", line 53, characters 4-13:
- 53 |     frequency
-          ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.frequency
- Use [oneof_weighted] instead
- File "src/lib_base/test/test_time.ml", line 227, characters 11-17:
- 227 |       Gen.(oneofl (List.map Protocol.of_seconds interesting_values))
-                  ^^^^^^
- Alert deprecated: QCheck2.Gen.oneofl
- Use [oneof_list] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -open Tezt_core -open Tezt_core.Base -open Tezos_base -open Tezos_error_monad -open Tezos_test_helpers -open Octez_alcotezt -g -bin-annot -I src/lib_base/test/.src_lib_base_test_tezt_lib.objs/byte -I /home/opam/.opam/4.14/lib/aches -I /home/opam/.opam/4.14/lib/aches/rache -I /home/opam/.opam/4.14/lib/aches/vache -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bigstring -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bls12-381 -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/ctypes -I /home/opam/.opam/4.14/lib/ctypes/stubs -I /home/opam/.opam/4.14/lib/ctypes_stubs_js -I /home/opam/.opam/4.14/lib/data-encoding -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/ezjsonm -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/hacl-star -I /home/opam/.opam/4.14/lib/hacl-star-raw -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/integers -I /home/opam/.opam/4.14/lib/integers_stubs_js -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/jane-street-headers -I /home/opam/.opam/4.14/lib/json-data-encoding -I /home/opam/.opam/4.14/lib/json-data-encoding-bson -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt-canceler -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/octez-alcotezt -I /home/opam/.opam/4.14/lib/ppx_compare/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_enumerate/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_expect/collector -I /home/opam/.opam/4.14/lib/ppx_expect/common -I /home/opam/.opam/4.14/lib/ppx_expect/config -I /home/opam/.opam/4.14/lib/ppx_expect/config_types -I /home/opam/.opam/4.14/lib/ppx_hash/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_here/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_inline_test/config -I /home/opam/.opam/4.14/lib/ppx_inline_test/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/pure-splitmix -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/resto -I /home/opam/.opam/4.14/lib/resto-directory -I /home/opam/.opam/4.14/lib/ringo -I /home/opam/.opam/4.14/lib/secp256k1-internal -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/seqes -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/tezt/core -I /home/opam/.opam/4.14/lib/time_now -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zarith_stubs_js -I src/lib_base/.tezos_base.objs/byte -I src/lib_bls12_381_signature/.bls12_381_signature.objs/byte -I src/lib_crypto/.tezos_crypto.objs/byte -I src/lib_error_monad/.tezos_error_monad.objs/byte -I src/lib_event_logging/.tezos_event_logging.objs/byte -I src/lib_hacl/.tezos_hacl.objs/byte -I src/lib_lwt_result_stdlib/.tezos_lwt_result_stdlib.objs/byte -I src/lib_lwt_result_stdlib/bare/functor_outputs/.bare_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/bare/sigs/.bare_sigs.objs/byte -I src/lib_lwt_result_stdlib/bare/structs/.bare_structs.objs/byte -I src/lib_lwt_result_stdlib/traced/functor_outputs/.traced_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/traced/sigs/.traced_sigs.objs/byte -I src/lib_lwt_result_stdlib/traced/structs/.traced_structs.objs/byte -I src/lib_micheline/.tezos_micheline.objs/byte -I src/lib_rpc/.tezos_rpc.objs/byte -I src/lib_stdlib/.tezos_stdlib.objs/byte -I src/lib_test/.tezos_test_helpers.objs/byte -no-alias-deps -open Src_lib_base_test_tezt_lib -o src/lib_base/test/.src_lib_base_test_tezt_lib.objs/byte/src_lib_base_test_tezt_lib__Test_bounded.cmo -c -impl src/lib_base/test/test_bounded.ml)
- File "src/lib_base/test/test_bounded.ml", line 268, characters 15-21:
- 268 |     let* ety = oneofl values in
-                      ^^^^^^
- Alert deprecated: QCheck2.Gen.oneofl
- Use [oneof_list] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -open Tezt_core -open Tezt_core.Base -open Tezos_stdlib -open Tezos_crypto_dal -open Tezos_crypto_dal_octez_dal_config -open Tezos_error_monad -open Data_encoding -open Octez_alcotezt -g -bin-annot -I src/lib_crypto_dal/test/.src_lib_crypto_dal_test_tezt_lib.objs/byte -I /home/opam/.opam/4.14/lib/aches -I /home/opam/.opam/4.14/lib/aches/rache -I /home/opam/.opam/4.14/lib/aches/vache -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigstring -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bls12-381 -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/ctypes -I /home/opam/.opam/4.14/lib/ctypes/stubs -I /home/opam/.opam/4.14/lib/ctypes_stubs_js -I /home/opam/.opam/4.14/lib/data-encoding -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/ezjsonm -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/hacl-star -I /home/opam/.opam/4.14/lib/hacl-star-raw -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/integers -I /home/opam/.opam/4.14/lib/integers_stubs_js -I /home/opam/.opam/4.14/lib/jane-street-headers -I /home/opam/.opam/4.14/lib/json-data-encoding -I /home/opam/.opam/4.14/lib/json-data-encoding-bson -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt-canceler -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/octez-alcotezt -I /home/opam/.opam/4.14/lib/optint -I /home/opam/.opam/4.14/lib/ppx_compare/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppx_enumerate/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_expect/collector -I /home/opam/.opam/4.14/lib/ppx_expect/common -I /home/opam/.opam/4.14/lib/ppx_expect/config -I /home/opam/.opam/4.14/lib/ppx_expect/config_types -I /home/opam/.opam/4.14/lib/ppx_hash/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_here/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_inline_test/config -I /home/opam/.opam/4.14/lib/ppx_inline_test/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_repr -I /home/opam/.opam/4.14/lib/ppx_repr/lib -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/pure-splitmix -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/repr -I /home/opam/.opam/4.14/lib/resto -I /home/opam/.opam/4.14/lib/resto-directory -I /home/opam/.opam/4.14/lib/ringo -I /home/opam/.opam/4.14/lib/secp256k1-internal -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/seqes -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/tezt/core -I /home/opam/.opam/4.14/lib/time_now -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zarith_stubs_js -I src/lib_bls12_381_polynomial/.octez_bls12_381_polynomial.objs/byte -I src/lib_bls12_381_signature/.bls12_381_signature.objs/byte -I src/lib_crypto/.tezos_crypto.objs/byte -I src/lib_crypto_dal/.tezos_crypto_dal.objs/byte -I src/lib_crypto_dal/dal_config/.tezos_crypto_dal_octez_dal_config.objs/byte -I src/lib_error_monad/.tezos_error_monad.objs/byte -I src/lib_hacl/.tezos_hacl.objs/byte -I src/lib_lwt_result_stdlib/.tezos_lwt_result_stdlib.objs/byte -I src/lib_lwt_result_stdlib/bare/functor_outputs/.bare_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/bare/sigs/.bare_sigs.objs/byte -I src/lib_lwt_result_stdlib/bare/structs/.bare_structs.objs/byte -I src/lib_lwt_result_stdlib/traced/functor_outputs/.traced_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/traced/sigs/.traced_sigs.objs/byte -I src/lib_lwt_result_stdlib/traced/structs/.traced_structs.objs/byte -I src/lib_rpc/.tezos_rpc.objs/byte -I src/lib_stdlib/.tezos_stdlib.objs/byte -I src/lib_test/.tezos_test_helpers.objs/byte -no-alias-deps -open Src_lib_crypto_dal_test_tezt_lib -o src/lib_crypto_dal/test/.src_lib_crypto_dal_test_tezt_lib.objs/byte/src_lib_crypto_dal_test_tezt_lib__Test_dal_cryptobox.cmo -c -impl src/lib_crypto_dal/test/test_dal_cryptobox.ml)
- File "src/lib_crypto_dal/test/test_dal_cryptobox.ml", line 10, characters 28-34:
- 10 |     QCheck2.Gen.(generate1 (oneofl [a; b]))
-                                  ^^^^^^
- Alert deprecated: QCheck2.Gen.oneofl
- Use [oneof_list] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -open Tezt_core -open Tezt_core.Base -open Tezos_stdlib -open Octez_alcotezt -open Tezos_test_helpers -g -O3 -I src/lib_stdlib/test/.src_lib_stdlib_test_tezt_lib.objs/byte -I src/lib_stdlib/test/.src_lib_stdlib_test_tezt_lib.objs/native -I /home/opam/.opam/4.14/lib/aches -I /home/opam/.opam/4.14/lib/aches/rache -I /home/opam/.opam/4.14/lib/aches/vache -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bigstring -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/data-encoding -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/ezjsonm -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/jane-street-headers -I /home/opam/.opam/4.14/lib/json-data-encoding -I /home/opam/.opam/4.14/lib/json-data-encoding-bson -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/octez-alcotezt -I /home/opam/.opam/4.14/lib/ppx_compare/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_enumerate/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_expect/collector -I /home/opam/.opam/4.14/lib/ppx_expect/common -I /home/opam/.opam/4.14/lib/ppx_expect/config -I /home/opam/.opam/4.14/lib/ppx_expect/config_types -I /home/opam/.opam/4.14/lib/ppx_hash/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_here/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_inline_test/config -I /home/opam/.opam/4.14/lib/ppx_inline_test/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/pure-splitmix -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/ringo -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/tezt/core -I /home/opam/.opam/4.14/lib/time_now -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zarith_stubs_js -I src/lib_stdlib/.tezos_stdlib.objs/byte -I src/lib_stdlib/.tezos_stdlib.objs/native -I src/lib_test/.tezos_test_helpers.objs/byte -I src/lib_test/.tezos_test_helpers.objs/native -intf-suffix .ml -no-alias-deps -open Src_lib_stdlib_test_tezt_lib -o src/lib_stdlib/test/.src_lib_stdlib_test_tezt_lib.objs/native/src_lib_stdlib_test_tezt_lib__Test_tzString.cmx -c -impl src/lib_stdlib/test/test_tzString.ml)
- File "src/lib_stdlib/test/test_tzString.ml", line 57, characters 15-18:
- 57 |     let* lim = opt (1 -- 32) in
-                     ^^^
- Alert deprecated: QCheck2.Gen.opt
- Use [option] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -open Tezt_core -open Tezt_core.Base -open Tezos_base -open Tezos_error_monad -open Tezos_test_helpers -open Octez_alcotezt -g -bin-annot -I src/lib_base/test/.src_lib_base_test_tezt_lib.objs/byte -I /home/opam/.opam/4.14/lib/aches -I /home/opam/.opam/4.14/lib/aches/rache -I /home/opam/.opam/4.14/lib/aches/vache -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bigstring -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bls12-381 -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/ctypes -I /home/opam/.opam/4.14/lib/ctypes/stubs -I /home/opam/.opam/4.14/lib/ctypes_stubs_js -I /home/opam/.opam/4.14/lib/data-encoding -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/ezjsonm -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/hacl-star -I /home/opam/.opam/4.14/lib/hacl-star-raw -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/integers -I /home/opam/.opam/4.14/lib/integers_stubs_js -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/jane-street-headers -I /home/opam/.opam/4.14/lib/json-data-encoding -I /home/opam/.opam/4.14/lib/json-data-encoding-bson -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt-canceler -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/octez-alcotezt -I /home/opam/.opam/4.14/lib/ppx_compare/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_enumerate/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_expect/collector -I /home/opam/.opam/4.14/lib/ppx_expect/common -I /home/opam/.opam/4.14/lib/ppx_expect/config -I /home/opam/.opam/4.14/lib/ppx_expect/config_types -I /home/opam/.opam/4.14/lib/ppx_hash/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_here/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_inline_test/config -I /home/opam/.opam/4.14/lib/ppx_inline_test/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/pure-splitmix -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/resto -I /home/opam/.opam/4.14/lib/resto-directory -I /home/opam/.opam/4.14/lib/ringo -I /home/opam/.opam/4.14/lib/secp256k1-internal -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/seqes -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/tezt/core -I /home/opam/.opam/4.14/lib/time_now -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zarith_stubs_js -I src/lib_base/.tezos_base.objs/byte -I src/lib_bls12_381_signature/.bls12_381_signature.objs/byte -I src/lib_crypto/.tezos_crypto.objs/byte -I src/lib_error_monad/.tezos_error_monad.objs/byte -I src/lib_event_logging/.tezos_event_logging.objs/byte -I src/lib_hacl/.tezos_hacl.objs/byte -I src/lib_lwt_result_stdlib/.tezos_lwt_result_stdlib.objs/byte -I src/lib_lwt_result_stdlib/bare/functor_outputs/.bare_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/bare/sigs/.bare_sigs.objs/byte -I src/lib_lwt_result_stdlib/bare/structs/.bare_structs.objs/byte -I src/lib_lwt_result_stdlib/traced/functor_outputs/.traced_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/traced/sigs/.traced_sigs.objs/byte -I src/lib_lwt_result_stdlib/traced/structs/.traced_structs.objs/byte -I src/lib_micheline/.tezos_micheline.objs/byte -I src/lib_rpc/.tezos_rpc.objs/byte -I src/lib_stdlib/.tezos_stdlib.objs/byte -I src/lib_test/.tezos_test_helpers.objs/byte -no-alias-deps -open Src_lib_base_test_tezt_lib -o src/lib_base/test/.src_lib_base_test_tezt_lib.objs/byte/src_lib_base_test_tezt_lib__Test_sized.cmo -c -impl src/lib_base/test/test_sized.ml)
- File "src/lib_base/test/test_sized.ml", line 45, characters 23-33:
- 45 |   let generator = Gen.(small_list small_nat >|= SizedSet.of_list)
-                             ^^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_list
- Use [list_small] instead
- File "src/lib_base/test/test_sized.ml", line 45, characters 34-43:
- 45 |   let generator = Gen.(small_list small_nat >|= SizedSet.of_list)
-                                        ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_nat
- Use [nat_small] instead
- File "src/lib_base/test/test_sized.ml", line 47, characters 27-37:
- 47 |   let seq_generator = Gen.(small_list small_nat >|= List.to_seq)
-                                 ^^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_list
- Use [list_small] instead
- File "src/lib_base/test/test_sized.ml", line 47, characters 38-47:
- 47 |   let seq_generator = Gen.(small_list small_nat >|= List.to_seq)
-                                            ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_nat
- Use [nat_small] instead
- File "src/lib_base/test/test_sized.ml", line 62, characters 26-35:
- 62 |       Gen.(pair generator small_nat)
-                                ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_nat
- Use [nat_small] instead
- File "src/lib_base/test/test_sized.ml", line 68, characters 26-35:
- 68 |       Gen.(pair generator small_nat)
-                                ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_nat
- Use [nat_small] instead
- File "src/lib_base/test/test_sized.ml", line 74, characters 26-35:
- 74 |       Gen.(pair generator small_nat)
-                                ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_nat
- Use [nat_small] instead
- File "src/lib_base/test/test_sized.ml", line 110, characters 48-51:
- 110 |       Gen.(pair generator (fun1 Observable.int (opt int)))
-                                                       ^^^
- Alert deprecated: QCheck2.Gen.opt
- Use [option] instead
- File "src/lib_base/test/test_sized.ml", line 124, characters 26-35:
- 124 |       Gen.(pair generator small_nat)
-                                 ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_nat
- Use [nat_small] instead
- File "src/lib_base/test/test_sized.ml", line 167, characters 9-19:
- 167 |     Gen.(small_list (pair small_nat small_nat) >|= List.to_seq)
-                ^^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_list
- Use [list_small] instead
- File "src/lib_base/test/test_sized.ml", line 167, characters 26-35:
- 167 |     Gen.(small_list (pair small_nat small_nat) >|= List.to_seq)
-                                 ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_nat
- Use [nat_small] instead
- File "src/lib_base/test/test_sized.ml", line 167, characters 36-45:
- 167 |     Gen.(small_list (pair small_nat small_nat) >|= List.to_seq)
-                                           ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_nat
- Use [nat_small] instead
- File "src/lib_base/test/test_sized.ml", line 185, characters 28-37:
- 185 |       Gen.(triple generator small_nat small_nat)
-                                   ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_nat
- Use [nat_small] instead
- File "src/lib_base/test/test_sized.ml", line 185, characters 38-47:
- 185 |       Gen.(triple generator small_nat small_nat)
-                                             ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_nat
- Use [nat_small] instead
- File "src/lib_base/test/test_sized.ml", line 192, characters 28-37:
- 192 |       Gen.(triple generator small_nat small_nat)
-                                   ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_nat
- Use [nat_small] instead
- File "src/lib_base/test/test_sized.ml", line 192, characters 38-47:
- 192 |       Gen.(triple generator small_nat small_nat)
-                                             ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_nat
- Use [nat_small] instead
- File "src/lib_base/test/test_sized.ml", line 201, characters 10-19:
- 201 |           small_nat
-                 ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_nat
- Use [nat_small] instead
- File "src/lib_base/test/test_sized.ml", line 202, characters 41-44:
- 202 |           (fun1 Observable.(option int) (opt small_nat)))
-                                                ^^^
- Alert deprecated: QCheck2.Gen.opt
- Use [option] instead
- File "src/lib_base/test/test_sized.ml", line 202, characters 45-54:
- 202 |           (fun1 Observable.(option int) (opt small_nat)))
-                                                    ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_nat
- Use [nat_small] instead
- File "src/lib_base/test/test_sized.ml", line 208, characters 26-35:
- 208 |       Gen.(pair generator small_nat)
-                                 ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_nat
- Use [nat_small] instead
- File "src/lib_base/test/test_sized.ml", line 222, characters 14-17:
- 222 |              (opt int)))
-                     ^^^
- Alert deprecated: QCheck2.Gen.opt
- Use [option] instead
- File "src/lib_base/test/test_sized.ml", line 233, characters 62-65:
- 233 |           (fun3 Observable.int Observable.int Observable.int (opt int)))
-                                                                     ^^^
- Alert deprecated: QCheck2.Gen.opt
- Use [option] instead
- File "src/lib_base/test/test_sized.ml", line 240, characters 48-51:
- 240 |       Gen.(pair generator (fun1 Observable.int (opt int)))
-                                                       ^^^
- Alert deprecated: QCheck2.Gen.opt
- Use [option] instead
- File "src/lib_base/test/test_sized.ml", line 246, characters 63-66:
- 246 |       Gen.(pair generator (fun2 Observable.int Observable.int (opt int)))
-                                                                      ^^^
- Alert deprecated: QCheck2.Gen.opt
- Use [option] instead
- File "src/lib_base/test/test_sized.ml", line 258, characters 63-66:
- 258 |       Gen.(pair generator (fun2 Observable.int Observable.int (opt int)))
-                                                                      ^^^
- Alert deprecated: QCheck2.Gen.opt
- Use [option] instead
- File "src/lib_base/test/test_sized.ml", line 272, characters 26-35:
- 272 |       Gen.(pair generator small_nat)
-                                 ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_nat
- Use [nat_small] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -open Tezt_core -open Tezt_core.Base -open Tezos_base -open Tezos_error_monad -open Tezos_test_helpers -open Octez_alcotezt -g -bin-annot -I src/lib_base/test/.src_lib_base_test_tezt_lib.objs/byte -I /home/opam/.opam/4.14/lib/aches -I /home/opam/.opam/4.14/lib/aches/rache -I /home/opam/.opam/4.14/lib/aches/vache -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bigstring -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bls12-381 -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/ctypes -I /home/opam/.opam/4.14/lib/ctypes/stubs -I /home/opam/.opam/4.14/lib/ctypes_stubs_js -I /home/opam/.opam/4.14/lib/data-encoding -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/ezjsonm -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/hacl-star -I /home/opam/.opam/4.14/lib/hacl-star-raw -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/integers -I /home/opam/.opam/4.14/lib/integers_stubs_js -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/jane-street-headers -I /home/opam/.opam/4.14/lib/json-data-encoding -I /home/opam/.opam/4.14/lib/json-data-encoding-bson -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt-canceler -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/octez-alcotezt -I /home/opam/.opam/4.14/lib/ppx_compare/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_enumerate/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_expect/collector -I /home/opam/.opam/4.14/lib/ppx_expect/common -I /home/opam/.opam/4.14/lib/ppx_expect/config -I /home/opam/.opam/4.14/lib/ppx_expect/config_types -I /home/opam/.opam/4.14/lib/ppx_hash/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_here/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_inline_test/config -I /home/opam/.opam/4.14/lib/ppx_inline_test/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/pure-splitmix -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/resto -I /home/opam/.opam/4.14/lib/resto-directory -I /home/opam/.opam/4.14/lib/ringo -I /home/opam/.opam/4.14/lib/secp256k1-internal -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/seqes -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/tezt/core -I /home/opam/.opam/4.14/lib/time_now -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zarith_stubs_js -I src/lib_base/.tezos_base.objs/byte -I src/lib_bls12_381_signature/.bls12_381_signature.objs/byte -I src/lib_crypto/.tezos_crypto.objs/byte -I src/lib_error_monad/.tezos_error_monad.objs/byte -I src/lib_event_logging/.tezos_event_logging.objs/byte -I src/lib_hacl/.tezos_hacl.objs/byte -I src/lib_lwt_result_stdlib/.tezos_lwt_result_stdlib.objs/byte -I src/lib_lwt_result_stdlib/bare/functor_outputs/.bare_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/bare/sigs/.bare_sigs.objs/byte -I src/lib_lwt_result_stdlib/bare/structs/.bare_structs.objs/byte -I src/lib_lwt_result_stdlib/traced/functor_outputs/.traced_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/traced/sigs/.traced_sigs.objs/byte -I src/lib_lwt_result_stdlib/traced/structs/.traced_structs.objs/byte -I src/lib_micheline/.tezos_micheline.objs/byte -I src/lib_rpc/.tezos_rpc.objs/byte -I src/lib_stdlib/.tezos_stdlib.objs/byte -I src/lib_test/.tezos_test_helpers.objs/byte -no-alias-deps -open Src_lib_base_test_tezt_lib -o src/lib_base/test/.src_lib_base_test_tezt_lib.objs/byte/src_lib_base_test_tezt_lib__Test_skip_list.cmo -c -impl src/lib_base/test/test_skip_list.ml)
- File "src/lib_base/test/test_skip_list.ml", line 460, characters 21-30:
- 460 |         let* basis = frequency [(5, pure 4); (1, 2 -- 73)] in
-                            ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.frequency
- Use [oneof_weighted] instead
- File "src/lib_base/test/test_skip_list.ml", line 469, characters 21-30:
- 469 |         let* basis = frequency [(5, pure 4); (1, 2 -- 73)] in
-                            ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.frequency
- Use [oneof_weighted] instead
- File "src/lib_base/test/test_skip_list.ml", line 478, characters 21-30:
- 478 |         let* basis = frequency [(5, pure 4); (1, 2 -- 73)] in
-                            ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.frequency
- Use [oneof_weighted] instead
- File "src/lib_base/test/test_skip_list.ml", line 486, characters 21-30:
- 486 |         let* basis = frequency [(5, pure 4); (1, 2 -- 73)] in
-                            ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.frequency
- Use [oneof_weighted] instead
- File "src/lib_base/test/test_skip_list.ml", line 498, characters 21-30:
- 498 |         let* basis = frequency [(5, pure 4); (1, 2 -- 73)] in
-                            ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.frequency
- Use [oneof_weighted] instead
- File "src/lib_base/test/test_skip_list.ml", line 507, characters 21-30:
- 507 |         let* basis = frequency [(5, pure 4); (1, 2 -- 73)] in
-                            ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.frequency
- Use [oneof_weighted] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -open Tezt_core -open Tezt_core.Base -open Tezos_base.TzPervasives -open Tezos_test_helpers -open Tezos_base_test_helpers -open Tezos_stdlib -open Tezos_requester -open Octez_alcotezt -g -bin-annot -I src/lib_requester/test/.src_lib_requester_test_tezt_lib.objs/byte -I /home/opam/.opam/4.14/lib/aches -I /home/opam/.opam/4.14/lib/aches-lwt -I /home/opam/.opam/4.14/lib/aches-lwt/lache -I /home/opam/.opam/4.14/lib/aches/rache -I /home/opam/.opam/4.14/lib/aches/vache -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bigstring -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bls12-381 -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/ctypes -I /home/opam/.opam/4.14/lib/ctypes/stubs -I /home/opam/.opam/4.14/lib/ctypes_stubs_js -I /home/opam/.opam/4.14/lib/data-encoding -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/ezjsonm -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/hacl-star -I /home/opam/.opam/4.14/lib/hacl-star-raw -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/integers -I /home/opam/.opam/4.14/lib/integers_stubs_js -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/ipaddr/unix -I /home/opam/.opam/4.14/lib/jane-street-headers -I /home/opam/.opam/4.14/lib/json-data-encoding -I /home/opam/.opam/4.14/lib/json-data-encoding-bson -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt-canceler -I /home/opam/.opam/4.14/lib/lwt-watcher -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/clock/os -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/octez-alcotezt -I /home/opam/.opam/4.14/lib/ppx_compare/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_enumerate/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_expect/collector -I /home/opam/.opam/4.14/lib/ppx_expect/common -I /home/opam/.opam/4.14/lib/ppx_expect/config -I /home/opam/.opam/4.14/lib/ppx_expect/config_types -I /home/opam/.opam/4.14/lib/ppx_hash/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_here/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_inline_test/config -I /home/opam/.opam/4.14/lib/ppx_inline_test/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/pure-splitmix -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/resto -I /home/opam/.opam/4.14/lib/resto-directory -I /home/opam/.opam/4.14/lib/ringo -I /home/opam/.opam/4.14/lib/secp256k1-internal -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/seqes -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/tezt/core -I /home/opam/.opam/4.14/lib/time_now -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zarith_stubs_js -I src/lib_base/.tezos_base.objs/byte -I src/lib_base/test_helpers/.tezos_base_test_helpers.objs/byte -I src/lib_base/unix/.tezos_base_unix.objs/byte -I src/lib_bls12_381_signature/.bls12_381_signature.objs/byte -I src/lib_crypto/.tezos_crypto.objs/byte -I src/lib_error_monad/.tezos_error_monad.objs/byte -I src/lib_event_logging/.tezos_event_logging.objs/byte -I src/lib_event_logging/test_helpers/.tezos_event_logging_test_helpers.objs/byte -I src/lib_hacl/.tezos_hacl.objs/byte -I src/lib_lwt_result_stdlib/.tezos_lwt_result_stdlib.objs/byte -I src/lib_lwt_result_stdlib/bare/functor_outputs/.bare_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/bare/sigs/.bare_sigs.objs/byte -I src/lib_lwt_result_stdlib/bare/structs/.bare_structs.objs/byte -I src/lib_lwt_result_stdlib/traced/functor_outputs/.traced_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/traced/sigs/.traced_sigs.objs/byte -I src/lib_lwt_result_stdlib/traced/structs/.traced_structs.objs/byte -I src/lib_micheline/.tezos_micheline.objs/byte -I src/lib_requester/.tezos_requester.objs/byte -I src/lib_rpc/.tezos_rpc.objs/byte -I src/lib_stdlib/.tezos_stdlib.objs/byte -I src/lib_stdlib_unix/.tezos_stdlib_unix.objs/byte -I src/lib_test/.tezos_test_helpers.objs/byte -no-alias-deps -open Src_lib_requester_test_tezt_lib -o src/lib_requester/test/.src_lib_requester_test_tezt_lib.objs/byte/src_lib_requester_test_tezt_lib__Test_fuzzing_requester.cmo -c -impl src/lib_requester/test/test_fuzzing_requester.ml)
- File "src/lib_requester/test/test_fuzzing_requester.ml", line 40, characters 14-30:
- 40 | let key_gen = Gen.small_string ?gen:None
-                    ^^^^^^^^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_string
- Use [string_small] instead
- File "src/lib_requester/test/test_fuzzing_requester.ml", line 72, characters 53-59:
- 72 |     let in_domain_gen = if domain = [] then [] else [oneofl domain] in
-                                                           ^^^^^^
- Alert deprecated: QCheck2.Gen.oneofl
- Use [oneof_list] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -open Tezt_core -open Tezt_core.Base -open Tezos_stdlib -open Tezos_stdlib_unix -open Tezos_base -open Tezos_base.TzPervasives -open Tezos_base.Worker_types -open Tezos_workers -open Tezos_test_helpers -open Tezos_base_test_helpers -open Octez_alcotezt -g -bin-annot -I src/lib_workers/test/.src_lib_workers_test_tezt_lib.objs/byte -I /home/opam/.opam/4.14/lib/aches -I /home/opam/.opam/4.14/lib/aches-lwt -I /home/opam/.opam/4.14/lib/aches-lwt/lache -I /home/opam/.opam/4.14/lib/aches/rache -I /home/opam/.opam/4.14/lib/aches/vache -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bigstring -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bls12-381 -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/ctypes -I /home/opam/.opam/4.14/lib/ctypes/stubs -I /home/opam/.opam/4.14/lib/ctypes_stubs_js -I /home/opam/.opam/4.14/lib/data-encoding -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/ezjsonm -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/hacl-star -I /home/opam/.opam/4.14/lib/hacl-star-raw -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/integers -I /home/opam/.opam/4.14/lib/integers_stubs_js -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/ipaddr/unix -I /home/opam/.opam/4.14/lib/jane-street-headers -I /home/opam/.opam/4.14/lib/json-data-encoding -I /home/opam/.opam/4.14/lib/json-data-encoding-bson -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt-canceler -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/clock/os -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/octez-alcotezt -I /home/opam/.opam/4.14/lib/ppx_compare/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_enumerate/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_expect/collector -I /home/opam/.opam/4.14/lib/ppx_expect/common -I /home/opam/.opam/4.14/lib/ppx_expect/config -I /home/opam/.opam/4.14/lib/ppx_expect/config_types -I /home/opam/.opam/4.14/lib/ppx_hash/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_here/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_inline_test/config -I /home/opam/.opam/4.14/lib/ppx_inline_test/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/pure-splitmix -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/resto -I /home/opam/.opam/4.14/lib/resto-directory -I /home/opam/.opam/4.14/lib/ringo -I /home/opam/.opam/4.14/lib/secp256k1-internal -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/seqes -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/tezt/core -I /home/opam/.opam/4.14/lib/time_now -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zarith_stubs_js -I src/lib_base/.tezos_base.objs/byte -I src/lib_base/test_helpers/.tezos_base_test_helpers.objs/byte -I src/lib_base/unix/.tezos_base_unix.objs/byte -I src/lib_bls12_381_signature/.bls12_381_signature.objs/byte -I src/lib_crypto/.tezos_crypto.objs/byte -I src/lib_error_monad/.tezos_error_monad.objs/byte -I src/lib_event_logging/.tezos_event_logging.objs/byte -I src/lib_event_logging/test_helpers/.tezos_event_logging_test_helpers.objs/byte -I src/lib_hacl/.tezos_hacl.objs/byte -I src/lib_lwt_result_stdlib/.tezos_lwt_result_stdlib.objs/byte -I src/lib_lwt_result_stdlib/bare/functor_outputs/.bare_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/bare/sigs/.bare_sigs.objs/byte -I src/lib_lwt_result_stdlib/bare/structs/.bare_structs.objs/byte -I src/lib_lwt_result_stdlib/traced/functor_outputs/.traced_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/traced/sigs/.traced_sigs.objs/byte -I src/lib_lwt_result_stdlib/traced/structs/.traced_structs.objs/byte -I src/lib_micheline/.tezos_micheline.objs/byte -I src/lib_rpc/.tezos_rpc.objs/byte -I src/lib_stdlib/.tezos_stdlib.objs/byte -I src/lib_stdlib_unix/.tezos_stdlib_unix.objs/byte -I src/lib_test/.tezos_test_helpers.objs/byte -I src/lib_workers/.tezos_workers.objs/byte -no-alias-deps -open Src_lib_workers_test_tezt_lib -o src/lib_workers/test/.src_lib_workers_test_tezt_lib.objs/byte/src_lib_workers_test_tezt_lib__Test_workers_unit.cmo -c -impl src/lib_workers/test/test_workers_unit.ml)
- File "src/lib_workers/test/test_workers_unit.ml", line 175, characters 4-14:
- 175 |     small_list (small_list request)
-           ^^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_list
- Use [list_small] instead
- File "src/lib_workers/test/test_workers_unit.ml", line 175, characters 16-26:
- 175 |     small_list (small_list request)
-                       ^^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_list
- Use [list_small] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -open Tezt_core -open Tezt_core.Base -open Tezos_base -open Tezos_error_monad -open Tezos_test_helpers -open Octez_alcotezt -g -O3 -I src/lib_base/test/.src_lib_base_test_tezt_lib.objs/byte -I src/lib_base/test/.src_lib_base_test_tezt_lib.objs/native -I /home/opam/.opam/4.14/lib/aches -I /home/opam/.opam/4.14/lib/aches/rache -I /home/opam/.opam/4.14/lib/aches/vache -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bigstring -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bls12-381 -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/ctypes -I /home/opam/.opam/4.14/lib/ctypes/stubs -I /home/opam/.opam/4.14/lib/ctypes_stubs_js -I /home/opam/.opam/4.14/lib/data-encoding -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/ezjsonm -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/hacl-star -I /home/opam/.opam/4.14/lib/hacl-star-raw -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/integers -I /home/opam/.opam/4.14/lib/integers_stubs_js -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/jane-street-headers -I /home/opam/.opam/4.14/lib/json-data-encoding -I /home/opam/.opam/4.14/lib/json-data-encoding-bson -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt-canceler -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/octez-alcotezt -I /home/opam/.opam/4.14/lib/ppx_compare/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_enumerate/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_expect/collector -I /home/opam/.opam/4.14/lib/ppx_expect/common -I /home/opam/.opam/4.14/lib/ppx_expect/config -I /home/opam/.opam/4.14/lib/ppx_expect/config_types -I /home/opam/.opam/4.14/lib/ppx_hash/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_here/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_inline_test/config -I /home/opam/.opam/4.14/lib/ppx_inline_test/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/pure-splitmix -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/resto -I /home/opam/.opam/4.14/lib/resto-directory -I /home/opam/.opam/4.14/lib/ringo -I /home/opam/.opam/4.14/lib/secp256k1-internal -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/seqes -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/tezt/core -I /home/opam/.opam/4.14/lib/time_now -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zarith_stubs_js -I src/lib_base/.tezos_base.objs/byte -I src/lib_base/.tezos_base.objs/native -I src/lib_bls12_381_signature/.bls12_381_signature.objs/byte -I src/lib_bls12_381_signature/.bls12_381_signature.objs/native -I src/lib_crypto/.tezos_crypto.objs/byte -I src/lib_crypto/.tezos_crypto.objs/native -I src/lib_error_monad/.tezos_error_monad.objs/byte -I src/lib_error_monad/.tezos_error_monad.objs/native -I src/lib_event_logging/.tezos_event_logging.objs/byte -I src/lib_event_logging/.tezos_event_logging.objs/native -I src/lib_hacl/.tezos_hacl.objs/byte -I src/lib_hacl/.tezos_hacl.objs/native -I src/lib_lwt_result_stdlib/.tezos_lwt_result_stdlib.objs/byte -I src/lib_lwt_result_stdlib/.tezos_lwt_result_stdlib.objs/native -I src/lib_lwt_result_stdlib/bare/functor_outputs/.bare_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/bare/functor_outputs/.bare_functor_outputs.objs/native -I src/lib_lwt_result_stdlib/bare/sigs/.bare_sigs.objs/byte -I src/lib_lwt_result_stdlib/bare/sigs/.bare_sigs.objs/native -I src/lib_lwt_result_stdlib/bare/structs/.bare_structs.objs/byte -I src/lib_lwt_result_stdlib/bare/structs/.bare_structs.objs/native -I src/lib_lwt_result_stdlib/traced/functor_outputs/.traced_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/traced/functor_outputs/.traced_functor_outputs.objs/native -I src/lib_lwt_result_stdlib/traced/sigs/.traced_sigs.objs/byte -I src/lib_lwt_result_stdlib/traced/sigs/.traced_sigs.objs/native -I src/lib_lwt_result_stdlib/traced/structs/.traced_structs.objs/byte -I src/lib_lwt_result_stdlib/traced/structs/.traced_structs.objs/native -I src/lib_micheline/.tezos_micheline.objs/byte -I src/lib_micheline/.tezos_micheline.objs/native -I src/lib_rpc/.tezos_rpc.objs/byte -I src/lib_rpc/.tezos_rpc.objs/native -I src/lib_stdlib/.tezos_stdlib.objs/byte -I src/lib_stdlib/.tezos_stdlib.objs/native -I src/lib_test/.tezos_test_helpers.objs/byte -I src/lib_test/.tezos_test_helpers.objs/native -intf-suffix .ml -no-alias-deps -open Src_lib_base_test_tezt_lib -o src/lib_base/test/.src_lib_base_test_tezt_lib.objs/native/src_lib_base_test_tezt_lib__Test_time.cmx -c -impl src/lib_base/test/test_time.ml)
- File "src/lib_base/test/test_time.ml", line 53, characters 4-13:
- 53 |     frequency
-          ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.frequency
- Use [oneof_weighted] instead
- File "src/lib_base/test/test_time.ml", line 227, characters 11-17:
- 227 |       Gen.(oneofl (List.map Protocol.of_seconds interesting_values))
-                  ^^^^^^
- Alert deprecated: QCheck2.Gen.oneofl
- Use [oneof_list] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -open Tezt_core -open Tezt_core.Base -open Tezos_base -open Tezos_error_monad -open Tezos_test_helpers -open Octez_alcotezt -g -O3 -I src/lib_base/test/.src_lib_base_test_tezt_lib.objs/byte -I src/lib_base/test/.src_lib_base_test_tezt_lib.objs/native -I /home/opam/.opam/4.14/lib/aches -I /home/opam/.opam/4.14/lib/aches/rache -I /home/opam/.opam/4.14/lib/aches/vache -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bigstring -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bls12-381 -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/ctypes -I /home/opam/.opam/4.14/lib/ctypes/stubs -I /home/opam/.opam/4.14/lib/ctypes_stubs_js -I /home/opam/.opam/4.14/lib/data-encoding -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/ezjsonm -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/hacl-star -I /home/opam/.opam/4.14/lib/hacl-star-raw -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/integers -I /home/opam/.opam/4.14/lib/integers_stubs_js -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/jane-street-headers -I /home/opam/.opam/4.14/lib/json-data-encoding -I /home/opam/.opam/4.14/lib/json-data-encoding-bson -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt-canceler -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/octez-alcotezt -I /home/opam/.opam/4.14/lib/ppx_compare/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_enumerate/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_expect/collector -I /home/opam/.opam/4.14/lib/ppx_expect/common -I /home/opam/.opam/4.14/lib/ppx_expect/config -I /home/opam/.opam/4.14/lib/ppx_expect/config_types -I /home/opam/.opam/4.14/lib/ppx_hash/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_here/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_inline_test/config -I /home/opam/.opam/4.14/lib/ppx_inline_test/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/pure-splitmix -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/resto -I /home/opam/.opam/4.14/lib/resto-directory -I /home/opam/.opam/4.14/lib/ringo -I /home/opam/.opam/4.14/lib/secp256k1-internal -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/seqes -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/tezt/core -I /home/opam/.opam/4.14/lib/time_now -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zarith_stubs_js -I src/lib_base/.tezos_base.objs/byte -I src/lib_base/.tezos_base.objs/native -I src/lib_bls12_381_signature/.bls12_381_signature.objs/byte -I src/lib_bls12_381_signature/.bls12_381_signature.objs/native -I src/lib_crypto/.tezos_crypto.objs/byte -I src/lib_crypto/.tezos_crypto.objs/native -I src/lib_error_monad/.tezos_error_monad.objs/byte -I src/lib_error_monad/.tezos_error_monad.objs/native -I src/lib_event_logging/.tezos_event_logging.objs/byte -I src/lib_event_logging/.tezos_event_logging.objs/native -I src/lib_hacl/.tezos_hacl.objs/byte -I src/lib_hacl/.tezos_hacl.objs/native -I src/lib_lwt_result_stdlib/.tezos_lwt_result_stdlib.objs/byte -I src/lib_lwt_result_stdlib/.tezos_lwt_result_stdlib.objs/native -I src/lib_lwt_result_stdlib/bare/functor_outputs/.bare_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/bare/functor_outputs/.bare_functor_outputs.objs/native -I src/lib_lwt_result_stdlib/bare/sigs/.bare_sigs.objs/byte -I src/lib_lwt_result_stdlib/bare/sigs/.bare_sigs.objs/native -I src/lib_lwt_result_stdlib/bare/structs/.bare_structs.objs/byte -I src/lib_lwt_result_stdlib/bare/structs/.bare_structs.objs/native -I src/lib_lwt_result_stdlib/traced/functor_outputs/.traced_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/traced/functor_outputs/.traced_functor_outputs.objs/native -I src/lib_lwt_result_stdlib/traced/sigs/.traced_sigs.objs/byte -I src/lib_lwt_result_stdlib/traced/sigs/.traced_sigs.objs/native -I src/lib_lwt_result_stdlib/traced/structs/.traced_structs.objs/byte -I src/lib_lwt_result_stdlib/traced/structs/.traced_structs.objs/native -I src/lib_micheline/.tezos_micheline.objs/byte -I src/lib_micheline/.tezos_micheline.objs/native -I src/lib_rpc/.tezos_rpc.objs/byte -I src/lib_rpc/.tezos_rpc.objs/native -I src/lib_stdlib/.tezos_stdlib.objs/byte -I src/lib_stdlib/.tezos_stdlib.objs/native -I src/lib_test/.tezos_test_helpers.objs/byte -I src/lib_test/.tezos_test_helpers.objs/native -intf-suffix .ml -no-alias-deps -open Src_lib_base_test_tezt_lib -o src/lib_base/test/.src_lib_base_test_tezt_lib.objs/native/src_lib_base_test_tezt_lib__Test_p2p_addr.cmx -c -impl src/lib_base/test/test_p2p_addr.ml)
- File "src/lib_base/test/test_p2p_addr.ml", line 46, characters 17-24:
- 46 |   let port_opt = Gen.opt port
-                       ^^^^^^^
- Alert deprecated: QCheck2.Gen.opt
- Use [option] instead
- File "src/lib_base/test/test_p2p_addr.ml", line 52, characters 21-24:
- 52 |   let peer_id = Gen.(opt @@ map P2p_identity.generate_with_pow_target_0 unit)
-                           ^^^
- Alert deprecated: QCheck2.Gen.opt
- Use [option] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -open Tezt_core -open Tezt_core.Base -open Tezos_base -open Tezos_error_monad -open Tezos_test_helpers -open Octez_alcotezt -g -O3 -I src/lib_base/test/.src_lib_base_test_tezt_lib.objs/byte -I src/lib_base/test/.src_lib_base_test_tezt_lib.objs/native -I /home/opam/.opam/4.14/lib/aches -I /home/opam/.opam/4.14/lib/aches/rache -I /home/opam/.opam/4.14/lib/aches/vache -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bigstring -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bls12-381 -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/ctypes -I /home/opam/.opam/4.14/lib/ctypes/stubs -I /home/opam/.opam/4.14/lib/ctypes_stubs_js -I /home/opam/.opam/4.14/lib/data-encoding -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/ezjsonm -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/hacl-star -I /home/opam/.opam/4.14/lib/hacl-star-raw -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/integers -I /home/opam/.opam/4.14/lib/integers_stubs_js -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/jane-street-headers -I /home/opam/.opam/4.14/lib/json-data-encoding -I /home/opam/.opam/4.14/lib/json-data-encoding-bson -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt-canceler -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/octez-alcotezt -I /home/opam/.opam/4.14/lib/ppx_compare/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_enumerate/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_expect/collector -I /home/opam/.opam/4.14/lib/ppx_expect/common -I /home/opam/.opam/4.14/lib/ppx_expect/config -I /home/opam/.opam/4.14/lib/ppx_expect/config_types -I /home/opam/.opam/4.14/lib/ppx_hash/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_here/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_inline_test/config -I /home/opam/.opam/4.14/lib/ppx_inline_test/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/pure-splitmix -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/resto -I /home/opam/.opam/4.14/lib/resto-directory -I /home/opam/.opam/4.14/lib/ringo -I /home/opam/.opam/4.14/lib/secp256k1-internal -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/seqes -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/tezt/core -I /home/opam/.opam/4.14/lib/time_now -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zarith_stubs_js -I src/lib_base/.tezos_base.objs/byte -I src/lib_base/.tezos_base.objs/native -I src/lib_bls12_381_signature/.bls12_381_signature.objs/byte -I src/lib_bls12_381_signature/.bls12_381_signature.objs/native -I src/lib_crypto/.tezos_crypto.objs/byte -I src/lib_crypto/.tezos_crypto.objs/native -I src/lib_error_monad/.tezos_error_monad.objs/byte -I src/lib_error_monad/.tezos_error_monad.objs/native -I src/lib_event_logging/.tezos_event_logging.objs/byte -I src/lib_event_logging/.tezos_event_logging.objs/native -I src/lib_hacl/.tezos_hacl.objs/byte -I src/lib_hacl/.tezos_hacl.objs/native -I src/lib_lwt_result_stdlib/.tezos_lwt_result_stdlib.objs/byte -I src/lib_lwt_result_stdlib/.tezos_lwt_result_stdlib.objs/native -I src/lib_lwt_result_stdlib/bare/functor_outputs/.bare_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/bare/functor_outputs/.bare_functor_outputs.objs/native -I src/lib_lwt_result_stdlib/bare/sigs/.bare_sigs.objs/byte -I src/lib_lwt_result_stdlib/bare/sigs/.bare_sigs.objs/native -I src/lib_lwt_result_stdlib/bare/structs/.bare_structs.objs/byte -I src/lib_lwt_result_stdlib/bare/structs/.bare_structs.objs/native -I src/lib_lwt_result_stdlib/traced/functor_outputs/.traced_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/traced/functor_outputs/.traced_functor_outputs.objs/native -I src/lib_lwt_result_stdlib/traced/sigs/.traced_sigs.objs/byte -I src/lib_lwt_result_stdlib/traced/sigs/.traced_sigs.objs/native -I src/lib_lwt_result_stdlib/traced/structs/.traced_structs.objs/byte -I src/lib_lwt_result_stdlib/traced/structs/.traced_structs.objs/native -I src/lib_micheline/.tezos_micheline.objs/byte -I src/lib_micheline/.tezos_micheline.objs/native -I src/lib_rpc/.tezos_rpc.objs/byte -I src/lib_rpc/.tezos_rpc.objs/native -I src/lib_stdlib/.tezos_stdlib.objs/byte -I src/lib_stdlib/.tezos_stdlib.objs/native -I src/lib_test/.tezos_test_helpers.objs/byte -I src/lib_test/.tezos_test_helpers.objs/native -intf-suffix .ml -no-alias-deps -open Src_lib_base_test_tezt_lib -o src/lib_base/test/.src_lib_base_test_tezt_lib.objs/native/src_lib_base_test_tezt_lib__Test_bounded.cmx -c -impl src/lib_base/test/test_bounded.ml)
- File "src/lib_base/test/test_bounded.ml", line 268, characters 15-21:
- 268 |     let* ety = oneofl values in
-                      ^^^^^^
- Alert deprecated: QCheck2.Gen.oneofl
- Use [oneof_list] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -open Tezt_core -open Tezt_core.Base -open Tezos_error_monad -open Tezos_error_monad.TzLwtreslib -open Tezos_stdlib_unix -open Tezos_event_logging -open Tezos_test_helpers -open Octez_alcotezt -g -O3 -I src/lib_stdlib_unix/test/.src_lib_stdlib_unix_test__tezt_lib.objs/byte -I src/lib_stdlib_unix/test/.src_lib_stdlib_unix_test__tezt_lib.objs/native -I /home/opam/.opam/4.14/lib/aches -I /home/opam/.opam/4.14/lib/aches-lwt -I /home/opam/.opam/4.14/lib/aches-lwt/lache -I /home/opam/.opam/4.14/lib/aches/rache -I /home/opam/.opam/4.14/lib/aches/vache -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/data-encoding -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/ezjsonm -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/ipaddr/unix -I /home/opam/.opam/4.14/lib/jane-street-headers -I /home/opam/.opam/4.14/lib/json-data-encoding -I /home/opam/.opam/4.14/lib/json-data-encoding-bson -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt-canceler -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/clock/os -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/octez-alcotezt -I /home/opam/.opam/4.14/lib/ppx_compare/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_enumerate/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_expect/collector -I /home/opam/.opam/4.14/lib/ppx_expect/common -I /home/opam/.opam/4.14/lib/ppx_expect/config -I /home/opam/.opam/4.14/lib/ppx_expect/config_types -I /home/opam/.opam/4.14/lib/ppx_hash/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_here/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_inline_test/config -I /home/opam/.opam/4.14/lib/ppx_inline_test/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/pure-splitmix -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/ringo -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/seqes -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/tezt/core -I /home/opam/.opam/4.14/lib/time_now -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zarith_stubs_js -I src/lib_error_monad/.tezos_error_monad.objs/byte -I src/lib_error_monad/.tezos_error_monad.objs/native -I src/lib_event_logging/.tezos_event_logging.objs/byte -I src/lib_event_logging/.tezos_event_logging.objs/native -I src/lib_lwt_result_stdlib/.tezos_lwt_result_stdlib.objs/byte -I src/lib_lwt_result_stdlib/.tezos_lwt_result_stdlib.objs/native -I src/lib_lwt_result_stdlib/bare/functor_outputs/.bare_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/bare/functor_outputs/.bare_functor_outputs.objs/native -I src/lib_lwt_result_stdlib/bare/sigs/.bare_sigs.objs/byte -I src/lib_lwt_result_stdlib/bare/sigs/.bare_sigs.objs/native -I src/lib_lwt_result_stdlib/bare/structs/.bare_structs.objs/byte -I src/lib_lwt_result_stdlib/bare/structs/.bare_structs.objs/native -I src/lib_lwt_result_stdlib/traced/functor_outputs/.traced_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/traced/functor_outputs/.traced_functor_outputs.objs/native -I src/lib_lwt_result_stdlib/traced/sigs/.traced_sigs.objs/byte -I src/lib_lwt_result_stdlib/traced/sigs/.traced_sigs.objs/native -I src/lib_lwt_result_stdlib/traced/structs/.traced_structs.objs/byte -I src/lib_lwt_result_stdlib/traced/structs/.traced_structs.objs/native -I src/lib_stdlib/.tezos_stdlib.objs/byte -I src/lib_stdlib/.tezos_stdlib.objs/native -I src/lib_stdlib_unix/.tezos_stdlib_unix.objs/byte -I src/lib_stdlib_unix/.tezos_stdlib_unix.objs/native -I src/lib_test/.tezos_test_helpers.objs/byte -I src/lib_test/.tezos_test_helpers.objs/native -intf-suffix .ml -no-alias-deps -open Src_lib_stdlib_unix_test__tezt_lib -o src/lib_stdlib_unix/test/.src_lib_stdlib_unix_test__tezt_lib.objs/native/src_lib_stdlib_unix_test__tezt_lib__Test_key_value_store_fuzzy.cmx -c -impl src/lib_stdlib_unix/test/test_key_value_store_fuzzy.ml)
- File "src/lib_stdlib_unix/test/test_key_value_store_fuzzy.ml", line 198, characters 17-35:
- 198 |   let bind_gen = QCheck2.Gen.oneofa [|Sequential; Parallel|]
-                        ^^^^^^^^^^^^^^^^^^
- Alert deprecated: QCheck2.Gen.oneofa
- Use [oneof_array] instead
- File "src/lib_stdlib_unix/test/test_key_value_store_fuzzy.ml", line 231, characters 6-18:
- 231 |       array_repeat key_max (bytes_size ~gen:char (return value_size))
-             ^^^^^^^^^^^^
- Alert deprecated: QCheck2.Gen.array_repeat
- Use [array_size (return i) g] instead
- File "src/lib_stdlib_unix/test/test_key_value_store_fuzzy.ml", line 317, characters 23-34:
- 317 |     tup2 first_action (list_repeat 2 action_bind)
-                              ^^^^^^^^^^^
- Alert deprecated: QCheck2.Gen.list_repeat
- Use [list_size (return i) g] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -open Tezt_core -open Tezt_core.Base -open Tezos_base -open Tezos_error_monad -open Tezos_test_helpers -open Octez_alcotezt -g -O3 -I src/lib_base/test/.src_lib_base_test_tezt_lib.objs/byte -I src/lib_base/test/.src_lib_base_test_tezt_lib.objs/native -I /home/opam/.opam/4.14/lib/aches -I /home/opam/.opam/4.14/lib/aches/rache -I /home/opam/.opam/4.14/lib/aches/vache -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bigstring -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bls12-381 -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/ctypes -I /home/opam/.opam/4.14/lib/ctypes/stubs -I /home/opam/.opam/4.14/lib/ctypes_stubs_js -I /home/opam/.opam/4.14/lib/data-encoding -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/ezjsonm -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/hacl-star -I /home/opam/.opam/4.14/lib/hacl-star-raw -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/integers -I /home/opam/.opam/4.14/lib/integers_stubs_js -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/jane-street-headers -I /home/opam/.opam/4.14/lib/json-data-encoding -I /home/opam/.opam/4.14/lib/json-data-encoding-bson -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt-canceler -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/octez-alcotezt -I /home/opam/.opam/4.14/lib/ppx_compare/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_enumerate/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_expect/collector -I /home/opam/.opam/4.14/lib/ppx_expect/common -I /home/opam/.opam/4.14/lib/ppx_expect/config -I /home/opam/.opam/4.14/lib/ppx_expect/config_types -I /home/opam/.opam/4.14/lib/ppx_hash/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_here/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_inline_test/config -I /home/opam/.opam/4.14/lib/ppx_inline_test/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/pure-splitmix -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/resto -I /home/opam/.opam/4.14/lib/resto-directory -I /home/opam/.opam/4.14/lib/ringo -I /home/opam/.opam/4.14/lib/secp256k1-internal -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/seqes -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/tezt/core -I /home/opam/.opam/4.14/lib/time_now -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zarith_stubs_js -I src/lib_base/.tezos_base.objs/byte -I src/lib_base/.tezos_base.objs/native -I src/lib_bls12_381_signature/.bls12_381_signature.objs/byte -I src/lib_bls12_381_signature/.bls12_381_signature.objs/native -I src/lib_crypto/.tezos_crypto.objs/byte -I src/lib_crypto/.tezos_crypto.objs/native -I src/lib_error_monad/.tezos_error_monad.objs/byte -I src/lib_error_monad/.tezos_error_monad.objs/native -I src/lib_event_logging/.tezos_event_logging.objs/byte -I src/lib_event_logging/.tezos_event_logging.objs/native -I src/lib_hacl/.tezos_hacl.objs/byte -I src/lib_hacl/.tezos_hacl.objs/native -I src/lib_lwt_result_stdlib/.tezos_lwt_result_stdlib.objs/byte -I src/lib_lwt_result_stdlib/.tezos_lwt_result_stdlib.objs/native -I src/lib_lwt_result_stdlib/bare/functor_outputs/.bare_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/bare/functor_outputs/.bare_functor_outputs.objs/native -I src/lib_lwt_result_stdlib/bare/sigs/.bare_sigs.objs/byte -I src/lib_lwt_result_stdlib/bare/sigs/.bare_sigs.objs/native -I src/lib_lwt_result_stdlib/bare/structs/.bare_structs.objs/byte -I src/lib_lwt_result_stdlib/bare/structs/.bare_structs.objs/native -I src/lib_lwt_result_stdlib/traced/functor_outputs/.traced_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/traced/functor_outputs/.traced_functor_outputs.objs/native -I src/lib_lwt_result_stdlib/traced/sigs/.traced_sigs.objs/byte -I src/lib_lwt_result_stdlib/traced/sigs/.traced_sigs.objs/native -I src/lib_lwt_result_stdlib/traced/structs/.traced_structs.objs/byte -I src/lib_lwt_result_stdlib/traced/structs/.traced_structs.objs/native -I src/lib_micheline/.tezos_micheline.objs/byte -I src/lib_micheline/.tezos_micheline.objs/native -I src/lib_rpc/.tezos_rpc.objs/byte -I src/lib_rpc/.tezos_rpc.objs/native -I src/lib_stdlib/.tezos_stdlib.objs/byte -I src/lib_stdlib/.tezos_stdlib.objs/native -I src/lib_test/.tezos_test_helpers.objs/byte -I src/lib_test/.tezos_test_helpers.objs/native -intf-suffix .ml -no-alias-deps -open Src_lib_base_test_tezt_lib -o src/lib_base/test/.src_lib_base_test_tezt_lib.objs/native/src_lib_base_test_tezt_lib__Test_sized.cmx -c -impl src/lib_base/test/test_sized.ml)
- File "src/lib_base/test/test_sized.ml", line 45, characters 23-33:
- 45 |   let generator = Gen.(small_list small_nat >|= SizedSet.of_list)
-                             ^^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_list
- Use [list_small] instead
- File "src/lib_base/test/test_sized.ml", line 45, characters 34-43:
- 45 |   let generator = Gen.(small_list small_nat >|= SizedSet.of_list)
-                                        ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_nat
- Use [nat_small] instead
- File "src/lib_base/test/test_sized.ml", line 47, characters 27-37:
- 47 |   let seq_generator = Gen.(small_list small_nat >|= List.to_seq)
-                                 ^^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_list
- Use [list_small] instead
- File "src/lib_base/test/test_sized.ml", line 47, characters 38-47:
- 47 |   let seq_generator = Gen.(small_list small_nat >|= List.to_seq)
-                                            ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_nat
- Use [nat_small] instead
- File "src/lib_base/test/test_sized.ml", line 62, characters 26-35:
- 62 |       Gen.(pair generator small_nat)
-                                ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_nat
- Use [nat_small] instead
- File "src/lib_base/test/test_sized.ml", line 68, characters 26-35:
- 68 |       Gen.(pair generator small_nat)
-                                ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_nat
- Use [nat_small] instead
- File "src/lib_base/test/test_sized.ml", line 74, characters 26-35:
- 74 |       Gen.(pair generator small_nat)
-                                ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_nat
- Use [nat_small] instead
- File "src/lib_base/test/test_sized.ml", line 110, characters 48-51:
- 110 |       Gen.(pair generator (fun1 Observable.int (opt int)))
-                                                       ^^^
- Alert deprecated: QCheck2.Gen.opt
- Use [option] instead
- File "src/lib_base/test/test_sized.ml", line 124, characters 26-35:
- 124 |       Gen.(pair generator small_nat)
-                                 ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_nat
- Use [nat_small] instead
- File "src/lib_base/test/test_sized.ml", line 167, characters 9-19:
- 167 |     Gen.(small_list (pair small_nat small_nat) >|= List.to_seq)
-                ^^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_list
- Use [list_small] instead
- File "src/lib_base/test/test_sized.ml", line 167, characters 26-35:
- 167 |     Gen.(small_list (pair small_nat small_nat) >|= List.to_seq)
-                                 ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_nat
- Use [nat_small] instead
- File "src/lib_base/test/test_sized.ml", line 167, characters 36-45:
- 167 |     Gen.(small_list (pair small_nat small_nat) >|= List.to_seq)
-                                           ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_nat
- Use [nat_small] instead
- File "src/lib_base/test/test_sized.ml", line 185, characters 28-37:
- 185 |       Gen.(triple generator small_nat small_nat)
-                                   ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_nat
- Use [nat_small] instead
- File "src/lib_base/test/test_sized.ml", line 185, characters 38-47:
- 185 |       Gen.(triple generator small_nat small_nat)
-                                             ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_nat
- Use [nat_small] instead
- File "src/lib_base/test/test_sized.ml", line 192, characters 28-37:
- 192 |       Gen.(triple generator small_nat small_nat)
-                                   ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_nat
- Use [nat_small] instead
- File "src/lib_base/test/test_sized.ml", line 192, characters 38-47:
- 192 |       Gen.(triple generator small_nat small_nat)
-                                             ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_nat
- Use [nat_small] instead
- File "src/lib_base/test/test_sized.ml", line 201, characters 10-19:
- 201 |           small_nat
-                 ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_nat
- Use [nat_small] instead
- File "src/lib_base/test/test_sized.ml", line 202, characters 41-44:
- 202 |           (fun1 Observable.(option int) (opt small_nat)))
-                                                ^^^
- Alert deprecated: QCheck2.Gen.opt
- Use [option] instead
- File "src/lib_base/test/test_sized.ml", line 202, characters 45-54:
- 202 |           (fun1 Observable.(option int) (opt small_nat)))
-                                                    ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_nat
- Use [nat_small] instead
- File "src/lib_base/test/test_sized.ml", line 208, characters 26-35:
- 208 |       Gen.(pair generator small_nat)
-                                 ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_nat
- Use [nat_small] instead
- File "src/lib_base/test/test_sized.ml", line 222, characters 14-17:
- 222 |              (opt int)))
-                     ^^^
- Alert deprecated: QCheck2.Gen.opt
- Use [option] instead
- File "src/lib_base/test/test_sized.ml", line 233, characters 62-65:
- 233 |           (fun3 Observable.int Observable.int Observable.int (opt int)))
-                                                                     ^^^
- Alert deprecated: QCheck2.Gen.opt
- Use [option] instead
- File "src/lib_base/test/test_sized.ml", line 240, characters 48-51:
- 240 |       Gen.(pair generator (fun1 Observable.int (opt int)))
-                                                       ^^^
- Alert deprecated: QCheck2.Gen.opt
- Use [option] instead
- File "src/lib_base/test/test_sized.ml", line 246, characters 63-66:
- 246 |       Gen.(pair generator (fun2 Observable.int Observable.int (opt int)))
-                                                                      ^^^
- Alert deprecated: QCheck2.Gen.opt
- Use [option] instead
- File "src/lib_base/test/test_sized.ml", line 258, characters 63-66:
- 258 |       Gen.(pair generator (fun2 Observable.int Observable.int (opt int)))
-                                                                      ^^^
- Alert deprecated: QCheck2.Gen.opt
- Use [option] instead
- File "src/lib_base/test/test_sized.ml", line 272, characters 26-35:
- 272 |       Gen.(pair generator small_nat)
-                                 ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_nat
- Use [nat_small] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -open Tezt_core -open Tezt_core.Base -open Tezos_base.TzPervasives -open Tezos_test_helpers -open Tezos_base_test_helpers -open Tezos_stdlib -open Tezos_requester -open Octez_alcotezt -g -O3 -I src/lib_requester/test/.src_lib_requester_test_tezt_lib.objs/byte -I src/lib_requester/test/.src_lib_requester_test_tezt_lib.objs/native -I /home/opam/.opam/4.14/lib/aches -I /home/opam/.opam/4.14/lib/aches-lwt -I /home/opam/.opam/4.14/lib/aches-lwt/lache -I /home/opam/.opam/4.14/lib/aches/rache -I /home/opam/.opam/4.14/lib/aches/vache -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bigstring -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bls12-381 -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/ctypes -I /home/opam/.opam/4.14/lib/ctypes/stubs -I /home/opam/.opam/4.14/lib/ctypes_stubs_js -I /home/opam/.opam/4.14/lib/data-encoding -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/ezjsonm -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/hacl-star -I /home/opam/.opam/4.14/lib/hacl-star-raw -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/integers -I /home/opam/.opam/4.14/lib/integers_stubs_js -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/ipaddr/unix -I /home/opam/.opam/4.14/lib/jane-street-headers -I /home/opam/.opam/4.14/lib/json-data-encoding -I /home/opam/.opam/4.14/lib/json-data-encoding-bson -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt-canceler -I /home/opam/.opam/4.14/lib/lwt-watcher -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/clock/os -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/octez-alcotezt -I /home/opam/.opam/4.14/lib/ppx_compare/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_enumerate/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_expect/collector -I /home/opam/.opam/4.14/lib/ppx_expect/common -I /home/opam/.opam/4.14/lib/ppx_expect/config -I /home/opam/.opam/4.14/lib/ppx_expect/config_types -I /home/opam/.opam/4.14/lib/ppx_hash/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_here/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_inline_test/config -I /home/opam/.opam/4.14/lib/ppx_inline_test/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/pure-splitmix -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/resto -I /home/opam/.opam/4.14/lib/resto-directory -I /home/opam/.opam/4.14/lib/ringo -I /home/opam/.opam/4.14/lib/secp256k1-internal -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/seqes -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/tezt/core -I /home/opam/.opam/4.14/lib/time_now -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zarith_stubs_js -I src/lib_base/.tezos_base.objs/byte -I src/lib_base/.tezos_base.objs/native -I src/lib_base/test_helpers/.tezos_base_test_helpers.objs/byte -I src/lib_base/test_helpers/.tezos_base_test_helpers.objs/native -I src/lib_base/unix/.tezos_base_unix.objs/byte -I src/lib_base/unix/.tezos_base_unix.objs/native -I src/lib_bls12_381_signature/.bls12_381_signature.objs/byte -I src/lib_bls12_381_signature/.bls12_381_signature.objs/native -I src/lib_crypto/.tezos_crypto.objs/byte -I src/lib_crypto/.tezos_crypto.objs/native -I src/lib_error_monad/.tezos_error_monad.objs/byte -I src/lib_error_monad/.tezos_error_monad.objs/native -I src/lib_event_logging/.tezos_event_logging.objs/byte -I src/lib_event_logging/.tezos_event_logging.objs/native -I src/lib_event_logging/test_helpers/.tezos_event_logging_test_helpers.objs/byte -I src/lib_event_logging/test_helpers/.tezos_event_logging_test_helpers.objs/native -I src/lib_hacl/.tezos_hacl.objs/byte -I src/lib_hacl/.tezos_hacl.objs/native -I src/lib_lwt_result_stdlib/.tezos_lwt_result_stdlib.objs/byte -I src/lib_lwt_result_stdlib/.tezos_lwt_result_stdlib.objs/native -I src/lib_lwt_result_stdlib/bare/functor_outputs/.bare_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/bare/functor_outputs/.bare_functor_outputs.objs/native -I src/lib_lwt_result_stdlib/bare/sigs/.bare_sigs.objs/byte -I src/lib_lwt_result_stdlib/bare/sigs/.bare_sigs.objs/native -I src/lib_lwt_result_stdlib/bare/structs/.bare_structs.objs/byte -I src/lib_lwt_result_stdlib/bare/structs/.bare_structs.objs/native -I src/lib_lwt_result_stdlib/traced/functor_outputs/.traced_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/traced/functor_outputs/.traced_functor_outputs.objs/native -I src/lib_lwt_result_stdlib/traced/sigs/.traced_sigs.objs/byte -I src/lib_lwt_result_stdlib/traced/sigs/.traced_sigs.objs/native -I src/lib_lwt_result_stdlib/traced/structs/.traced_structs.objs/byte -I src/lib_lwt_result_stdlib/traced/structs/.traced_structs.objs/native -I src/lib_micheline/.tezos_micheline.objs/byte -I src/lib_micheline/.tezos_micheline.objs/native -I src/lib_requester/.tezos_requester.objs/byte -I src/lib_requester/.tezos_requester.objs/native -I src/lib_rpc/.tezos_rpc.objs/byte -I src/lib_rpc/.tezos_rpc.objs/native -I src/lib_stdlib/.tezos_stdlib.objs/byte -I src/lib_stdlib/.tezos_stdlib.objs/native -I src/lib_stdlib_unix/.tezos_stdlib_unix.objs/byte -I src/lib_stdlib_unix/.tezos_stdlib_unix.objs/native -I src/lib_test/.tezos_test_helpers.objs/byte -I src/lib_test/.tezos_test_helpers.objs/native -intf-suffix .ml -no-alias-deps -open Src_lib_requester_test_tezt_lib -o src/lib_requester/test/.src_lib_requester_test_tezt_lib.objs/native/src_lib_requester_test_tezt_lib__Test_fuzzing_requester.cmx -c -impl src/lib_requester/test/test_fuzzing_requester.ml)
- File "src/lib_requester/test/test_fuzzing_requester.ml", line 40, characters 14-30:
- 40 | let key_gen = Gen.small_string ?gen:None
-                    ^^^^^^^^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_string
- Use [string_small] instead
- File "src/lib_requester/test/test_fuzzing_requester.ml", line 72, characters 53-59:
- 72 |     let in_domain_gen = if domain = [] then [] else [oneofl domain] in
-                                                           ^^^^^^
- Alert deprecated: QCheck2.Gen.oneofl
- Use [oneof_list] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -open Tezt_core -open Tezt_core.Base -open Tezos_base -open Tezos_error_monad -open Tezos_test_helpers -open Octez_alcotezt -g -O3 -I src/lib_base/test/.src_lib_base_test_tezt_lib.objs/byte -I src/lib_base/test/.src_lib_base_test_tezt_lib.objs/native -I /home/opam/.opam/4.14/lib/aches -I /home/opam/.opam/4.14/lib/aches/rache -I /home/opam/.opam/4.14/lib/aches/vache -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bigstring -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bls12-381 -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/ctypes -I /home/opam/.opam/4.14/lib/ctypes/stubs -I /home/opam/.opam/4.14/lib/ctypes_stubs_js -I /home/opam/.opam/4.14/lib/data-encoding -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/ezjsonm -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/hacl-star -I /home/opam/.opam/4.14/lib/hacl-star-raw -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/integers -I /home/opam/.opam/4.14/lib/integers_stubs_js -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/jane-street-headers -I /home/opam/.opam/4.14/lib/json-data-encoding -I /home/opam/.opam/4.14/lib/json-data-encoding-bson -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt-canceler -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/octez-alcotezt -I /home/opam/.opam/4.14/lib/ppx_compare/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_enumerate/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_expect/collector -I /home/opam/.opam/4.14/lib/ppx_expect/common -I /home/opam/.opam/4.14/lib/ppx_expect/config -I /home/opam/.opam/4.14/lib/ppx_expect/config_types -I /home/opam/.opam/4.14/lib/ppx_hash/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_here/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_inline_test/config -I /home/opam/.opam/4.14/lib/ppx_inline_test/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/pure-splitmix -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/resto -I /home/opam/.opam/4.14/lib/resto-directory -I /home/opam/.opam/4.14/lib/ringo -I /home/opam/.opam/4.14/lib/secp256k1-internal -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/seqes -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/tezt/core -I /home/opam/.opam/4.14/lib/time_now -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zarith_stubs_js -I src/lib_base/.tezos_base.objs/byte -I src/lib_base/.tezos_base.objs/native -I src/lib_bls12_381_signature/.bls12_381_signature.objs/byte -I src/lib_bls12_381_signature/.bls12_381_signature.objs/native -I src/lib_crypto/.tezos_crypto.objs/byte -I src/lib_crypto/.tezos_crypto.objs/native -I src/lib_error_monad/.tezos_error_monad.objs/byte -I src/lib_error_monad/.tezos_error_monad.objs/native -I src/lib_event_logging/.tezos_event_logging.objs/byte -I src/lib_event_logging/.tezos_event_logging.objs/native -I src/lib_hacl/.tezos_hacl.objs/byte -I src/lib_hacl/.tezos_hacl.objs/native -I src/lib_lwt_result_stdlib/.tezos_lwt_result_stdlib.objs/byte -I src/lib_lwt_result_stdlib/.tezos_lwt_result_stdlib.objs/native -I src/lib_lwt_result_stdlib/bare/functor_outputs/.bare_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/bare/functor_outputs/.bare_functor_outputs.objs/native -I src/lib_lwt_result_stdlib/bare/sigs/.bare_sigs.objs/byte -I src/lib_lwt_result_stdlib/bare/sigs/.bare_sigs.objs/native -I src/lib_lwt_result_stdlib/bare/structs/.bare_structs.objs/byte -I src/lib_lwt_result_stdlib/bare/structs/.bare_structs.objs/native -I src/lib_lwt_result_stdlib/traced/functor_outputs/.traced_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/traced/functor_outputs/.traced_functor_outputs.objs/native -I src/lib_lwt_result_stdlib/traced/sigs/.traced_sigs.objs/byte -I src/lib_lwt_result_stdlib/traced/sigs/.traced_sigs.objs/native -I src/lib_lwt_result_stdlib/traced/structs/.traced_structs.objs/byte -I src/lib_lwt_result_stdlib/traced/structs/.traced_structs.objs/native -I src/lib_micheline/.tezos_micheline.objs/byte -I src/lib_micheline/.tezos_micheline.objs/native -I src/lib_rpc/.tezos_rpc.objs/byte -I src/lib_rpc/.tezos_rpc.objs/native -I src/lib_stdlib/.tezos_stdlib.objs/byte -I src/lib_stdlib/.tezos_stdlib.objs/native -I src/lib_test/.tezos_test_helpers.objs/byte -I src/lib_test/.tezos_test_helpers.objs/native -intf-suffix .ml -no-alias-deps -open Src_lib_base_test_tezt_lib -o src/lib_base/test/.src_lib_base_test_tezt_lib.objs/native/src_lib_base_test_tezt_lib__Test_skip_list.cmx -c -impl src/lib_base/test/test_skip_list.ml)
- File "src/lib_base/test/test_skip_list.ml", line 460, characters 21-30:
- 460 |         let* basis = frequency [(5, pure 4); (1, 2 -- 73)] in
-                            ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.frequency
- Use [oneof_weighted] instead
- File "src/lib_base/test/test_skip_list.ml", line 469, characters 21-30:
- 469 |         let* basis = frequency [(5, pure 4); (1, 2 -- 73)] in
-                            ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.frequency
- Use [oneof_weighted] instead
- File "src/lib_base/test/test_skip_list.ml", line 478, characters 21-30:
- 478 |         let* basis = frequency [(5, pure 4); (1, 2 -- 73)] in
-                            ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.frequency
- Use [oneof_weighted] instead
- File "src/lib_base/test/test_skip_list.ml", line 486, characters 21-30:
- 486 |         let* basis = frequency [(5, pure 4); (1, 2 -- 73)] in
-                            ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.frequency
- Use [oneof_weighted] instead
- File "src/lib_base/test/test_skip_list.ml", line 498, characters 21-30:
- 498 |         let* basis = frequency [(5, pure 4); (1, 2 -- 73)] in
-                            ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.frequency
- Use [oneof_weighted] instead
- File "src/lib_base/test/test_skip_list.ml", line 507, characters 21-30:
- 507 |         let* basis = frequency [(5, pure 4); (1, 2 -- 73)] in
-                            ^^^^^^^^^
- Alert deprecated: QCheck2.Gen.frequency
- Use [oneof_weighted] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -open Tezt_core -open Tezt_core.Base -open Tezos_stdlib -open Tezos_crypto_dal -open Tezos_crypto_dal_octez_dal_config -open Tezos_error_monad -open Data_encoding -open Octez_alcotezt -g -O3 -I src/lib_crypto_dal/test/.src_lib_crypto_dal_test_tezt_lib.objs/byte -I src/lib_crypto_dal/test/.src_lib_crypto_dal_test_tezt_lib.objs/native -I /home/opam/.opam/4.14/lib/aches -I /home/opam/.opam/4.14/lib/aches/rache -I /home/opam/.opam/4.14/lib/aches/vache -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigstring -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bls12-381 -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/ctypes -I /home/opam/.opam/4.14/lib/ctypes/stubs -I /home/opam/.opam/4.14/lib/ctypes_stubs_js -I /home/opam/.opam/4.14/lib/data-encoding -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/ezjsonm -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/hacl-star -I /home/opam/.opam/4.14/lib/hacl-star-raw -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/integers -I /home/opam/.opam/4.14/lib/integers_stubs_js -I /home/opam/.opam/4.14/lib/jane-street-headers -I /home/opam/.opam/4.14/lib/json-data-encoding -I /home/opam/.opam/4.14/lib/json-data-encoding-bson -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt-canceler -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/octez-alcotezt -I /home/opam/.opam/4.14/lib/optint -I /home/opam/.opam/4.14/lib/ppx_compare/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppx_enumerate/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_expect/collector -I /home/opam/.opam/4.14/lib/ppx_expect/common -I /home/opam/.opam/4.14/lib/ppx_expect/config -I /home/opam/.opam/4.14/lib/ppx_expect/config_types -I /home/opam/.opam/4.14/lib/ppx_hash/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_here/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_inline_test/config -I /home/opam/.opam/4.14/lib/ppx_inline_test/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_repr -I /home/opam/.opam/4.14/lib/ppx_repr/lib -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/pure-splitmix -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/repr -I /home/opam/.opam/4.14/lib/resto -I /home/opam/.opam/4.14/lib/resto-directory -I /home/opam/.opam/4.14/lib/ringo -I /home/opam/.opam/4.14/lib/secp256k1-internal -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/seqes -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/tezt/core -I /home/opam/.opam/4.14/lib/time_now -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zarith_stubs_js -I src/lib_bls12_381_polynomial/.octez_bls12_381_polynomial.objs/byte -I src/lib_bls12_381_polynomial/.octez_bls12_381_polynomial.objs/native -I src/lib_bls12_381_signature/.bls12_381_signature.objs/byte -I src/lib_bls12_381_signature/.bls12_381_signature.objs/native -I src/lib_crypto/.tezos_crypto.objs/byte -I src/lib_crypto/.tezos_crypto.objs/native -I src/lib_crypto_dal/.tezos_crypto_dal.objs/byte -I src/lib_crypto_dal/.tezos_crypto_dal.objs/native -I src/lib_crypto_dal/dal_config/.tezos_crypto_dal_octez_dal_config.objs/byte -I src/lib_crypto_dal/dal_config/.tezos_crypto_dal_octez_dal_config.objs/native -I src/lib_error_monad/.tezos_error_monad.objs/byte -I src/lib_error_monad/.tezos_error_monad.objs/native -I src/lib_hacl/.tezos_hacl.objs/byte -I src/lib_hacl/.tezos_hacl.objs/native -I src/lib_lwt_result_stdlib/.tezos_lwt_result_stdlib.objs/byte -I src/lib_lwt_result_stdlib/.tezos_lwt_result_stdlib.objs/native -I src/lib_lwt_result_stdlib/bare/functor_outputs/.bare_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/bare/functor_outputs/.bare_functor_outputs.objs/native -I src/lib_lwt_result_stdlib/bare/sigs/.bare_sigs.objs/byte -I src/lib_lwt_result_stdlib/bare/sigs/.bare_sigs.objs/native -I src/lib_lwt_result_stdlib/bare/structs/.bare_structs.objs/byte -I src/lib_lwt_result_stdlib/bare/structs/.bare_structs.objs/native -I src/lib_lwt_result_stdlib/traced/functor_outputs/.traced_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/traced/functor_outputs/.traced_functor_outputs.objs/native -I src/lib_lwt_result_stdlib/traced/sigs/.traced_sigs.objs/byte -I src/lib_lwt_result_stdlib/traced/sigs/.traced_sigs.objs/native -I src/lib_lwt_result_stdlib/traced/structs/.traced_structs.objs/byte -I src/lib_lwt_result_stdlib/traced/structs/.traced_structs.objs/native -I src/lib_rpc/.tezos_rpc.objs/byte -I src/lib_rpc/.tezos_rpc.objs/native -I src/lib_stdlib/.tezos_stdlib.objs/byte -I src/lib_stdlib/.tezos_stdlib.objs/native -I src/lib_test/.tezos_test_helpers.objs/byte -I src/lib_test/.tezos_test_helpers.objs/native -intf-suffix .ml -no-alias-deps -open Src_lib_crypto_dal_test_tezt_lib -o src/lib_crypto_dal/test/.src_lib_crypto_dal_test_tezt_lib.objs/native/src_lib_crypto_dal_test_tezt_lib__Test_dal_cryptobox.cmx -c -impl src/lib_crypto_dal/test/test_dal_cryptobox.ml)
- File "src/lib_crypto_dal/test/test_dal_cryptobox.ml", line 10, characters 28-34:
- 10 |     QCheck2.Gen.(generate1 (oneofl [a; b]))
-                                  ^^^^^^
- Alert deprecated: QCheck2.Gen.oneofl
- Use [oneof_list] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -open Tezt_core -open Tezt_core.Base -open Tezos_stdlib -open Tezos_stdlib_unix -open Tezos_base -open Tezos_base.TzPervasives -open Tezos_base.Worker_types -open Tezos_workers -open Tezos_test_helpers -open Tezos_base_test_helpers -open Octez_alcotezt -g -O3 -I src/lib_workers/test/.src_lib_workers_test_tezt_lib.objs/byte -I src/lib_workers/test/.src_lib_workers_test_tezt_lib.objs/native -I /home/opam/.opam/4.14/lib/aches -I /home/opam/.opam/4.14/lib/aches-lwt -I /home/opam/.opam/4.14/lib/aches-lwt/lache -I /home/opam/.opam/4.14/lib/aches/rache -I /home/opam/.opam/4.14/lib/aches/vache -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bigstring -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bls12-381 -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/ctypes -I /home/opam/.opam/4.14/lib/ctypes/stubs -I /home/opam/.opam/4.14/lib/ctypes_stubs_js -I /home/opam/.opam/4.14/lib/data-encoding -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/ezjsonm -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/hacl-star -I /home/opam/.opam/4.14/lib/hacl-star-raw -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/integers -I /home/opam/.opam/4.14/lib/integers_stubs_js -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/ipaddr/unix -I /home/opam/.opam/4.14/lib/jane-street-headers -I /home/opam/.opam/4.14/lib/json-data-encoding -I /home/opam/.opam/4.14/lib/json-data-encoding-bson -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt-canceler -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/clock/os -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/octez-alcotezt -I /home/opam/.opam/4.14/lib/ppx_compare/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_enumerate/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_expect/collector -I /home/opam/.opam/4.14/lib/ppx_expect/common -I /home/opam/.opam/4.14/lib/ppx_expect/config -I /home/opam/.opam/4.14/lib/ppx_expect/config_types -I /home/opam/.opam/4.14/lib/ppx_hash/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_here/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_inline_test/config -I /home/opam/.opam/4.14/lib/ppx_inline_test/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/pure-splitmix -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/resto -I /home/opam/.opam/4.14/lib/resto-directory -I /home/opam/.opam/4.14/lib/ringo -I /home/opam/.opam/4.14/lib/secp256k1-internal -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/seqes -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/tezt/core -I /home/opam/.opam/4.14/lib/time_now -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zarith_stubs_js -I src/lib_base/.tezos_base.objs/byte -I src/lib_base/.tezos_base.objs/native -I src/lib_base/test_helpers/.tezos_base_test_helpers.objs/byte -I src/lib_base/test_helpers/.tezos_base_test_helpers.objs/native -I src/lib_base/unix/.tezos_base_unix.objs/byte -I src/lib_base/unix/.tezos_base_unix.objs/native -I src/lib_bls12_381_signature/.bls12_381_signature.objs/byte -I src/lib_bls12_381_signature/.bls12_381_signature.objs/native -I src/lib_crypto/.tezos_crypto.objs/byte -I src/lib_crypto/.tezos_crypto.objs/native -I src/lib_error_monad/.tezos_error_monad.objs/byte -I src/lib_error_monad/.tezos_error_monad.objs/native -I src/lib_event_logging/.tezos_event_logging.objs/byte -I src/lib_event_logging/.tezos_event_logging.objs/native -I src/lib_event_logging/test_helpers/.tezos_event_logging_test_helpers.objs/byte -I src/lib_event_logging/test_helpers/.tezos_event_logging_test_helpers.objs/native -I src/lib_hacl/.tezos_hacl.objs/byte -I src/lib_hacl/.tezos_hacl.objs/native -I src/lib_lwt_result_stdlib/.tezos_lwt_result_stdlib.objs/byte -I src/lib_lwt_result_stdlib/.tezos_lwt_result_stdlib.objs/native -I src/lib_lwt_result_stdlib/bare/functor_outputs/.bare_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/bare/functor_outputs/.bare_functor_outputs.objs/native -I src/lib_lwt_result_stdlib/bare/sigs/.bare_sigs.objs/byte -I src/lib_lwt_result_stdlib/bare/sigs/.bare_sigs.objs/native -I src/lib_lwt_result_stdlib/bare/structs/.bare_structs.objs/byte -I src/lib_lwt_result_stdlib/bare/structs/.bare_structs.objs/native -I src/lib_lwt_result_stdlib/traced/functor_outputs/.traced_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/traced/functor_outputs/.traced_functor_outputs.objs/native -I src/lib_lwt_result_stdlib/traced/sigs/.traced_sigs.objs/byte -I src/lib_lwt_result_stdlib/traced/sigs/.traced_sigs.objs/native -I src/lib_lwt_result_stdlib/traced/structs/.traced_structs.objs/byte -I src/lib_lwt_result_stdlib/traced/structs/.traced_structs.objs/native -I src/lib_micheline/.tezos_micheline.objs/byte -I src/lib_micheline/.tezos_micheline.objs/native -I src/lib_rpc/.tezos_rpc.objs/byte -I src/lib_rpc/.tezos_rpc.objs/native -I src/lib_stdlib/.tezos_stdlib.objs/byte -I src/lib_stdlib/.tezos_stdlib.objs/native -I src/lib_stdlib_unix/.tezos_stdlib_unix.objs/byte -I src/lib_stdlib_unix/.tezos_stdlib_unix.objs/native -I src/lib_test/.tezos_test_helpers.objs/byte -I src/lib_test/.tezos_test_helpers.objs/native -I src/lib_workers/.tezos_workers.objs/byte -I src/lib_workers/.tezos_workers.objs/native -intf-suffix .ml -no-alias-deps -open Src_lib_workers_test_tezt_lib -o src/lib_workers/test/.src_lib_workers_test_tezt_lib.objs/native/src_lib_workers_test_tezt_lib__Test_workers_unit.cmx -c -impl src/lib_workers/test/test_workers_unit.ml)
- File "src/lib_workers/test/test_workers_unit.ml", line 175, characters 4-14:
- 175 |     small_list (small_list request)
-           ^^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_list
- Use [list_small] instead
- File "src/lib_workers/test/test_workers_unit.ml", line 175, characters 16-26:
- 175 |     small_list (small_list request)
-                       ^^^^^^^^^^
- Alert deprecated: QCheck2.Gen.small_list
- Use [list_small] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -open Tezt_core -open Tezt_core.Base -open Tezos_base.TzPervasives -open Tezos_stdlib -open Tezos_test_helpers -open Tezos_base_test_helpers -open Tezos_rpc_http_server -open Octez_alcotezt -g -bin-annot -I src/lib_rpc_http/test/.src_lib_rpc_http_test_tezt_lib.objs/byte -I /home/opam/.opam/4.14/lib/aches -I /home/opam/.opam/4.14/lib/aches-lwt -I /home/opam/.opam/4.14/lib/aches-lwt/lache -I /home/opam/.opam/4.14/lib/aches/rache -I /home/opam/.opam/4.14/lib/aches/vache -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigstring -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bls12-381 -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cohttp -I /home/opam/.opam/4.14/lib/cohttp-lwt -I /home/opam/.opam/4.14/lib/cohttp-lwt-unix -I /home/opam/.opam/4.14/lib/conduit -I /home/opam/.opam/4.14/lib/conduit-lwt -I /home/opam/.opam/4.14/lib/conduit-lwt-unix -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/ctypes -I /home/opam/.opam/4.14/lib/ctypes/stubs -I /home/opam/.opam/4.14/lib/ctypes_stubs_js -I /home/opam/.opam/4.14/lib/data-encoding -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/ezjsonm -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/hacl-star -I /home/opam/.opam/4.14/lib/hacl-star-raw -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/integers -I /home/opam/.opam/4.14/lib/integers_stubs_js -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/ipaddr-sexp -I /home/opam/.opam/4.14/lib/ipaddr/unix -I /home/opam/.opam/4.14/lib/jane-street-headers -I /home/opam/.opam/4.14/lib/json-data-encoding -I /home/opam/.opam/4.14/lib/json-data-encoding-bson -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/logs/fmt -I /home/opam/.opam/4.14/lib/logs/lwt -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt-canceler -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/magic-mime -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/clock/os -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/octez-alcotezt -I /home/opam/.opam/4.14/lib/ppx_compare/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_enumerate/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_expect/collector -I /home/opam/.opam/4.14/lib/ppx_expect/common -I /home/opam/.opam/4.14/lib/ppx_expect/config -I /home/opam/.opam/4.14/lib/ppx_expect/config_types -I /home/opam/.opam/4.14/lib/ppx_hash/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_here/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_inline_test/config -I /home/opam/.opam/4.14/lib/ppx_inline_test/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/pure-splitmix -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/resto -I /home/opam/.opam/4.14/lib/resto-acl -I /home/opam/.opam/4.14/lib/resto-cohttp -I /home/opam/.opam/4.14/lib/resto-cohttp-server -I /home/opam/.opam/4.14/lib/resto-directory -I /home/opam/.opam/4.14/lib/ringo -I /home/opam/.opam/4.14/lib/secp256k1-internal -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/seqes -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/tezt/core -I /home/opam/.opam/4.14/lib/time_now -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uri-sexp -I /home/opam/.opam/4.14/lib/uri/services -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zarith_stubs_js -I src/lib_base/.tezos_base.objs/byte -I src/lib_base/test_helpers/.tezos_base_test_helpers.objs/byte -I src/lib_base/unix/.tezos_base_unix.objs/byte -I src/lib_bls12_381_signature/.bls12_381_signature.objs/byte -I src/lib_crypto/.tezos_crypto.objs/byte -I src/lib_error_monad/.tezos_error_monad.objs/byte -I src/lib_event_logging/.tezos_event_logging.objs/byte -I src/lib_event_logging/test_helpers/.tezos_event_logging_test_helpers.objs/byte -I src/lib_hacl/.tezos_hacl.objs/byte -I src/lib_lwt_result_stdlib/.tezos_lwt_result_stdlib.objs/byte -I src/lib_lwt_result_stdlib/bare/functor_outputs/.bare_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/bare/sigs/.bare_sigs.objs/byte -I src/lib_lwt_result_stdlib/bare/structs/.bare_structs.objs/byte -I src/lib_lwt_result_stdlib/traced/functor_outputs/.traced_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/traced/sigs/.traced_sigs.objs/byte -I src/lib_lwt_result_stdlib/traced/structs/.traced_structs.objs/byte -I src/lib_micheline/.tezos_micheline.objs/byte -I src/lib_rpc/.tezos_rpc.objs/byte -I src/lib_rpc_http/.tezos_rpc_http.objs/byte -I src/lib_rpc_http/.tezos_rpc_http_server.objs/byte -I src/lib_stdlib/.tezos_stdlib.objs/byte -I src/lib_stdlib_unix/.tezos_stdlib_unix.objs/byte -I src/lib_test/.tezos_test_helpers.objs/byte -no-alias-deps -open Src_lib_rpc_http_test_tezt_lib -o src/lib_rpc_http/test/.src_lib_rpc_http_test_tezt_lib.objs/byte/src_lib_rpc_http_test_tezt_lib__Test_rpc_http.cmo -c -impl src/lib_rpc_http/test/test_rpc_http.ml)
- File "src/lib_rpc_http/test/test_rpc_http.ml", line 43, characters 4-14:
- 43 |     Gen.oneofl
-          ^^^^^^^^^^
- Alert deprecated: QCheck2.Gen.oneofl
- Use [oneof_list] instead
- File "src/lib_rpc_http/test/test_rpc_http.ml", line 127, characters 6-12:
- 127 |       oneofl [p; RPC_server.Acl.put_policy (searched_for, searched_acl) p]
-             ^^^^^^
- Alert deprecated: QCheck2.Gen.oneofl
- Use [oneof_list] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -open Tezt_core -open Tezt_core.Base -open Tezos_base.TzPervasives -open Tezos_stdlib -open Tezos_test_helpers -open Tezos_base_test_helpers -open Tezos_rpc_http_server -open Octez_alcotezt -g -O3 -I src/lib_rpc_http/test/.src_lib_rpc_http_test_tezt_lib.objs/byte -I src/lib_rpc_http/test/.src_lib_rpc_http_test_tezt_lib.objs/native -I /home/opam/.opam/4.14/lib/aches -I /home/opam/.opam/4.14/lib/aches-lwt -I /home/opam/.opam/4.14/lib/aches-lwt/lache -I /home/opam/.opam/4.14/lib/aches/rache -I /home/opam/.opam/4.14/lib/aches/vache -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bigstring -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bls12-381 -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cohttp -I /home/opam/.opam/4.14/lib/cohttp-lwt -I /home/opam/.opam/4.14/lib/cohttp-lwt-unix -I /home/opam/.opam/4.14/lib/conduit -I /home/opam/.opam/4.14/lib/conduit-lwt -I /home/opam/.opam/4.14/lib/conduit-lwt-unix -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/ctypes -I /home/opam/.opam/4.14/lib/ctypes/stubs -I /home/opam/.opam/4.14/lib/ctypes_stubs_js -I /home/opam/.opam/4.14/lib/data-encoding -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/ezjsonm -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/hacl-star -I /home/opam/.opam/4.14/lib/hacl-star-raw -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/integers -I /home/opam/.opam/4.14/lib/integers_stubs_js -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/ipaddr-sexp -I /home/opam/.opam/4.14/lib/ipaddr/unix -I /home/opam/.opam/4.14/lib/jane-street-headers -I /home/opam/.opam/4.14/lib/json-data-encoding -I /home/opam/.opam/4.14/lib/json-data-encoding-bson -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/logs/fmt -I /home/opam/.opam/4.14/lib/logs/lwt -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt-canceler -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/magic-mime -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/clock/os -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/octez-alcotezt -I /home/opam/.opam/4.14/lib/ppx_compare/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_enumerate/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_expect/collector -I /home/opam/.opam/4.14/lib/ppx_expect/common -I /home/opam/.opam/4.14/lib/ppx_expect/config -I /home/opam/.opam/4.14/lib/ppx_expect/config_types -I /home/opam/.opam/4.14/lib/ppx_hash/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_here/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_inline_test/config -I /home/opam/.opam/4.14/lib/ppx_inline_test/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/pure-splitmix -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/resto -I /home/opam/.opam/4.14/lib/resto-acl -I /home/opam/.opam/4.14/lib/resto-cohttp -I /home/opam/.opam/4.14/lib/resto-cohttp-server -I /home/opam/.opam/4.14/lib/resto-directory -I /home/opam/.opam/4.14/lib/ringo -I /home/opam/.opam/4.14/lib/secp256k1-internal -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/seqes -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/tezt/core -I /home/opam/.opam/4.14/lib/time_now -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uri-sexp -I /home/opam/.opam/4.14/lib/uri/services -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zarith_stubs_js -I src/lib_base/.tezos_base.objs/byte -I src/lib_base/.tezos_base.objs/native -I src/lib_base/test_helpers/.tezos_base_test_helpers.objs/byte -I src/lib_base/test_helpers/.tezos_base_test_helpers.objs/native -I src/lib_base/unix/.tezos_base_unix.objs/byte -I src/lib_base/unix/.tezos_base_unix.objs/native -I src/lib_bls12_381_signature/.bls12_381_signature.objs/byte -I src/lib_bls12_381_signature/.bls12_381_signature.objs/native -I src/lib_crypto/.tezos_crypto.objs/byte -I src/lib_crypto/.tezos_crypto.objs/native -I src/lib_error_monad/.tezos_error_monad.objs/byte -I src/lib_error_monad/.tezos_error_monad.objs/native -I src/lib_event_logging/.tezos_event_logging.objs/byte -I src/lib_event_logging/.tezos_event_logging.objs/native -I src/lib_event_logging/test_helpers/.tezos_event_logging_test_helpers.objs/byte -I src/lib_event_logging/test_helpers/.tezos_event_logging_test_helpers.objs/native -I src/lib_hacl/.tezos_hacl.objs/byte -I src/lib_hacl/.tezos_hacl.objs/native -I src/lib_lwt_result_stdlib/.tezos_lwt_result_stdlib.objs/byte -I src/lib_lwt_result_stdlib/.tezos_lwt_result_stdlib.objs/native -I src/lib_lwt_result_stdlib/bare/functor_outputs/.bare_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/bare/functor_outputs/.bare_functor_outputs.objs/native -I src/lib_lwt_result_stdlib/bare/sigs/.bare_sigs.objs/byte -I src/lib_lwt_result_stdlib/bare/sigs/.bare_sigs.objs/native -I src/lib_lwt_result_stdlib/bare/structs/.bare_structs.objs/byte -I src/lib_lwt_result_stdlib/bare/structs/.bare_structs.objs/native -I src/lib_lwt_result_stdlib/traced/functor_outputs/.traced_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/traced/functor_outputs/.traced_functor_outputs.objs/native -I src/lib_lwt_result_stdlib/traced/sigs/.traced_sigs.objs/byte -I src/lib_lwt_result_stdlib/traced/sigs/.traced_sigs.objs/native -I src/lib_lwt_result_stdlib/traced/structs/.traced_structs.objs/byte -I src/lib_lwt_result_stdlib/traced/structs/.traced_structs.objs/native -I src/lib_micheline/.tezos_micheline.objs/byte -I src/lib_micheline/.tezos_micheline.objs/native -I src/lib_rpc/.tezos_rpc.objs/byte -I src/lib_rpc/.tezos_rpc.objs/native -I src/lib_rpc_http/.tezos_rpc_http.objs/byte -I src/lib_rpc_http/.tezos_rpc_http.objs/native -I src/lib_rpc_http/.tezos_rpc_http_server.objs/byte -I src/lib_rpc_http/.tezos_rpc_http_server.objs/native -I src/lib_stdlib/.tezos_stdlib.objs/byte -I src/lib_stdlib/.tezos_stdlib.objs/native -I src/lib_stdlib_unix/.tezos_stdlib_unix.objs/byte -I src/lib_stdlib_unix/.tezos_stdlib_unix.objs/native -I src/lib_test/.tezos_test_helpers.objs/byte -I src/lib_test/.tezos_test_helpers.objs/native -intf-suffix .ml -no-alias-deps -open Src_lib_rpc_http_test_tezt_lib -o src/lib_rpc_http/test/.src_lib_rpc_http_test_tezt_lib.objs/native/src_lib_rpc_http_test_tezt_lib__Test_rpc_http.cmx -c -impl src/lib_rpc_http/test/test_rpc_http.ml)
- File "src/lib_rpc_http/test/test_rpc_http.ml", line 43, characters 4-14:
- 43 |     Gen.oneofl
-          ^^^^^^^^^^
- Alert deprecated: QCheck2.Gen.oneofl
- Use [oneof_list] instead
- File "src/lib_rpc_http/test/test_rpc_http.ml", line 127, characters 6-12:
- 127 |       oneofl [p; RPC_server.Acl.put_policy (searched_for, searched_acl) p]
-             ^^^^^^
- Alert deprecated: QCheck2.Gen.oneofl
- Use [oneof_list] instead
- (cd _build/default/src/lib_expect_helper/test && .tezos_expect_helper_test.inline-tests/inline_test_runner_tezos_expect_helper_test.exe inline-test-runner tezos_expect_helper_test -source-tree-root ../../.. -diff-cmd - -verbose)
- File "src/lib_expect_helper/test/test.ml", line 28, characters 0-328: require_does_not_raise_err (0.000 sec)
- File "src/lib_expect_helper/test/test.ml", line 35, characters 0-155: require_does_not_raise_ok (0.000 sec)
- File "src/lib_expect_helper/test/test.ml", line 39, characters 0-119: require_does_raise_ok (0.000 sec)
- File "src/lib_expect_helper/test/test.ml", line 43, characters 0-259: require_does_raise_err (0.000 sec)
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -open Tezt_core -open Tezt_core.Base -open Tezos_base.TzPervasives -open Tezos_stdlib_unix -open Tezos_test_helpers -open Octez_alcotezt -g -bin-annot -I src/lib_context/test/.src_lib_context_test_tezt_lib.objs/byte -I /home/opam/.opam/4.14/lib/aches -I /home/opam/.opam/4.14/lib/aches-lwt -I /home/opam/.opam/4.14/lib/aches-lwt/lache -I /home/opam/.opam/4.14/lib/aches/rache -I /home/opam/.opam/4.14/lib/aches/vache -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bheap -I /home/opam/.opam/4.14/lib/bigstring -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bls12-381 -I /home/opam/.opam/4.14/lib/checkseum -I /home/opam/.opam/4.14/lib/checkseum/ocaml -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/ctypes -I /home/opam/.opam/4.14/lib/ctypes/stubs -I /home/opam/.opam/4.14/lib/ctypes_stubs_js -I /home/opam/.opam/4.14/lib/data-encoding -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/ezjsonm -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/hacl-star -I /home/opam/.opam/4.14/lib/hacl-star-raw -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/index -I /home/opam/.opam/4.14/lib/index/unix -I /home/opam/.opam/4.14/lib/integers -I /home/opam/.opam/4.14/lib/integers_stubs_js -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/ipaddr/unix -I /home/opam/.opam/4.14/lib/irmin -I /home/opam/.opam/4.14/lib/irmin-pack -I /home/opam/.opam/4.14/lib/irmin-pack/mem -I /home/opam/.opam/4.14/lib/irmin-pack/unix -I /home/opam/.opam/4.14/lib/irmin/data -I /home/opam/.opam/4.14/lib/irmin/mem -I /home/opam/.opam/4.14/lib/jane-street-headers -I /home/opam/.opam/4.14/lib/json-data-encoding -I /home/opam/.opam/4.14/lib/json-data-encoding-bson -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/logs/cli -I /home/opam/.opam/4.14/lib/logs/fmt -I /home/opam/.opam/4.14/lib/logs/threaded -I /home/opam/.opam/4.14/lib/lru -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt-canceler -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/clock/os -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocamlgraph -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/octez-alcotezt -I /home/opam/.opam/4.14/lib/optint -I /home/opam/.opam/4.14/lib/ppx_compare/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppx_enumerate/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_expect/collector -I /home/opam/.opam/4.14/lib/ppx_expect/common -I /home/opam/.opam/4.14/lib/ppx_expect/config -I /home/opam/.opam/4.14/lib/ppx_expect/config_types -I /home/opam/.opam/4.14/lib/ppx_hash/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_here/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_inline_test/config -I /home/opam/.opam/4.14/lib/ppx_inline_test/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_irmin/internal-lib -I /home/opam/.opam/4.14/lib/ppx_repr -I /home/opam/.opam/4.14/lib/ppx_repr/lib -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/progress -I /home/opam/.opam/4.14/lib/progress/engine -I /home/opam/.opam/4.14/lib/psq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/pure-splitmix -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/repr -I /home/opam/.opam/4.14/lib/resto -I /home/opam/.opam/4.14/lib/resto-directory -I /home/opam/.opam/4.14/lib/ringo -I /home/opam/.opam/4.14/lib/rusage -I /home/opam/.opam/4.14/lib/secp256k1-internal -I /home/opam/.opam/4.14/lib/semaphore-compat -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/seqes -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/terminal -I /home/opam/.opam/4.14/lib/tezt/core -I /home/opam/.opam/4.14/lib/time_now -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/vector -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zarith_stubs_js -I src/lib_base/.tezos_base.objs/byte -I src/lib_base/unix/.tezos_base_unix.objs/byte -I src/lib_bls12_381_signature/.bls12_381_signature.objs/byte -I src/lib_context/disk/.tezos_context_disk.objs/byte -I src/lib_context/dump/.tezos_context_dump.objs/byte -I src/lib_context/encoding/.tezos_context_encoding.objs/byte -I src/lib_context/helpers/.tezos_context_helpers.objs/byte -I src/lib_context/memory/.tezos_context_memory.objs/byte -I src/lib_context/merkle_proof_encoding/.tezos_context_merkle_proof_encoding.objs/byte -I src/lib_context/sigs/.tezos_context_sigs.objs/byte -I src/lib_crypto/.tezos_crypto.objs/byte -I src/lib_error_monad/.tezos_error_monad.objs/byte -I src/lib_event_logging/.tezos_event_logging.objs/byte -I src/lib_hacl/.tezos_hacl.objs/byte -I src/lib_lwt_result_stdlib/.tezos_lwt_result_stdlib.objs/byte -I src/lib_lwt_result_stdlib/bare/functor_outputs/.bare_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/bare/sigs/.bare_sigs.objs/byte -I src/lib_lwt_result_stdlib/bare/structs/.bare_structs.objs/byte -I src/lib_lwt_result_stdlib/traced/functor_outputs/.traced_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/traced/sigs/.traced_sigs.objs/byte -I src/lib_lwt_result_stdlib/traced/structs/.traced_structs.objs/byte -I src/lib_micheline/.tezos_micheline.objs/byte -I src/lib_rpc/.tezos_rpc.objs/byte -I src/lib_stdlib/.tezos_stdlib.objs/byte -I src/lib_stdlib_unix/.tezos_stdlib_unix.objs/byte -I src/lib_test/.tezos_test_helpers.objs/byte -no-alias-deps -open Src_lib_context_test_tezt_lib -o src/lib_context/test/.src_lib_context_test_tezt_lib.objs/byte/src_lib_context_test_tezt_lib__Test_merkle_proof.cmo -c -impl src/lib_context/test/test_merkle_proof.ml)
- File "src/lib_context/test/test_merkle_proof.ml", line 78, characters 8-17:
- 78 |         flatten_l
-              ^^^^^^^^^
- Alert deprecated: flatten_l
- Use [flatten_list] instead
- File "src/lib_context/test/test_merkle_proof.ml", line 91, characters 21-32:
- 91 |       let* segment = list_repeat size (int_bound 4) in
-                           ^^^^^^^^^^^
- Alert deprecated: list_repeat
- Use [list_size (return i) g] instead
- File "src/lib_context/test/test_merkle_proof.ml", line 106, characters 23-34:
- 106 |              let+ xs = list_repeat size (pair step (tree (depth - 1, width))) in
-                              ^^^^^^^^^^^
- Alert deprecated: list_repeat
- Use [list_size (return i) g] instead
- File "src/lib_context/test/test_merkle_proof.ml", line 135, characters 15-26:
- 135 |                list_repeat size @@ pair step (tree (depth - 1, width))
-                      ^^^^^^^^^^^
- Alert deprecated: list_repeat
- Use [list_size (return i) g] instead
- File "src/lib_context/test/test_merkle_proof.ml", line 148, characters 6-12:
- 148 |       oneofl [`Value h; `Node h]
-             ^^^^^^
- Alert deprecated: oneofl
- Use [oneof_list] instead
- File "src/lib_context/test/test_merkle_proof.ml", line 167, characters 24-35:
- 167 |              let+ sks = list_repeat size @@ pair step kinded_hash in
-                               ^^^^^^^^^^^
- Alert deprecated: list_repeat
- Use [list_size (return i) g] instead
- File "src/lib_context/test/test_merkle_proof.ml", line 179, characters 18-29:
- 179 |         let+ xs = list_repeat size elt in
-                         ^^^^^^^^^^^
- Alert deprecated: list_repeat
- Use [list_size (return i) g] instead
- File "src/lib_context/test/test_merkle_proof.ml", line 295, characters 8-17:
- 295 |         flatten_l
-               ^^^^^^^^^
- Alert deprecated: flatten_l
- Use [flatten_list] instead
- File "src/lib_context/test/test_merkle_proof.ml", line 308, characters 21-32:
- 308 |       let* segment = list_repeat size (int_bound 1) in
-                            ^^^^^^^^^^^
- Alert deprecated: list_repeat
- Use [list_size (return i) g] instead
- File "src/lib_context/test/test_merkle_proof.ml", line 323, characters 23-34:
- 323 |              let+ xs = list_repeat size (pair step (tree (depth - 1, width))) in
-                              ^^^^^^^^^^^
- Alert deprecated: list_repeat
- Use [list_size (return i) g] instead
- File "src/lib_context/test/test_merkle_proof.ml", line 352, characters 15-26:
- 352 |                list_repeat size @@ pair step (tree (depth - 1, width))
-                      ^^^^^^^^^^^
- Alert deprecated: list_repeat
- Use [list_size (return i) g] instead
- File "src/lib_context/test/test_merkle_proof.ml", line 365, characters 6-12:
- 365 |       oneofl [`Value h; `Node h]
-             ^^^^^^
- Alert deprecated: oneofl
- Use [oneof_list] instead
- File "src/lib_context/test/test_merkle_proof.ml", line 384, characters 24-35:
- 384 |              let+ sks = list_repeat size @@ pair step kinded_hash in
-                               ^^^^^^^^^^^
- Alert deprecated: list_repeat
- Use [list_size (return i) g] instead
- File "src/lib_context/test/test_merkle_proof.ml", line 396, characters 18-29:
- 396 |         let+ xs = list_repeat size elt in
-                         ^^^^^^^^^^^
- Alert deprecated: list_repeat
- Use [list_size (return i) g] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -open Tezt_core -open Tezt_core.Base -open Tezos_base.TzPervasives -open Tezos_stdlib_unix -open Tezos_test_helpers -open Octez_alcotezt -g -O3 -I src/lib_context/test/.src_lib_context_test_tezt_lib.objs/byte -I src/lib_context/test/.src_lib_context_test_tezt_lib.objs/native -I /home/opam/.opam/4.14/lib/aches -I /home/opam/.opam/4.14/lib/aches-lwt -I /home/opam/.opam/4.14/lib/aches-lwt/lache -I /home/opam/.opam/4.14/lib/aches/rache -I /home/opam/.opam/4.14/lib/aches/vache -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/base64 -I /home/opam/.opam/4.14/lib/bheap -I /home/opam/.opam/4.14/lib/bigstring -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bls12-381 -I /home/opam/.opam/4.14/lib/checkseum -I /home/opam/.opam/4.14/lib/checkseum/ocaml -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/ctypes -I /home/opam/.opam/4.14/lib/ctypes/stubs -I /home/opam/.opam/4.14/lib/ctypes_stubs_js -I /home/opam/.opam/4.14/lib/data-encoding -I /home/opam/.opam/4.14/lib/digestif -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/ezjsonm -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/hacl-star -I /home/opam/.opam/4.14/lib/hacl-star-raw -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/index -I /home/opam/.opam/4.14/lib/index/unix -I /home/opam/.opam/4.14/lib/integers -I /home/opam/.opam/4.14/lib/integers_stubs_js -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/ipaddr/unix -I /home/opam/.opam/4.14/lib/irmin -I /home/opam/.opam/4.14/lib/irmin-pack -I /home/opam/.opam/4.14/lib/irmin-pack/mem -I /home/opam/.opam/4.14/lib/irmin-pack/unix -I /home/opam/.opam/4.14/lib/irmin/data -I /home/opam/.opam/4.14/lib/irmin/mem -I /home/opam/.opam/4.14/lib/jane-street-headers -I /home/opam/.opam/4.14/lib/json-data-encoding -I /home/opam/.opam/4.14/lib/json-data-encoding-bson -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/logs -I /home/opam/.opam/4.14/lib/logs/cli -I /home/opam/.opam/4.14/lib/logs/fmt -I /home/opam/.opam/4.14/lib/logs/threaded -I /home/opam/.opam/4.14/lib/lru -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt-canceler -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/clock/os -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/common -I /home/opam/.opam/4.14/lib/ocaml-compiler-libs/shadow -I /home/opam/.opam/4.14/lib/ocaml/compiler-libs -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocamlgraph -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/octez-alcotezt -I /home/opam/.opam/4.14/lib/optint -I /home/opam/.opam/4.14/lib/ppx_compare/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_derivers -I /home/opam/.opam/4.14/lib/ppx_enumerate/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_expect/collector -I /home/opam/.opam/4.14/lib/ppx_expect/common -I /home/opam/.opam/4.14/lib/ppx_expect/config -I /home/opam/.opam/4.14/lib/ppx_expect/config_types -I /home/opam/.opam/4.14/lib/ppx_hash/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_here/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_inline_test/config -I /home/opam/.opam/4.14/lib/ppx_inline_test/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_irmin/internal-lib -I /home/opam/.opam/4.14/lib/ppx_repr -I /home/opam/.opam/4.14/lib/ppx_repr/lib -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ppxlib -I /home/opam/.opam/4.14/lib/ppxlib/ast -I /home/opam/.opam/4.14/lib/ppxlib/astlib -I /home/opam/.opam/4.14/lib/ppxlib/print_diff -I /home/opam/.opam/4.14/lib/ppxlib/stdppx -I /home/opam/.opam/4.14/lib/ppxlib/traverse_builtins -I /home/opam/.opam/4.14/lib/progress -I /home/opam/.opam/4.14/lib/progress/engine -I /home/opam/.opam/4.14/lib/psq -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/pure-splitmix -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/repr -I /home/opam/.opam/4.14/lib/resto -I /home/opam/.opam/4.14/lib/resto-directory -I /home/opam/.opam/4.14/lib/ringo -I /home/opam/.opam/4.14/lib/rusage -I /home/opam/.opam/4.14/lib/secp256k1-internal -I /home/opam/.opam/4.14/lib/semaphore-compat -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/seqes -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/terminal -I /home/opam/.opam/4.14/lib/tezt/core -I /home/opam/.opam/4.14/lib/time_now -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uucp -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/vector -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zarith_stubs_js -I src/lib_base/.tezos_base.objs/byte -I src/lib_base/.tezos_base.objs/native -I src/lib_base/unix/.tezos_base_unix.objs/byte -I src/lib_base/unix/.tezos_base_unix.objs/native -I src/lib_bls12_381_signature/.bls12_381_signature.objs/byte -I src/lib_bls12_381_signature/.bls12_381_signature.objs/native -I src/lib_context/disk/.tezos_context_disk.objs/byte -I src/lib_context/disk/.tezos_context_disk.objs/native -I src/lib_context/dump/.tezos_context_dump.objs/byte -I src/lib_context/dump/.tezos_context_dump.objs/native -I src/lib_context/encoding/.tezos_context_encoding.objs/byte -I src/lib_context/encoding/.tezos_context_encoding.objs/native -I src/lib_context/helpers/.tezos_context_helpers.objs/byte -I src/lib_context/helpers/.tezos_context_helpers.objs/native -I src/lib_context/memory/.tezos_context_memory.objs/byte -I src/lib_context/memory/.tezos_context_memory.objs/native -I src/lib_context/merkle_proof_encoding/.tezos_context_merkle_proof_encoding.objs/byte -I src/lib_context/merkle_proof_encoding/.tezos_context_merkle_proof_encoding.objs/native -I src/lib_context/sigs/.tezos_context_sigs.objs/byte -I src/lib_context/sigs/.tezos_context_sigs.objs/native -I src/lib_crypto/.tezos_crypto.objs/byte -I src/lib_crypto/.tezos_crypto.objs/native -I src/lib_error_monad/.tezos_error_monad.objs/byte -I src/lib_error_monad/.tezos_error_monad.objs/native -I src/lib_event_logging/.tezos_event_logging.objs/byte -I src/lib_event_logging/.tezos_event_logging.objs/native -I src/lib_hacl/.tezos_hacl.objs/byte -I src/lib_hacl/.tezos_hacl.objs/native -I src/lib_lwt_result_stdlib/.tezos_lwt_result_stdlib.objs/byte -I src/lib_lwt_result_stdlib/.tezos_lwt_result_stdlib.objs/native -I src/lib_lwt_result_stdlib/bare/functor_outputs/.bare_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/bare/functor_outputs/.bare_functor_outputs.objs/native -I src/lib_lwt_result_stdlib/bare/sigs/.bare_sigs.objs/byte -I src/lib_lwt_result_stdlib/bare/sigs/.bare_sigs.objs/native -I src/lib_lwt_result_stdlib/bare/structs/.bare_structs.objs/byte -I src/lib_lwt_result_stdlib/bare/structs/.bare_structs.objs/native -I src/lib_lwt_result_stdlib/traced/functor_outputs/.traced_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/traced/functor_outputs/.traced_functor_outputs.objs/native -I src/lib_lwt_result_stdlib/traced/sigs/.traced_sigs.objs/byte -I src/lib_lwt_result_stdlib/traced/sigs/.traced_sigs.objs/native -I src/lib_lwt_result_stdlib/traced/structs/.traced_structs.objs/byte -I src/lib_lwt_result_stdlib/traced/structs/.traced_structs.objs/native -I src/lib_micheline/.tezos_micheline.objs/byte -I src/lib_micheline/.tezos_micheline.objs/native -I src/lib_rpc/.tezos_rpc.objs/byte -I src/lib_rpc/.tezos_rpc.objs/native -I src/lib_stdlib/.tezos_stdlib.objs/byte -I src/lib_stdlib/.tezos_stdlib.objs/native -I src/lib_stdlib_unix/.tezos_stdlib_unix.objs/byte -I src/lib_stdlib_unix/.tezos_stdlib_unix.objs/native -I src/lib_test/.tezos_test_helpers.objs/byte -I src/lib_test/.tezos_test_helpers.objs/native -intf-suffix .ml -no-alias-deps -open Src_lib_context_test_tezt_lib -o src/lib_context/test/.src_lib_context_test_tezt_lib.objs/native/src_lib_context_test_tezt_lib__Test_merkle_proof.cmx -c -impl src/lib_context/test/test_merkle_proof.ml)
- File "src/lib_context/test/test_merkle_proof.ml", line 78, characters 8-17:
- 78 |         flatten_l
-              ^^^^^^^^^
- Alert deprecated: flatten_l
- Use [flatten_list] instead
- File "src/lib_context/test/test_merkle_proof.ml", line 91, characters 21-32:
- 91 |       let* segment = list_repeat size (int_bound 4) in
-                           ^^^^^^^^^^^
- Alert deprecated: list_repeat
- Use [list_size (return i) g] instead
- File "src/lib_context/test/test_merkle_proof.ml", line 106, characters 23-34:
- 106 |              let+ xs = list_repeat size (pair step (tree (depth - 1, width))) in
-                              ^^^^^^^^^^^
- Alert deprecated: list_repeat
- Use [list_size (return i) g] instead
- File "src/lib_context/test/test_merkle_proof.ml", line 135, characters 15-26:
- 135 |                list_repeat size @@ pair step (tree (depth - 1, width))
-                      ^^^^^^^^^^^
- Alert deprecated: list_repeat
- Use [list_size (return i) g] instead
- File "src/lib_context/test/test_merkle_proof.ml", line 148, characters 6-12:
- 148 |       oneofl [`Value h; `Node h]
-             ^^^^^^
- Alert deprecated: oneofl
- Use [oneof_list] instead
- File "src/lib_context/test/test_merkle_proof.ml", line 167, characters 24-35:
- 167 |              let+ sks = list_repeat size @@ pair step kinded_hash in
-                               ^^^^^^^^^^^
- Alert deprecated: list_repeat
- Use [list_size (return i) g] instead
- File "src/lib_context/test/test_merkle_proof.ml", line 179, characters 18-29:
- 179 |         let+ xs = list_repeat size elt in
-                         ^^^^^^^^^^^
- Alert deprecated: list_repeat
- Use [list_size (return i) g] instead
- File "src/lib_context/test/test_merkle_proof.ml", line 295, characters 8-17:
- 295 |         flatten_l
-               ^^^^^^^^^
- Alert deprecated: flatten_l
- Use [flatten_list] instead
- File "src/lib_context/test/test_merkle_proof.ml", line 308, characters 21-32:
- 308 |       let* segment = list_repeat size (int_bound 1) in
-                            ^^^^^^^^^^^
- Alert deprecated: list_repeat
- Use [list_size (return i) g] instead
- File "src/lib_context/test/test_merkle_proof.ml", line 323, characters 23-34:
- 323 |              let+ xs = list_repeat size (pair step (tree (depth - 1, width))) in
-                              ^^^^^^^^^^^
- Alert deprecated: list_repeat
- Use [list_size (return i) g] instead
- File "src/lib_context/test/test_merkle_proof.ml", line 352, characters 15-26:
- 352 |                list_repeat size @@ pair step (tree (depth - 1, width))
-                      ^^^^^^^^^^^
- Alert deprecated: list_repeat
- Use [list_size (return i) g] instead
- File "src/lib_context/test/test_merkle_proof.ml", line 365, characters 6-12:
- 365 |       oneofl [`Value h; `Node h]
-             ^^^^^^
- Alert deprecated: oneofl
- Use [oneof_list] instead
- File "src/lib_context/test/test_merkle_proof.ml", line 384, characters 24-35:
- 384 |              let+ sks = list_repeat size @@ pair step kinded_hash in
-                               ^^^^^^^^^^^
- Alert deprecated: list_repeat
- Use [list_size (return i) g] instead
- File "src/lib_context/test/test_merkle_proof.ml", line 396, characters 18-29:
- 396 |         let+ xs = list_repeat size elt in
-                         ^^^^^^^^^^^
- Alert deprecated: list_repeat
- Use [list_size (return i) g] instead
- (cd _build/default/src/lib_error_monad/test && ./main.exe)
- [22:45:31.599] [SUCCESS] (1/4) splitted: splitted (unregistered(binary))
- [22:45:31.599] [SUCCESS] (2/4) splitted: splitted (unregistered(json))
- [22:45:31.599] [SUCCESS] (3/4) splitted: splitted (registered)
- [22:45:31.599] [SUCCESS] (4/4) error-registration: extract-info (extract-infos)
- (cd _build/default/src/lib_version/test && ./main.exe)
- [22:45:31.618] [SUCCESS] (1/1) version: parser (versions)
- (cd _build/default/src/lib_micheline/test && .test_diff.inline-tests/inline_test_runner_test_diff.exe inline-test-runner test_diff -source-tree-root ../../.. -diff-cmd - -verbose)
- File "src/lib_micheline/test/test_diff.ml", line 47, characters 0-386: For identical expressions, the diff is None. (0.000 sec)
- File "src/lib_micheline/test/test_diff.ml", line 57, characters 0-163: For ints the comment contains changed value. (0.001 sec)
- File "src/lib_micheline/test/test_diff.ml", line 63, characters 0-186: For strings the comment contains changed value. (0.000 sec)
- File "src/lib_micheline/test/test_diff.ml", line 69, characters 0-178: For prims the comment contains changed prim name. (0.000 sec)
- File "src/lib_micheline/test/test_diff.ml", line 75, characters 0-174: Changed Seq elements are put in comments. (0.000 sec)
- File "src/lib_micheline/test/test_diff.ml", line 79, characters 0-282: Elements added in current are marked with '+'. (0.000 sec)
- File "src/lib_micheline/test/test_diff.ml", line 87, characters 0-284: Elements removed in current are marked with '-'. (0.000 sec)
- File "src/lib_micheline/test/test_diff.ml", line 95, characters 0-330: Reordered elements appear as just changed. (0.000 sec)
- File "src/lib_micheline/test/test_diff.ml", line 104, characters 0-307: Changed values are marked with '->'. (0.000 sec)
- File "src/lib_micheline/test/test_diff.ml", line 113, characters 0-205: Prim arguments removed in current are marked with '-'. (0.000 sec)
- File "src/lib_micheline/test/test_diff.ml", line 118, characters 0-264: Prim arguments added in current are marked with '+'. (0.000 sec)
- File "src/lib_micheline/test/test_diff.ml", line 126, characters 0-256: Annotations should be preserved as in previous version. (0.000 sec)
- File "src/lib_micheline/test/test_diff.ml", line 136, characters 0-165: Differences in annotations are ignored. (0.000 sec)
- (cd _build/default/src/lib_micheline/test && .test_parser.inline-tests/inline_test_runner_test_parser.exe inline-test-runner test_parser -source-tree-root ../../.. -diff-cmd - -verbose)
- File "src/lib_micheline/test/test_parser.ml", line 76, characters 0-5433: Basic tokenizing (0.002 sec)
- File "src/lib_micheline/test/test_parser.ml", line 280, characters 0-1000: test_one_line_contract (0.001 sec)
- File "src/lib_micheline/test/test_parser.ml", line 312, characters 0-1633: test_condition_contract (0.000 sec)
- File "src/lib_micheline/test/test_parser.ml", line 420, characters 0-1600: test_basic_parsing (0.000 sec)
- File "src/lib_micheline/test/test_parser.ml", line 462, characters 0-319: test_condition_contract_parsing (0.001 sec)
- File "src/lib_micheline/test/test_parser.ml", line 470, characters 0-841: test_list_append_parsing (0.000 sec)
- File "src/lib_micheline/test/test_parser.ml", line 511, characters 0-283: test_parses_expression (0.000 sec)
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -open Tezos_base.TzPervasives -open Tezos_gossipsub -open Tezos_test_helpers -g -bin-annot -I src/lib_gossipsub/test/.test_gossipsub.eobjs/byte -I /home/opam/.opam/4.14/lib/aches -I /home/opam/.opam/4.14/lib/aches-lwt -I /home/opam/.opam/4.14/lib/aches-lwt/lache -I /home/opam/.opam/4.14/lib/aches/rache -I /home/opam/.opam/4.14/lib/aches/vache -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bigstring -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bls12-381 -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/ctypes -I /home/opam/.opam/4.14/lib/ctypes/stubs -I /home/opam/.opam/4.14/lib/ctypes_stubs_js -I /home/opam/.opam/4.14/lib/data-encoding -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/ezjsonm -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/hacl-star -I /home/opam/.opam/4.14/lib/hacl-star-raw -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/integers -I /home/opam/.opam/4.14/lib/integers_stubs_js -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/ipaddr/unix -I /home/opam/.opam/4.14/lib/jane-street-headers -I /home/opam/.opam/4.14/lib/json-data-encoding -I /home/opam/.opam/4.14/lib/json-data-encoding-bson -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt-canceler -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/clock/os -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/ppx_compare/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppx_enumerate/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_expect/collector -I /home/opam/.opam/4.14/lib/ppx_expect/common -I /home/opam/.opam/4.14/lib/ppx_expect/config -I /home/opam/.opam/4.14/lib/ppx_expect/config_types -I /home/opam/.opam/4.14/lib/ppx_hash/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_here/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_inline_test/config -I /home/opam/.opam/4.14/lib/ppx_inline_test/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/pure-splitmix -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/resto -I /home/opam/.opam/4.14/lib/resto-directory -I /home/opam/.opam/4.14/lib/ringo -I /home/opam/.opam/4.14/lib/secp256k1-internal -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/seqes -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/tezt -I /home/opam/.opam/4.14/lib/tezt/core -I /home/opam/.opam/4.14/lib/time_now -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zarith_stubs_js -I src/lib_base/.tezos_base.objs/byte -I src/lib_base/unix/.tezos_base_unix.objs/byte -I src/lib_bls12_381_signature/.bls12_381_signature.objs/byte -I src/lib_crypto/.tezos_crypto.objs/byte -I src/lib_error_monad/.tezos_error_monad.objs/byte -I src/lib_event_logging/.tezos_event_logging.objs/byte -I src/lib_gossipsub/.tezos_gossipsub.objs/byte -I src/lib_hacl/.tezos_hacl.objs/byte -I src/lib_lwt_result_stdlib/.tezos_lwt_result_stdlib.objs/byte -I src/lib_lwt_result_stdlib/bare/functor_outputs/.bare_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/bare/sigs/.bare_sigs.objs/byte -I src/lib_lwt_result_stdlib/bare/structs/.bare_structs.objs/byte -I src/lib_lwt_result_stdlib/traced/functor_outputs/.traced_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/traced/sigs/.traced_sigs.objs/byte -I src/lib_lwt_result_stdlib/traced/structs/.traced_structs.objs/byte -I src/lib_micheline/.tezos_micheline.objs/byte -I src/lib_rpc/.tezos_rpc.objs/byte -I src/lib_stdlib/.tezos_stdlib.objs/byte -I src/lib_stdlib_unix/.tezos_stdlib_unix.objs/byte -I src/lib_test/.tezos_test_helpers.objs/byte -I src/lib_version/.tezos_version.objs/byte -I src/lib_version/parser/.tezos_version_parser.objs/byte -no-alias-deps -open Dune__exe -o src/lib_gossipsub/test/.test_gossipsub.eobjs/byte/dune__exe__Test_pbt.cmo -c -impl src/lib_gossipsub/test/test_pbt.ml)
- File "src/lib_gossipsub/test/test_pbt.ml", line 152, characters 9-20:
- 152 |       |> M.flatten_l
-                ^^^^^^^^^^^
- Alert deprecated: Dune__exe.Gossipsub_pbt_generators.M.flatten_l
- Use [flatten_list] instead
- File "src/lib_gossipsub/test/test_pbt.ml", line 183, characters 9-20:
- 183 |       |> M.flatten_l
-                ^^^^^^^^^^^
- Alert deprecated: Dune__exe.Gossipsub_pbt_generators.M.flatten_l
- Use [flatten_list] instead
- File "src/lib_gossipsub/test/test_pbt.ml", line 501, characters 18-36:
- 501 |   let gen_topic = QCheck2.Gen.oneofl ["A"; "B"; "C"; "D"; "E"; "F"; "G"]
-                         ^^^^^^^^^^^^^^^^^^
- Alert deprecated: QCheck2.Gen.oneofl
- Use [oneof_list] instead
- File "src/lib_gossipsub/test/test_pbt.ml", line 690, characters 19-27:
- 690 |     let gen_peer = M.oneofl all_peers in
-                          ^^^^^^^^
- Alert deprecated: Dune__exe.Gossipsub_pbt_generators.M.oneofl
- Use [oneof_list] instead
- File "src/lib_gossipsub/test/test_pbt.ml", line 692, characters 6-14:
- 692 |       M.oneofl ["topicA"; "topicB"; "topicC"; "topicD"; "topicE"]
-             ^^^^^^^^
- Alert deprecated: Dune__exe.Gossipsub_pbt_generators.M.oneofl
- Use [oneof_list] instead
- File "src/lib_gossipsub/test/test_pbt.ml", line 694, characters 25-33:
- 694 |     let gen_message_id = M.oneofl [42; 43; 44] in
-                                ^^^^^^^^
- Alert deprecated: Dune__exe.Gossipsub_pbt_generators.M.oneofl
- Use [oneof_list] instead
- File "src/lib_gossipsub/test/test_pbt.ml", line 1214, characters 27-35:
- 1214 |         let gen_all_peer = M.oneofl all_peers in
-                                   ^^^^^^^^
- Alert deprecated: Dune__exe.Gossipsub_pbt_generators.M.oneofl
- Use [oneof_list] instead
- File "src/lib_gossipsub/test/test_pbt.ml", line 1215, characters 35-43:
- 1215 |         let gen_publishing_peers = M.oneofl publishing_peers in
-                                           ^^^^^^^^
- Alert deprecated: Dune__exe.Gossipsub_pbt_generators.M.oneofl
- Use [oneof_list] instead
- File "src/lib_gossipsub/test/test_pbt.ml", line 1221, characters 24-32:
- 1221 |         let gen_topic = M.oneofl all_topics in
-                                ^^^^^^^^
- Alert deprecated: Dune__exe.Gossipsub_pbt_generators.M.oneofl
- Use [oneof_list] instead
- File "src/lib_gossipsub/test/test_pbt.ml", line 1558, characters 11-22:
- 1558 |         |> M.flatten_l
-                   ^^^^^^^^^^^
- Alert deprecated: Dune__exe.Gossipsub_pbt_generators.M.flatten_l
- Use [flatten_list] instead
- File "src/lib_gossipsub/test/test_pbt.ml", line 1894, characters 23-31:
- 1894 |         let gen_peer = M.oneofl all_peers in
-                               ^^^^^^^^
- Alert deprecated: Dune__exe.Gossipsub_pbt_generators.M.oneofl
- Use [oneof_list] instead
- File "src/lib_gossipsub/test/test_pbt.ml", line 1900, characters 24-32:
- 1900 |         let gen_topic = M.oneofl all_topics in
-                                ^^^^^^^^
- Alert deprecated: Dune__exe.Gossipsub_pbt_generators.M.oneofl
- Use [oneof_list] instead
- File "src/lib_gossipsub/test/test_pbt.ml", line 2087, characters 23-31:
- 2087 |         let gen_peer = M.oneofl peers in
-                               ^^^^^^^^
- Alert deprecated: Dune__exe.Gossipsub_pbt_generators.M.oneofl
- Use [oneof_list] instead
- File "src/lib_gossipsub/test/test_pbt.ml", line 2088, characters 24-32:
- 2088 |         let gen_topic = M.oneofl topics in
-                                ^^^^^^^^
- Alert deprecated: Dune__exe.Gossipsub_pbt_generators.M.oneofl
- Use [oneof_list] instead
- (cd _build/default/src/lib_micheline && .tezos_micheline.inline-tests/inline_test_runner_tezos_micheline.exe inline-test-runner tezos_micheline -source-tree-root ../.. -diff-cmd - -verbose)
- File "src/lib_micheline/micheline.ml", line 433, characters 4-140: strip_locations (0.022 sec)
- File "src/lib_micheline/micheline.ml", line 437, characters 4-170: extract_locations (0.020 sec)
- File "src/lib_micheline/micheline.ml", line 444, characters 4-203: inject_locations (0.018 sec)
- File "src/lib_micheline/micheline.ml", line 451, characters 4-168: map (0.017 sec)
- File "src/lib_micheline/micheline.ml", line 458, characters 4-207: map_node (0.017 sec)
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -open Tezos_base.TzPervasives -open Tezos_gossipsub -open Tezos_test_helpers -g -O3 -I src/lib_gossipsub/test/.test_gossipsub.eobjs/byte -I src/lib_gossipsub/test/.test_gossipsub.eobjs/native -I /home/opam/.opam/4.14/lib/aches -I /home/opam/.opam/4.14/lib/aches-lwt -I /home/opam/.opam/4.14/lib/aches-lwt/lache -I /home/opam/.opam/4.14/lib/aches/rache -I /home/opam/.opam/4.14/lib/aches/vache -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bigstring -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bls12-381 -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/ctypes -I /home/opam/.opam/4.14/lib/ctypes/stubs -I /home/opam/.opam/4.14/lib/ctypes_stubs_js -I /home/opam/.opam/4.14/lib/data-encoding -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/ezjsonm -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/hacl-star -I /home/opam/.opam/4.14/lib/hacl-star-raw -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/integers -I /home/opam/.opam/4.14/lib/integers_stubs_js -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/ipaddr/unix -I /home/opam/.opam/4.14/lib/jane-street-headers -I /home/opam/.opam/4.14/lib/json-data-encoding -I /home/opam/.opam/4.14/lib/json-data-encoding-bson -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt-canceler -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/clock/os -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/ppx_compare/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppx_enumerate/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_expect/collector -I /home/opam/.opam/4.14/lib/ppx_expect/common -I /home/opam/.opam/4.14/lib/ppx_expect/config -I /home/opam/.opam/4.14/lib/ppx_expect/config_types -I /home/opam/.opam/4.14/lib/ppx_hash/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_here/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_inline_test/config -I /home/opam/.opam/4.14/lib/ppx_inline_test/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/pure-splitmix -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/resto -I /home/opam/.opam/4.14/lib/resto-directory -I /home/opam/.opam/4.14/lib/ringo -I /home/opam/.opam/4.14/lib/secp256k1-internal -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/seqes -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/tezt -I /home/opam/.opam/4.14/lib/tezt/core -I /home/opam/.opam/4.14/lib/time_now -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zarith_stubs_js -I src/lib_base/.tezos_base.objs/byte -I src/lib_base/.tezos_base.objs/native -I src/lib_base/unix/.tezos_base_unix.objs/byte -I src/lib_base/unix/.tezos_base_unix.objs/native -I src/lib_bls12_381_signature/.bls12_381_signature.objs/byte -I src/lib_bls12_381_signature/.bls12_381_signature.objs/native -I src/lib_crypto/.tezos_crypto.objs/byte -I src/lib_crypto/.tezos_crypto.objs/native -I src/lib_error_monad/.tezos_error_monad.objs/byte -I src/lib_error_monad/.tezos_error_monad.objs/native -I src/lib_event_logging/.tezos_event_logging.objs/byte -I src/lib_event_logging/.tezos_event_logging.objs/native -I src/lib_gossipsub/.tezos_gossipsub.objs/byte -I src/lib_gossipsub/.tezos_gossipsub.objs/native -I src/lib_hacl/.tezos_hacl.objs/byte -I src/lib_hacl/.tezos_hacl.objs/native -I src/lib_lwt_result_stdlib/.tezos_lwt_result_stdlib.objs/byte -I src/lib_lwt_result_stdlib/.tezos_lwt_result_stdlib.objs/native -I src/lib_lwt_result_stdlib/bare/functor_outputs/.bare_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/bare/functor_outputs/.bare_functor_outputs.objs/native -I src/lib_lwt_result_stdlib/bare/sigs/.bare_sigs.objs/byte -I src/lib_lwt_result_stdlib/bare/sigs/.bare_sigs.objs/native -I src/lib_lwt_result_stdlib/bare/structs/.bare_structs.objs/byte -I src/lib_lwt_result_stdlib/bare/structs/.bare_structs.objs/native -I src/lib_lwt_result_stdlib/traced/functor_outputs/.traced_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/traced/functor_outputs/.traced_functor_outputs.objs/native -I src/lib_lwt_result_stdlib/traced/sigs/.traced_sigs.objs/byte -I src/lib_lwt_result_stdlib/traced/sigs/.traced_sigs.objs/native -I src/lib_lwt_result_stdlib/traced/structs/.traced_structs.objs/byte -I src/lib_lwt_result_stdlib/traced/structs/.traced_structs.objs/native -I src/lib_micheline/.tezos_micheline.objs/byte -I src/lib_micheline/.tezos_micheline.objs/native -I src/lib_rpc/.tezos_rpc.objs/byte -I src/lib_rpc/.tezos_rpc.objs/native -I src/lib_stdlib/.tezos_stdlib.objs/byte -I src/lib_stdlib/.tezos_stdlib.objs/native -I src/lib_stdlib_unix/.tezos_stdlib_unix.objs/byte -I src/lib_stdlib_unix/.tezos_stdlib_unix.objs/native -I src/lib_test/.tezos_test_helpers.objs/byte -I src/lib_test/.tezos_test_helpers.objs/native -I src/lib_version/.tezos_version.objs/byte -I src/lib_version/.tezos_version.objs/native -I src/lib_version/parser/.tezos_version_parser.objs/byte -I src/lib_version/parser/.tezos_version_parser.objs/native -intf-suffix .ml -no-alias-deps -open Dune__exe -o src/lib_gossipsub/test/.test_gossipsub.eobjs/native/dune__exe__Gossipsub_pbt_generators.cmx -c -impl src/lib_gossipsub/test/gossipsub_pbt_generators.ml)
- File "src/lib_gossipsub/test/gossipsub_pbt_generators.ml", line 163, characters 23-34:
- 163 |     and+ message_ids = list_repeat msg_count gen_message_id in
-                              ^^^^^^^^^^^
- Alert deprecated: M.list_repeat
- Use [list_size (return i) g] instead
- File "src/lib_gossipsub/test/gossipsub_pbt_generators.ml", line 169, characters 23-34:
- 169 |     and+ message_ids = list_repeat msg_count gen_message_id in
-                              ^^^^^^^^^^^
- Alert deprecated: M.list_repeat
- Use [list_size (return i) g] instead
- File "src/lib_gossipsub/test/gossipsub_pbt_generators.ml", line 181, characters 15-26:
- 181 |       let+ l = list_repeat px_count gen_peer in
-                      ^^^^^^^^^^^
- Alert deprecated: M.list_repeat
- Use [list_size (return i) g] instead
- File "src/lib_gossipsub/test/gossipsub_pbt_generators.ml", line 369, characters 16-29:
- 369 |       let+ rs = M.list_repeat n fragment in
-                       ^^^^^^^^^^^^^
- Alert deprecated: M.list_repeat
- Use [list_size (return i) g] instead
- File "src/lib_gossipsub/test/gossipsub_pbt_generators.ml", line 384, characters 16-27:
- 384 |       let+ rs = M.flatten_l fs in
-                       ^^^^^^^^^^^
- Alert deprecated: M.flatten_l
- Use [flatten_list] instead
- (cd _build/default/src/lib_clic/test && ./main.exe)
- [22:45:32.038] [SUCCESS] (1/24) Tezos_clic: dispatch (basic)
- [22:45:32.038] [SUCCESS] (2/24) Tezos_clic: dispatch (advanced)
- [22:45:32.038] [SUCCESS] (3/24) Tezos_clic: auto-completion-parameters (param: when no arg given, suggests all options)
- [22:45:32.039] [SUCCESS] (4/24) Tezos_clic: auto-completion-parameters (param: when given single char arg, suggests options starting with this char)
- [22:45:32.039] [SUCCESS] (5/24) Tezos_clic: auto-completion-parameters (param: when given arg matches exactly one option, suggests that option)
- [22:45:32.039] [SUCCESS] (6/24) Tezos_clic: auto-completion-parameters (param: when given prev arg matches first word, suggests the next words)
- [22:45:32.039] [SUCCESS] (7/24) Tezos_clic: auto-completion-parameters (param: when given prev arg matches first word and arg matches unique next word, suggests that word)
- [22:45:32.039] [SUCCESS] (8/24) Tezos_clic: auto-completion-parameters (prefix: when no arg given, suggests all options)
- [22:45:32.039] [SUCCESS] (9/24) Tezos_clic: auto-completion-parameters (prefix: when given single char arg, suggests options starting with this char)
- [22:45:32.039] [SUCCESS] (10/24) Tezos_clic: auto-completion-parameters (prefix: when given arg matches exactly one option, suggests that option)
- [22:45:32.039] [SUCCESS] (11/24) Tezos_clic: auto-completion-parameters (prefix: when given prev arg matches first word, suggests the next words)
- [22:45:32.039] [SUCCESS] (12/24) Tezos_clic: auto-completion-parameters (prefix: when given prev arg matches first word and arg matches unique next word, suggests that word)
- [22:45:32.039] [SUCCESS] (13/24) Tezos_clic: auto-completion-parameters (prefix: when given prev arg matches a unique first word, suggests the next word)
- [22:45:32.039] [SUCCESS] (14/24) Tezos_clic: auto-completion-parameters (seq: when no arg given, suggests all options)
- [22:45:32.039] [SUCCESS] (15/24) Tezos_clic: auto-completion-parameters (seq: when arg given, suggests all matching options)
- [22:45:32.039] [SUCCESS] (16/24) Tezos_clic: auto-completion-parameters (seq: when prev arg is from a sequence and no arg given, suggests all options in seq)
- [22:45:32.039] [SUCCESS] (17/24) Tezos_clic: auto-completion-parameters (seq: when prev args are from a sequence and no arg given, suggests all options in seq)
- [22:45:32.039] [SUCCESS] (18/24) Tezos_clic: auto-completion-parameters (non-terminal-seq: fails when given an empty suffix)
- [22:45:32.039] [SUCCESS] (19/24) Tezos_clic: auto-completion-parameters (non-terminal-seq: when no arg given, suggests all options in seq and its suffix)
- [22:45:32.040] [SUCCESS] (20/24) Tezos_clic: auto-completion-parameters (non-terminal-seq: when arg given, suggests all matching options)
- [22:45:32.040] [SUCCESS] (21/24) Tezos_clic: auto-completion-parameters (non-terminal-seq: when prev arg is from a sequence and no arg given, suggests all options in seq and its suffix)
- [22:45:32.040] [SUCCESS] (22/24) Tezos_clic: auto-completion-parameters (non-terminal-seq: when prev args are from a sequence and no arg given, suggests all options in seq and its suffix)
- [22:45:32.040] [SUCCESS] (23/24) Tezos_clic: auto-completion-parameters (non-terminal-seq: when first non-terminal-seq and its suffix are matched and no arg given, suggests all options in the next seq and its suffix)
- [22:45:32.040] [SUCCESS] (24/24) Tezos_clic: auto-completion-parameters (non-terminal-seq: when first non-terminal-seq and its suffix are matched and args given, suggests all matching options in the next seq and its suffix)
- (cd _build/default/src/lib_srs_extraction/test && ./main.exe)
- [22:45:32.137] [SUCCESS] (1/1) SRS: Srs (lagrange zcash_srs)
- (cd _build/default/src/lib_base/unix/test && ./main.exe)
- [22:45:32.245] [SUCCESS] (1/4) Base.unix.unix_error: encoding (json encoding roundtrip)
- [22:45:32.245] [SUCCESS] (2/4) Base.unix.unix_error: encoding (binary encoding roundtrip)
- [22:45:32.245] [SUCCESS] (3/4) Syslog: check formatting function
- [22:45:32.246] [SUCCESS] (4/4) Syslog: send message through socket
- (cd _build/default/src/lib_crypto/test-unix && ./main.exe)
- [22:45:32.247] [SUCCESS] (1/1) tezos-crypto-lwt: crypto_box (Check PoW)
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -open Tezos_base.TzPervasives -open Tezos_gossipsub -open Tezos_test_helpers -g -O3 -I src/lib_gossipsub/test/.test_gossipsub.eobjs/byte -I src/lib_gossipsub/test/.test_gossipsub.eobjs/native -I /home/opam/.opam/4.14/lib/aches -I /home/opam/.opam/4.14/lib/aches-lwt -I /home/opam/.opam/4.14/lib/aches-lwt/lache -I /home/opam/.opam/4.14/lib/aches/rache -I /home/opam/.opam/4.14/lib/aches/vache -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/angstrom -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/base -I /home/opam/.opam/4.14/lib/base/base_internalhash_types -I /home/opam/.opam/4.14/lib/base/caml -I /home/opam/.opam/4.14/lib/base/shadow_stdlib -I /home/opam/.opam/4.14/lib/bigstring -I /home/opam/.opam/4.14/lib/bigstringaf -I /home/opam/.opam/4.14/lib/bls12-381 -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/ctypes -I /home/opam/.opam/4.14/lib/ctypes/stubs -I /home/opam/.opam/4.14/lib/ctypes_stubs_js -I /home/opam/.opam/4.14/lib/data-encoding -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/either -I /home/opam/.opam/4.14/lib/ezjsonm -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/hacl-star -I /home/opam/.opam/4.14/lib/hacl-star-raw -I /home/opam/.opam/4.14/lib/hex -I /home/opam/.opam/4.14/lib/integers -I /home/opam/.opam/4.14/lib/integers_stubs_js -I /home/opam/.opam/4.14/lib/ipaddr -I /home/opam/.opam/4.14/lib/ipaddr/unix -I /home/opam/.opam/4.14/lib/jane-street-headers -I /home/opam/.opam/4.14/lib/json-data-encoding -I /home/opam/.opam/4.14/lib/json-data-encoding-bson -I /home/opam/.opam/4.14/lib/jsonm -I /home/opam/.opam/4.14/lib/lwt -I /home/opam/.opam/4.14/lib/lwt-canceler -I /home/opam/.opam/4.14/lib/lwt/unix -I /home/opam/.opam/4.14/lib/macaddr -I /home/opam/.opam/4.14/lib/mtime -I /home/opam/.opam/4.14/lib/mtime/clock/os -I /home/opam/.opam/4.14/lib/ocaml/threads -I /home/opam/.opam/4.14/lib/ocplib-endian -I /home/opam/.opam/4.14/lib/ocplib-endian/bigstring -I /home/opam/.opam/4.14/lib/ppx_compare/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppx_enumerate/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_expect/collector -I /home/opam/.opam/4.14/lib/ppx_expect/common -I /home/opam/.opam/4.14/lib/ppx_expect/config -I /home/opam/.opam/4.14/lib/ppx_expect/config_types -I /home/opam/.opam/4.14/lib/ppx_hash/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_here/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_inline_test/config -I /home/opam/.opam/4.14/lib/ppx_inline_test/runtime-lib -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/ptime/clock -I /home/opam/.opam/4.14/lib/pure-splitmix -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I /home/opam/.opam/4.14/lib/qcheck-core/runner -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/resto -I /home/opam/.opam/4.14/lib/resto-directory -I /home/opam/.opam/4.14/lib/ringo -I /home/opam/.opam/4.14/lib/secp256k1-internal -I /home/opam/.opam/4.14/lib/seq -I /home/opam/.opam/4.14/lib/seqes -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/stringext -I /home/opam/.opam/4.14/lib/tezt -I /home/opam/.opam/4.14/lib/tezt/core -I /home/opam/.opam/4.14/lib/time_now -I /home/opam/.opam/4.14/lib/uri -I /home/opam/.opam/4.14/lib/uutf -I /home/opam/.opam/4.14/lib/zarith -I /home/opam/.opam/4.14/lib/zarith_stubs_js -I src/lib_base/.tezos_base.objs/byte -I src/lib_base/.tezos_base.objs/native -I src/lib_base/unix/.tezos_base_unix.objs/byte -I src/lib_base/unix/.tezos_base_unix.objs/native -I src/lib_bls12_381_signature/.bls12_381_signature.objs/byte -I src/lib_bls12_381_signature/.bls12_381_signature.objs/native -I src/lib_crypto/.tezos_crypto.objs/byte -I src/lib_crypto/.tezos_crypto.objs/native -I src/lib_error_monad/.tezos_error_monad.objs/byte -I src/lib_error_monad/.tezos_error_monad.objs/native -I src/lib_event_logging/.tezos_event_logging.objs/byte -I src/lib_event_logging/.tezos_event_logging.objs/native -I src/lib_gossipsub/.tezos_gossipsub.objs/byte -I src/lib_gossipsub/.tezos_gossipsub.objs/native -I src/lib_hacl/.tezos_hacl.objs/byte -I src/lib_hacl/.tezos_hacl.objs/native -I src/lib_lwt_result_stdlib/.tezos_lwt_result_stdlib.objs/byte -I src/lib_lwt_result_stdlib/.tezos_lwt_result_stdlib.objs/native -I src/lib_lwt_result_stdlib/bare/functor_outputs/.bare_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/bare/functor_outputs/.bare_functor_outputs.objs/native -I src/lib_lwt_result_stdlib/bare/sigs/.bare_sigs.objs/byte -I src/lib_lwt_result_stdlib/bare/sigs/.bare_sigs.objs/native -I src/lib_lwt_result_stdlib/bare/structs/.bare_structs.objs/byte -I src/lib_lwt_result_stdlib/bare/structs/.bare_structs.objs/native -I src/lib_lwt_result_stdlib/traced/functor_outputs/.traced_functor_outputs.objs/byte -I src/lib_lwt_result_stdlib/traced/functor_outputs/.traced_functor_outputs.objs/native -I src/lib_lwt_result_stdlib/traced/sigs/.traced_sigs.objs/byte -I src/lib_lwt_result_stdlib/traced/sigs/.traced_sigs.objs/native -I src/lib_lwt_result_stdlib/traced/structs/.traced_structs.objs/byte -I src/lib_lwt_result_stdlib/traced/structs/.traced_structs.objs/native -I src/lib_micheline/.tezos_micheline.objs/byte -I src/lib_micheline/.tezos_micheline.objs/native -I src/lib_rpc/.tezos_rpc.objs/byte -I src/lib_rpc/.tezos_rpc.objs/native -I src/lib_stdlib/.tezos_stdlib.objs/byte -I src/lib_stdlib/.tezos_stdlib.objs/native -I src/lib_stdlib_unix/.tezos_stdlib_unix.objs/byte -I src/lib_stdlib_unix/.tezos_stdlib_unix.objs/native -I src/lib_test/.tezos_test_helpers.objs/byte -I src/lib_test/.tezos_test_helpers.objs/native -I src/lib_version/.tezos_version.objs/byte -I src/lib_version/.tezos_version.objs/native -I src/lib_version/parser/.tezos_version_parser.objs/byte -I src/lib_version/parser/.tezos_version_parser.objs/native -intf-suffix .ml -no-alias-deps -open Dune__exe -o src/lib_gossipsub/test/.test_gossipsub.eobjs/native/dune__exe__Test_pbt.cmx -c -impl src/lib_gossipsub/test/test_pbt.ml)
- File "src/lib_gossipsub/test/test_pbt.ml", line 152, characters 9-20:
- 152 |       |> M.flatten_l
-                ^^^^^^^^^^^
- Alert deprecated: Dune__exe.Gossipsub_pbt_generators.M.flatten_l
- Use [flatten_list] instead
- File "src/lib_gossipsub/test/test_pbt.ml", line 183, characters 9-20:
- 183 |       |> M.flatten_l
-                ^^^^^^^^^^^
- Alert deprecated: Dune__exe.Gossipsub_pbt_generators.M.flatten_l
- Use [flatten_list] instead
- File "src/lib_gossipsub/test/test_pbt.ml", line 501, characters 18-36:
- 501 |   let gen_topic = QCheck2.Gen.oneofl ["A"; "B"; "C"; "D"; "E"; "F"; "G"]
-                         ^^^^^^^^^^^^^^^^^^
- Alert deprecated: QCheck2.Gen.oneofl
- Use [oneof_list] instead
- File "src/lib_gossipsub/test/test_pbt.ml", line 690, characters 19-27:
- 690 |     let gen_peer = M.oneofl all_peers in
-                          ^^^^^^^^
- Alert deprecated: Dune__exe.Gossipsub_pbt_generators.M.oneofl
- Use [oneof_list] instead
- File "src/lib_gossipsub/test/test_pbt.ml", line 692, characters 6-14:
- 692 |       M.oneofl ["topicA"; "topicB"; "topicC"; "topicD"; "topicE"]
-             ^^^^^^^^
- Alert deprecated: Dune__exe.Gossipsub_pbt_generators.M.oneofl
- Use [oneof_list] instead
- File "src/lib_gossipsub/test/test_pbt.ml", line 694, characters 25-33:
- 694 |     let gen_message_id = M.oneofl [42; 43; 44] in
-                                ^^^^^^^^
- Alert deprecated: Dune__exe.Gossipsub_pbt_generators.M.oneofl
- Use [oneof_list] instead
- File "src/lib_gossipsub/test/test_pbt.ml", line 1214, characters 27-35:
- 1214 |         let gen_all_peer = M.oneofl all_peers in
-                                   ^^^^^^^^
- Alert deprecated: Dune__exe.Gossipsub_pbt_generators.M.oneofl
- Use [oneof_list] instead
- File "src/lib_gossipsub/test/test_pbt.ml", line 1215, characters 35-43:
- 1215 |         let gen_publishing_peers = M.oneofl publishing_peers in
-                                           ^^^^^^^^
- Alert deprecated: Dune__exe.Gossipsub_pbt_generators.M.oneofl
- Use [oneof_list] instead
- File "src/lib_gossipsub/test/test_pbt.ml", line 1221, characters 24-32:
- 1221 |         let gen_topic = M.oneofl all_topics in
-                                ^^^^^^^^
- Alert deprecated: Dune__exe.Gossipsub_pbt_generators.M.oneofl
- Use [oneof_list] instead
- File "src/lib_gossipsub/test/test_pbt.ml", line 1558, characters 11-22:
- 1558 |         |> M.flatten_l
-                   ^^^^^^^^^^^
- Alert deprecated: Dune__exe.Gossipsub_pbt_generators.M.flatten_l
- Use [flatten_list] instead
- File "src/lib_gossipsub/test/test_pbt.ml", line 1894, characters 23-31:
- 1894 |         let gen_peer = M.oneofl all_peers in
-                               ^^^^^^^^
- Alert deprecated: Dune__exe.Gossipsub_pbt_generators.M.oneofl
- Use [oneof_list] instead
- File "src/lib_gossipsub/test/test_pbt.ml", line 1900, characters 24-32:
- 1900 |         let gen_topic = M.oneofl all_topics in
-                                ^^^^^^^^
- Alert deprecated: Dune__exe.Gossipsub_pbt_generators.M.oneofl
- Use [oneof_list] instead
- File "src/lib_gossipsub/test/test_pbt.ml", line 2087, characters 23-31:
- 2087 |         let gen_peer = M.oneofl peers in
-                               ^^^^^^^^
- Alert deprecated: Dune__exe.Gossipsub_pbt_generators.M.oneofl
- Use [oneof_list] instead
- File "src/lib_gossipsub/test/test_pbt.ml", line 2088, characters 24-32:
- 2088 |         let gen_topic = M.oneofl topics in
-                                ^^^^^^^^
- Alert deprecated: Dune__exe.Gossipsub_pbt_generators.M.oneofl
- Use [oneof_list] instead
- (cd _build/default/src/lib_workers/test && ./main.exe)
- qcheck random seed: 457520334
- [22:45:33.180] [SUCCESS] (1/5) Workers: Queue history (Random normal requests)
- [22:45:33.180] [SUCCESS] (2/5) Workers: Queue history (Random normal requests on Bounded)
- [22:45:33.180] [SUCCESS] (3/5) Workers: Status (Canceled worker)
- [22:45:33.180] [SUCCESS] (4/5) Workers: Status (Crashing requests)
- [22:45:33.180] [SUCCESS] (5/5) Workers: Buffer handling (Dropbox/Async)
- (cd _build/default/src/lib_base/unix && .tezos_base_unix.inline-tests/inline_test_runner_tezos_base_unix.exe inline-test-runner tezos_base_unix -source-tree-root ../../.. -diff-cmd - -verbose)
- File "src/lib_base/unix/file_descriptor_sink.ml", line 219, characters 0-1504 (0.000 sec)
- File "src/lib_base/unix/file_descriptor_sink.ml", line 279, characters 0-759 (0.000 sec)
- File "src/lib_base/unix/file_descriptor_sink.ml", line 306, characters 0-339 (0.001 sec)
- (cd _build/default/src/lib_base/test && ./main.exe)
- qcheck random seed: 673616635
- [22:45:33.183] [SUCCESS] (1/76) Time: Protocol (Protocol.[add|diff] roundtrip)
- [22:45:33.183] [SUCCESS] (2/76) Time: Protocol (Protocol.[diff|add] roundtrip)
- [22:45:33.183] [SUCCESS] (3/76) Time: Protocol (Protocol.encoding roundtrips in binary)
- [22:45:33.183] [SUCCESS] (4/76) Time: Protocol (Protocol.encoding roundtrips in JSON)
- [22:45:33.184] [SUCCESS] (5/76) Time: Protocol (Protocol.[to|of]_notation roundtrip in RFC3339 range)
- [22:45:33.184] [SUCCESS] (6/76) Time: System (System.[to|of]_protocol roundtrip modulo option)
- [22:45:33.184] [SUCCESS] (7/76) Time: System (System.[of|to]_protocol roundtrip or outside RFC3339 range)
- [22:45:33.185] [SUCCESS] (8/76) Time: System (System.rfc_encoding roundtrips in binary modulo precision)
- [22:45:33.186] [SUCCESS] (9/76) Time: System (System.rfc_encoding roundtrips in JSON modulo precision)
- [22:45:33.187] [SUCCESS] (10/76) Time: System (System.encoding roundtrips in binary modulo precision)
- [22:45:33.187] [SUCCESS] (11/76) Time: System (System.encoding roundtrips in JSON modulo precision)
- [22:45:33.187] [SUCCESS] (12/76) Skip_list: skip list (Skip list: produce paths with `back_path` and check)
- [22:45:33.188] [SUCCESS] (13/76) Skip_list: skip list (Skip list: find cell with `find` and `check`)
- [22:45:33.188] [SUCCESS] (14/76) Skip_list: skip list (Skip list: `find` won't produce invalid value)
- [22:45:33.188] [SUCCESS] (15/76) Skip_list: skip list (Skip list: `back_path` won't produce invalid paths)
- [22:45:33.188] [SUCCESS] (16/76) Skip_list: skip list (Skip list: check if the back_path is minimal)
- [22:45:33.188] [SUCCESS] (17/76) Skip_list: skip list (Skip list: produce paths with `search` and check)
- [22:45:33.189] [SUCCESS] (18/76) Skip_list: skip list (Skip list: `search` won't produce invalid paths)
- [22:45:33.189] [SUCCESS] (19/76) Skip_list: skip list (Skip list: `search` may not produce minimal path)
- [22:45:33.189] [SUCCESS] (20/76) Sized: SizedSet (empty)
- [22:45:33.189] [SUCCESS] (21/76) Sized: SizedSet (singleton)
- [22:45:33.189] [SUCCESS] (22/76) Sized: SizedSet (equal)
- [22:45:33.190] [SUCCESS] (23/76) Sized: SizedSet (inequal)
- [22:45:33.190] [SUCCESS] (24/76) Sized: SizedSet (add)
- [22:45:33.190] [SUCCESS] (25/76) Sized: SizedSet (remove)
- [22:45:33.191] [SUCCESS] (26/76) Sized: SizedSet (union)
- [22:45:33.191] [SUCCESS] (27/76) Sized: SizedSet (inter)
- [22:45:33.192] [SUCCESS] (28/76) Sized: SizedSet (diff)
- [22:45:33.193] [SUCCESS] (29/76) Sized: SizedSet (map)
- [22:45:33.194] [SUCCESS] (30/76) Sized: SizedSet (filter)
- [22:45:33.195] [SUCCESS] (31/76) Sized: SizedSet (filter_map)
- [22:45:33.196] [SUCCESS] (32/76) Sized: SizedSet (partition)
- [22:45:33.196] [SUCCESS] (33/76) Sized: SizedSet (split)
- [22:45:33.197] [SUCCESS] (34/76) Sized: SizedSet (add_seq)
- [22:45:33.197] [SUCCESS] (35/76) Sized: SizedSet (of_seq)
- [22:45:33.197] [SUCCESS] (36/76) Sized: SizedMap (empty)
- [22:45:33.197] [SUCCESS] (37/76) Sized: SizedMap (singleton)
- [22:45:33.198] [SUCCESS] (38/76) Sized: SizedMap (equal)
- [22:45:33.200] [SUCCESS] (39/76) Sized: SizedMap (inequal)
- [22:45:33.202] [SUCCESS] (40/76) Sized: SizedMap (add)
- [22:45:33.204] [SUCCESS] (41/76) Sized: SizedMap (update)
- [22:45:33.205] [SUCCESS] (42/76) Sized: SizedMap (remove)
- [22:45:33.210] [SUCCESS] (43/76) Sized: SizedMap (merge)
- [22:45:33.213] [SUCCESS] (44/76) Sized: SizedMap (union)
- [22:45:33.215] [SUCCESS] (45/76) Sized: SizedMap (map)
- [22:45:33.217] [SUCCESS] (46/76) Sized: SizedMap (mapi)
- [22:45:33.219] [SUCCESS] (47/76) Sized: SizedMap (filter)
- [22:45:33.221] [SUCCESS] (48/76) Sized: SizedMap (filter_map)
- [22:45:33.223] [SUCCESS] (49/76) Sized: SizedMap (partition)
- [22:45:33.224] [SUCCESS] (50/76) Sized: SizedMap (split)
- [22:45:33.227] [SUCCESS] (51/76) Sized: SizedMap (add_seq)
- [22:45:33.227] [SUCCESS] (52/76) Protocol: environment-version-comparison (equal)
- [22:45:33.227] [SUCCESS] (53/76) Protocol: environment-version-comparison (less-than)
- [22:45:33.227] [SUCCESS] (54/76) Protocol: environment-version-comparison (greater-than)
- [22:45:33.227] [SUCCESS] (55/76) Base.P2p: P2p_addr (Base.P2p_addr.ip.to-string-from-string)
- [22:45:33.233] [SUCCESS] (56/76) Base.P2p: P2p_point (Base.P2p_point.addr_port_id.to-string-from-string)
- [22:45:33.234] [SUCCESS] (57/76) Base.P2p: P2p_point (Base.P2p_point.id.encode-decode roundtrip)
- [22:45:33.234] [SUCCESS] (58/76) Base.P2p: P2p_point (Base.P2p_point.Id.encoding eagerly fails on too big input)
- [22:45:33.234] [SUCCESS] (59/76) Base.P2p: P2p_point.domain (domain_to_string_from_string_ok)
- [22:45:33.234] [SUCCESS] (60/76) Base.P2p: P2p_point.domain (domain_to_string_from_string_ko)
- [22:45:33.234] [SUCCESS] (61/76) Bounded: Int32 (0 not in empty)
- [22:45:33.234] [SUCCESS] (62/76) Bounded: Int32 (123 not in empty)
- [22:45:33.234] [SUCCESS] (63/76) Bounded: Int32 (Int32.min_int not in empty)
- [22:45:33.234] [SUCCESS] (64/76) Bounded: Int32 (0 not in Small)
- [22:45:33.234] [SUCCESS] (65/76) Bounded: Int32 (1 in Small)
- [22:45:33.234] [SUCCESS] (66/76) Bounded: Int32 (2 in Small)
- [22:45:33.234] [SUCCESS] (67/76) Bounded: Int32 (4 not in Small)
- [22:45:33.234] [SUCCESS] (68/76) Bounded: Int32 (0 in full)
- [22:45:33.234] [SUCCESS] (69/76) Bounded: Int32 (123 in full)
- [22:45:33.234] [SUCCESS] (70/76) Bounded: Int32 (Int32.min_int in full)
- [22:45:33.234] [SUCCESS] (71/76) Bounded: Int32 (Int32.max_int in full)
- [22:45:33.234] [SUCCESS] (72/76) Bounded: Int32 (Uint8.bad instantiation lower value)
- [22:45:33.234] [SUCCESS] (73/76) Bounded: Int32 (Uint8.bad instantiation upper value)
- [22:45:33.234] [SUCCESS] (74/76) Bounded: Int32 (Uint16.tight bounds)
- [22:45:33.235] [SUCCESS] (75/76) Bounded: Round-trip property (Bounded: roundtrips in JSON)
- [22:45:33.236] [SUCCESS] (76/76) Bounded: Round-trip property (Bounded: roundtrips in binary)
- (cd _build/default/src/lib_rpc_http/test && ./main.exe)
- qcheck random seed: 457085077
- [22:45:33.262] [SUCCESS] (1/7) tezos-rpc-http: qcheck (Encoding and decoding an ACL is an identity function.)
- [22:45:33.359] [SUCCESS] (2/7) tezos-rpc-http: qcheck (put_policy preserves existing entries.)
- [22:45:33.359] [SUCCESS] (3/7) tezos-rpc-http: qcheck (default policy parses and is of correct type)
- [22:45:33.359] [SUCCESS] (4/7) tezos-rpc-http: find_policy_matching_rules (policy matching rules)
- [22:45:33.359] [SUCCESS] (5/7) tezos-rpc-http: ensure_unsafe_rpcs_blocked (make sure the default policy blocks known particularly unsafe RPCs)
- [22:45:33.359] [SUCCESS] (6/7) tezos-rpc-http: test_matching_with_name_resolving (make sure addresses match well with domain name resolving)
- [22:45:33.359] [SUCCESS] (7/7) tezos-rpc-http: test_media_type_pp_parse (Media_type.Command_line.pp/parse)
- (cd _build/default/src/lib_context/memory/test && ./main.exe)
- [22:45:33.674] [SUCCESS] (1/8) tezos-context-memory: hash (large-dir-100)
- [22:45:33.681] [SUCCESS] (2/8) tezos-context-memory: hash (large-dir-200)
- [22:45:33.684] [SUCCESS] (3/8) tezos-context-memory: hash (large-dir-255)
- [22:45:33.687] [SUCCESS] (4/8) tezos-context-memory: hash (large-dir-256)
- [22:45:33.694] [SUCCESS] (5/8) tezos-context-memory: hash (large-dir-257)
- [22:45:33.697] [SUCCESS] (6/8) tezos-context-memory: hash (large-dir-300)
- [22:45:33.709] [SUCCESS] (7/8) tezos-context-memory: hash (large-dir-1000)
- [22:45:33.792] [SUCCESS] (8/8) tezos-context-memory: hash (large-dir-10000)
- (cd _build/default/src/lib_requester/test && ./main.exe)
- qcheck random seed: 187359332
- [22:45:33.183] [SUCCESS] (1/37) tezos-requester: all (test create: simple)
- [22:45:33.183] [SUCCESS] (2/37) tezos-requester: all (test create: test known)
- [22:45:33.183] [SUCCESS] (3/37) tezos-requester: all (test create: with global_input)
- [22:45:33.183] [SUCCESS] (4/37) tezos-requester: all (test read: (and variations))
- [22:45:33.183] [SUCCESS] (5/37) tezos-requester: all (test known: found values in disk are cached)
- [22:45:33.286] [SUCCESS] (6/37) tezos-requester: all (test fetch: full requester timeout)
- [22:45:33.387] [SUCCESS] (7/37) tezos-requester: all (test fetch: full requester issues request)
- [22:45:33.387] [SUCCESS] (8/37) tezos-requester: all (test clear_or_cancel: removes)
- [22:45:33.387] [SUCCESS] (9/37) tezos-requester: all (test clear_or_cancel: decrements pending)
- [22:45:33.387] [SUCCESS] (10/37) tezos-requester: all (test clear_or_cancel: cancels)
- [22:45:33.387] [SUCCESS] (11/37) tezos-requester: all (test pending cancelled)
- [22:45:33.387] [SUCCESS] (12/37) tezos-requester: all (test pending notified)
- [22:45:33.388] [SUCCESS] (13/37) tezos-requester: all (test pending timeout)
- [22:45:33.388] [SUCCESS] (14/37) tezos-requester: all (test watch: simple)
- [22:45:33.388] [SUCCESS] (15/37) tezos-requester: all (test watch: non fetched)
- [22:45:33.388] [SUCCESS] (16/37) tezos-requester: all (test watch: double watchers)
- [22:45:33.388] [SUCCESS] (17/37) tezos-requester: all (test inject: already in memory)
- [22:45:33.388] [SUCCESS] (18/37) tezos-requester: all (test inject: already in disk)
- [22:45:33.388] [SUCCESS] (19/37) tezos-requester: all (test inject: already in requested)
- [22:45:33.388] [SUCCESS] (20/37) tezos-requester: all (test inject: otherwise)
- [22:45:33.388] [SUCCESS] (21/37) tezos-requester: all (test notify: invalid)
- [22:45:33.389] [SUCCESS] (22/37) tezos-requester: all (test notify: valid)
- [22:45:33.389] [SUCCESS] (23/37) tezos-requester: all (test notify: unfetched)
- [22:45:33.389] [SUCCESS] (24/37) tezos-requester: all (test notify: memory duplicate)
- [22:45:33.389] [SUCCESS] (25/37) tezos-requester: all (test notify: disk duplicate)
- [22:45:33.791] [SUCCESS] (26/37) tezos-requester: all (test pending_requests)
- [22:45:33.791] [SUCCESS] (27/37) tezos-requester: all (test memory_table_length)
- [22:45:33.791] [SUCCESS] (28/37) tezos-requester: all (test shutdown)
- [22:45:33.883] [SUCCESS] (29/37) Requester_PBT: read (Result.is_ok (read t key) = Option.is_some (read_opt t key))
- [22:45:33.969] [SUCCESS] (30/37) Requester_PBT: read (known t key = Option.is_some (read_opt t key))
- [22:45:34.609] [SUCCESS] (31/37) Requester_PBT: inject (read_opt (inject t key value) = (Some value))
- [22:45:34.872] [SUCCESS] (32/37) Requester_PBT: inject (key <> key' ==> read_opt (inject t key' value) key = read_opt t key)
- [22:45:35.036] [SUCCESS] (33/37) Requester_PBT: inject (read_opt t key <= read_opt (inject t key' value) key)
- [22:45:35.201] [SUCCESS] (34/37) Requester_PBT: inject (memory_table_length t <= memory_table_length (inject t key value))
- [22:45:35.290] [SUCCESS] (35/37) Requester_PBT: clear_or_cancel (read_opt (clear_or_cancel t key') key <= read_opt t key)
- [22:45:35.383] [SUCCESS] (36/37) Requester_PBT: clear_or_cancel (memory_length (clear_or_cancel t key') key <= memory_length t)
- [22:45:35.482] [SUCCESS] (37/37) Requester_PBT: clear_or_cancel (pending (clear_or_cancel (fetch (fetch t key) key) key) key = true)
- (cd _build/default/src/lib_context/test && ./main.exe)
- qcheck random seed: 255227600
- [22:45:33.943] [SUCCESS] (1/44) test_merkle_proof: sample32_v1 (sample)
- [22:45:35.741] [SUCCESS] (2/44) test_merkle_proof: random32_v1 (tree_proof_encoding)
- [22:45:35.766] [SUCCESS] (3/44) test_merkle_proof: random32_v1 (stream_proof_encoding)
- [22:45:35.767] [SUCCESS] (4/44) test_merkle_proof: sample2_v1 (sample)
- [22:45:35.776] [SUCCESS] (5/44) test_merkle_proof: random2_v1 (tree_proof_encoding)
- [22:45:35.798] [SUCCESS] (6/44) test_merkle_proof: random2_v1 (stream_proof_encoding)
- [22:45:35.799] [SUCCESS] (7/44) test_merkle_proof: sample32_v2 (sample)
- [22:45:37.692] [SUCCESS] (8/44) test_merkle_proof: random32_v2 (tree_proof_encoding)
- [22:45:37.723] [SUCCESS] (9/44) test_merkle_proof: random32_v2 (stream_proof_encoding)
- [22:45:37.723] [SUCCESS] (10/44) test_merkle_proof: sample2_v2 (sample)
- [22:45:37.740] [SUCCESS] (11/44) test_merkle_proof: random2_v2 (tree_proof_encoding)
- [22:45:37.759] [SUCCESS] (12/44) test_merkle_proof: random2_v2 (stream_proof_encoding)
- [22:45:37.761] [SUCCESS] (13/44) tezos-context: context (disk:is_empty)
- [22:45:37.763] [SUCCESS] (14/44) tezos-context: context (disk:simple)
- [22:45:37.764] [SUCCESS] (15/44) tezos-context: context (disk:list)
- [22:45:37.766] [SUCCESS] (16/44) tezos-context: context (disk:continuation)
- [22:45:37.768] [SUCCESS] (17/44) tezos-context: context (disk:fork)
- [22:45:37.770] [SUCCESS] (18/44) tezos-context: context (disk:replay)
- [22:45:37.775] [SUCCESS] (19/44) tezos-context: context (disk:fold_keys_sorted)
- [22:45:37.779] [SUCCESS] (20/44) tezos-context: context (disk:fold_keys_undefined)
- [22:45:37.781] [SUCCESS] (21/44) tezos-context: context (disk:fold)
- [22:45:37.806] [SUCCESS] (22/44) tezos-context: context (disk:trees)
- [22:45:37.808] [SUCCESS] (23/44) tezos-context: context (disk:raw)
- [22:45:37.811] [SUCCESS] (24/44) tezos-context: context (disk:encoding)
- [22:45:37.812] [SUCCESS] (25/44) tezos-context: context (disk:get_hash_version)
- [22:45:37.813] [SUCCESS] (26/44) tezos-context: context (disk:set_hash_version_tzresult)
- [22:45:37.815] [SUCCESS] (27/44) tezos-context: context (disk:to_memory_tree)
- [22:45:37.816] [SUCCESS] (28/44) tezos-context: context (disk:proof exn)
- [22:45:37.817] [SUCCESS] (29/44) tezos-context: context (memory:is_empty)
- [22:45:37.817] [SUCCESS] (30/44) tezos-context: context (memory:simple)
- [22:45:37.817] [SUCCESS] (31/44) tezos-context: context (memory:list)
- [22:45:37.817] [SUCCESS] (32/44) tezos-context: context (memory:continuation)
- [22:45:37.818] [SUCCESS] (33/44) tezos-context: context (memory:fork)
- [22:45:37.818] [SUCCESS] (34/44) tezos-context: context (memory:replay)
- [22:45:37.819] [SUCCESS] (35/44) tezos-context: context (memory:fold_keys_sorted)
- [22:45:37.821] [SUCCESS] (36/44) tezos-context: context (memory:fold_keys_undefined)
- [22:45:37.821] [SUCCESS] (37/44) tezos-context: context (memory:fold)
- [22:45:37.821] [SUCCESS] (38/44) tezos-context: context (memory:trees)
- [22:45:37.821] [SUCCESS] (39/44) tezos-context: context (memory:raw)
- [22:45:37.822] [SUCCESS] (40/44) tezos-context: context (memory:encoding)
- [22:45:37.822] [SUCCESS] (41/44) tezos-context: context (memory:get_hash_version)
- [22:45:37.822] [SUCCESS] (42/44) tezos-context: context (memory:set_hash_version_tzresult)
- [22:45:37.823] [SUCCESS] (43/44) tezos-context: context (memory:to_memory_tree)
- [22:45:37.823] [SUCCESS] (44/44) tezos-context: context (memory:proof exn)
- (cd _build/default/src/lib_crypto_dal/test && ./main.exe)
- qcheck random seed: 365577220
- [22:45:33.205] [SUCCESS] (1/27) DAL cryptobox: Unit tests (find_trusted_setup_files)
- [22:45:33.205] [SUCCESS] (2/27) DAL cryptobox: Unit tests (find_trusted_setup_files_failure)
- [22:45:34.421] [SUCCESS] (3/27) DAL cryptobox: PBT (erasure code)
- [22:45:34.522] [SUCCESS] (4/27) DAL cryptobox: PBT (erasure code with slot conversion)
- [22:45:34.567] [SUCCESS] (5/27) DAL cryptobox: PBT (erasure code shard index out of range)
- [22:45:34.603] [SUCCESS] (6/27) DAL cryptobox: PBT (erasure code not enough shards)
- random seed: 508995830
- [22:45:34.699] [SUCCESS] (7/27) DAL cryptobox: PBT (erasure code shard invalid shard length)
- [22:45:34.840] [SUCCESS] (8/27) DAL cryptobox: PBT (page proofs)
- [22:45:34.979] [SUCCESS] (9/27) DAL cryptobox: PBT (page proofs invalid page)
- [22:45:36.153] [SUCCESS] (10/27) DAL cryptobox: PBT (shard proofs)
- [22:45:37.368] [SUCCESS] (11/27) DAL cryptobox: PBT (invalid shard proof)
- [22:45:37.507] [SUCCESS] (12/27) DAL cryptobox: PBT (commitment proof)
- [22:45:37.642] [SUCCESS] (13/27) DAL cryptobox: PBT (invalid commitment proof)
- [22:45:37.666] [SUCCESS] (14/27) DAL cryptobox: PBT (polynomial-slot conversions)
- [22:45:37.757] [SUCCESS] (15/27) DAL cryptobox: PBT (FFT domain selection)
- [22:45:37.810] [SUCCESS] (16/27) DAL cryptobox: PBT (shard proofs loading)
- [22:45:37.865] [SUCCESS] (17/27) DAL cryptobox: PBT (shard proofs loading invalid hash)
- [22:45:37.899] [SUCCESS] (18/27) DAL cryptobox: PBT (DAL initialisation twice failure)
- [22:45:37.921] [SUCCESS] (19/27) DAL cryptobox: PBT (wrong slot size)
- [22:45:37.948] [SUCCESS] (20/27) DAL cryptobox: PBT (page_length_mismatch)
- [22:45:37.979] [SUCCESS] (21/27) DAL cryptobox: PBT (shard_length_mismatch)
- [22:45:38.003] [SUCCESS] (22/27) DAL cryptobox: PBT (prove page out of bound)
- [22:45:38.031] [SUCCESS] (23/27) DAL cryptobox: PBT (verify page out of bound)
- [22:45:38.059] [SUCCESS] (24/27) DAL cryptobox: PBT (verify shard out of bound)
- [22:45:38.128] [SUCCESS] (25/27) DAL cryptobox: PBT (commit)
- [22:45:38.161] [SUCCESS] (26/27) DAL cryptobox: PBT (commit failure)
- [22:45:38.181] [SUCCESS] (27/27) DAL cryptobox: PBT (encoded share_size)
- (cd _build/default/src/lib_polynomial/test && ./main.exe)
- [22:45:29.698] [SUCCESS] (1/227) Polynomials with F379 and some random prime fields: Tests on degrees, field order = 374684353 (degree of zero is infinity)
- [22:45:29.698] [SUCCESS] (2/227) Polynomials with F379 and some random prime fields: Tests on degrees, field order = 374684353 (degree of constants is one)
- [22:45:29.698] [SUCCESS] (3/227) Polynomials with F379 and some random prime fields: Tests on degrees, field order = 374684353 (degree int test vectors)
- [22:45:29.698] [SUCCESS] (4/227) Polynomials with F379 and some random prime fields: Tests on degrees, field order = 374684353 (have same degree)
- [22:45:29.698] [SUCCESS] (5/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 374684353 (evaluation at any point of the zero polynomial)
- [22:45:29.698] [SUCCESS] (6/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 374684353 (evaluation at any point of a random constant polynomial)
- [22:45:29.698] [SUCCESS] (7/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 374684353 (evaluation at zero of a random constant polynomial)
- [22:45:29.698] [SUCCESS] (8/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 374684353 (evaluation at zero of the zero polynomial)
- [22:45:29.698] [SUCCESS] (9/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 374684353 (evaluation at any point of the polynomial X)
- [22:45:29.758] [SUCCESS] (10/227) Polynomials with F379 and some random prime fields: Euclidian division for prime field 374684353 (test vectors for random)
- [22:45:29.758] [SUCCESS] (11/227) Polynomials with F379 and some random prime fields: Euclidian division for prime field 374684353 (test with constants)
- [22:45:29.956] [SUCCESS] (12/227) Polynomials with F379 and some random prime fields: Euclidian division for prime field 374684353 (test vectors for random divided by constant)
- [22:45:29.957] [SUCCESS] (13/227) Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 374684353 (test properties nullifier 0 * P = P * 0 = 0)
- [22:45:29.958] [SUCCESS] (14/227) Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 374684353 (test properties commutativity p * q = p * q)
- [22:45:29.961] [SUCCESS] (15/227) Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 374684353 (test properties distributivity and communtativity a p * b q = (a * b) (p * q) = (b p) * (a q) = p * (a * b) q)
- [22:45:30.180] [SUCCESS] (16/227) Polynomials with F379 and some random prime fields: Extended Euclide alogrithm for prime field 374684353 (test properties on random polynomials)
- [22:45:30.181] [SUCCESS] (17/227) Polynomials with F379 and some random prime fields: Dense polynomial coefficients for prime field 374684353 (test vectors)
- [22:45:30.181] [SUCCESS] (18/227) Polynomials with F379 and some random prime fields: Dense polynomial coefficients with degree for prime field 374684353 (test vectors)
- [22:45:30.181] [SUCCESS] (19/227) Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 374684353 (zero polynomial is constant)
- [22:45:30.181] [SUCCESS] (20/227) Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 374684353 (Constant random value)
- [22:45:30.182] [SUCCESS] (21/227) Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 374684353 (Non constant polynomial)
- [22:45:30.195] [SUCCESS] (22/227) Polynomials with F379 and some random prime fields: Test lagrange interpolation, prime field order 374684353 (test random number of points)
- [22:45:30.195] [SUCCESS] (23/227) Polynomials with F379 and some random prime fields: Tests on degrees, field order = 200794331 (degree of zero is infinity)
- [22:45:30.195] [SUCCESS] (24/227) Polynomials with F379 and some random prime fields: Tests on degrees, field order = 200794331 (degree of constants is one)
- [22:45:30.195] [SUCCESS] (25/227) Polynomials with F379 and some random prime fields: Tests on degrees, field order = 200794331 (degree int test vectors)
- [22:45:30.195] [SUCCESS] (26/227) Polynomials with F379 and some random prime fields: Tests on degrees, field order = 200794331 (have same degree)
- [22:45:30.195] [SUCCESS] (27/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 200794331 (evaluation at any point of the zero polynomial)
- [22:45:30.195] [SUCCESS] (28/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 200794331 (evaluation at any point of a random constant polynomial)
- [22:45:30.195] [SUCCESS] (29/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 200794331 (evaluation at zero of a random constant polynomial)
- [22:45:30.196] [SUCCESS] (30/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 200794331 (evaluation at zero of the zero polynomial)
- [22:45:30.196] [SUCCESS] (31/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 200794331 (evaluation at any point of the polynomial X)
- [22:45:30.255] [SUCCESS] (32/227) Polynomials with F379 and some random prime fields: Euclidian division for prime field 200794331 (test vectors for random)
- [22:45:30.255] [SUCCESS] (33/227) Polynomials with F379 and some random prime fields: Euclidian division for prime field 200794331 (test with constants)
- [22:45:30.455] [SUCCESS] (34/227) Polynomials with F379 and some random prime fields: Euclidian division for prime field 200794331 (test vectors for random divided by constant)
- [22:45:30.456] [SUCCESS] (35/227) Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 200794331 (test properties nullifier 0 * P = P * 0 = 0)
- [22:45:30.457] [SUCCESS] (36/227) Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 200794331 (test properties commutativity p * q = p * q)
- [22:45:30.460] [SUCCESS] (37/227) Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 200794331 (test properties distributivity and communtativity a p * b q = (a * b) (p * q) = (b p) * (a q) = p * (a * b) q)
- [22:45:30.675] [SUCCESS] (38/227) Polynomials with F379 and some random prime fields: Extended Euclide alogrithm for prime field 200794331 (test properties on random polynomials)
- [22:45:30.675] [SUCCESS] (39/227) Polynomials with F379 and some random prime fields: Dense polynomial coefficients for prime field 200794331 (test vectors)
- [22:45:30.675] [SUCCESS] (40/227) Polynomials with F379 and some random prime fields: Dense polynomial coefficients with degree for prime field 200794331 (test vectors)
- [22:45:30.675] [SUCCESS] (41/227) Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 200794331 (zero polynomial is constant)
- [22:45:30.675] [SUCCESS] (42/227) Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 200794331 (Constant random value)
- [22:45:30.676] [SUCCESS] (43/227) Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 200794331 (Non constant polynomial)
- [22:45:30.689] [SUCCESS] (44/227) Polynomials with F379 and some random prime fields: Test lagrange interpolation, prime field order 200794331 (test random number of points)
- [22:45:30.689] [SUCCESS] (45/227) Polynomials with F379 and some random prime fields: Tests on degrees, field order = 222599257 (degree of zero is infinity)
- [22:45:30.689] [SUCCESS] (46/227) Polynomials with F379 and some random prime fields: Tests on degrees, field order = 222599257 (degree of constants is one)
- [22:45:30.689] [SUCCESS] (47/227) Polynomials with F379 and some random prime fields: Tests on degrees, field order = 222599257 (degree int test vectors)
- [22:45:30.689] [SUCCESS] (48/227) Polynomials with F379 and some random prime fields: Tests on degrees, field order = 222599257 (have same degree)
- [22:45:30.689] [SUCCESS] (49/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 222599257 (evaluation at any point of the zero polynomial)
- [22:45:30.690] [SUCCESS] (50/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 222599257 (evaluation at any point of a random constant polynomial)
- [22:45:30.690] [SUCCESS] (51/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 222599257 (evaluation at zero of a random constant polynomial)
- [22:45:30.690] [SUCCESS] (52/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 222599257 (evaluation at zero of the zero polynomial)
- [22:45:30.690] [SUCCESS] (53/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 222599257 (evaluation at any point of the polynomial X)
- [22:45:30.747] [SUCCESS] (54/227) Polynomials with F379 and some random prime fields: Euclidian division for prime field 222599257 (test vectors for random)
- [22:45:30.747] [SUCCESS] (55/227) Polynomials with F379 and some random prime fields: Euclidian division for prime field 222599257 (test with constants)
- [22:45:30.937] [SUCCESS] (56/227) Polynomials with F379 and some random prime fields: Euclidian division for prime field 222599257 (test vectors for random divided by constant)
- [22:45:30.939] [SUCCESS] (57/227) Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 222599257 (test properties nullifier 0 * P = P * 0 = 0)
- [22:45:30.939] [SUCCESS] (58/227) Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 222599257 (test properties commutativity p * q = p * q)
- [22:45:30.942] [SUCCESS] (59/227) Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 222599257 (test properties distributivity and communtativity a p * b q = (a * b) (p * q) = (b p) * (a q) = p * (a * b) q)
- [22:45:31.158] [SUCCESS] (60/227) Polynomials with F379 and some random prime fields: Extended Euclide alogrithm for prime field 222599257 (test properties on random polynomials)
- [22:45:31.159] [SUCCESS] (61/227) Polynomials with F379 and some random prime fields: Dense polynomial coefficients for prime field 222599257 (test vectors)
- [22:45:31.159] [SUCCESS] (62/227) Polynomials with F379 and some random prime fields: Dense polynomial coefficients with degree for prime field 222599257 (test vectors)
- [22:45:31.159] [SUCCESS] (63/227) Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 222599257 (zero polynomial is constant)
- [22:45:31.159] [SUCCESS] (64/227) Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 222599257 (Constant random value)
- [22:45:31.159] [SUCCESS] (65/227) Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 222599257 (Non constant polynomial)
- [22:45:31.172] [SUCCESS] (66/227) Polynomials with F379 and some random prime fields: Test lagrange interpolation, prime field order 222599257 (test random number of points)
- [22:45:31.172] [SUCCESS] (67/227) Polynomials with F379 and some random prime fields: Tests on degrees, field order = 610804643 (degree of zero is infinity)
- [22:45:31.172] [SUCCESS] (68/227) Polynomials with F379 and some random prime fields: Tests on degrees, field order = 610804643 (degree of constants is one)
- [22:45:31.172] [SUCCESS] (69/227) Polynomials with F379 and some random prime fields: Tests on degrees, field order = 610804643 (degree int test vectors)
- [22:45:31.172] [SUCCESS] (70/227) Polynomials with F379 and some random prime fields: Tests on degrees, field order = 610804643 (have same degree)
- [22:45:31.173] [SUCCESS] (71/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 610804643 (evaluation at any point of the zero polynomial)
- [22:45:31.173] [SUCCESS] (72/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 610804643 (evaluation at any point of a random constant polynomial)
- [22:45:31.173] [SUCCESS] (73/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 610804643 (evaluation at zero of a random constant polynomial)
- [22:45:31.173] [SUCCESS] (74/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 610804643 (evaluation at zero of the zero polynomial)
- [22:45:31.173] [SUCCESS] (75/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 610804643 (evaluation at any point of the polynomial X)
- [22:45:31.232] [SUCCESS] (76/227) Polynomials with F379 and some random prime fields: Euclidian division for prime field 610804643 (test vectors for random)
- [22:45:31.232] [SUCCESS] (77/227) Polynomials with F379 and some random prime fields: Euclidian division for prime field 610804643 (test with constants)
- [22:45:31.432] [SUCCESS] (78/227) Polynomials with F379 and some random prime fields: Euclidian division for prime field 610804643 (test vectors for random divided by constant)
- [22:45:31.433] [SUCCESS] (79/227) Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 610804643 (test properties nullifier 0 * P = P * 0 = 0)
- [22:45:31.434] [SUCCESS] (80/227) Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 610804643 (test properties commutativity p * q = p * q)
- [22:45:31.437] [SUCCESS] (81/227) Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 610804643 (test properties distributivity and communtativity a p * b q = (a * b) (p * q) = (b p) * (a q) = p * (a * b) q)
- [22:45:31.663] [SUCCESS] (82/227) Polynomials with F379 and some random prime fields: Extended Euclide alogrithm for prime field 610804643 (test properties on random polynomials)
- [22:45:31.663] [SUCCESS] (83/227) Polynomials with F379 and some random prime fields: Dense polynomial coefficients for prime field 610804643 (test vectors)
- [22:45:31.663] [SUCCESS] (84/227) Polynomials with F379 and some random prime fields: Dense polynomial coefficients with degree for prime field 610804643 (test vectors)
- [22:45:31.663] [SUCCESS] (85/227) Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 610804643 (zero polynomial is constant)
- [22:45:31.663] [SUCCESS] (86/227) Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 610804643 (Constant random value)
- [22:45:31.664] [SUCCESS] (87/227) Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 610804643 (Non constant polynomial)
- [22:45:31.678] [SUCCESS] (88/227) Polynomials with F379 and some random prime fields: Test lagrange interpolation, prime field order 610804643 (test random number of points)
- [22:45:31.678] [SUCCESS] (89/227) Polynomials with F379 and some random prime fields: Tests on degrees, field order = 770645903 (degree of zero is infinity)
- [22:45:31.678] [SUCCESS] (90/227) Polynomials with F379 and some random prime fields: Tests on degrees, field order = 770645903 (degree of constants is one)
- [22:45:31.678] [SUCCESS] (91/227) Polynomials with F379 and some random prime fields: Tests on degrees, field order = 770645903 (degree int test vectors)
- [22:45:31.678] [SUCCESS] (92/227) Polynomials with F379 and some random prime fields: Tests on degrees, field order = 770645903 (have same degree)
- [22:45:31.678] [SUCCESS] (93/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 770645903 (evaluation at any point of the zero polynomial)
- [22:45:31.678] [SUCCESS] (94/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 770645903 (evaluation at any point of a random constant polynomial)
- [22:45:31.678] [SUCCESS] (95/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 770645903 (evaluation at zero of a random constant polynomial)
- [22:45:31.678] [SUCCESS] (96/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 770645903 (evaluation at zero of the zero polynomial)
- [22:45:31.678] [SUCCESS] (97/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 770645903 (evaluation at any point of the polynomial X)
- [22:45:31.738] [SUCCESS] (98/227) Polynomials with F379 and some random prime fields: Euclidian division for prime field 770645903 (test vectors for random)
- [22:45:31.738] [SUCCESS] (99/227) Polynomials with F379 and some random prime fields: Euclidian division for prime field 770645903 (test with constants)
- [22:45:31.940] [SUCCESS] (100/227) Polynomials with F379 and some random prime fields: Euclidian division for prime field 770645903 (test vectors for random divided by constant)
- [22:45:31.941] [SUCCESS] (101/227) Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 770645903 (test properties nullifier 0 * P = P * 0 = 0)
- [22:45:31.942] [SUCCESS] (102/227) Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 770645903 (test properties commutativity p * q = p * q)
- [22:45:31.945] [SUCCESS] (103/227) Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 770645903 (test properties distributivity and communtativity a p * b q = (a * b) (p * q) = (b p) * (a q) = p * (a * b) q)
- [22:45:32.164] [SUCCESS] (104/227) Polynomials with F379 and some random prime fields: Extended Euclide alogrithm for prime field 770645903 (test properties on random polynomials)
- [22:45:32.164] [SUCCESS] (105/227) Polynomials with F379 and some random prime fields: Dense polynomial coefficients for prime field 770645903 (test vectors)
- [22:45:32.164] [SUCCESS] (106/227) Polynomials with F379 and some random prime fields: Dense polynomial coefficients with degree for prime field 770645903 (test vectors)
- [22:45:32.164] [SUCCESS] (107/227) Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 770645903 (zero polynomial is constant)
- [22:45:32.164] [SUCCESS] (108/227) Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 770645903 (Constant random value)
- [22:45:32.165] [SUCCESS] (109/227) Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 770645903 (Non constant polynomial)
- [22:45:32.178] [SUCCESS] (110/227) Polynomials with F379 and some random prime fields: Test lagrange interpolation, prime field order 770645903 (test random number of points)
- [22:45:32.178] [SUCCESS] (111/227) Polynomials with F379 and some random prime fields: Tests on degrees, field order = 52435875175126190479447740508185965837690552500527637822603658699938581184513 (degree of zero is infinity)
- [22:45:32.178] [SUCCESS] (112/227) Polynomials with F379 and some random prime fields: Tests on degrees, field order = 52435875175126190479447740508185965837690552500527637822603658699938581184513 (degree of constants is one)
- [22:45:32.178] [SUCCESS] (113/227) Polynomials with F379 and some random prime fields: Tests on degrees, field order = 52435875175126190479447740508185965837690552500527637822603658699938581184513 (degree int test vectors)
- [22:45:32.178] [SUCCESS] (114/227) Polynomials with F379 and some random prime fields: Tests on degrees, field order = 52435875175126190479447740508185965837690552500527637822603658699938581184513 (have same degree)
- [22:45:32.179] [SUCCESS] (115/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 52435875175126190479447740508185965837690552500527637822603658699938581184513 (evaluation at any point of the zero polynomial)
- [22:45:32.179] [SUCCESS] (116/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 52435875175126190479447740508185965837690552500527637822603658699938581184513 (evaluation at any point of a random constant polynomial)
- [22:45:32.179] [SUCCESS] (117/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 52435875175126190479447740508185965837690552500527637822603658699938581184513 (evaluation at zero of a random constant polynomial)
- [22:45:32.179] [SUCCESS] (118/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 52435875175126190479447740508185965837690552500527637822603658699938581184513 (evaluation at zero of the zero polynomial)
- [22:45:32.179] [SUCCESS] (119/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 52435875175126190479447740508185965837690552500527637822603658699938581184513 (evaluation at any point of the polynomial X)
- [22:45:32.294] [SUCCESS] (120/227) Polynomials with F379 and some random prime fields: Euclidian division for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513 (test vectors for random)
- [22:45:32.295] [SUCCESS] (121/227) Polynomials with F379 and some random prime fields: Euclidian division for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513 (test with constants)
- [22:45:32.834] [SUCCESS] (122/227) Polynomials with F379 and some random prime fields: Euclidian division for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513 (test vectors for random divided by constant)
- [22:45:32.838] [SUCCESS] (123/227) Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513 (test properties nullifier 0 * P = P * 0 = 0)
- [22:45:32.842] [SUCCESS] (124/227) Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513 (test properties commutativity p * q = p * q)
- [22:45:32.852] [SUCCESS] (125/227) Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513 (test properties distributivity and communtativity a p * b q = (a * b) (p * q) = (b p) * (a q) = p * (a * b) q)
- [22:45:34.079] [SUCCESS] (126/227) Polynomials with F379 and some random prime fields: Extended Euclide alogrithm for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513 (test properties on random polynomials)
- [22:45:34.079] [SUCCESS] (127/227) Polynomials with F379 and some random prime fields: Dense polynomial coefficients for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513 (test vectors)
- [22:45:34.079] [SUCCESS] (128/227) Polynomials with F379 and some random prime fields: Dense polynomial coefficients with degree for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513 (test vectors)
- [22:45:34.079] [SUCCESS] (129/227) Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 52435875175126190479447740508185965837690552500527637822603658699938581184513 (zero polynomial is constant)
- [22:45:34.080] [SUCCESS] (130/227) Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 52435875175126190479447740508185965837690552500527637822603658699938581184513 (Constant random value)
- [22:45:34.083] [SUCCESS] (131/227) Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 52435875175126190479447740508185965837690552500527637822603658699938581184513 (Non constant polynomial)
- [22:45:34.106] [SUCCESS] (132/227) Polynomials with F379 and some random prime fields: Test lagrange interpolation, prime field order 52435875175126190479447740508185965837690552500527637822603658699938581184513 (test random number of points)
- [22:45:34.108] [SUCCESS] (133/227) Polynomials with F379 and some random prime fields: Polynomial multiplication FFT for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513 (Compare FFT version of polynomial multiplication against normal polynomial multiplication)
- [22:45:34.108] [SUCCESS] (134/227) Polynomials with F379 and some random prime fields: Polynomial multiplication FFT for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513 (At least one of the polynomial is zero)
- [22:45:34.113] [SUCCESS] (135/227) Polynomials with F379 and some random prime fields: Polynomial multiplication FFT for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513 (Verify the degree of P * Q is correct)
- [22:45:34.115] [SUCCESS] (136/227) Polynomials with F379 and some random prime fields: Polynomial multiplication FFT for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513 (Commutativity of polynomial multiplication using FFT)
- [22:45:34.116] [SUCCESS] (137/227) Polynomials with F379 and some random prime fields: Evaluation FFT for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513 (test evaluation at random points)
- [22:45:34.116] [SUCCESS] (138/227) Polynomials with F379 and some random prime fields: Evaluation FFT for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513 (test evaluation with zero polynomial)
- [22:45:34.116] [SUCCESS] (139/227) Polynomials with F379 and some random prime fields: Evaluation FFT for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513 (test evaluation with smaller polynomial)
- [22:45:34.121] [SUCCESS] (140/227) Polynomials with F379 and some random prime fields: Evaluation FFT for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513 (test evaluation with larger polynomial)
- [22:45:34.148] [SUCCESS] (141/227) Polynomials with F379 and some random prime fields: Inverse FFT for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513 (test interpolation at random points)
- [22:45:34.174] [SUCCESS] (142/227) Polynomials with F379 and some random prime fields: Inverse FFT for prime field 52435875175126190479447740508185965837690552500527637822603658699938581184513 (test interpolation with only roots)
- [22:45:34.174] [SUCCESS] (143/227) Polynomials with F379 and some random prime fields: Tests on degrees, field order = 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (degree of zero is infinity)
- [22:45:34.174] [SUCCESS] (144/227) Polynomials with F379 and some random prime fields: Tests on degrees, field order = 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (degree of constants is one)
- [22:45:34.174] [SUCCESS] (145/227) Polynomials with F379 and some random prime fields: Tests on degrees, field order = 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (degree int test vectors)
- [22:45:34.174] [SUCCESS] (146/227) Polynomials with F379 and some random prime fields: Tests on degrees, field order = 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (have same degree)
- [22:45:34.175] [SUCCESS] (147/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (evaluation at any point of the zero polynomial)
- [22:45:34.175] [SUCCESS] (148/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (evaluation at any point of a random constant polynomial)
- [22:45:34.175] [SUCCESS] (149/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (evaluation at zero of a random constant polynomial)
- [22:45:34.175] [SUCCESS] (150/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (evaluation at zero of the zero polynomial)
- [22:45:34.175] [SUCCESS] (151/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (evaluation at any point of the polynomial X)
- [22:45:34.293] [SUCCESS] (152/227) Polynomials with F379 and some random prime fields: Euclidian division for prime field 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (test vectors for random)
- [22:45:34.293] [SUCCESS] (153/227) Polynomials with F379 and some random prime fields: Euclidian division for prime field 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (test with constants)
- [22:45:34.711] [SUCCESS] (154/227) Polynomials with F379 and some random prime fields: Euclidian division for prime field 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (test vectors for random divided by constant)
- [22:45:34.715] [SUCCESS] (155/227) Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (test properties nullifier 0 * P = P * 0 = 0)
- [22:45:34.720] [SUCCESS] (156/227) Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (test properties commutativity p * q = p * q)
- [22:45:34.728] [SUCCESS] (157/227) Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (test properties distributivity and communtativity a p * b q = (a * b) (p * q) = (b p) * (a q) = p * (a * b) q)
- [22:45:35.530] [SUCCESS] (158/227) Polynomials with F379 and some random prime fields: Extended Euclide alogrithm for prime field 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (test properties on random polynomials)
- [22:45:35.530] [SUCCESS] (159/227) Polynomials with F379 and some random prime fields: Dense polynomial coefficients for prime field 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (test vectors)
- [22:45:35.530] [SUCCESS] (160/227) Polynomials with F379 and some random prime fields: Dense polynomial coefficients with degree for prime field 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (test vectors)
- [22:45:35.530] [SUCCESS] (161/227) Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (zero polynomial is constant)
- [22:45:35.530] [SUCCESS] (162/227) Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (Constant random value)
- [22:45:35.535] [SUCCESS] (163/227) Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (Non constant polynomial)
- [22:45:35.571] [SUCCESS] (164/227) Polynomials with F379 and some random prime fields: Test lagrange interpolation, prime field order 4002409555221667393417789825735904156556882819939007885332058136124031650490837864442687629129015664037894272559787 (test random number of points)
- [22:45:35.571] [SUCCESS] (165/227) Polynomials with F379 and some random prime fields: Tests on degrees, field order = 57896044618658097711785492504343953926634992332820282019728792003956564819949 (degree of zero is infinity)
- [22:45:35.571] [SUCCESS] (166/227) Polynomials with F379 and some random prime fields: Tests on degrees, field order = 57896044618658097711785492504343953926634992332820282019728792003956564819949 (degree of constants is one)
- [22:45:35.571] [SUCCESS] (167/227) Polynomials with F379 and some random prime fields: Tests on degrees, field order = 57896044618658097711785492504343953926634992332820282019728792003956564819949 (degree int test vectors)
- [22:45:35.571] [SUCCESS] (168/227) Polynomials with F379 and some random prime fields: Tests on degrees, field order = 57896044618658097711785492504343953926634992332820282019728792003956564819949 (have same degree)
- [22:45:35.571] [SUCCESS] (169/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 57896044618658097711785492504343953926634992332820282019728792003956564819949 (evaluation at any point of the zero polynomial)
- [22:45:35.572] [SUCCESS] (170/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 57896044618658097711785492504343953926634992332820282019728792003956564819949 (evaluation at any point of a random constant polynomial)
- [22:45:35.572] [SUCCESS] (171/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 57896044618658097711785492504343953926634992332820282019728792003956564819949 (evaluation at zero of a random constant polynomial)
- [22:45:35.572] [SUCCESS] (172/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 57896044618658097711785492504343953926634992332820282019728792003956564819949 (evaluation at zero of the zero polynomial)
- [22:45:35.572] [SUCCESS] (173/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 57896044618658097711785492504343953926634992332820282019728792003956564819949 (evaluation at any point of the polynomial X)
- [22:45:35.690] [SUCCESS] (174/227) Polynomials with F379 and some random prime fields: Euclidian division for prime field 57896044618658097711785492504343953926634992332820282019728792003956564819949 (test vectors for random)
- [22:45:35.690] [SUCCESS] (175/227) Polynomials with F379 and some random prime fields: Euclidian division for prime field 57896044618658097711785492504343953926634992332820282019728792003956564819949 (test with constants)
- [22:45:36.244] [SUCCESS] (176/227) Polynomials with F379 and some random prime fields: Euclidian division for prime field 57896044618658097711785492504343953926634992332820282019728792003956564819949 (test vectors for random divided by constant)
- [22:45:36.249] [SUCCESS] (177/227) Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 57896044618658097711785492504343953926634992332820282019728792003956564819949 (test properties nullifier 0 * P = P * 0 = 0)
- [22:45:36.253] [SUCCESS] (178/227) Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 57896044618658097711785492504343953926634992332820282019728792003956564819949 (test properties commutativity p * q = p * q)
- [22:45:36.263] [SUCCESS] (179/227) Polynomials with F379 and some random prime fields: Polynomial multiplication for prime field 57896044618658097711785492504343953926634992332820282019728792003956564819949 (test properties distributivity and communtativity a p * b q = (a * b) (p * q) = (b p) * (a q) = p * (a * b) q)
- [22:45:37.511] [SUCCESS] (180/227) Polynomials with F379 and some random prime fields: Extended Euclide alogrithm for prime field 57896044618658097711785492504343953926634992332820282019728792003956564819949 (test properties on random polynomials)
- [22:45:37.511] [SUCCESS] (181/227) Polynomials with F379 and some random prime fields: Dense polynomial coefficients for prime field 57896044618658097711785492504343953926634992332820282019728792003956564819949 (test vectors)
- [22:45:37.511] [SUCCESS] (182/227) Polynomials with F379 and some random prime fields: Dense polynomial coefficients with degree for prime field 57896044618658097711785492504343953926634992332820282019728792003956564819949 (test vectors)
- [22:45:37.511] [SUCCESS] (183/227) Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 57896044618658097711785492504343953926634992332820282019728792003956564819949 (zero polynomial is constant)
- [22:45:37.511] [SUCCESS] (184/227) Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 57896044618658097711785492504343953926634992332820282019728792003956564819949 (Constant random value)
- [22:45:37.514] [SUCCESS] (185/227) Polynomials with F379 and some random prime fields: Tests for constant polynomials, field order = 57896044618658097711785492504343953926634992332820282019728792003956564819949 (Non constant polynomial)
- [22:45:37.539] [SUCCESS] (186/227) Polynomials with F379 and some random prime fields: Test lagrange interpolation, prime field order 57896044618658097711785492504343953926634992332820282019728792003956564819949 (test random number of points)
- [22:45:37.539] [SUCCESS] (187/227) Polynomials with F379 and some random prime fields: Tests on degrees, field order = 379 (degree of zero is infinity)
- [22:45:37.539] [SUCCESS] (188/227) Polynomials with F379 and some random prime fields: Tests on degrees, field order = 379 (degree of constants is one)
- [22:45:37.539] [SUCCESS] (189/227) Polynomials with F379 and some random prime fields: Tests on degrees, field order = 379 (degree int test vectors)
- [22:45:37.539] [SUCCESS] (190/227) Polynomials with F379 and some random prime fields: Tests on degrees, field order = 379 (have same degree)
- [22:45:37.539] [SUCCESS] (191/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 379 (evaluation test vectors)
- [22:45:37.539] [SUCCESS] (192/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 379 (evaluation at any point of the zero polynomial)
- [22:45:37.539] [SUCCESS] (193/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 379 (evaluation at any point of a random constant polynomial)
- [22:45:37.539] [SUCCESS] (194/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 379 (evaluation at zero of a random constant polynomial)
- [22:45:37.539] [SUCCESS] (195/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 379 (evaluation at zero of the zero polynomial)
- [22:45:37.539] [SUCCESS] (196/227) Polynomials with F379 and some random prime fields: Test evaluation, field order = 379 (evaluation at any point of the polynomial X)
- [22:45:37.539] [SUCCESS] (197/227) Polynomials with F379 and some random prime fields: Test lagrange interpolation, prime field order 379 (test vector)
- [22:45:37.546] [SUCCESS] (198/227) Polynomials with F379 and some random prime fields: Test lagrange interpolation, prime field order 379 (test random number of points)
- [22:45:37.546] [SUCCESS] (199/227) Polynomials with F379 and some random prime fields: Test mult by scalar (test vectors)
- [22:45:37.546] [SUCCESS] (200/227) Polynomials with F379 and some random prime fields: Test mult by scalar (test multiply constants by scalar zero is zero)
- [22:45:37.546] [SUCCESS] (201/227) Polynomials with F379 and some random prime fields: Test mult by scalar (test multiply degree one by scalar zero is zero)
- [22:45:37.546] [SUCCESS] (202/227) Polynomials with F379 and some random prime fields: Test opposite (test property opposite twice)
- [22:45:37.546] [SUCCESS] (203/227) Polynomials with F379 and some random prime fields: Test opposite (test property opposite of constant)
- [22:45:37.546] [SUCCESS] (204/227) Polynomials with F379 and some random prime fields: Test opposite (test property opposite of zero)
- [22:45:37.547] [SUCCESS] (205/227) Polynomials with F379 and some random prime fields: Split polynomials (Test even polynomial with test vectors)
- [22:45:37.547] [SUCCESS] (206/227) Polynomials with F379 and some random prime fields: Split polynomials (Test odd polynomial with test vectors)
- [22:45:37.547] [SUCCESS] (207/227) Polynomials with F379 and some random prime fields: Dense polynomial coefficients for prime field 379 (test vectors)
- [22:45:37.547] [SUCCESS] (208/227) Polynomials with F379 and some random prime fields: Inverse FFT for prime field 337 (test vectors for interpolation fft)
- [22:45:37.548] [SUCCESS] (209/227) Polynomials with F379 and some random prime fields: Inverse FFT for prime field 337 (test interpolation at random points)
- [22:45:37.549] [SUCCESS] (210/227) Polynomials with F379 and some random prime fields: Inverse FFT for prime field 337 (test interpolation with only roots)
- [22:45:37.549] [SUCCESS] (211/227) Polynomials with F379 and some random prime fields: Polynomial multiplication FFT for prime field 337 (test vectors for polynomial multiplication FFT)
- [22:45:37.549] [SUCCESS] (212/227) Polynomials with F379 and some random prime fields: Polynomial multiplication FFT for prime field 337 (Compare FFT version of polynomial multiplication against normal polynomial multiplication)
- [22:45:37.549] [SUCCESS] (213/227) Polynomials with F379 and some random prime fields: Polynomial multiplication FFT for prime field 337 (At least one of the polynomial is zero)
- [22:45:37.550] [SUCCESS] (214/227) Polynomials with F379 and some random prime fields: Polynomial multiplication FFT for prime field 337 (Verify the degree of P * Q is correct)
- [22:45:37.550] [SUCCESS] (215/227) Polynomials with F379 and some random prime fields: Polynomial multiplication FFT for prime field 337 (Commutativity of polynomial multiplication using FFT)
- [22:45:37.550] [SUCCESS] (216/227) Polynomials with F379 and some random prime fields: Evaluation FFT for prime field 337 (test vectors for evaluation)
- [22:45:37.550] [SUCCESS] (217/227) Polynomials with F379 and some random prime fields: Evaluation FFT for prime field 337 (test evaluation at random points)
- [22:45:37.550] [SUCCESS] (218/227) Polynomials with F379 and some random prime fields: Evaluation FFT for prime field 337 (test evaluation with zero polynomial)
- [22:45:37.550] [SUCCESS] (219/227) Polynomials with F379 and some random prime fields: Evaluation FFT for prime field 337 (test evaluation with smaller polynomial)
- [22:45:37.551] [SUCCESS] (220/227) Polynomials with F379 and some random prime fields: Evaluation FFT for prime field 337 (test evaluation with larger polynomial)
- [22:45:37.551] [SUCCESS] (221/227) Polynomials with F379 and some random prime fields: Euclidian division for prime field 379 (test vectors for euclidian division)
- [22:45:37.613] [SUCCESS] (222/227) Polynomials with F379 and some random prime fields: Euclidian division for prime field 379 (test vectors for random)
- [22:45:37.613] [SUCCESS] (223/227) Polynomials with F379 and some random prime fields: Euclidian division for prime field 379 (test with constants)
- [22:45:37.933] [SUCCESS] (224/227) Polynomials with F379 and some random prime fields: Euclidian division for prime field 379 (test vectors for random divided by constant)
- [22:45:38.341] [SUCCESS] (225/227) Polynomials with F379 and some random prime fields: Extended Euclide alogrithm for prime field 379 (test properties on random polynomials)
- [22:45:38.341] [SUCCESS] (226/227) Polynomials with F379 and some random prime fields: Test add (test vectors)
- [22:45:38.341] [SUCCESS] (227/227) Utils: Reorganizing the coefficients (Next power of two)
- (cd _build/default/src/lib_distributed_plonk/distribution/test && ./main.exe -q)
- Random seed: 42
- Testing `PlonK'.
- This run has ID `G244MWJB'.
- 
-   [OK]          Polynomial_commitment          0   distr. correctness (KZG).
-   [OK]          Polynomial_commitment          1   distr. correctness (KZG_Pa...
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/octez-libs.18.1/_build/default/src/lib_distributed_plonk/distribution/test/_build/_tests/PlonK'.
- Test Successful in 0.248s. 2 tests run.
- (cd _build/default/src/lib_bls12_381_signature/test && ./main.exe)
- [22:45:29.210] [SUCCESS] (1/160) BLS Signature: Common features to both instanciations (Size in bytes of sk)
- [22:45:29.211] [SUCCESS] (2/160) BLS Signature: Common features to both instanciations (sk_of_bytes_opt and sk_to_bytes are inverse functions)
- [22:45:29.211] [SUCCESS] (3/160) BLS Signature: Common features to both instanciations (sk_of_bytes_exn and sk_to_bytes are inverse functions)
- [22:45:29.211] [SUCCESS] (4/160) BLS Signature: Common features to both instanciations (sk_of_bytes_opt valid values)
- [22:45:29.211] [SUCCESS] (5/160) BLS Signature: Common features to both instanciations (sk_of_bytes_exn does not accept more than 32 bytes)
- [22:45:29.212] [SUCCESS] (6/160) BLS Signature: Common features to both instanciations (sk_of_bytes_opt does not accept more than 32 bytes)
- [22:45:29.212] [SUCCESS] (7/160) BLS Signature: Common features to both instanciations (sk_of_bytes_opt does not accept values higher than Fr modules but still on 32 bytes)
- [22:45:29.212] [SUCCESS] (8/160) BLS Signature: Common features to both instanciations (sk_of_bytes_exn does not accept values higher than Fr modules but still on 32 bytes)
- [22:45:29.212] [SUCCESS] (9/160) BLS Signature: Common features to both instanciations (sk_of_bytes_exn valid values)
- [22:45:29.212] [SUCCESS] (10/160) BLS Signature: Common features to both instanciations (generate_sk raises Invalid_argument is ikm is smaller than 32 bytes)
- [22:45:29.212] [SUCCESS] (11/160) BLS Signature: MinPk Size in bytes (pk)
- [22:45:29.214] [SUCCESS] (12/160) BLS Signature: MinPk Size in bytes (signature)
- [22:45:29.214] [SUCCESS] (13/160) BLS Signature: MinPk Auxiliary functions (unsafe_pk_of_bytes does no check on the input)
- [22:45:29.216] [SUCCESS] (14/160) BLS Signature: MinPk Auxiliary functions (pk_of_bytes_exn accepts points in the subgroup and in compressed form)
- [22:45:29.218] [SUCCESS] (15/160) BLS Signature: MinPk Auxiliary functions (pk_of_bytes_opt accepts points in the subgroup and in compressed form)
- [22:45:29.220] [SUCCESS] (16/160) BLS Signature: MinPk Auxiliary functions (pk_of_bytes_exn does not accept points in the subgroup and in uncompressed form)
- [22:45:29.221] [SUCCESS] (17/160) BLS Signature: MinPk Auxiliary functions (pk_of_bytes_opt does not accept points in the subgroup and in uncompressed form)
- [22:45:29.221] [SUCCESS] (18/160) BLS Signature: MinPk Auxiliary functions (unsafe_pk_of_bytes copies the input)
- [22:45:29.224] [SUCCESS] (19/160) BLS Signature: MinPk Auxiliary functions (pk_of_bytes_exn copies the input)
- [22:45:29.226] [SUCCESS] (20/160) BLS Signature: MinPk Auxiliary functions (pk_of_bytes_opt copies the input)
- [22:45:29.226] [SUCCESS] (21/160) BLS Signature: MinPk Auxiliary functions (unsafe_pk_of_bytes accepts points not in the subgroup)
- [22:45:29.226] [SUCCESS] (22/160) BLS Signature: MinPk Auxiliary functions (pk_of_bytes_exn does check the input)
- [22:45:29.228] [SUCCESS] (23/160) BLS Signature: MinPk Auxiliary functions (pk_of_bytes_opt and pk_to_bytes are inverse functions on valid inputs)
- [22:45:29.230] [SUCCESS] (24/160) BLS Signature: MinPk Auxiliary functions (unsafe_pk_of_bytes and pk_to_bytes are inverse functions on valid inputs)
- [22:45:29.232] [SUCCESS] (25/160) BLS Signature: MinPk Auxiliary functions (pk_of_bytes_exn and pk_to_bytes are inverse functions on valid inputs)
- [22:45:29.232] [SUCCESS] (26/160) BLS Signature: MinPk Auxiliary functions (unsafe_pk_of_bytes and pk_to_bytes are inverse functions on any valid input)
- [22:45:29.232] [SUCCESS] (27/160) BLS Signature: MinPk Auxiliary functions (pk_of_bytes_exn does verify the input represents a point in the subgroup)
- [22:45:29.233] [SUCCESS] (28/160) BLS Signature: MinPk Auxiliary functions (pk_of_bytes_opt does verify the input represents a point in the subgroup)
- [22:45:29.233] [SUCCESS] (29/160) BLS Signature: MinPk Auxiliary functions (pk_of_bytes_opt does check the input)
- [22:45:29.233] [SUCCESS] (30/160) BLS Signature: MinPk Auxiliary functions (unsafe_signature_of_bytes does no check on the input)
- [22:45:29.241] [SUCCESS] (31/160) BLS Signature: MinPk Auxiliary functions (signature_of_bytes_exn accepts points in the subgroup and in compressed form)
- [22:45:29.249] [SUCCESS] (32/160) BLS Signature: MinPk Auxiliary functions (signature_of_bytes_opt accepts points in the subgroup and in compressed form)
- [22:45:29.257] [SUCCESS] (33/160) BLS Signature: MinPk Auxiliary functions (signature_of_bytes_exn does not accept points in the subgroup and in uncompressed form)
- [22:45:29.265] [SUCCESS] (34/160) BLS Signature: MinPk Auxiliary functions (signature_of_bytes_opt does not accept points in the subgroup and in uncompressed form)
- [22:45:29.265] [SUCCESS] (35/160) BLS Signature: MinPk Auxiliary functions (unsafe_signature_of_bytes copies the input)
- [22:45:29.273] [SUCCESS] (36/160) BLS Signature: MinPk Auxiliary functions (signature_of_bytes_exn copies the input)
- [22:45:29.281] [SUCCESS] (37/160) BLS Signature: MinPk Auxiliary functions (signature_of_bytes_opt copies the input)
- [22:45:29.281] [SUCCESS] (38/160) BLS Signature: MinPk Auxiliary functions (unsafe_signature_of_bytes accepts points not in the subgroup)
- [22:45:29.281] [SUCCESS] (39/160) BLS Signature: MinPk Auxiliary functions (signature_of_bytes_exn does check the input)
- [22:45:29.290] [SUCCESS] (40/160) BLS Signature: MinPk Auxiliary functions (signature_of_bytes_opt and signature_to_bytes are inverse functions on valid inputs)
- [22:45:29.297] [SUCCESS] (41/160) BLS Signature: MinPk Auxiliary functions (unsafe_signature_of_bytes and signature_to_bytes are inverse functions on valid inputs)
- [22:45:29.305] [SUCCESS] (42/160) BLS Signature: MinPk Auxiliary functions (signature_of_bytes_exn and signature_to_bytes are inverse functions on valid inputs)
- [22:45:29.305] [SUCCESS] (43/160) BLS Signature: MinPk Auxiliary functions (unsafe_signature_of_bytes and signature_to_bytes are inverse functions on any valid input)
- [22:45:29.306] [SUCCESS] (44/160) BLS Signature: MinPk Auxiliary functions (signature_of_bytes_exn does verify the input represents a point in the subgroup)
- [22:45:29.307] [SUCCESS] (45/160) BLS Signature: MinPk Auxiliary functions (signature_of_bytes_opt does verify the input represents a point in the subgroup)
- [22:45:29.307] [SUCCESS] (46/160) BLS Signature: MinPk Auxiliary functions (signature_of_bytes_opt does check the input)
- [22:45:29.509] [SUCCESS] (47/160) BLS Signature: MinPk Properties and test vectors for Basic (Sign and verify same message with correct keys)
- [22:45:29.710] [SUCCESS] (48/160) BLS Signature: MinPk Properties and test vectors for Basic (Sign and verify different message with correct keys)
- [22:45:29.923] [SUCCESS] (49/160) BLS Signature: MinPk Properties and test vectors for Basic (Sign and verify same message with different keys)
- [22:45:30.137] [SUCCESS] (50/160) BLS Signature: MinPk Properties and test vectors for Basic (Sign and verify different message with different keys)
- [22:45:30.340] [SUCCESS] (51/160) BLS Signature: MinPk Properties and test vectors for Basic (Test full sign and verify with different ikm sizes)
- [22:45:30.343] [SUCCESS] (52/160) BLS Signature: MinPk Properties and test vectors for Basic (Sign and verify with a pk not in the prime subgroup)
- [22:45:30.563] [SUCCESS] (53/160) BLS Signature: MinPk Properties and test vectors for Basic (Test vectors from bls_sigs_ref)
- [22:45:30.775] [SUCCESS] (54/160) BLS Signature: MinPk Properties and test vectors for Message augmentation (Sign and verify same message with correct keys)
- [22:45:30.988] [SUCCESS] (55/160) BLS Signature: MinPk Properties and test vectors for Message augmentation (Sign and verify different message with correct keys)
- [22:45:31.212] [SUCCESS] (56/160) BLS Signature: MinPk Properties and test vectors for Message augmentation (Sign and verify same message with different keys)
- [22:45:31.440] [SUCCESS] (57/160) BLS Signature: MinPk Properties and test vectors for Message augmentation (Sign and verify different message with different keys)
- [22:45:31.672] [SUCCESS] (58/160) BLS Signature: MinPk Properties and test vectors for Message augmentation (Test full sign and verify with different ikm sizes)
- [22:45:31.676] [SUCCESS] (59/160) BLS Signature: MinPk Properties and test vectors for Message augmentation (Sign and verify with a pk not in the prime subgroup)
- [22:45:31.956] [SUCCESS] (60/160) BLS Signature: MinPk Properties and test vectors for Message augmentation (Test vectors from bls_sigs_ref)
- [22:45:32.155] [SUCCESS] (61/160) BLS Signature: MinPk Properties and test vectors for Proof of possession (Sign and verify same message with correct keys)
- [22:45:32.355] [SUCCESS] (62/160) BLS Signature: MinPk Properties and test vectors for Proof of possession (Sign and verify different message with correct keys)
- [22:45:32.567] [SUCCESS] (63/160) BLS Signature: MinPk Properties and test vectors for Proof of possession (Sign and verify same message with different keys)
- [22:45:32.781] [SUCCESS] (64/160) BLS Signature: MinPk Properties and test vectors for Proof of possession (Sign and verify different message with different keys)
- [22:45:32.986] [SUCCESS] (65/160) BLS Signature: MinPk Properties and test vectors for Proof of possession (Test full sign and verify with different ikm sizes)
- [22:45:32.990] [SUCCESS] (66/160) BLS Signature: MinPk Properties and test vectors for Proof of possession (Sign and verify with a pk not in the prime subgroup)
- [22:45:33.211] [SUCCESS] (67/160) BLS Signature: MinPk Properties and test vectors for Proof of possession (Test vectors from bls_sigs_ref)
- [22:45:33.490] [SUCCESS] (68/160) BLS Signature: MinPk Proof of possession proof/verify properties and test vectors (Pop G2 from file)
- [22:45:33.511] [SUCCESS] (69/160) BLS Signature: MinPk Proof of possession proof/verify properties and test vectors (Prove and verify with correct keys)
- [22:45:33.532] [SUCCESS] (70/160) BLS Signature: MinPk Proof of possession proof/verify properties and test vectors (Prove and verify with different pk for verify)
- [22:45:33.534] [SUCCESS] (71/160) BLS Signature: MinPk Proof of possession proof/verify properties and test vectors (Verify random proof)
- [22:45:33.534] [SUCCESS] (72/160) BLS Signature: MinSig Size in bytes (pk)
- [22:45:33.535] [SUCCESS] (73/160) BLS Signature: MinSig Size in bytes (signature)
- [22:45:33.535] [SUCCESS] (74/160) BLS Signature: MinSig Auxiliary functions (unsafe_pk_of_bytes does no check on the input)
- [22:45:33.543] [SUCCESS] (75/160) BLS Signature: MinSig Auxiliary functions (pk_of_bytes_exn accepts points in the subgroup and in compressed form)
- [22:45:33.551] [SUCCESS] (76/160) BLS Signature: MinSig Auxiliary functions (pk_of_bytes_opt accepts points in the subgroup and in compressed form)
- [22:45:33.558] [SUCCESS] (77/160) BLS Signature: MinSig Auxiliary functions (pk_of_bytes_exn does not accept points in the subgroup and in uncompressed form)
- [22:45:33.566] [SUCCESS] (78/160) BLS Signature: MinSig Auxiliary functions (pk_of_bytes_opt does not accept points in the subgroup and in uncompressed form)
- [22:45:33.566] [SUCCESS] (79/160) BLS Signature: MinSig Auxiliary functions (unsafe_pk_of_bytes copies the input)
- [22:45:33.574] [SUCCESS] (80/160) BLS Signature: MinSig Auxiliary functions (pk_of_bytes_exn copies the input)
- [22:45:33.582] [SUCCESS] (81/160) BLS Signature: MinSig Auxiliary functions (pk_of_bytes_opt copies the input)
- [22:45:33.582] [SUCCESS] (82/160) BLS Signature: MinSig Auxiliary functions (unsafe_pk_of_bytes accepts points not in the subgroup)
- [22:45:33.582] [SUCCESS] (83/160) BLS Signature: MinSig Auxiliary functions (pk_of_bytes_exn does check the input)
- [22:45:33.591] [SUCCESS] (84/160) BLS Signature: MinSig Auxiliary functions (pk_of_bytes_opt and pk_to_bytes are inverse functions on valid inputs)
- [22:45:33.598] [SUCCESS] (85/160) BLS Signature: MinSig Auxiliary functions (unsafe_pk_of_bytes and pk_to_bytes are inverse functions on valid inputs)
- [22:45:33.607] [SUCCESS] (86/160) BLS Signature: MinSig Auxiliary functions (pk_of_bytes_exn and pk_to_bytes are inverse functions on valid inputs)
- [22:45:33.607] [SUCCESS] (87/160) BLS Signature: MinSig Auxiliary functions (unsafe_pk_of_bytes and pk_to_bytes are inverse functions on any valid input)
- [22:45:33.607] [SUCCESS] (88/160) BLS Signature: MinSig Auxiliary functions (pk_of_bytes_exn does verify the input represents a point in the subgroup)
- [22:45:33.608] [SUCCESS] (89/160) BLS Signature: MinSig Auxiliary functions (pk_of_bytes_opt does verify the input represents a point in the subgroup)
- [22:45:33.608] [SUCCESS] (90/160) BLS Signature: MinSig Auxiliary functions (pk_of_bytes_opt does check the input)
- [22:45:33.608] [SUCCESS] (91/160) BLS Signature: MinSig Auxiliary functions (unsafe_signature_of_bytes does no check on the input)
- [22:45:33.611] [SUCCESS] (92/160) BLS Signature: MinSig Auxiliary functions (signature_of_bytes_exn accepts points in the subgroup and in compressed form)
- [22:45:33.613] [SUCCESS] (93/160) BLS Signature: MinSig Auxiliary functions (signature_of_bytes_opt accepts points in the subgroup and in compressed form)
- [22:45:33.614] [SUCCESS] (94/160) BLS Signature: MinSig Auxiliary functions (signature_of_bytes_exn does not accept points in the subgroup and in uncompressed form)
- [22:45:33.616] [SUCCESS] (95/160) BLS Signature: MinSig Auxiliary functions (signature_of_bytes_opt does not accept points in the subgroup and in uncompressed form)
- [22:45:33.616] [SUCCESS] (96/160) BLS Signature: MinSig Auxiliary functions (unsafe_signature_of_bytes copies the input)
- [22:45:33.618] [SUCCESS] (97/160) BLS Signature: MinSig Auxiliary functions (signature_of_bytes_exn copies the input)
- [22:45:33.620] [SUCCESS] (98/160) BLS Signature: MinSig Auxiliary functions (signature_of_bytes_opt copies the input)
- [22:45:33.620] [SUCCESS] (99/160) BLS Signature: MinSig Auxiliary functions (unsafe_signature_of_bytes accepts points not in the subgroup)
- [22:45:33.620] [SUCCESS] (100/160) BLS Signature: MinSig Auxiliary functions (signature_of_bytes_exn does check the input)
- [22:45:33.622] [SUCCESS] (101/160) BLS Signature: MinSig Auxiliary functions (signature_of_bytes_opt and signature_to_bytes are inverse functions on valid inputs)
- [22:45:33.624] [SUCCESS] (102/160) BLS Signature: MinSig Auxiliary functions (unsafe_signature_of_bytes and signature_to_bytes are inverse functions on valid inputs)
- [22:45:33.626] [SUCCESS] (103/160) BLS Signature: MinSig Auxiliary functions (signature_of_bytes_exn and signature_to_bytes are inverse functions on valid inputs)
- [22:45:33.626] [SUCCESS] (104/160) BLS Signature: MinSig Auxiliary functions (unsafe_signature_of_bytes and signature_to_bytes are inverse functions on any valid input)
- [22:45:33.627] [SUCCESS] (105/160) BLS Signature: MinSig Auxiliary functions (signature_of_bytes_exn does verify the input represents a point in the subgroup)
- [22:45:33.627] [SUCCESS] (106/160) BLS Signature: MinSig Auxiliary functions (signature_of_bytes_opt does verify the input represents a point in the subgroup)
- [22:45:33.627] [SUCCESS] (107/160) BLS Signature: MinSig Auxiliary functions (signature_of_bytes_opt does check the input)
- [22:45:33.799] [SUCCESS] (108/160) BLS Signature: MinSig Properties and test vectors for Basic (Sign and verify same message with correct keys)
- [22:45:33.971] [SUCCESS] (109/160) BLS Signature: MinSig Properties and test vectors for Basic (Sign and verify different message with correct keys)
- [22:45:34.165] [SUCCESS] (110/160) BLS Signature: MinSig Properties and test vectors for Basic (Sign and verify same message with different keys)
- [22:45:34.359] [SUCCESS] (111/160) BLS Signature: MinSig Properties and test vectors for Basic (Sign and verify different message with different keys)
- [22:45:34.532] [SUCCESS] (112/160) BLS Signature: MinSig Properties and test vectors for Basic (Test full sign and verify with different ikm sizes)
- [22:45:34.535] [SUCCESS] (113/160) BLS Signature: MinSig Properties and test vectors for Basic (Sign and verify with a pk not in the prime subgroup)
- [22:45:34.634] [SUCCESS] (114/160) BLS Signature: MinSig Properties and test vectors for Basic (Test vectors from bls_sigs_ref)
- [22:45:34.828] [SUCCESS] (115/160) BLS Signature: MinSig Properties and test vectors for Message augmentation (Sign and verify same message with correct keys)
- [22:45:35.021] [SUCCESS] (116/160) BLS Signature: MinSig Properties and test vectors for Message augmentation (Sign and verify different message with correct keys)
- [22:45:35.236] [SUCCESS] (117/160) BLS Signature: MinSig Properties and test vectors for Message augmentation (Sign and verify same message with different keys)
- [22:45:35.451] [SUCCESS] (118/160) BLS Signature: MinSig Properties and test vectors for Message augmentation (Sign and verify different message with different keys)
- [22:45:35.647] [SUCCESS] (119/160) BLS Signature: MinSig Properties and test vectors for Message augmentation (Test full sign and verify with different ikm sizes)
- [22:45:35.651] [SUCCESS] (120/160) BLS Signature: MinSig Properties and test vectors for Message augmentation (Sign and verify with a pk not in the prime subgroup)
- [22:45:35.860] [SUCCESS] (121/160) BLS Signature: MinSig Properties and test vectors for Message augmentation (Test vectors from bls_sigs_ref)
- [22:45:36.036] [SUCCESS] (122/160) BLS Signature: MinSig Properties and test vectors for Proof of possession (Sign and verify same message with correct keys)
- [22:45:36.213] [SUCCESS] (123/160) BLS Signature: MinSig Properties and test vectors for Proof of possession (Sign and verify different message with correct keys)
- [22:45:36.413] [SUCCESS] (124/160) BLS Signature: MinSig Properties and test vectors for Proof of possession (Sign and verify same message with different keys)
- [22:45:36.618] [SUCCESS] (125/160) BLS Signature: MinSig Properties and test vectors for Proof of possession (Sign and verify different message with different keys)
- [22:45:36.793] [SUCCESS] (126/160) BLS Signature: MinSig Properties and test vectors for Proof of possession (Test full sign and verify with different ikm sizes)
- [22:45:36.796] [SUCCESS] (127/160) BLS Signature: MinSig Properties and test vectors for Proof of possession (Sign and verify with a pk not in the prime subgroup)
- [22:45:36.895] [SUCCESS] (128/160) BLS Signature: MinSig Properties and test vectors for Proof of possession (Test vectors from bls_sigs_ref)
- [22:45:37.102] [SUCCESS] (129/160) BLS Signature: MinSig Proof of possession proof/verify properties and test vectors (Pop G2 from file)
- [22:45:37.122] [SUCCESS] (130/160) BLS Signature: MinSig Proof of possession proof/verify properties and test vectors (Prove and verify with correct keys)
- [22:45:37.141] [SUCCESS] (131/160) BLS Signature: MinSig Proof of possession proof/verify properties and test vectors (Prove and verify with different pk for verify)
- [22:45:37.144] [SUCCESS] (132/160) BLS Signature: MinSig Proof of possession proof/verify properties and test vectors (Verify random proof)
- [22:45:37.147] [SUCCESS] (133/160) BLS Aggregated Signature: minPk Properties for Basic (Verify signatures with the same message)
- [22:45:37.227] [SUCCESS] (134/160) BLS Aggregated Signature: minPk Properties for Basic (Sign and verify corret signature with correct pks and msgs)
- [22:45:37.306] [SUCCESS] (135/160) BLS Aggregated Signature: minPk Properties for Basic (Sign and verify corret signature with correct pks and some incorrect msgs)
- [22:45:37.389] [SUCCESS] (136/160) BLS Aggregated Signature: minPk Properties for Basic (Sign and verify corret signature with some incorrect pks and correct msgs)
- [22:45:37.396] [SUCCESS] (137/160) BLS Aggregated Signature: minPk Properties for Message augmentation (Verify signatures with the same message is allowed)
- [22:45:37.486] [SUCCESS] (138/160) BLS Aggregated Signature: minPk Properties for Message augmentation (Sign and verify corret signature with correct pks and msgs)
- [22:45:37.574] [SUCCESS] (139/160) BLS Aggregated Signature: minPk Properties for Message augmentation (Sign and verify corret signature with correct pks and some incorrect msgs)
- [22:45:37.665] [SUCCESS] (140/160) BLS Aggregated Signature: minPk Properties for Message augmentation (Sign and verify corret signature with some incorrect pks and correct msgs)
- [22:45:37.850] [SUCCESS] (141/160) BLS Aggregated Signature: minPk Properties for Proof of possession (Sign and verify correct signature with correct pks, pops and msg)
- [22:45:38.067] [SUCCESS] (142/160) BLS Aggregated Signature: minPk Properties for Proof of possession (Sign and verify incorrect signature with correct pks, pops and msg)
- [22:45:38.255] [SUCCESS] (143/160) BLS Aggregated Signature: minPk Properties for Proof of possession (Sign and verify correct signature with correct pks, pops and incorrect msg)
- [22:45:38.397] [SUCCESS] (144/160) BLS Aggregated Signature: minPk Properties for Proof of possession (Sign and verify correct signature with some incorrect pks and correct pops and msg)
- [22:45:38.548] [SUCCESS] (145/160) BLS Aggregated Signature: minPk Properties for Proof of possession (Sign and verify correct signature with some incorrect pks and pops and correct msg)
- [22:45:38.704] [SUCCESS] (146/160) BLS Aggregated Signature: minPk Properties for Proof of possession (Sign and verify correct signature with correct pks and some incorrect pops and correct msg)
- [22:45:38.706] [SUCCESS] (147/160) BLS Aggregated Signature: minSig Properties for Basic (Verify signatures with the same message)
- [22:45:38.766] [SUCCESS] (148/160) BLS Aggregated Signature: minSig Properties for Basic (Sign and verify corret signature with correct pks and msgs)
- [22:45:38.825] [SUCCESS] (149/160) BLS Aggregated Signature: minSig Properties for Basic (Sign and verify corret signature with correct pks and some incorrect msgs)
- [22:45:38.890] [SUCCESS] (150/160) BLS Aggregated Signature: minSig Properties for Basic (Sign and verify corret signature with some incorrect pks and correct msgs)
- [22:45:38.895] [SUCCESS] (151/160) BLS Aggregated Signature: minSig Properties for Message augmentation (Verify signatures with the same message is allowed)
- [22:45:38.968] [SUCCESS] (152/160) BLS Aggregated Signature: minSig Properties for Message augmentation (Sign and verify corret signature with correct pks and msgs)
- [22:45:39.040] [SUCCESS] (153/160) BLS Aggregated Signature: minSig Properties for Message augmentation (Sign and verify corret signature with correct pks and some incorrect msgs)
- [22:45:39.117] [SUCCESS] (154/160) BLS Aggregated Signature: minSig Properties for Message augmentation (Sign and verify corret signature with some incorrect pks and correct msgs)
- [22:45:39.267] [SUCCESS] (155/160) BLS Aggregated Signature: minSig Properties for Proof of possession (Sign and verify correct signature with correct pks, pops and msg)
- [22:45:39.452] [SUCCESS] (156/160) BLS Aggregated Signature: minSig Properties for Proof of possession (Sign and verify incorrect signature with correct pks, pops and msg)
- [22:45:39.613] [SUCCESS] (157/160) BLS Aggregated Signature: minSig Properties for Proof of possession (Sign and verify correct signature with correct pks, pops and incorrect msg)
- [22:45:39.737] [SUCCESS] (158/160) BLS Aggregated Signature: minSig Properties for Proof of possession (Sign and verify correct signature with some incorrect pks and correct pops and msg)
- [22:45:39.863] [SUCCESS] (159/160) BLS Aggregated Signature: minSig Properties for Proof of possession (Sign and verify correct signature with some incorrect pks and pops and correct msg)
- [22:45:39.989] [SUCCESS] (160/160) BLS Aggregated Signature: minSig Properties for Proof of possession (Sign and verify correct signature with correct pks and some incorrect pops and correct msg)
- (cd _build/default/src/lib_lwt_result_stdlib/test && ./main.exe)
- qcheck random seed: 104854841
- [22:45:30.891] [SUCCESS] (1/101) seq: basic (vanilla)
- [22:45:30.891] [SUCCESS] (2/101) seq: basic (seq_e)
- [22:45:30.891] [SUCCESS] (3/101) seq: basic (seq_s)
- [22:45:30.891] [SUCCESS] (4/101) seq: basic (seq_es)
- [22:45:30.891] [SUCCESS] (5/101) list-basic-lwt: init (init)
- [22:45:30.891] [SUCCESS] (6/101) list-basic-lwt: init (init_e)
- [22:45:30.891] [SUCCESS] (7/101) list-basic-lwt: init (init_s)
- [22:45:30.891] [SUCCESS] (8/101) list-basic-lwt: init (init_es)
- [22:45:30.891] [SUCCESS] (9/101) list-basic-lwt: init (init_p)
- [22:45:30.891] [SUCCESS] (10/101) list-basic-lwt: init (init_ep)
- [22:45:30.891] [SUCCESS] (11/101) list-basic-lwt: concat_map_* (concat_map)
- [22:45:30.891] [SUCCESS] (12/101) list-basic-lwt: concat_map_* (concat_map_e)
- [22:45:30.891] [SUCCESS] (13/101) list-basic-lwt: concat_map_* (concat_map_s)
- [22:45:30.892] [SUCCESS] (14/101) list-basic-lwt: concat_map_* (concat_map_es)
- [22:45:30.892] [SUCCESS] (15/101) list-basic-lwt: fold (fold_left-map)
- [22:45:30.892] [SUCCESS] (16/101) list-basic-lwt: fold (fold_left_map_e)
- [22:45:30.892] [SUCCESS] (17/101) list-basic-lwt: fold (fold_left_map_s)
- [22:45:30.892] [SUCCESS] (18/101) list-basic-lwt: fold (fold_left_map_es)
- [22:45:30.892] [SUCCESS] (19/101) list-basic: is_empty (is_empty)
- [22:45:30.892] [SUCCESS] (20/101) list-basic: nth (nth)
- [22:45:30.892] [SUCCESS] (21/101) list-basic: nth (hd)
- [22:45:30.892] [SUCCESS] (22/101) list-basic: nth (tl)
- [22:45:30.892] [SUCCESS] (23/101) list-basic: last (last)
- [22:45:30.893] [SUCCESS] (24/101) list-basic: last (last_opt)
- [22:45:30.893] [SUCCESS] (25/101) list-basic: filter_* (filter_some)
- [22:45:30.893] [SUCCESS] (26/101) list-basic: filter_* (filter_ok)
- [22:45:30.893] [SUCCESS] (27/101) list-basic: filter_* (filter_error)
- [22:45:30.893] [SUCCESS] (28/101) list-basic: combine_* (combine-error)
- [22:45:30.893] [SUCCESS] (29/101) list-basic: combine_* (combine-ok)
- [22:45:30.893] [SUCCESS] (30/101) list-basic: combine_* (combine_drop)
- [22:45:30.893] [SUCCESS] (31/101) list-basic: combine_* (combine_with_leftovers)
- [22:45:30.893] [SUCCESS] (32/101) list-basic: partition_* (partition-result)
- [22:45:30.893] [SUCCESS] (33/101) list-basic: shuffle (small)
- [22:45:30.896] [SUCCESS] (34/101) list-basic: shuffle (shuffle preserves value sets)
- [22:45:30.896] [SUCCESS] (35/101) list-basic: shuffle (determinism(eq))
- [22:45:30.897] [SUCCESS] (36/101) list-basic: shuffle (determinism(neq))
- [22:45:30.897] [SUCCESS] (37/101) list-basic: product (empty and singleton)
- [22:45:30.897] [SUCCESS] (38/101) list-basic: product (big)
- [22:45:30.897] [SUCCESS] (39/101) list-basic: *2 (iter2)
- [22:45:30.897] [SUCCESS] (40/101) list-basic: *2 (map2)
- [22:45:30.897] [SUCCESS] (41/101) list-basic: *2 (rev_map2)
- [22:45:30.897] [SUCCESS] (42/101) list-basic: *2 (fold_left2)
- [22:45:30.897] [SUCCESS] (43/101) list-basic: *2 (fold_right2)
- [22:45:30.897] [SUCCESS] (44/101) list-basic: *2 (for_all2)
- [22:45:30.897] [SUCCESS] (45/101) list-basic: *2 (exists2)
- [22:45:30.897] [SUCCESS] (46/101) hashtbl: hashtbl-lwt (add_remove)
- [22:45:30.897] [SUCCESS] (47/101) hashtbl: hashtbl-lwt (add_add)
- [22:45:30.897] [SUCCESS] (48/101) hashtbl: hashtbl-lwt (length)
- [22:45:30.897] [SUCCESS] (49/101) hashtbl: hashtbl-lwt (self_clean)
- [22:45:30.897] [SUCCESS] (50/101) hashtbl: hashtbl-lwt (order)
- [22:45:30.924] [SUCCESS] (51/101) FuzzRef: Set (Set.iter)
- [22:45:30.955] [SUCCESS] (52/101) FuzzRef: Set (Set.fold)
- [22:45:30.956] [SUCCESS] (53/101) FuzzRef: Option (Option.map)
- [22:45:30.956] [SUCCESS] (54/101) FuzzRef: Option (Option.iter)
- [22:45:30.956] [SUCCESS] (55/101) FuzzRef: Option (Option.filter)
- [22:45:30.957] [SUCCESS] (56/101) FuzzRef: Option (Option.filter_map)
- [22:45:30.957] [SUCCESS] (57/101) FuzzRef: Option (Option.filter_ok)
- [22:45:30.957] [SUCCESS] (58/101) FuzzRef: Option (Option.filter_error)
- [22:45:30.957] [SUCCESS] (59/101) FuzzRef: Option (Option.filter_left)
- [22:45:30.957] [SUCCESS] (60/101) FuzzRef: Option (Option.filter_right)
- [22:45:31.142] [SUCCESS] (61/101) FuzzRef: Map (Map.iter)
- [22:45:31.344] [SUCCESS] (62/101) FuzzRef: Map (Map.fold)
- [22:45:31.345] [SUCCESS] (63/101) FuzzRef: List (List.init)
- [22:45:31.353] [SUCCESS] (64/101) FuzzRef: List (List.find)
- [22:45:31.361] [SUCCESS] (65/101) FuzzRef: List (List.find_map)
- [22:45:31.390] [SUCCESS] (66/101) FuzzRef: List (List.filter)
- [22:45:31.448] [SUCCESS] (67/101) FuzzRef: List (List.filteri)
- [22:45:31.469] [SUCCESS] (68/101) FuzzRef: List (List.rev_filter)
- [22:45:31.513] [SUCCESS] (69/101) FuzzRef: List (List.rev_filteri)
- [22:45:31.610] [SUCCESS] (70/101) FuzzRef: List (List.filter_left)
- [22:45:31.690] [SUCCESS] (71/101) FuzzRef: List (List.filter_right)
- [22:45:31.769] [SUCCESS] (72/101) FuzzRef: List (List.filter_ok)
- [22:45:31.856] [SUCCESS] (73/101) FuzzRef: List (List.filter_error)
- [22:45:31.888] [SUCCESS] (74/101) FuzzRef: List (List.partition)
- [22:45:31.918] [SUCCESS] (75/101) FuzzRef: List (List.partition_map)
- [22:45:31.997] [SUCCESS] (76/101) FuzzRef: List (List.partition_either)
- [22:45:32.052] [SUCCESS] (77/101) FuzzRef: List (List.iter)
- [22:45:32.110] [SUCCESS] (78/101) FuzzRef: List (List.iteri)
- [22:45:32.142] [SUCCESS] (79/101) FuzzRef: List (List.map)
- [22:45:32.199] [SUCCESS] (80/101) FuzzRef: List (List.mapi)
- [22:45:32.228] [SUCCESS] (81/101) FuzzRef: List (List.rev_map)
- [22:45:32.281] [SUCCESS] (82/101) FuzzRef: List (List.rev_mapi)
- [22:45:32.308] [SUCCESS] (83/101) FuzzRef: List (List.filter_map)
- [22:45:39.911] [SUCCESS] (84/101) FuzzRef: List (List.concat_map)
- [22:45:39.949] [SUCCESS] (85/101) FuzzRef: List (List.fold_left)
- [22:45:40.047] [SUCCESS] (86/101) FuzzRef: List (List.fold_left_map)
- [22:45:40.098] [SUCCESS] (87/101) FuzzRef: List (List.fold_right)
- [22:45:40.119] [SUCCESS] (88/101) FuzzRef: List (List.map2)
- [22:45:40.138] [SUCCESS] (89/101) FuzzRef: List (List.rev_map2)
- [22:45:40.159] [SUCCESS] (90/101) FuzzRef: List (List.iter2)
- [22:45:40.189] [SUCCESS] (91/101) FuzzRef: List (List.fold_left2)
- [22:45:40.226] [SUCCESS] (92/101) FuzzRef: List (List.fold_right2)
- [22:45:40.244] [SUCCESS] (93/101) FuzzRef: List (List.exists)
- [22:45:40.263] [SUCCESS] (94/101) FuzzRef: List (List.for_all)
- [22:45:40.281] [SUCCESS] (95/101) FuzzRef: List (List.exists2)
- [22:45:40.294] [SUCCESS] (96/101) FuzzRef: List (List.for_all2)
- [22:45:40.319] [SUCCESS] (97/101) FuzzRef: List (List.remove_assoc)
- [22:45:40.344] [SUCCESS] (98/101) FuzzRef: List (List.combine)
- [22:45:40.370] [SUCCESS] (99/101) FuzzRef: List (List.rev_combine)
- [22:45:40.401] [SUCCESS] (100/101) FuzzRef: List (List.compare)
- [22:45:40.417] [SUCCESS] (101/101) FuzzRef: List (List.equal)
- (cd _build/default/src/lib_crypto/test && ./main.exe)
- qcheck random seed: 165763863
- [22:45:33.182] [SUCCESS] (1/60) tezos-crypto: context_hash (Version.of_int input validation)
- [22:45:33.195] [SUCCESS] (2/60) tezos-crypto: timelock legacy (timelock legacy: raw scenario short)
- [22:45:33.238] [SUCCESS] (3/60) tezos-crypto: timelock legacy (timelock legacy: raw scenario)
- [22:45:33.615] [SUCCESS] (4/60) tezos-crypto: timelock legacy (timelock legacy: raw scenario long)
- [22:45:33.676] [SUCCESS] (5/60) tezos-crypto: timelock legacy (timelock legacy: high level scenario)
- 
-  with secret: 0.312795
-  without secret: 1.371149[22:45:35.436] [SUCCESS] (6/60) tezos-crypto: timelock legacy (timelock legacy: bench)
- [22:45:35.481] [SUCCESS] (7/60) tezos-crypto: timelock legacy (timelock legacy: negative test)
- [22:45:35.503] [SUCCESS] (8/60) tezos-crypto: timelock legacy (timelock legacy: samplertest)
- [22:45:35.516] [SUCCESS] (9/60) tezos-crypto: timelock (raw scenario - precomputed 1000)
- [22:45:35.833] [SUCCESS] (10/60) tezos-crypto: timelock (raw scenario - precomputed 30_000)
- [22:45:35.837] [SUCCESS] (11/60) tezos-crypto: timelock (raw scenario - short)
- [22:45:36.911] [SUCCESS] (12/60) tezos-crypto: timelock (raw scenario - long)
- [22:45:36.924] [SUCCESS] (13/60) tezos-crypto: timelock (high level scenario - short)
- [22:45:36.962] [SUCCESS] (14/60) tezos-crypto: timelock (high level scenario - long)
- 
-  without secret: 3.642835[22:45:40.657] [SUCCESS] (15/60) tezos-crypto: timelock (bench)
- [22:45:40.665] [SUCCESS] (16/60) tezos-crypto: timelock (negative test - high level)
- [22:45:40.670] [SUCCESS] (17/60) tezos-crypto: timelock (negative test - low level)
- [22:45:40.677] [SUCCESS] (18/60) tezos-crypto: timelock (sampler test)
- [22:45:40.679] [SUCCESS] (19/60) tezos-crypto: timelock (test wesolowski)
- [22:45:40.679] [SUCCESS] (20/60) tezos-crypto: ed25519-encodings (b58check.roundtrip)
- [22:45:40.680] [SUCCESS] (21/60) tezos-crypto: ed25519-encodings (b58check.invalid)
- [22:45:40.680] [SUCCESS] (22/60) tezos-crypto: ed25519-encodings (b58 pkh encodings)
- [22:45:40.685] [SUCCESS] (23/60) tezos-crypto: ed25519-encodings (b58 key encodings)
- [22:45:40.685] [SUCCESS] (24/60) tezos-crypto: secp256k1-encodings (b58check.roundtrip)
- [22:45:40.686] [SUCCESS] (25/60) tezos-crypto: secp256k1-encodings (b58check.invalid)
- [22:45:40.686] [SUCCESS] (26/60) tezos-crypto: secp256k1-encodings (b58 pkh encodings)
- [22:45:40.691] [SUCCESS] (27/60) tezos-crypto: secp256k1-encodings (b58 key encodings)
- [22:45:40.691] [SUCCESS] (28/60) tezos-crypto: p256-encodings (b58check.roundtrip)
- [22:45:40.691] [SUCCESS] (29/60) tezos-crypto: p256-encodings (b58check.invalid)
- [22:45:40.692] [SUCCESS] (30/60) tezos-crypto: p256-encodings (b58 pkh encodings)
- [22:45:40.709] [SUCCESS] (31/60) tezos-crypto: p256-encodings (b58 key encodings)
- [22:45:40.709] [SUCCESS] (32/60) tezos-crypto: bls12_381-encodings (b58check.roundtrip)
- [22:45:40.710] [SUCCESS] (33/60) tezos-crypto: bls12_381-encodings (b58check.invalid)
- [22:45:40.710] [SUCCESS] (34/60) tezos-crypto: bls12_381-encodings (b58 pkh encodings)
- [22:45:40.724] [SUCCESS] (35/60) tezos-crypto: bls12_381-encodings (b58 key encodings)
- [22:45:40.725] [SUCCESS] (36/60) tezos-crypto: signature (size)
- [22:45:40.725] [SUCCESS] (37/60) tezos-crypto: signature (test_of_bytes_without_validation)
- [22:45:40.728] [SUCCESS] (38/60) tezos-crypto: signature (secp256k1-keccak256 scheme implementation integrity)
- [22:45:40.729] [SUCCESS] (39/60) tezos-crypto: merkle (compute)
- [22:45:40.729] [SUCCESS] (40/60) tezos-crypto: merkle (compute_examples)
- [22:45:40.761] [SUCCESS] (41/60) tezos-crypto: merkle (path)
- [22:45:40.761] [SUCCESS] (42/60) tezos-crypto: merkle (path_examples)
- [22:45:40.761] [SUCCESS] (43/60) tezos-crypto: deterministic_nonce (hash_matches_ed25519)
- [22:45:40.761] [SUCCESS] (44/60) tezos-crypto: deterministic_nonce (hash_matches_p256)
- [22:45:40.761] [SUCCESS] (45/60) tezos-crypto: deterministic_nonce (hash_matches_secp256k1)
- [22:45:40.761] [SUCCESS] (46/60) tezos-crypto: crypto_box (Neuterize Secret roundtrip)
- [22:45:40.762] [SUCCESS] (47/60) tezos-crypto: crypto_box (Public Key Hash roundtrip)
- [22:45:40.762] [SUCCESS] (48/60) tezos-crypto: crypto_box (HACL* box (noalloc))
- [22:45:40.762] [SUCCESS] (49/60) tezos-crypto: crypto_box (HACL* box)
- [22:45:40.762] [SUCCESS] (50/60) tezos-crypto: crypto_box (Check PoW)
- [22:45:40.762] [SUCCESS] (51/60) tezos-crypto: blake2b-encodings (hash hex/dehex)
- [22:45:40.762] [SUCCESS] (52/60) tezos-crypto: blake2b-encodings (hash print/parse)
- [22:45:40.762] [SUCCESS] (53/60) tezos-crypto: base58 (safe decoding)
- [22:45:40.771] [SUCCESS] (54/60) tezos-crypto: base58 (safe encoding/decoding)
- [22:45:40.779] [SUCCESS] (55/60) tezos-crypto: base58 (raw encoding/decoding)
- [22:45:41.702] [SUCCESS] (56/60) tezos-crypto-prop-signature: bls12_381 (Aggregate_signature_Bls12_381_sign_check)
- [22:45:41.726] [SUCCESS] (57/60) tezos-crypto-prop-signature: Ed25519 (Signature_Ed25519_sign_check)
- [22:45:41.743] [SUCCESS] (58/60) tezos-crypto-prop-signature: Secp256k1 (Signature_Secp256k1_sign_check)
- [22:45:41.825] [SUCCESS] (59/60) tezos-crypto-prop-signature: P256 (Signature_P256_sign_check)
- [22:45:42.044] [SUCCESS] (60/60) tezos-crypto-prop-signature: Bls (Signature_Bls_sign_check)
- (cd _build/default/src/lib_distributed_plonk/test && ./main.exe -q)
- Random seed: 42
- Testing `Distributed PlonK'.
- This run has ID `NU92I45C'.
- 
-   [OK]          Distribution          0   test_distribution_kzg.
-   [OK]          Distribution          1   test_distribution_kzg_pack.
-   [OK]          Distribution          2   test_distribution_meta.
-   [OK]          Distribution          3   test_distribution_RC.
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/octez-libs.18.1/_build/default/src/lib_distributed_plonk/test/_build/_tests/Distributed PlonK'.
- Test Successful in 3.393s. 4 tests run.
- (cd _build/default/src/lib_stdlib/test && ./main.exe)
- qcheck random seed: 376546458
- [22:45:32.039] [SUCCESS] (1/63) TzString: split (handles a duplicated separator)
- [22:45:32.041] [SUCCESS] (2/63) TzString: split (TzString.split is reversed by String.concat)
- [22:45:32.041] [SUCCESS] (3/63) TzString: chunk_bytes (Returns empty list when splitting empty bytes)
- [22:45:32.041] [SUCCESS] (4/63) TzString: chunk_bytes (Chunks a sequence of bytes - no error, partial chunk)
- [22:45:32.041] [SUCCESS] (5/63) TzString: chunk_bytes (Errors if last chunk is uncomplete - error passed as argument)
- [22:45:32.041] [SUCCESS] (6/63) TzString: chunk_bytes (Chunks a sequence of bytes - error passed as arguments, no partial chunk)
- [22:45:32.042] [SUCCESS] (7/63) TzString: chunk_bytes (TzString.chunk_bytes chunks bytes correctly)
- [22:45:32.042] [SUCCESS] (8/63) stdlib: tzList (repeat)
- [22:45:32.043] [SUCCESS] (9/63) stdlib: tzList (consistency)
- [22:45:32.043] [SUCCESS] (10/63) stdlib: tzList (consistency(rev))
- [22:45:32.043] [SUCCESS] (11/63) stdlib: tzList (split)
- [22:45:32.043] [SUCCESS] (12/63) stdlib: tzList (rev_split)
- [22:45:32.043] [SUCCESS] (13/63) stdlib: tzList (all_equal)
- [22:45:32.043] [SUCCESS] (14/63) TzBytes: bitwise_reference (unit_test)
- [22:45:33.501] [SUCCESS] (15/63) TzBytes: bitwise_small (random_contents_test)
- [22:45:34.802] [SUCCESS] (16/63) TzBytes: bitwise_huge (random_contents_test)
- [22:45:34.985] [SUCCESS] (17/63) TzBytes: bitwise_very_huge (int64_shift)
- [22:45:34.985] [SUCCESS] (18/63) TzBytes: bitwise_test_shift_zero (test_shift_zero)
- [22:45:34.985] [SUCCESS] (19/63) TzBytes: bitwise_test_functional (test_functional)
- [22:45:34.985] [SUCCESS] (20/63) stdlib: hash_queue (capacity (create n) = n)
- [22:45:34.985] [SUCCESS] (21/63) stdlib: hash_queue (replace)
- [22:45:34.986] [SUCCESS] (22/63) stdlib: hash_queue (replace_incr_length)
- [22:45:34.986] [SUCCESS] (23/63) stdlib: hash_queue (replace_existing)
- [22:45:34.986] [SUCCESS] (24/63) stdlib: hash_queue (peek)
- [22:45:34.986] [SUCCESS] (25/63) stdlib: hash_queue (peek_empty)
- [22:45:34.986] [SUCCESS] (26/63) stdlib: hash_queue (peek_at_most)
- [22:45:34.986] [SUCCESS] (27/63) stdlib: hash_queue (peek_at_most_above_length)
- [22:45:34.986] [SUCCESS] (28/63) stdlib: hash_queue (peek_at_most_above_capacity)
- [22:45:34.986] [SUCCESS] (29/63) stdlib: hash_queue (take)
- [22:45:34.986] [SUCCESS] (30/63) stdlib: hash_queue (take_empty)
- [22:45:34.986] [SUCCESS] (31/63) stdlib: hash_queue (take_at_most)
- [22:45:34.986] [SUCCESS] (32/63) stdlib: hash_queue (take_at_most_above_length)
- [22:45:34.986] [SUCCESS] (33/63) stdlib: hash_queue (take_at_most_above_capacity)
- [22:45:34.986] [SUCCESS] (34/63) stdlib: hash_queue (replace_above_capacity)
- [22:45:34.986] [SUCCESS] (35/63) stdlib: hash_queue (clear)
- [22:45:34.986] [SUCCESS] (36/63) stdlib: hash_queue (fold)
- [22:45:34.986] [SUCCESS] (37/63) stdlib: hash_queue (elements)
- [22:45:34.986] [SUCCESS] (38/63) stdlib: hash_queue (keys)
- [22:45:34.986] [SUCCESS] (39/63) stdlib: hash_queue (bindings)
- [22:45:34.986] [SUCCESS] (40/63) stdlib: hash_queue (take_replace_keep_order)
- [22:45:34.986] [SUCCESS] (41/63) stdlib: FunctionalArray (make_fallback)
- [22:45:34.986] [SUCCESS] (42/63) stdlib: FunctionalArray (fresh_accesses)
- [22:45:34.986] [SUCCESS] (43/63) stdlib: FunctionalArray (get_set)
- [22:45:34.986] [SUCCESS] (44/63) stdlib: FunctionalArray (out_of_bounds)
- [22:45:34.986] [SUCCESS] (45/63) stdlib: FunctionalArray (immutable_fallback)
- [22:45:34.986] [SUCCESS] (46/63) stdlib: FunctionalArray (iter)
- [22:45:34.986] [SUCCESS] (47/63) stdlib: FunctionalArray (map)
- [22:45:34.987] [SUCCESS] (48/63) stdlib: FunctionalArray (fold)
- [22:45:34.987] [SUCCESS] (49/63) stdlib: FunctionalArray (fold_map)
- [22:45:34.987] [SUCCESS] (50/63) stdlib: FallbackArray (of_list)
- [22:45:34.987] [SUCCESS] (51/63) stdlib: FallbackArray (make_fallback)
- [22:45:34.987] [SUCCESS] (52/63) stdlib: FallbackArray (fresh_accesses)
- [22:45:34.987] [SUCCESS] (53/63) stdlib: FallbackArray (get_set)
- [22:45:34.987] [SUCCESS] (54/63) stdlib: FallbackArray (out_of_bounds)
- [22:45:34.987] [SUCCESS] (55/63) stdlib: FallbackArray (immutable_fallback)
- [22:45:34.987] [SUCCESS] (56/63) stdlib: FallbackArray (iter)
- [22:45:34.987] [SUCCESS] (57/63) stdlib: FallbackArray (map)
- [22:45:34.987] [SUCCESS] (58/63) stdlib: FallbackArray (fold)
- [22:45:34.987] [SUCCESS] (59/63) stdlib: FallbackArray (fold_map)
- [22:45:34.987] [SUCCESS] (60/63) stdlib: Bounded_heap (create 0 works)
- [22:45:35.794] [SUCCESS] (61/63) stdlib: Bounded_heap (bounded_heap (qcheck))
- [22:45:35.795] [SUCCESS] (62/63) stdlib: numbits (numbits_on_samples)
- [22:45:42.932] [SUCCESS] (63/63) stdlib: numbits (numbits_correct)
- (cd _build/default/src/lib_bls12_381_polynomial/test && ./main.exe)
- qcheck random seed: 995640144
- Random seed: 277824850
- [22:45:33.211] [SUCCESS] (1/107) PlonK: Domains (test_generator)
- [22:45:33.213] [SUCCESS] (2/107) PlonK: Domains (build_domain)
- [22:45:33.215] [SUCCESS] (3/107) PlonK: Domains (build_domain_power_of_two)
- [22:45:33.217] [SUCCESS] (4/107) PlonK: Domains (to_domain_array)
- [22:45:33.217] [SUCCESS] (5/107) PlonK: Coefficients (equal)
- [22:45:33.217] [SUCCESS] (6/107) PlonK: Coefficients (copy)
- [22:45:33.217] [SUCCESS] (7/107) PlonK: Coefficients (shift)
- [22:45:33.217] [SUCCESS] (8/107) PlonK: Coefficients (split poly)
- [22:45:33.217] [SUCCESS] (9/107) PlonK: Coefficients (split poly2)
- [22:45:33.217] [SUCCESS] (10/107) PlonK: Coefficients (degree of zero is infinity)
- [22:45:33.218] [SUCCESS] (11/107) PlonK: Coefficients (degree of constant is one)
- [22:45:33.218] [SUCCESS] (12/107) PlonK: Coefficients (degree int test vectors)
- [22:45:33.218] [SUCCESS] (13/107) PlonK: Coefficients (evaluation at any point of the zero polynomial)
- [22:45:33.218] [SUCCESS] (14/107) PlonK: Coefficients (evaluation at any point of a random constant polynomial)
- [22:45:33.218] [SUCCESS] (15/107) PlonK: Coefficients (evaluation at zero of a random constant polynomial)
- [22:45:33.218] [SUCCESS] (16/107) PlonK: Coefficients (evaluation at zero of the zero polynomial)
- [22:45:33.218] [SUCCESS] (17/107) PlonK: Coefficients (evaluation at any point of the polynomial X)
- [22:45:33.218] [SUCCESS] (18/107) PlonK: Coefficients (of_coeff_to_dense_vectors)
- [22:45:33.222] [SUCCESS] (19/107) PlonK: Coefficients (test properties nullifier 0 * P = P * 0 = 0)
- [22:45:33.222] [SUCCESS] (20/107) PlonK: Coefficients (test properties commutativity p * q = p * q)
- [22:45:33.223] [SUCCESS] (21/107) PlonK: Coefficients (test properties distributivity and communtativity a p * b q = (a * b) (p * q) = (b p) * (a q) = p * (a * b) q)
- [22:45:33.223] [SUCCESS] (22/107) PlonK: Coefficients (test interpolation with only roots)
- [22:45:33.224] [SUCCESS] (23/107) PlonK: Coefficients (test evaluation with zero polynomial)
- [22:45:33.377] [SUCCESS] (24/107) PlonK: Coefficients (test evaluation with smaller polynomial)
- [22:45:33.377] [SUCCESS] (25/107) PlonK: Coefficients (test multiply constant by scalar zero is zero)
- [22:45:33.377] [SUCCESS] (26/107) PlonK: Coefficients (test multiply degree one by scalar zero is zero)
- [22:45:33.377] [SUCCESS] (27/107) PlonK: Coefficients (test property opposite twice)
- [22:45:33.377] [SUCCESS] (28/107) PlonK: Coefficients (test property opposite of constant)
- [22:45:33.377] [SUCCESS] (29/107) PlonK: Coefficients (test property opposite of zero)
- [22:45:33.380] [SUCCESS] (30/107) PlonK: Polynomial_c (build_erase)
- [22:45:33.385] [SUCCESS] (31/107) PlonK: Polynomial_c (vectors_fft)
- [22:45:33.391] [SUCCESS] (32/107) PlonK: Polynomial_c (big_vectors_fft)
- [22:45:35.879] [SUCCESS] (33/107) PlonK: Polynomial_c (ifft_random)
- [22:45:35.998] [SUCCESS] (34/107) PlonK: Polynomial_c (get_sparse_coefficients)
- [22:45:36.000] [SUCCESS] (35/107) PlonK: Polynomial_c (copy)
- [22:45:36.001] [SUCCESS] (36/107) PlonK: Polynomial_c (get_zero)
- [22:45:36.001] [SUCCESS] (37/107) PlonK: Polynomial_c (get_one)
- [22:45:36.001] [SUCCESS] (38/107) PlonK: Polynomial_c (get_random)
- [22:45:36.001] [SUCCESS] (39/107) PlonK: Polynomial_c (one)
- [22:45:36.004] [SUCCESS] (40/107) PlonK: Polynomial_c (degree)
- [22:45:36.011] [SUCCESS] (41/107) PlonK: Polynomial_c (add)
- [22:45:36.018] [SUCCESS] (42/107) PlonK: Polynomial_c (add_inplace)
- [22:45:36.025] [SUCCESS] (43/107) PlonK: Polynomial_c (sub)
- [22:45:36.031] [SUCCESS] (44/107) PlonK: Polynomial_c (sub_inplace)
- [22:45:36.055] [SUCCESS] (45/107) PlonK: Polynomial_c (mul)
- [22:45:36.059] [SUCCESS] (46/107) PlonK: Polynomial_c (opposite)
- [22:45:36.062] [SUCCESS] (47/107) PlonK: Polynomial_c (opposite_inplace)
- [22:45:36.070] [SUCCESS] (48/107) PlonK: Polynomial_c (mul_by_scalar)
- [22:45:36.077] [SUCCESS] (49/107) PlonK: Polynomial_c (mul_by_scalar_inplace)
- [22:45:36.078] [SUCCESS] (50/107) PlonK: Polynomial_c (is_zero)
- [22:45:36.079] [SUCCESS] (51/107) PlonK: Polynomial_c (evaluate)
- [22:45:36.201] [SUCCESS] (52/107) PlonK: Polynomial_c (division_x_z)
- [22:45:36.313] [SUCCESS] (53/107) PlonK: Polynomial_c (division_xn_minus_one)
- [22:45:36.319] [SUCCESS] (54/107) PlonK: Polynomial_c (division_xn_minus_one_limit_case)
- [22:45:36.328] [SUCCESS] (55/107) PlonK: Polynomial_c (division_xn_minus_one_lt_2n)
- [22:45:36.448] [SUCCESS] (56/107) PlonK: Polynomial_c (division_xn_plus_one)
- [22:45:36.459] [SUCCESS] (57/107) PlonK: Polynomial_c (division_xn_plus_one_lt_2n)
- [22:45:36.580] [SUCCESS] (58/107) PlonK: Polynomial_c (division_xn_plus_c)
- [22:45:36.589] [SUCCESS] (59/107) PlonK: Polynomial_c (division_xn_plus_c_lt_2n)
- [22:45:36.601] [SUCCESS] (60/107) PlonK: Polynomial_c (test_linear)
- [22:45:36.615] [SUCCESS] (61/107) PlonK: Polynomial_c (test_linear_with_powers)
- [22:45:36.632] [SUCCESS] (62/107) PlonK: Polynomial_c (test_linear_with_powers_equal_length)
- [22:45:36.635] [SUCCESS] (63/107) PlonK: Polynomial_c (fft_evaluate)
- [22:45:36.639] [SUCCESS] (64/107) PlonK: Polynomial_c (fft_interpolate)
- [22:45:41.527] [SUCCESS] (65/107) PlonK: Polynomial_c (fft_pfa_evaluate)
- [22:45:41.530] [SUCCESS] (66/107) PlonK: Polynomial_c (fft_pfa_interpolate)
- [22:45:43.729] [SUCCESS] (67/107) PlonK: Polynomial_c (fft_dft_evaluate)
- [22:45:44.002] [SUCCESS] (68/107) PlonK: Polynomial_c (fft_dft_interpolate)
- [22:45:44.004] [SUCCESS] (69/107) PlonK: Polynomial_c (of_dense)
- [22:45:44.071] [SUCCESS] (70/107) PlonK: Polynomial_c (of_carray does not copy the carray)
- [22:45:44.071] [SUCCESS] (71/107) PlonK: Evaluations_c (test_of_array_zero)
- [22:45:44.071] [SUCCESS] (72/107) PlonK: Evaluations_c (test_of_array_const)
- [22:45:44.072] [SUCCESS] (73/107) PlonK: Evaluations_c (test_of_array)
- [22:45:44.073] [SUCCESS] (74/107) PlonK: Evaluations_c (test_zero)
- [22:45:44.073] [SUCCESS] (75/107) PlonK: Evaluations_c (test_is_zero)
- [22:45:44.074] [SUCCESS] (76/107) PlonK: Evaluations_c (test_copy)
- [22:45:44.075] [SUCCESS] (77/107) PlonK: Evaluations_c (test_copy_inplace)
- [22:45:44.076] [SUCCESS] (78/107) PlonK: Evaluations_c (test_mul_by_scalar)
- [22:45:44.077] [SUCCESS] (79/107) PlonK: Evaluations_c (test_mul_zero)
- [22:45:44.078] [SUCCESS] (80/107) PlonK: Evaluations_c (test_mul_one)
- [22:45:44.082] [SUCCESS] (81/107) PlonK: Evaluations_c (test_mul_commutativity)
- [22:45:44.109] [SUCCESS] (82/107) PlonK: Evaluations_c (test_mul_diff_size)
- [22:45:44.136] [SUCCESS] (83/107) PlonK: Evaluations_c (test_mul_diff_size_composition_gx)
- [22:45:44.318] [SUCCESS] (84/107) PlonK: Evaluations_c (test_mul)
- [22:45:44.318] [SUCCESS] (85/107) PlonK: Evaluations_c (test_linear_zero)
- [22:45:44.319] [SUCCESS] (86/107) PlonK: Evaluations_c (test_linear_zero_const)
- [22:45:44.319] [SUCCESS] (87/107) PlonK: Evaluations_c (test_linear_zero_composition_gx)
- [22:45:44.330] [SUCCESS] (88/107) PlonK: Evaluations_c (test_linear_diff_size)
- [22:45:44.341] [SUCCESS] (89/107) PlonK: Evaluations_c (test_linear)
- [22:45:44.345] [SUCCESS] (90/107) PlonK: Evaluations_c (test_add)
- [22:45:44.347] [SUCCESS] (91/107) PlonK: Evaluations_c (test_add_zero)
- [22:45:44.365] [SUCCESS] (92/107) PlonK: Evaluations_c (test_linear_with_powers_equal_length)
- [22:45:44.380] [SUCCESS] (93/107) PlonK: Evaluations_c (test_linear_with_powers)
- [22:45:44.381] [SUCCESS] (94/107) PlonK: Evaluations_c (test_linear_with_powers_zeros)
- [22:45:44.382] [SUCCESS] (95/107) PlonK: Srs (get_set)
- [22:45:44.382] [SUCCESS] (96/107) PlonK: Srs (pippenger)
- [22:45:44.387] [SUCCESS] (97/107) PlonK: Srs (pippenger test vectors)
- [22:45:44.389] [SUCCESS] (98/107) PlonK: Srs (add and extract srs from pippenger ctxt)
- [22:45:44.390] [SUCCESS] (99/107) PlonK: Srs (load_from_file)
- [22:45:44.390] [SUCCESS] (100/107) PlonK: Srs (load_from_file_vector)
- [22:45:44.431] [SUCCESS] (101/107) PlonK: PBT (add_commutative)
- [22:45:44.536] [SUCCESS] (102/107) PlonK: PBT (mul_commutative)
- [22:45:44.890] [SUCCESS] (103/107) PlonK: PBT (mul_distibute_add)
- [22:45:44.905] [SUCCESS] (104/107) PlonK: PBT (add_identity)
- [22:45:44.920] [SUCCESS] (105/107) PlonK: PBT (sub_identity)
- [22:45:44.935] [SUCCESS] (106/107) PlonK: PBT (mul_identity)
- [22:45:44.951] [SUCCESS] (107/107) PlonK: PBT (add_absorbing)
- (cd _build/default/src/lib_hacl/test && ./main.exe)
- qcheck random seed: 745578239
- [22:45:32.246] [SUCCESS] (1/40) hacl-test: tests (Testing Ed25519)
- [22:45:32.248] [SUCCESS] (2/40) hacl-test: tests (Testing P256)
- [22:45:32.248] [SUCCESS] (3/40) hacl-test: tests (Testing Curve25519)
- [22:45:32.248] [SUCCESS] (4/40) hacl-test: tests (Testing SHA2_256)
- [22:45:32.248] [SUCCESS] (5/40) hacl-test: tests (Testing SHA2_512)
- [22:45:32.248] [SUCCESS] (6/40) hacl-test: tests (Testing SHA3_256)
- [22:45:32.248] [SUCCESS] (7/40) hacl-test: tests (Testing SHA3_512)
- [22:45:32.248] [SUCCESS] (8/40) hacl-test: tests (Testing Keccak)
- [22:45:32.248] [SUCCESS] (9/40) hacl-test: tests (Testing HMAC_SHA2_256)
- [22:45:32.248] [SUCCESS] (10/40) hacl-test: tests (Testing HMAC_SHA2_512)
- [22:45:32.248] [SUCCESS] (11/40) hacl-test: tests (Testing Blake2b)
- [22:45:32.248] [SUCCESS] (12/40) hacl-test: tests (Testing NaCl.Secretbox)
- [22:45:32.248] [SUCCESS] (13/40) hacl-test: tests (Testing NaCl.Box)
- [22:45:32.267] [SUCCESS] (14/40) tezos-crypto-signature-pk: P256_Pros (P256_pk_of_bytes)
- [22:45:32.273] [SUCCESS] (15/40) tezos-crypto-shaX-props: SHA256_Props (SHA256_incremental_one)
- [22:45:39.081] [SUCCESS] (16/40) tezos-crypto-shaX-props: SHA256_Props (SHA256_incremental_list)
- [22:45:39.086] [SUCCESS] (17/40) tezos-crypto-shaX-props: SHA512_Props (SHA512_incremental_one)
- [22:45:45.941] [SUCCESS] (18/40) tezos-crypto-shaX-props: SHA512_Props (SHA512_incremental_list)
- [22:45:45.941] [SUCCESS] (19/40) tezos-crypto: hash (hmac_sha256)
- [22:45:45.941] [SUCCESS] (20/40) tezos-crypto: hash (hmac_sha512)
- [22:45:45.941] [SUCCESS] (21/40) tezos-crypto: hash (sha256)
- [22:45:45.941] [SUCCESS] (22/40) tezos-crypto: hash (sha512)
- [22:45:45.941] [SUCCESS] (23/40) tezos-crypto: hash (sha3_256)
- [22:45:45.941] [SUCCESS] (24/40) tezos-crypto: hash (sha3_512)
- [22:45:45.941] [SUCCESS] (25/40) tezos-crypto: hash (keccak_256)
- [22:45:45.941] [SUCCESS] (26/40) tezos-crypto: hash (sha256_seq)
- [22:45:45.941] [SUCCESS] (27/40) tezos-crypto: blake2b (0)
- [22:45:45.942] [SUCCESS] (28/40) tezos-crypto: blake2b (1)
- [22:45:45.942] [SUCCESS] (29/40) tezos-crypto: blake2b (2)
- [22:45:45.942] [SUCCESS] (30/40) tezos-crypto: secretbox (secretbox)
- [22:45:45.942] [SUCCESS] (31/40) tezos-crypto: box (box)
- [22:45:45.942] [SUCCESS] (32/40) tezos-crypto: ed25519 (keypair)
- [22:45:45.942] [SUCCESS] (33/40) tezos-crypto: ed25519 (sign)
- [22:45:45.942] [SUCCESS] (34/40) tezos-crypto: ed25519 (public)
- [22:45:45.943] [SUCCESS] (35/40) tezos-crypto: ed25519 (ed25519-speccheck)
- [22:45:45.945] [SUCCESS] (36/40) tezos-crypto: p256 (export)
- [22:45:45.949] [SUCCESS] (37/40) tezos-crypto: p256 (write_key)
- [22:45:45.953] [SUCCESS] (38/40) tezos-crypto: p256 (keypair)
- [22:45:45.960] [SUCCESS] (39/40) tezos-crypto: p256 (sign)
- [22:45:46.062] [SUCCESS] (40/40) tezos-crypto: p256 (test_vectors)
- (cd _build/default/src/lib_stdlib/test-unix && ./main.exe)
- qcheck random seed: 910384147
- [22:45:32.043] [SUCCESS] (1/49) Lwt_utils: pick_fulfilled (test_already_successful)
- [22:45:32.043] [SUCCESS] (2/49) Lwt_utils: pick_fulfilled (test_already_rejected)
- [22:45:32.043] [SUCCESS] (3/49) Lwt_utils: pick_fulfilled (test_first_successful)
- [22:45:32.043] [SUCCESS] (4/49) Lwt_utils: pick_fulfilled (test_first_successful_remaining_canceled)
- [22:45:32.043] [SUCCESS] (5/49) Lwt_utils: pick_fulfilled (test_multi_successful)
- [22:45:32.043] [SUCCESS] (6/49) Lwt_utils: pick_fulfilled (test_last_successful_ignore_rejected)
- [22:45:32.043] [SUCCESS] (7/49) Lwt_utils: pick_fulfilled (test_none_sucessful)
- [22:45:32.044] [SUCCESS] (8/49) Lwt_utils: pick_fulfilled (test_empty_promises)
- [22:45:32.094] [SUCCESS] (9/49) Lwt_utils: pick_fulfilled (test_needle_in_haystack)
- [22:45:32.094] [SUCCESS] (10/49) Lwt_utils: pick_fulfilled (test_cancelling_parent_cancels_children)
- [22:45:32.097] [SUCCESS] (11/49) Lwt_pipe: Bounded (push-pop)
- [22:45:32.228] [SUCCESS] (12/49) Lwt_pipe: Bounded (push-pop-all)
- [22:45:32.228] [SUCCESS] (13/49) Lwt_pipe: Bounded (count-down)
- [22:45:32.228] [SUCCESS] (14/49) Lwt_pipe: Bounded (introspect)
- [22:45:32.228] [SUCCESS] (15/49) Lwt_pipe: Unbounded (push-pop)
- [22:45:32.228] [SUCCESS] (16/49) Lwt_pipe: Unbounded (count-down)
- [22:45:32.228] [SUCCESS] (17/49) stdlib: hash_queue_lwt (fold_s)
- [22:45:32.229] [SUCCESS] (18/49) stdlib: hash_queue_lwt (fold_es)
- [22:45:32.229] [SUCCESS] (19/49) stdlib: hash_queue_lwt (fold_es_error)
- [22:45:32.462] [SUCCESS] (20/49) Stdlib.circular_buffer: Invalid argument (Stdlib.circular_buffer.equivalence-with-reference-implementation-without-invalid-argument)
- [22:45:32.619] [SUCCESS] (21/49) Stdlib.circular_buffer: With reference (Stdlib.circular_buffer.equivalence-with-reference-implementation)
- [22:45:32.620] [SUCCESS] (22/49) tezos-stdlib: circular_buffer.constant-chunks.full (bad-fit)
- [22:45:32.620] [SUCCESS] (23/49) tezos-stdlib: circular_buffer.constant-chunks.full (bad-fit-underflow)
- [22:45:32.620] [SUCCESS] (24/49) tezos-stdlib: circular_buffer.constant-chunks.full (bad-fit-overflow)
- [22:45:32.621] [SUCCESS] (25/49) tezos-stdlib: circular_buffer.constant-chunks.full (perfect-fit)
- [22:45:33.588] [SUCCESS] (26/49) tezos-stdlib: circular_buffer.constant-chunks.full (perfect-fit-underflow)
- [22:45:33.592] [SUCCESS] (27/49) tezos-stdlib: circular_buffer.constant-chunks.full (perfect-fit-overflow)
- [22:45:33.593] [SUCCESS] (28/49) tezos-stdlib: circular_buffer.constant-chunks.partial-write (bad-fit)
- [22:45:33.593] [SUCCESS] (29/49) tezos-stdlib: circular_buffer.constant-chunks.partial-write (bad-fit-underflow)
- [22:45:33.593] [SUCCESS] (30/49) tezos-stdlib: circular_buffer.constant-chunks.partial-write (bad-fit-overflow)
- [22:45:33.597] [SUCCESS] (31/49) tezos-stdlib: circular_buffer.constant-chunks.partial-write (perfect-fit)
- [22:45:37.608] [SUCCESS] (32/49) tezos-stdlib: circular_buffer.constant-chunks.partial-write (perfect-fit-underflow)
- [22:45:37.622] [SUCCESS] (33/49) tezos-stdlib: circular_buffer.constant-chunks.partial-write (perfect-fit-overflow)
- [22:45:37.623] [SUCCESS] (34/49) tezos-stdlib: circular_buffer.constant-chunks.partial-read-write (bad-fit)
- [22:45:37.623] [SUCCESS] (35/49) tezos-stdlib: circular_buffer.constant-chunks.partial-read-write (bad-fit-underflow)
- [22:45:37.624] [SUCCESS] (36/49) tezos-stdlib: circular_buffer.constant-chunks.partial-read-write (bad-fit-overflow)
- [22:45:37.628] [SUCCESS] (37/49) tezos-stdlib: circular_buffer.constant-chunks.partial-read-write (perfect-fit)
- [22:45:43.076] [SUCCESS] (38/49) tezos-stdlib: circular_buffer.constant-chunks.partial-read-write (perfect-fit-underflow)
- [22:45:43.086] [SUCCESS] (39/49) tezos-stdlib: circular_buffer.constant-chunks.partial-read-write (perfect-fit-overflow)
- [22:45:43.086] [SUCCESS] (40/49) tezos-stdlib: circular_buffer.constant-chunks.partial-read-write-interleaving (bad-fit)
- [22:45:43.087] [SUCCESS] (41/49) tezos-stdlib: circular_buffer.constant-chunks.partial-read-write-interleaving (bad-fit-underflow)
- [22:45:43.087] [SUCCESS] (42/49) tezos-stdlib: circular_buffer.constant-chunks.partial-read-write-interleaving (bad-fit-overflow)
- [22:45:43.091] [SUCCESS] (43/49) tezos-stdlib: circular_buffer.constant-chunks.partial-read-write-interleaving (perfect-fit)
- [22:45:48.060] [SUCCESS] (44/49) tezos-stdlib: circular_buffer.constant-chunks.partial-read-write-interleaving (perfect-fit-underflow)
- [22:45:48.075] [SUCCESS] (45/49) tezos-stdlib: circular_buffer.constant-chunks.partial-read-write-interleaving (perfect-fit-overflow)
- [22:45:48.075] [SUCCESS] (46/49) tezos-stdlib: circular_buffer.fail_cases (Write_too_long-in_buffer)
- [22:45:48.076] [SUCCESS] (47/49) tezos-stdlib: circular_buffer.fail_cases (Write_too_long-extra_allocated_buffer)
- [22:45:48.076] [SUCCESS] (48/49) tezos-stdlib: circular_buffer.fail_cases (Read_too_long-in_buffer)
- [22:45:48.076] [SUCCESS] (49/49) tezos-stdlib: circular_buffer.fail_cases (Read_too_long-extra_allocated_buffer)
- (cd _build/default/src/lib_epoxy_tx/test && ./main.exe -q)
- Random seed: 42
- Testing `Tx Rollup'.
- This run has ID `H7157I57'.
- 
-   [OK]          RandomTx            0   RandomTx.
-   [SKIP]        RandomTx            1   RandomTx plonk.
-   [OK]          InvalidTx           0   InvalidTx.
-   [SKIP]        InvalidTx           1   InvalidTx plonk.
-   [OK]          Censorship          0   Censorship.
-   [SKIP]        Censorship          1   Censorship plonk.
-   [SKIP]        Benchmark           0   Private batch benchmark.
-   [SKIP]        Benchmark           1   Private batch benchmark aPlonK.
- 
- Test Successful in 13.628s. 3 tests run.
- (cd _build/default/src/lib_stdlib && .tezos_stdlib.inline-tests/inline_test_runner_tezos_stdlib.exe inline-test-runner tezos_stdlib -source-tree-root ../.. -diff-cmd - -verbose)
- File "src/lib_stdlib/bloomer.ml", line 97, characters 0-817: random_read_writes (0.008 sec)
- File "src/lib_stdlib/bloomer.ml", line 123, characters 0-1339: peek and poke work with bits = [1 .. Sys.int_size - 7] (0.011 sec)
- File "src/lib_stdlib/bloomer.ml", line 163, characters 0-739: sequential_read_writes (0.026 sec)
- File "src/lib_stdlib/bloomer.ml", line 182, characters 0-705: read_over_write (0.001 sec)
- File "src/lib_stdlib/bloomer.ml", line 282, characters 0-835: consistent_add_mem_countdown (0.451 sec)
- File "src/lib_stdlib/bloomer.ml", line 309, characters 0-1531: consistent_add_countdown_count (2.833 sec)
- File "src/lib_stdlib/bloomer.ml", line 456, characters 4-137 (18.678 sec)
- File "src/lib_stdlib/bloomer.ml", line 461, characters 4-1695: <<match Sys.getenv_opt "BLOOMER_TEST_GNUPLOT_PA[...]>> (0.000 sec)
- Set the BLOOMER_TEST_GNUPLOT_PATH to a directory to get some human readable test results.
- (cd _build/default/src/lib_plonk/test && ./main.exe -q)
- qcheck random seed: 412241136
- Random seed: 42
- Testing `PlonK'.
- This run has ID `AQ75PJJZ'.
- 
-   [OK]          Utils                          0   List.ml.
-   [OK]          Utils                          1   powers.
-   [OK]          Utils                          2   random_fr.
-   [OK]          Utils                          3   quadratic_non_residues.
-   [SKIP]        Utils                          4   quadratic_non_residues_slow.
-   [OK]          Evaluations                    0   test_linear.
-   [OK]          Evaluations                    1   test_mul.
-   [OK]          Plonk_Pack                     0   SRS.
-   [OK]          Plonk_Pack                     1   correctness (single).
-   [OK]          Plonk_Pack                     2   correctness.
-   [OK]          Polynomial Commitment          0   test_verifier_srs.
-   [OK]          Polynomial Commitment          1   correctness (KZG).
-   [OK]          Polynomial Commitment          2   wrong answer (KZG).
-   [OK]          Polynomial Commitment          3   wrong transcript (KZG).
-   [OK]          Polynomial Commitment          4   correctness (KZG_Pack).
-   [OK]          Polynomial Commitment          5   wrong answer (KZG_Pack).
-   [OK]          Polynomial Commitment          6   wrong transcript (KZG_Pack).
-   [OK]          Polynomial_protocol            0   Polynomial Protocol (Kzg).
-   [OK]          Polynomial_protocol            1   Polynomial Protocol (Kzg_P...
-   [OK]          Permutations                   0   test_cycles_to_permutation.
-   [SKIP]        Permutations                   1   permutation_properties.
-   [OK]          Plookup                        0   Internal.test_z.
-   [OK]          Plookup                        1   Internal.test_sort.
-   [OK]          Plookup                        2   Internal.test_aggregation.
-   [OK]          Range_Checks                   0   RC_single_valid.
-   [OK]          Range_Checks                   1   RC_single_wrong.
-   [OK]          Range_Checks                   2   basic.
-   [OK]          Range_Checks                   3   KZG+RC_single_valid+RC_sin...
-   [OK]          Range_Checks                   4   RC_single_valid.
-   [OK]          Range_Checks                   5   RC_single_wrong.
-   [OK]          Range_Checks                   6   basic.
-   [OK]          Range_Checks                   7   KZG_Pack+RC_single_valid+R...
-   [OK]          Main_Protocol                  0   qc.
-   [OK]          Main_Protocol                  1   q_w0.
-   [OK]          Main_Protocol                  2   q_w1.
-   [OK]          Main_Protocol                  3   q_w3.
-   [OK]          Main_Protocol                  4   q_w4.
-   [OK]          Main_Protocol                  5   q_w5.
-   [OK]          Main_Protocol                  6   q_w0g.
-   [OK]          Main_Protocol                  7   q_w1g.
-   [OK]          Main_Protocol                  8   q_w2g.
-   [OK]          Main_Protocol                  9   q_w3g.
-   [OK]          Main_Protocol                 10   q_w4g.
-   [OK]          Main_Protocol                 11   q_w5g.
-   [OK]          Main_Protocol                 12   qm.
-   [OK]          Main_Protocol                 13   qx2b.
-   [OK]          Main_Protocol                 14   qx5a.
-   [OK]          Main_Protocol                 15   qx5c.
-   [OK]          Main_Protocol                 16   qecc_ws_add.
-   [OK]          Main_Protocol                 17   qecc_ed_add.
-   [OK]          Main_Protocol                 18   qecc_cond_ed_add.
-   [OK]          Main_Protocol                 19   qbool.
-   [OK]          Main_Protocol                 20   qcond_swap.
-   [OK]          Main_Protocol                 21   q_anemoi.
-   [OK]          Main_Protocol                 22   bnot.
-   [OK]          Main_Protocol                 23   zero_values.
-   [OK]          Main_Protocol                 24   non_zero_values.
-   [OK]          Main_Protocol                 25   no_public_inputs.
-   [OK]          Main_Protocol                 26   wrong_values.
-   [OK]          Main_Protocol                 27   input_commitment.
-   [OK]          Main_Protocol                 28   add_mod_2^255-19.no_wrap_a...
-   [OK]          Main_Protocol                 29   add_mod_2^255-19.wrap_around.
-   [OK]          Main_Protocol                 30   add_mod_2^255-19.non-std out.
-   [OK]          Main_Protocol                 31   add_mod_2^255-19.invalid.
-   [OK]          Main_Protocol                 32   add_mod_2^255-19.invalid qm.
-   [OK]          Main_Protocol                 33   add_mod_2^255-19.invalid tj.
-   [OK]          Main_Protocol                 34   sub_mod_2^255-19.no_wrap_a...
-   [OK]          Main_Protocol                 35   sub_mod_2^255-19.wrap_around.
-   [OK]          Main_Protocol                 36   sub_mod_2^255-19.invalid.
-   [OK]          Main_Protocol                 37   add_mod_2^64.no_wrap_around.
-   [OK]          Main_Protocol                 38   add_mod_2^64.wrap_around.
-   [OK]          Main_Protocol                 39   add_mod_2^64.invalid.
-   [OK]          Main_Protocol                 40   sub_mod_2^64.no_wrap_around.
-   [OK]          Main_Protocol                 41   sub_mod_2^64.wrap_around.
-   [OK]          Main_Protocol                 42   sub_mod_2^64.invalid.
-   [OK]          Main_Protocol                 43   mul_mod_2^255-19.no_wrap_a...
-   [OK]          Main_Protocol                 44   mul_mod_2^255-19.wrap_around.
-   [OK]          Main_Protocol                 45   mul_mod_2^255-19.non-std out.
-   [OK]          Main_Protocol                 46   mul_mod_2^255-19.invalid.
-   [OK]          Main_Protocol                 47   mul_mod_2^255-19.invalid qm.
-   [OK]          Main_Protocol                 48   mul_mod_2^255-19.invalid t1.
-   [OK]          Main_Protocol                 49   mul_mod_2^255-19.invalid t2.
-   [OK]          Main_Protocol                 50   div_mod_2^255-19.no_wrap_a...
-   [OK]          Main_Protocol                 51   div_mod_2^255-19.wrap_around.
-   [OK]          Main_Protocol                 52   div_mod_2^255-19.invalid.
-   [OK]          Main_Protocol                 53   mul_mod_2^64.no_wrap_around.
-   [OK]          Main_Protocol                 54   mul_mod_2^64.wrap_around.
-   [OK]          Main_Protocol                 55   mul_mod_2^64.invalid.
-   [OK]          Main_Protocol                 56   mul_mod_2^64.invalid qm.
-   [OK]          Main_Protocol                 57   big_circuit.2.5.
-   [OK]          Main_Protocol                 58   big_circuit.2.5.
-   [OK]          Main_Protocol                 59   qplookup.
-   [OK]          Main_Protocol                 60   qplookup_two_tables.
-   [OK]          Main_Protocol                 61   lookup_zero_values.
-   [OK]          Main_Protocol                 62   lookup_non_zero_values.
-   [OK]          Main_Protocol                 63   lookup_no_public_inputs.
-   [OK]          Main_Protocol                 64   lookup_wrong_arith_values.
-   [OK]          Main_Protocol                 65   wrong_plookup_values.
-   [OK]          Main_Protocol                 66   KZG+zero_values+non_zero_v...
-   [OK]          Main_Protocol                 67   KZG+zero_values+zero_values.
-   [OK]          Main_Protocol                 68   KZG+q_w0+q_w1+q_w0g+q_w1g+...
-   [OK]          Main_Protocol                 69   KZG+qplookup+lookup_zero_v...
-   [OK]          Main_Protocol                 70   KZG+lookup_non_zero_values...
-   [OK]          Main_Protocol                 71   KZG+lookup_wrong_arith_val...
-   [OK]          Main_Protocol                 72   KZG+qplookup_two_tables+qp...
-   [OK]          Main_Protocol                 73   test_encodings.
-   [OK]          Main_Protocol                 74   qc.
-   [OK]          Main_Protocol                 75   q_w0.
-   [OK]          Main_Protocol                 76   q_w1.
-   [OK]          Main_Protocol                 77   q_w3.
-   [OK]          Main_Protocol                 78   q_w4.
-   [OK]          Main_Protocol                 79   q_w5.
-   [OK]          Main_Protocol                 80   q_w0g.
-   [OK]          Main_Protocol                 81   q_w1g.
-   [OK]          Main_Protocol                 82   q_w2g.
-   [OK]          Main_Protocol                 83   q_w3g.
-   [OK]          Main_Protocol                 84   q_w4g.
-   [OK]          Main_Protocol                 85   q_w5g.
-   [OK]          Main_Protocol                 86   qm.
-   [OK]          Main_Protocol                 87   qx2b.
-   [OK]          Main_Protocol                 88   qx5a.
-   [OK]          Main_Protocol                 89   qx5c.
-   [OK]          Main_Protocol                 90   qecc_ws_add.
-   [OK]          Main_Protocol                 91   qecc_ed_add.
-   [OK]          Main_Protocol                 92   qecc_cond_ed_add.
-   [OK]          Main_Protocol                 93   qbool.
-   [OK]          Main_Protocol                 94   qcond_swap.
-   [OK]          Main_Protocol                 95   q_anemoi.
-   [OK]          Main_Protocol                 96   bnot.
-   [OK]          Main_Protocol                 97   zero_values.
-   [OK]          Main_Protocol                 98   non_zero_values.
-   [OK]          Main_Protocol                 99   no_public_inputs.
-   [OK]          Main_Protocol                100   wrong_values.
-   [OK]          Main_Protocol                101   input_commitment.
-   [OK]          Main_Protocol                102   add_mod_2^255-19.no_wrap_a...
-   [OK]          Main_Protocol                103   add_mod_2^255-19.wrap_around.
-   [OK]          Main_Protocol                104   add_mod_2^255-19.non-std out.
-   [OK]          Main_Protocol                105   add_mod_2^255-19.invalid.
-   [OK]          Main_Protocol                106   add_mod_2^255-19.invalid qm.
-   [OK]          Main_Protocol                107   add_mod_2^255-19.invalid tj.
-   [OK]          Main_Protocol                108   sub_mod_2^255-19.no_wrap_a...
-   [OK]          Main_Protocol                109   sub_mod_2^255-19.wrap_around.
-   [OK]          Main_Protocol                110   sub_mod_2^255-19.invalid.
-   [OK]          Main_Protocol                111   add_mod_2^64.no_wrap_around.
-   [OK]          Main_Protocol                112   add_mod_2^64.wrap_around.
-   [OK]          Main_Protocol                113   add_mod_2^64.invalid.
-   [OK]          Main_Protocol                114   sub_mod_2^64.no_wrap_around.
-   [OK]          Main_Protocol                115   sub_mod_2^64.wrap_around.
-   [OK]          Main_Protocol                116   sub_mod_2^64.invalid.
-   [OK]          Main_Protocol                117   mul_mod_2^255-19.no_wrap_a...
-   [OK]          Main_Protocol                118   mul_mod_2^255-19.wrap_around.
-   [OK]          Main_Protocol                119   mul_mod_2^255-19.non-std out.
-   [OK]          Main_Protocol                120   mul_mod_2^255-19.invalid.
-   [OK]          Main_Protocol                121   mul_mod_2^255-19.invalid qm.
-   [OK]          Main_Protocol                122   mul_mod_2^255-19.invalid t1.
-   [OK]          Main_Protocol                123   mul_mod_2^255-19.invalid t2.
-   [OK]          Main_Protocol                124   div_mod_2^255-19.no_wrap_a...
-   [OK]          Main_Protocol                125   div_mod_2^255-19.wrap_around.
-   [OK]          Main_Protocol                126   div_mod_2^255-19.invalid.
-   [OK]          Main_Protocol                127   mul_mod_2^64.no_wrap_around.
-   [OK]          Main_Protocol                128   mul_mod_2^64.wrap_around.
-   [OK]          Main_Protocol                129   mul_mod_2^64.invalid.
-   [OK]          Main_Protocol                130   mul_mod_2^64.invalid qm.
-   [OK]          Main_Protocol                131   big_circuit.2.5.
-   [OK]          Main_Protocol                132   big_circuit.2.5.
-   [OK]          Main_Protocol                133   qplookup.
-   [OK]          Main_Protocol                134   qplookup_two_tables.
-   [OK]          Main_Protocol                135   lookup_zero_values.
-   [OK]          Main_Protocol                136   lookup_non_zero_values.
-   [OK]          Main_Protocol                137   lookup_no_public_inputs.
-   [OK]          Main_Protocol                138   lookup_wrong_arith_values.
-   [OK]          Main_Protocol                139   wrong_plookup_values.
-   [OK]          Main_Protocol                140   KZG_Pack+zero_values+non_z...
-   [OK]          Main_Protocol                141   KZG_Pack+zero_values+zero_...
-   [OK]          Main_Protocol                142   KZG_Pack+q_w0+q_w1+q_w0g+q...
-   [OK]          Main_Protocol                143   KZG_Pack+qplookup+lookup_z...
-   [OK]          Main_Protocol                144   KZG_Pack+lookup_non_zero_v...
-   [OK]          Main_Protocol                145   KZG_Pack+lookup_wrong_arit...
-   [OK]          Main_Protocol                146   KZG_Pack+qplookup_two_tabl...
-   [OK]          Main_Protocol                147   test_encodings.
-   [OK]          Main_Protocol                148   Subset of proofs (KZG).
-   [OK]          Main_Protocol                149   Subset of proofs (Pack).
-   [SKIP]        Main_Protocol                150   KZG.big_circuit.2.16.
-   [SKIP]        Main_Protocol                151   KZG.big_circuit.2.16 zk.
-   [SKIP]        Main_Protocol                152   KZG.big_circuit.2.16.
-   [SKIP]        Main_Protocol                153   KZG.big_circuit.2.16 zk.
-   [SKIP]        Main_Protocol                154   KZG_Pack.big_circuit.2.16.
-   [SKIP]        Main_Protocol                155   KZG_Pack.big_circuit.2.16 zk.
-   [SKIP]        Main_Protocol                156   KZG_Pack.big_circuit.2.16.
-   [SKIP]        Main_Protocol                157   KZG_Pack.big_circuit.2.16 zk.
-   [OK]          Circuit                        0   make q_table.
-   [OK]          Circuit                        1   make qc.
-   [OK]          Circuit                        2   make qm.
-   [OK]          Circuit                        3   make qx2b.
-   [OK]          Circuit                        4   make qx5a.
-   [OK]          Circuit                        5   make qx5c.
-   [OK]          Circuit                        6   make qecc_ws_add.
-   [OK]          Circuit                        7   make qecc_ed_add.
-   [OK]          Circuit                        8   make qecc_ed_cond_add.
-   [OK]          Circuit                        9   make qbool.
-   [OK]          Circuit                       10   make qcond_swap.
-   [OK]          Circuit                       11   make q_anemoi.
-   [OK]          Circuit                       12   make q_plookup.
-   [OK]          Circuit                       13   make q_mod_add_25519.
-   [OK]          Circuit                       14   make q_mod_add_64.
-   [OK]          Circuit                       15   make q_mod_mul_25519.
-   [OK]          Circuit                       16   make q_mod_mul_64.
-   [OK]          Circuit                       17   make q_w0.
-   [OK]          Circuit                       18   make q_w1.
-   [OK]          Circuit                       19   make q_w2.
-   [OK]          Circuit                       20   make q_w3.
-   [OK]          Circuit                       21   make q_w4.
-   [OK]          Circuit                       22   make q_w5.
-   [OK]          Circuit                       23   make q_w0g.
-   [OK]          Circuit                       24   make q_w1g.
-   [OK]          Circuit                       25   make q_w2g.
-   [OK]          Circuit                       26   make q_w3g.
-   [OK]          Circuit                       27   make q_w4g.
-   [OK]          Circuit                       28   make q_w5g.
-   [OK]          Circuit                       29   make empty.
-   [OK]          Circuit                       30   make different_size.
-   [OK]          Circuit                       31   make vectors.
-   [OK]          Circuit                       32   make table.
-   [OK]          Circuit                       33   make disjoint.
-   [OK]          Circuit                       34   to_plonk wrong selectors.
-   [OK]          Cq                             0   Correctness.
-   [OK]          Cq                             1   Not in table.
-   [OK]          Cq                             2   Fake proof.
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/octez-libs.18.1/_build/default/src/lib_plonk/test/_build/_tests/PlonK'.
- Test Successful in 15.176s. 218 tests run.
- (cd _build/default/src/lib_stdlib_unix/test && ./main.exe)
- qcheck random seed: 535562716
- [22:45:32.245] [SUCCESS] (1/3) Log_config_rules: parsing rules
- [22:45:45.656] [SUCCESS] (2/3) test-key-value-store-fuzzy: sequential (key-value store sequential writes/reads)
- [22:45:58.748] [SUCCESS] (3/3) test-key-value-store-fuzzy: parallel (key-value store concurrent writes/reads)
- (cd _build/default/src/lib_gossipsub/test && ./test_gossipsub.exe)
- [22:45:33.909] [SUCCESS] (1/46) Gossipsub: Ignore graft from unknown topic
- [22:45:33.909] [SUCCESS] (2/46) Gossipsub: Handle received subscriptions
- [22:45:33.910] [SUCCESS] (3/46) Gossipsub: Test join adds peers to mesh
- [22:45:33.910] [SUCCESS] (4/46) Gossipsub: Test join adds fanout to mesh
- [22:45:33.910] [SUCCESS] (5/46) Gossipsub: Test publish without flood publishing
- [22:45:33.911] [SUCCESS] (6/46) Gossipsub: Test receiving message for unsubscribed topic
- [22:45:33.911] [SUCCESS] (7/46) Gossipsub: Test receiving message
- [22:45:33.911] [SUCCESS] (8/46) Gossipsub: Test fanout
- [22:45:33.911] [SUCCESS] (9/46) Gossipsub: Test handle graft for subscribed topic
- [22:45:33.911] [SUCCESS] (10/46) Gossipsub: Test handle graft for not joined topic
- [22:45:33.911] [SUCCESS] (11/46) Gossipsub: Test handle graft without subscribe
- [22:45:33.911] [SUCCESS] (12/46) Gossipsub: Test prune removes peer from mesh
- [22:45:33.911] [SUCCESS] (13/46) Gossipsub: Test mesh addition in maintainance
- [22:45:33.911] [SUCCESS] (14/46) Gossipsub: Test mesh subtraction in maintainance
- [22:45:33.911] [SUCCESS] (15/46) Gossipsub: Do not graft within backoff period
- [22:45:33.911] [SUCCESS] (16/46) Gossipsub: Unsubscribe backoff
- [22:45:33.911] [SUCCESS] (17/46) Gossipsub: Accept only outbound peer grafts when mesh full
- [22:45:33.912] [SUCCESS] (18/46) Gossipsub: Do not remove too many outbound peers
- [22:45:33.912] [SUCCESS] (19/46) Gossipsub: Add outbound peers if min is not satisfied
- [22:45:33.912] [SUCCESS] (20/46) Gossipsub: Test handle IWant for message in cache
- [22:45:33.912] [SUCCESS] (21/46) Gossipsub: Test handle IWant message cache shifted
- [22:45:33.912] [SUCCESS] (22/46) Gossipsub: Test handle IWant for message not in cache
- [22:45:33.912] [SUCCESS] (23/46) Gossipsub: Ignore too many IWants from same peer for same message
- [22:45:33.912] [SUCCESS] (24/46) Gossipsub: Handle IHave for subscribed and not seen.
- [22:45:33.913] [SUCCESS] (25/46) Gossipsub: Handle IHave for subscribed and seen.
- [22:45:33.913] [SUCCESS] (26/46) Gossipsub: Handle IHave for unsubscribed.
- [22:45:33.913] [SUCCESS] (27/46) Gossipsub: Ignore too many IHaves.
- [22:45:33.913] [SUCCESS] (28/46) Gossipsub: Ignore too many messages in IHave.
- [22:45:33.913] [SUCCESS] (29/46) Gossipsub: simple heartbeat scenario
- [22:45:33.913] [SUCCESS] (30/46) Gossipsub: Scoring P1
- [22:45:33.913] [SUCCESS] (31/46) Gossipsub: Scoring P2
- [22:45:33.913] [SUCCESS] (32/46) Gossipsub: Scoring P4
- [22:45:33.913] [SUCCESS] (33/46) Gossipsub: Scoring P5
- [22:45:33.913] [SUCCESS] (34/46) Gossipsub: Scoring P7 grafts before backoff
- [22:45:35.915] [SUCCESS] (35/46) GS worker: Start and stop
- [22:45:37.917] [SUCCESS] (36/46) GS worker: subscribe and graft
- [22:45:38.918] [SUCCESS] (37/46) GS worker: filter full messages for the app
- [22:45:40.943] [SUCCESS] (38/46) Gossipsub: remove peer
- [22:46:06.099] [SUCCESS] (39/46) Gossipsub: check correction of message cache data structure
- [22:46:06.436] [SUCCESS] (40/46) Gossipsub: peers below degree high
- [22:46:06.896] [SUCCESS] (41/46) Gossipsub: Handle IHaves
- [22:46:07.206] [SUCCESS] (42/46) Gossipsub: opportunistic_grafting
- [22:46:07.615] [SUCCESS] (43/46) Gossipsub: Handle Grafts
- [22:46:08.178] [SUCCESS] (44/46) Gossipsub: Test score status matches mesh
- [22:46:10.436] [SUCCESS] (45/46) Gossipsub: check correction of Connections bidirectional map
- [22:46:10.436] [SUCCESS] (46/46) Gossipsub/Message Cache: Test message cache
- (cd _build/default/src/lib_aplonk/test && ./main.exe -q)
- Random seed: 42
- Testing `aPlonk'.
- This run has ID `3446K9RF'.
- 
-   [OK]          aPlonk Internal              0   Sum_alpha_i.
-   [OK]          aPlonk Internal              1   PI.
-   [OK]          aPlonk Internal              2   T.
-   [OK]          aPlonk External              0   test proto.
-   [SKIP]        aPlonk External              1   compare protos.
-   [OK]          Main Proto (aPlonk)          0   aplonk.qc.
-   [OK]          Main Proto (aPlonk)          1   aplonk.q_w0.
-   [OK]          Main Proto (aPlonk)          2   aplonk.q_w1.
-   [OK]          Main Proto (aPlonk)          3   aplonk.q_w3.
-   [OK]          Main Proto (aPlonk)          4   aplonk.q_w4.
-   [OK]          Main Proto (aPlonk)          5   aplonk.q_w5.
-   [OK]          Main Proto (aPlonk)          6   aplonk.q_w0g.
-   [OK]          Main Proto (aPlonk)          7   aplonk.q_w1g.
-   [OK]          Main Proto (aPlonk)          8   aplonk.q_w2g.
-   [OK]          Main Proto (aPlonk)          9   aplonk.q_w3g.
-   [OK]          Main Proto (aPlonk)         10   aplonk.q_w4g.
-   [OK]          Main Proto (aPlonk)         11   aplonk.q_w5g.
-   [OK]          Main Proto (aPlonk)         12   aplonk.qm.
-   [OK]          Main Proto (aPlonk)         13   aplonk.qx2b.
-   [OK]          Main Proto (aPlonk)         14   aplonk.qx5a.
-   [OK]          Main Proto (aPlonk)         15   aplonk.qx5c.
-   [OK]          Main Proto (aPlonk)         16   aplonk.qecc_ws_add.
-   [OK]          Main Proto (aPlonk)         17   aplonk.qecc_ed_add.
-   [OK]          Main Proto (aPlonk)         18   aplonk.qecc_cond_ed_add.
-   [OK]          Main Proto (aPlonk)         19   aplonk.qbool.
-   [OK]          Main Proto (aPlonk)         20   aplonk.qcond_swap.
-   [OK]          Main Proto (aPlonk)         21   aplonk.q_anemoi.
-   [OK]          Main Proto (aPlonk)         22   aplonk.no_public_inputs.
-   [OK]          Main Proto (aPlonk)         23   aplonk.RC_single_valid.
-   [OK]          Main Proto (aPlonk)         24   aplonk.RC_single_wrong.
-   [OK]          Main Proto (aPlonk)         25   aplonk.basic.
-   [OK]          Main Proto (aPlonk)         26   aplonk.add_mod_2^255-19.no_w...
-   [OK]          Main Proto (aPlonk)         27   aplonk.add_mod_2^255-19.wrap...
-   [OK]          Main Proto (aPlonk)         28   aplonk.add_mod_2^255-19.non-...
-   [OK]          Main Proto (aPlonk)         29   aplonk.add_mod_2^255-19.inva...
-   [OK]          Main Proto (aPlonk)         30   aplonk.add_mod_2^255-19.inva...
-   [OK]          Main Proto (aPlonk)         31   aplonk.add_mod_2^255-19.inva...
-   [OK]          Main Proto (aPlonk)         32   aplonk.sub_mod_2^255-19.no_w...
-   [OK]          Main Proto (aPlonk)         33   aplonk.sub_mod_2^255-19.wrap...
-   [OK]          Main Proto (aPlonk)         34   aplonk.sub_mod_2^255-19.inva...
-   [OK]          Main Proto (aPlonk)         35   aplonk.add_mod_2^64.no_wrap_...
-   [OK]          Main Proto (aPlonk)         36   aplonk.add_mod_2^64.wrap_aro...
-   [OK]          Main Proto (aPlonk)         37   aplonk.add_mod_2^64.invalid.
-   [OK]          Main Proto (aPlonk)         38   aplonk.sub_mod_2^64.no_wrap_...
-   [OK]          Main Proto (aPlonk)         39   aplonk.sub_mod_2^64.wrap_aro...
-   [OK]          Main Proto (aPlonk)         40   aplonk.sub_mod_2^64.invalid.
-   [OK]          Main Proto (aPlonk)         41   aplonk.mul_mod_2^255-19.no_w...
-   [OK]          Main Proto (aPlonk)         42   aplonk.mul_mod_2^255-19.wrap...
-   [OK]          Main Proto (aPlonk)         43   aplonk.mul_mod_2^255-19.non-...
-   [OK]          Main Proto (aPlonk)         44   aplonk.mul_mod_2^255-19.inva...
-   [OK]          Main Proto (aPlonk)         45   aplonk.mul_mod_2^255-19.inva...
-   [OK]          Main Proto (aPlonk)         46   aplonk.mul_mod_2^255-19.inva...
-   [OK]          Main Proto (aPlonk)         47   aplonk.mul_mod_2^255-19.inva...
-   [OK]          Main Proto (aPlonk)         48   aplonk.div_mod_2^255-19.no_w...
-   [OK]          Main Proto (aPlonk)         49   aplonk.div_mod_2^255-19.wrap...
-   [OK]          Main Proto (aPlonk)         50   aplonk.div_mod_2^255-19.inva...
-   [OK]          Main Proto (aPlonk)         51   aplonk.mul_mod_2^64.no_wrap_...
-   [OK]          Main Proto (aPlonk)         52   aplonk.mul_mod_2^64.wrap_aro...
-   [OK]          Main Proto (aPlonk)         53   aplonk.mul_mod_2^64.invalid.
-   [OK]          Main Proto (aPlonk)         54   aplonk.mul_mod_2^64.invalid qm.
-   [OK]          Main Proto (aPlonk)         55   aplonk.bnot.
-   [OK]          Main Proto (aPlonk)         56   aplonk.zero_values.
-   [OK]          Main Proto (aPlonk)         57   aplonk.non_zero_values.
-   [OK]          Main Proto (aPlonk)         58   aplonk.wrong_values.
-   [OK]          Main Proto (aPlonk)         59   aplonk.big_circuit.2.5+big_c...
-   [OK]          Main Proto (aPlonk)         60   aplonk.nb_proofs no pi.
-   [OK]          Main Proto (aPlonk)         61   aplonk.nb_proofs no pi (next...
-   [OK]          Main Proto (aPlonk)         62   aplonk.nb_proofs no pi (RC).
-   [OK]          Main Proto (aPlonk)         63   aplonk.nb_proofs pi_rollup.
-   [OK]          Main Proto (aPlonk)         64   aplonk.qc+q_w0+q_w1+q_w3+q_w4.
-   [OK]          Main Proto (aPlonk)         65   aplonk.qc+basic+basic.
-   [OK]          Main Proto (aPlonk)         66   aplonk.non_zero_values+non_z...
-   [OK]          Main Proto (aPlonk)         67   aplonk.q_w0g+q_w1g+non_zero_...
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/octez-libs.18.1/_build/default/src/lib_aplonk/test/_build/_tests/aPlonk'.
- Test Successful in 35.675s. 72 tests run.
- (cd _build/default/src/lib_plonk/test_plompiler && ./main.exe -q)
- Random seed: 42
- Testing `Plompiler'.
- This run has ID `UE0STG2P'.
- 
-   [OK]          Utils                                      0   bitlist.
-   [OK]          Core                                       0   Num plonk.
-   [OK]          Core                                       1   Num.
-   [OK]          Core                                       2   Bool.
-   [OK]          Core                                       3   List.
-   [OK]          Core                                       4   Rest.
-   [OK]          Core                                       5   Tuple.
-   [OK]          Core                                       6   ECC.
-   [OK]          Core                                       7   Bytes.
-   [OK]          Core                                       8   Limbs.
-   [SKIP]        Core                                       9   Num plonk.
-   [SKIP]        Core                                      10   Bool plonk.
-   [SKIP]        Core                                      11   List plonk.
-   [SKIP]        Core                                      12   Rest plonk.
-   [SKIP]        Core                                      13   Tuple plonk.
-   [SKIP]        Core                                      14   ECC plonk.
-   [SKIP]        Core                                      15   Bytes plonk.
-   [SKIP]        Core                                      16   Limbs plonk.
-   [OK]          Blake                                      0   Blake2s.
-   [SKIP]        Blake                                      1   Blake2s plonk.
-   [OK]          Poseidon                                   0   Poseidon128.
-   [OK]          Poseidon                                   1   Poseidon252.
-   [OK]          Poseidon                                   2   PoseidonFull.
-   [SKIP]        Poseidon                                   3   Poseidon128 pl...
-   [SKIP]        Poseidon                                   4   Poseidon252 pl...
-   [SKIP]        Poseidon                                   5   PoseidonFull p...
-   [SKIP]        Sha2                                       0   Internal_sha256.
-   [SKIP]        Sha2                                       1   External_sha256.
-   [SKIP]        Sha2                                       2   External_sha512.
-   [SKIP]        Sha2                                       3   Internal_sha25...
-   [SKIP]        Sha2                                       4   External_sha25...
-   [OK]          Anemoi                                     0   Anemoi.
-   [SKIP]        Anemoi                                     1   Anemoi plonk.
-   [OK]          Enum                                       0   Enum.
-   [SKIP]        Enum                                       1   Enum plonk.
-   [OK]          Schnorr                                    0   P.
-   [OK]          Schnorr                                    1   Schnorr.
-   [SKIP]        Schnorr                                    2   Schnorr plonk.
-   [OK]          Ed25519                                    0   P.
-   [SKIP]        Ed25519                                    1   Ed25519.
-   [OK]          Edwards25519                               0   Edwards25519.
-   [SKIP]        Edwards25519                               1   Edwards25519 p...
-   [OK]          Merkle                                     0   Merkle path.
-   [OK]          Merkle                                     1   Merkle pos.
-   [SKIP]        Merkle                                     2   Merkle pos plonk.
-   [OK]          Merkle N-arity: Plonk integration          0   Merkle pos.
-   [SKIP]        Merkle N-arity: Plonk integration          1   Merkle pos plonk.
-   [OK]          ModularArith                               0   ModArith 25519.
-   [OK]          ModularArith                               1   ModArith_prime...
-   [OK]          ModularArith                               2   ModArith 64.
-   [SKIP]        ModularArith                               3   ModArith 25519...
-   [SKIP]        ModularArith                               4   ModArith_prime...
-   [SKIP]        ModularArith                               5   ModArith 64 pl...
-   [OK]          Edwards                                    0   JubJubEdward.
-   [SKIP]        Edwards                                    1   JubJubEdward p...
-   [OK]          Weierstrass                                0   JubJubWeierstr...
-   [SKIP]        Weierstrass                                1   JubJubWeierstr...
-   [OK]          Serialization                              0   Poseidon128.
-   [OK]          Lookups                                    0   Bool.
-   [SKIP]        Lookups                                    1   Bool plonk.
-   [OK]          InputCom                                   0   Input commitment.
-   [OK]          Range-checks                               0   Range-check.
-   [SKIP]        Range-checks                               1   Range-check pl...
-   [OK]          Linear algebra                             0   Distributive.
-   [OK]          Linear algebra                             1   Identity.
-   [OK]          Linear algebra                             2   Transpose.
-   [OK]          Linear algebra                             3   Inverse.
-   [SKIP]        Bench                                      0   Tx benchmark.
-   [SKIP]        Bench Poseidon                             0   Poseidon bench...
-   [OK]          Optimizer                                  0   Optimizer.
-   [SKIP]        Optimizer                                  1   Optimizer plonk.
-   [OK]          Encoding                                   0   Encoding.
-   [SKIP]        Encoding                                   1   Encoding plonk.
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/octez-libs.18.1/_build/default/src/lib_plonk/test_plompiler/_build/_tests/Plompiler'.
- Test Successful in 107.619s. 38 tests run.
- (cd _build/default/src/lib_mec/test && ./main.exe)
- [22:45:29.934] [SUCCESS] (1/1618) Vesta projective coordinates: value generation (random)
- [22:45:29.934] [SUCCESS] (2/1618) Vesta projective coordinates: value generation (negate_with_one)
- [22:45:29.934] [SUCCESS] (3/1618) Vesta projective coordinates: value generation (negate_with_zero)
- [22:45:29.947] [SUCCESS] (4/1618) Vesta projective coordinates: value generation (negate_with_random)
- [22:45:29.960] [SUCCESS] (5/1618) Vesta projective coordinates: value generation (double_with_random)
- [22:45:29.973] [SUCCESS] (6/1618) Vesta projective coordinates: value generation (negate generates a valid point)
- [22:45:30.001] [SUCCESS] (7/1618) Vesta projective coordinates: value generation (addition generates a valid point)
- [22:45:30.015] [SUCCESS] (8/1618) Vesta projective coordinates: value generation (double generates a valid point)
- [22:45:30.197] [SUCCESS] (9/1618) Vesta projective coordinates: value generation (scalar multiplication generates a valid point)
- [22:45:30.210] [SUCCESS] (10/1618) Vesta projective coordinates: value generation (of_bytes_exn and to_bytes are inverse functions)
- [22:45:30.223] [SUCCESS] (11/1618) Vesta projective coordinates: value generation (check bytes on random with to_bytes)
- [22:45:30.223] [SUCCESS] (12/1618) Vesta projective coordinates: value generation (double_with_one)
- [22:45:30.223] [SUCCESS] (13/1618) Vesta projective coordinates: value generation (double_with_zero)
- [22:45:30.224] [SUCCESS] (14/1618) Vesta projective coordinates: equality (zero)
- [22:45:30.224] [SUCCESS] (15/1618) Vesta projective coordinates: equality (one)
- [22:45:30.237] [SUCCESS] (16/1618) Vesta projective coordinates: equality (random_same_objects)
- [22:45:30.250] [SUCCESS] (17/1618) Vesta projective coordinates: Group properties (check_bytes_random)
- [22:45:30.250] [SUCCESS] (18/1618) Vesta projective coordinates: Group properties (check_bytes_zero)
- [22:45:30.250] [SUCCESS] (19/1618) Vesta projective coordinates: Group properties (check_bytes_one)
- [22:45:30.264] [SUCCESS] (20/1618) Vesta projective coordinates: Group properties (check_bytes_random_double)
- [22:45:30.291] [SUCCESS] (21/1618) Vesta projective coordinates: Group properties (check_bytes_random_sum)
- [22:45:30.475] [SUCCESS] (22/1618) Vesta projective coordinates: Group properties (check_bytes_random_multiplication)
- [22:45:30.475] [SUCCESS] (23/1618) Vesta projective coordinates: Group properties (zero_scalar_nullifier_one)
- [22:45:30.475] [SUCCESS] (24/1618) Vesta projective coordinates: Group properties (zero_scalar_nullifier_zero)
- [22:45:30.488] [SUCCESS] (25/1618) Vesta projective coordinates: Group properties (zero_scalar_nullifier_random)
- [22:45:30.501] [SUCCESS] (26/1618) Vesta projective coordinates: Group properties (multiply_by_one_does_nothing)
- [22:45:30.514] [SUCCESS] (27/1618) Vesta projective coordinates: Group properties (opposite_of_opposite)
- [22:45:30.527] [SUCCESS] (28/1618) Vesta projective coordinates: Group properties (opposite_of_opposite_using_scalar)
- [22:45:30.527] [SUCCESS] (29/1618) Vesta projective coordinates: Group properties (opposite_of_zero_is_zero)
- [22:45:30.527] [SUCCESS] (30/1618) Vesta projective coordinates: Group properties (opposite_of_opposite_of_zero_is_zero)
- [22:45:30.527] [SUCCESS] (31/1618) Vesta projective coordinates: Group properties (opposite_of_opposite_of_one_is_one)
- [22:45:30.534] [SUCCESS] (32/1618) Vesta projective coordinates: Group properties (opposite_equality)
- [22:45:30.547] [SUCCESS] (33/1618) Vesta projective coordinates: Group properties (zero is the identity)
- [22:45:31.088] [SUCCESS] (34/1618) Vesta projective coordinates: Group properties (distributivity)
- [22:45:31.457] [SUCCESS] (35/1618) Vesta projective coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec)
- [22:45:31.470] [SUCCESS] (36/1618) Vesta projective coordinates: Group properties (opposite_existential_property)
- [22:45:31.825] [SUCCESS] (37/1618) Vesta projective coordinates: Group properties (mul_by_order_of_base_field_equals_element)
- [22:45:32.846] [SUCCESS] (38/1618) Vesta projective coordinates: Group properties (multiplication_properties_on_base_field_element)
- [22:45:32.860] [SUCCESS] (39/1618) Vesta projective coordinates: Group properties (double)
- [22:45:33.381] [SUCCESS] (40/1618) Vesta projective coordinates: Group properties (additive_associativity_with_scalar)
- [22:45:34.065] [SUCCESS] (41/1618) Vesta projective coordinates: Group properties (inverse on scalar)
- [22:45:34.106] [SUCCESS] (42/1618) Vesta projective coordinates: Group properties (additive_associativity)
- [22:45:34.134] [SUCCESS] (43/1618) Vesta projective coordinates: Group properties (additive_commutativity)
- [22:45:34.134] [SUCCESS] (44/1618) Vesta projective coordinates: Group properties (Generator is of prime order)
- [22:45:34.147] [SUCCESS] (45/1618) Vesta jacobian coordinates: value generation (random)
- [22:45:34.147] [SUCCESS] (46/1618) Vesta jacobian coordinates: value generation (negate_with_one)
- [22:45:34.147] [SUCCESS] (47/1618) Vesta jacobian coordinates: value generation (negate_with_zero)
- [22:45:34.159] [SUCCESS] (48/1618) Vesta jacobian coordinates: value generation (negate_with_random)
- [22:45:34.172] [SUCCESS] (49/1618) Vesta jacobian coordinates: value generation (double_with_random)
- [22:45:34.185] [SUCCESS] (50/1618) Vesta jacobian coordinates: value generation (negate generates a valid point)
- [22:45:34.213] [SUCCESS] (51/1618) Vesta jacobian coordinates: value generation (addition generates a valid point)
- [22:45:34.226] [SUCCESS] (52/1618) Vesta jacobian coordinates: value generation (double generates a valid point)
- [22:45:34.540] [SUCCESS] (53/1618) Vesta jacobian coordinates: value generation (scalar multiplication generates a valid point)
- [22:45:34.553] [SUCCESS] (54/1618) Vesta jacobian coordinates: value generation (of_bytes_exn and to_bytes are inverse functions)
- [22:45:34.566] [SUCCESS] (55/1618) Vesta jacobian coordinates: value generation (check bytes on random with to_bytes)
- [22:45:34.566] [SUCCESS] (56/1618) Vesta jacobian coordinates: value generation (double_with_one)
- [22:45:34.566] [SUCCESS] (57/1618) Vesta jacobian coordinates: value generation (double_with_zero)
- [22:45:34.566] [SUCCESS] (58/1618) Vesta jacobian coordinates: equality (zero)
- [22:45:34.566] [SUCCESS] (59/1618) Vesta jacobian coordinates: equality (one)
- [22:45:34.579] [SUCCESS] (60/1618) Vesta jacobian coordinates: equality (random_same_objects)
- [22:45:34.592] [SUCCESS] (61/1618) Vesta jacobian coordinates: Group properties (check_bytes_random)
- [22:45:34.592] [SUCCESS] (62/1618) Vesta jacobian coordinates: Group properties (check_bytes_zero)
- [22:45:34.592] [SUCCESS] (63/1618) Vesta jacobian coordinates: Group properties (check_bytes_one)
- [22:45:34.606] [SUCCESS] (64/1618) Vesta jacobian coordinates: Group properties (check_bytes_random_double)
- [22:45:34.633] [SUCCESS] (65/1618) Vesta jacobian coordinates: Group properties (check_bytes_random_sum)
- [22:45:34.943] [SUCCESS] (66/1618) Vesta jacobian coordinates: Group properties (check_bytes_random_multiplication)
- [22:45:34.944] [SUCCESS] (67/1618) Vesta jacobian coordinates: Group properties (zero_scalar_nullifier_one)
- [22:45:34.944] [SUCCESS] (68/1618) Vesta jacobian coordinates: Group properties (zero_scalar_nullifier_zero)
- [22:45:34.956] [SUCCESS] (69/1618) Vesta jacobian coordinates: Group properties (zero_scalar_nullifier_random)
- [22:45:34.969] [SUCCESS] (70/1618) Vesta jacobian coordinates: Group properties (multiply_by_one_does_nothing)
- [22:45:34.982] [SUCCESS] (71/1618) Vesta jacobian coordinates: Group properties (opposite_of_opposite)
- [22:45:34.995] [SUCCESS] (72/1618) Vesta jacobian coordinates: Group properties (opposite_of_opposite_using_scalar)
- [22:45:34.995] [SUCCESS] (73/1618) Vesta jacobian coordinates: Group properties (opposite_of_zero_is_zero)
- [22:45:34.995] [SUCCESS] (74/1618) Vesta jacobian coordinates: Group properties (opposite_of_opposite_of_zero_is_zero)
- [22:45:34.995] [SUCCESS] (75/1618) Vesta jacobian coordinates: Group properties (opposite_of_opposite_of_one_is_one)
- [22:45:35.007] [SUCCESS] (76/1618) Vesta jacobian coordinates: Group properties (opposite_equality)
- [22:45:35.020] [SUCCESS] (77/1618) Vesta jacobian coordinates: Group properties (zero is the identity)
- [22:45:35.951] [SUCCESS] (78/1618) Vesta jacobian coordinates: Group properties (distributivity)
- [22:45:36.596] [SUCCESS] (79/1618) Vesta jacobian coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec)
- [22:45:36.610] [SUCCESS] (80/1618) Vesta jacobian coordinates: Group properties (opposite_existential_property)
- [22:45:37.235] [SUCCESS] (81/1618) Vesta jacobian coordinates: Group properties (mul_by_order_of_base_field_equals_element)
- [22:45:39.100] [SUCCESS] (82/1618) Vesta jacobian coordinates: Group properties (multiplication_properties_on_base_field_element)
- [22:45:39.115] [SUCCESS] (83/1618) Vesta jacobian coordinates: Group properties (double)
- [22:45:40.051] [SUCCESS] (84/1618) Vesta jacobian coordinates: Group properties (additive_associativity_with_scalar)
- [22:45:41.268] [SUCCESS] (85/1618) Vesta jacobian coordinates: Group properties (inverse on scalar)
- [22:45:41.313] [SUCCESS] (86/1618) Vesta jacobian coordinates: Group properties (additive_associativity)
- [22:45:41.342] [SUCCESS] (87/1618) Vesta jacobian coordinates: Group properties (additive_commutativity)
- [22:45:41.342] [SUCCESS] (88/1618) Vesta jacobian coordinates: Group properties (Generator is of prime order)
- [22:45:41.355] [SUCCESS] (89/1618) Vesta affine coordinates: value generation (random)
- [22:45:41.355] [SUCCESS] (90/1618) Vesta affine coordinates: value generation (negate_with_one)
- [22:45:41.355] [SUCCESS] (91/1618) Vesta affine coordinates: value generation (negate_with_zero)
- [22:45:41.368] [SUCCESS] (92/1618) Vesta affine coordinates: value generation (negate_with_random)
- [22:45:41.382] [SUCCESS] (93/1618) Vesta affine coordinates: value generation (double_with_random)
- [22:45:41.395] [SUCCESS] (94/1618) Vesta affine coordinates: value generation (negate generates a valid point)
- [22:45:41.422] [SUCCESS] (95/1618) Vesta affine coordinates: value generation (addition generates a valid point)
- [22:45:41.436] [SUCCESS] (96/1618) Vesta affine coordinates: value generation (double generates a valid point)
- [22:45:41.752] [SUCCESS] (97/1618) Vesta affine coordinates: value generation (scalar multiplication generates a valid point)
- [22:45:41.765] [SUCCESS] (98/1618) Vesta affine coordinates: value generation (of_bytes_exn and to_bytes are inverse functions)
- [22:45:41.778] [SUCCESS] (99/1618) Vesta affine coordinates: value generation (check bytes on random with to_bytes)
- [22:45:41.778] [SUCCESS] (100/1618) Vesta affine coordinates: value generation (double_with_one)
- [22:45:41.778] [SUCCESS] (101/1618) Vesta affine coordinates: value generation (double_with_zero)
- [22:45:41.778] [SUCCESS] (102/1618) Vesta affine coordinates: equality (zero)
- [22:45:41.779] [SUCCESS] (103/1618) Vesta affine coordinates: equality (one)
- [22:45:41.791] [SUCCESS] (104/1618) Vesta affine coordinates: equality (random_same_objects)
- [22:45:41.804] [SUCCESS] (105/1618) Vesta affine coordinates: Group properties (check_bytes_random)
- [22:45:41.804] [SUCCESS] (106/1618) Vesta affine coordinates: Group properties (check_bytes_zero)
- [22:45:41.804] [SUCCESS] (107/1618) Vesta affine coordinates: Group properties (check_bytes_one)
- [22:45:41.818] [SUCCESS] (108/1618) Vesta affine coordinates: Group properties (check_bytes_random_double)
- [22:45:41.845] [SUCCESS] (109/1618) Vesta affine coordinates: Group properties (check_bytes_random_sum)
- [22:45:42.161] [SUCCESS] (110/1618) Vesta affine coordinates: Group properties (check_bytes_random_multiplication)
- [22:45:42.161] [SUCCESS] (111/1618) Vesta affine coordinates: Group properties (zero_scalar_nullifier_one)
- [22:45:42.161] [SUCCESS] (112/1618) Vesta affine coordinates: Group properties (zero_scalar_nullifier_zero)
- [22:45:42.174] [SUCCESS] (113/1618) Vesta affine coordinates: Group properties (zero_scalar_nullifier_random)
- [22:45:42.186] [SUCCESS] (114/1618) Vesta affine coordinates: Group properties (multiply_by_one_does_nothing)
- [22:45:42.199] [SUCCESS] (115/1618) Vesta affine coordinates: Group properties (opposite_of_opposite)
- [22:45:42.212] [SUCCESS] (116/1618) Vesta affine coordinates: Group properties (opposite_of_opposite_using_scalar)
- [22:45:42.212] [SUCCESS] (117/1618) Vesta affine coordinates: Group properties (opposite_of_zero_is_zero)
- [22:45:42.212] [SUCCESS] (118/1618) Vesta affine coordinates: Group properties (opposite_of_opposite_of_zero_is_zero)
- [22:45:42.212] [SUCCESS] (119/1618) Vesta affine coordinates: Group properties (opposite_of_opposite_of_one_is_one)
- [22:45:42.225] [SUCCESS] (120/1618) Vesta affine coordinates: Group properties (opposite_equality)
- [22:45:42.238] [SUCCESS] (121/1618) Vesta affine coordinates: Group properties (zero is the identity)
- [22:45:43.177] [SUCCESS] (122/1618) Vesta affine coordinates: Group properties (distributivity)
- [22:45:43.787] [SUCCESS] (123/1618) Vesta affine coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec)
- [22:45:43.800] [SUCCESS] (124/1618) Vesta affine coordinates: Group properties (opposite_existential_property)
- [22:45:44.416] [SUCCESS] (125/1618) Vesta affine coordinates: Group properties (mul_by_order_of_base_field_equals_element)
- [22:45:46.237] [SUCCESS] (126/1618) Vesta affine coordinates: Group properties (multiplication_properties_on_base_field_element)
- [22:45:46.251] [SUCCESS] (127/1618) Vesta affine coordinates: Group properties (double)
- [22:45:47.151] [SUCCESS] (128/1618) Vesta affine coordinates: Group properties (additive_associativity_with_scalar)
- [22:45:48.378] [SUCCESS] (129/1618) Vesta affine coordinates: Group properties (inverse on scalar)
- [22:45:48.420] [SUCCESS] (130/1618) Vesta affine coordinates: Group properties (additive_associativity)
- [22:45:48.447] [SUCCESS] (131/1618) Vesta affine coordinates: Group properties (additive_commutativity)
- [22:45:48.447] [SUCCESS] (132/1618) Vesta affine coordinates: Group properties (Generator is of prime order)
- [22:45:48.447] [SUCCESS] (133/1618) Vesta affine coordinates: Compressed representation (Compressed representation of zero is the bs with zeroes)
- [22:45:48.473] [SUCCESS] (134/1618) Vesta affine coordinates: Compressed representation (of_compressed_bytes_exn recovers correct point from uncompressed representation)
- [22:45:48.498] [SUCCESS] (135/1618) Vesta affine coordinates: Compressed representation (of_compressed_bytes_opt recovers correct point from uncompressed representation)
- [22:45:48.498] [SUCCESS] (136/1618) Vesta affine coordinates: Compressed representation (Compressed version is half the size)
- [22:45:48.511] [SUCCESS] (137/1618) Vesta affine coordinates: Compressed representation (of_compressed_bytes_exn/opt do not accept uncompressed bytes representation)
- [22:45:48.524] [SUCCESS] (138/1618) Vesta affine coordinates: Compressed representation (of_bytes_exn/opt do not accept compressed bytes representation)
- [22:45:48.537] [SUCCESS] (139/1618) Tweedledum projective coordinates: value generation (random)
- [22:45:48.537] [SUCCESS] (140/1618) Tweedledum projective coordinates: value generation (negate_with_one)
- [22:45:48.538] [SUCCESS] (141/1618) Tweedledum projective coordinates: value generation (negate_with_zero)
- [22:45:48.551] [SUCCESS] (142/1618) Tweedledum projective coordinates: value generation (negate_with_random)
- [22:45:48.566] [SUCCESS] (143/1618) Tweedledum projective coordinates: value generation (double_with_random)
- [22:45:48.580] [SUCCESS] (144/1618) Tweedledum projective coordinates: value generation (negate generates a valid point)
- [22:45:48.608] [SUCCESS] (145/1618) Tweedledum projective coordinates: value generation (addition generates a valid point)
- [22:45:48.623] [SUCCESS] (146/1618) Tweedledum projective coordinates: value generation (double generates a valid point)
- [22:45:48.807] [SUCCESS] (147/1618) Tweedledum projective coordinates: value generation (scalar multiplication generates a valid point)
- [22:45:48.822] [SUCCESS] (148/1618) Tweedledum projective coordinates: value generation (of_bytes_exn and to_bytes are inverse functions)
- [22:45:48.837] [SUCCESS] (149/1618) Tweedledum projective coordinates: value generation (check bytes on random with to_bytes)
- [22:45:48.837] [SUCCESS] (150/1618) Tweedledum projective coordinates: value generation (double_with_one)
- [22:45:48.838] [SUCCESS] (151/1618) Tweedledum projective coordinates: value generation (double_with_zero)
- [22:45:48.838] [SUCCESS] (152/1618) Tweedledum projective coordinates: equality (zero)
- [22:45:48.838] [SUCCESS] (153/1618) Tweedledum projective coordinates: equality (one)
- [22:45:48.854] [SUCCESS] (154/1618) Tweedledum projective coordinates: equality (random_same_objects)
- [22:45:48.870] [SUCCESS] (155/1618) Tweedledum projective coordinates: Group properties (check_bytes_random)
- [22:45:48.870] [SUCCESS] (156/1618) Tweedledum projective coordinates: Group properties (check_bytes_zero)
- [22:45:48.870] [SUCCESS] (157/1618) Tweedledum projective coordinates: Group properties (check_bytes_one)
- [22:45:48.886] [SUCCESS] (158/1618) Tweedledum projective coordinates: Group properties (check_bytes_random_double)
- [22:45:48.915] [SUCCESS] (159/1618) Tweedledum projective coordinates: Group properties (check_bytes_random_sum)
- [22:45:49.103] [SUCCESS] (160/1618) Tweedledum projective coordinates: Group properties (check_bytes_random_multiplication)
- [22:45:49.103] [SUCCESS] (161/1618) Tweedledum projective coordinates: Group properties (zero_scalar_nullifier_one)
- [22:45:49.103] [SUCCESS] (162/1618) Tweedledum projective coordinates: Group properties (zero_scalar_nullifier_zero)
- [22:45:49.117] [SUCCESS] (163/1618) Tweedledum projective coordinates: Group properties (zero_scalar_nullifier_random)
- [22:45:49.131] [SUCCESS] (164/1618) Tweedledum projective coordinates: Group properties (multiply_by_one_does_nothing)
- [22:45:49.144] [SUCCESS] (165/1618) Tweedledum projective coordinates: Group properties (opposite_of_opposite)
- [22:45:49.158] [SUCCESS] (166/1618) Tweedledum projective coordinates: Group properties (opposite_of_opposite_using_scalar)
- [22:45:49.158] [SUCCESS] (167/1618) Tweedledum projective coordinates: Group properties (opposite_of_zero_is_zero)
- [22:45:49.158] [SUCCESS] (168/1618) Tweedledum projective coordinates: Group properties (opposite_of_opposite_of_zero_is_zero)
- [22:45:49.158] [SUCCESS] (169/1618) Tweedledum projective coordinates: Group properties (opposite_of_opposite_of_one_is_one)
- [22:45:49.165] [SUCCESS] (170/1618) Tweedledum projective coordinates: Group properties (opposite_equality)
- [22:45:49.180] [SUCCESS] (171/1618) Tweedledum projective coordinates: Group properties (zero is the identity)
- [22:45:49.723] [SUCCESS] (172/1618) Tweedledum projective coordinates: Group properties (distributivity)
- [22:45:50.071] [SUCCESS] (173/1618) Tweedledum projective coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec)
- [22:45:50.084] [SUCCESS] (174/1618) Tweedledum projective coordinates: Group properties (opposite_existential_property)
- [22:45:50.432] [SUCCESS] (175/1618) Tweedledum projective coordinates: Group properties (mul_by_order_of_base_field_equals_element)
- [22:45:51.451] [SUCCESS] (176/1618) Tweedledum projective coordinates: Group properties (multiplication_properties_on_base_field_element)
- [22:45:51.466] [SUCCESS] (177/1618) Tweedledum projective coordinates: Group properties (double)
- [22:45:51.995] [SUCCESS] (178/1618) Tweedledum projective coordinates: Group properties (additive_associativity_with_scalar)
- [22:45:52.692] [SUCCESS] (179/1618) Tweedledum projective coordinates: Group properties (inverse on scalar)
- [22:45:52.736] [SUCCESS] (180/1618) Tweedledum projective coordinates: Group properties (additive_associativity)
- [22:45:52.765] [SUCCESS] (181/1618) Tweedledum projective coordinates: Group properties (additive_commutativity)
- [22:45:52.765] [SUCCESS] (182/1618) Tweedledum projective coordinates: Group properties (Generator is of prime order)
- [22:45:52.779] [SUCCESS] (183/1618) Tweedledum jacobian coordinates: value generation (random)
- [22:45:52.779] [SUCCESS] (184/1618) Tweedledum jacobian coordinates: value generation (negate_with_one)
- [22:45:52.779] [SUCCESS] (185/1618) Tweedledum jacobian coordinates: value generation (negate_with_zero)
- [22:45:52.793] [SUCCESS] (186/1618) Tweedledum jacobian coordinates: value generation (negate_with_random)
- [22:45:52.807] [SUCCESS] (187/1618) Tweedledum jacobian coordinates: value generation (double_with_random)
- [22:45:52.820] [SUCCESS] (188/1618) Tweedledum jacobian coordinates: value generation (negate generates a valid point)
- [22:45:52.848] [SUCCESS] (189/1618) Tweedledum jacobian coordinates: value generation (addition generates a valid point)
- [22:45:52.863] [SUCCESS] (190/1618) Tweedledum jacobian coordinates: value generation (double generates a valid point)
- [22:45:53.175] [SUCCESS] (191/1618) Tweedledum jacobian coordinates: value generation (scalar multiplication generates a valid point)
- [22:45:53.189] [SUCCESS] (192/1618) Tweedledum jacobian coordinates: value generation (of_bytes_exn and to_bytes are inverse functions)
- [22:45:53.202] [SUCCESS] (193/1618) Tweedledum jacobian coordinates: value generation (check bytes on random with to_bytes)
- [22:45:53.202] [SUCCESS] (194/1618) Tweedledum jacobian coordinates: value generation (double_with_one)
- [22:45:53.203] [SUCCESS] (195/1618) Tweedledum jacobian coordinates: value generation (double_with_zero)
- [22:45:53.203] [SUCCESS] (196/1618) Tweedledum jacobian coordinates: equality (zero)
- [22:45:53.203] [SUCCESS] (197/1618) Tweedledum jacobian coordinates: equality (one)
- [22:45:53.216] [SUCCESS] (198/1618) Tweedledum jacobian coordinates: equality (random_same_objects)
- [22:45:53.230] [SUCCESS] (199/1618) Tweedledum jacobian coordinates: Group properties (check_bytes_random)
- [22:45:53.230] [SUCCESS] (200/1618) Tweedledum jacobian coordinates: Group properties (check_bytes_zero)
- [22:45:53.230] [SUCCESS] (201/1618) Tweedledum jacobian coordinates: Group properties (check_bytes_one)
- [22:45:53.245] [SUCCESS] (202/1618) Tweedledum jacobian coordinates: Group properties (check_bytes_random_double)
- [22:45:53.273] [SUCCESS] (203/1618) Tweedledum jacobian coordinates: Group properties (check_bytes_random_sum)
- [22:45:53.584] [SUCCESS] (204/1618) Tweedledum jacobian coordinates: Group properties (check_bytes_random_multiplication)
- [22:45:53.585] [SUCCESS] (205/1618) Tweedledum jacobian coordinates: Group properties (zero_scalar_nullifier_one)
- [22:45:53.585] [SUCCESS] (206/1618) Tweedledum jacobian coordinates: Group properties (zero_scalar_nullifier_zero)
- [22:45:53.598] [SUCCESS] (207/1618) Tweedledum jacobian coordinates: Group properties (zero_scalar_nullifier_random)
- [22:45:53.612] [SUCCESS] (208/1618) Tweedledum jacobian coordinates: Group properties (multiply_by_one_does_nothing)
- [22:45:53.626] [SUCCESS] (209/1618) Tweedledum jacobian coordinates: Group properties (opposite_of_opposite)
- [22:45:53.640] [SUCCESS] (210/1618) Tweedledum jacobian coordinates: Group properties (opposite_of_opposite_using_scalar)
- [22:45:53.640] [SUCCESS] (211/1618) Tweedledum jacobian coordinates: Group properties (opposite_of_zero_is_zero)
- [22:45:53.640] [SUCCESS] (212/1618) Tweedledum jacobian coordinates: Group properties (opposite_of_opposite_of_zero_is_zero)
- [22:45:53.640] [SUCCESS] (213/1618) Tweedledum jacobian coordinates: Group properties (opposite_of_opposite_of_one_is_one)
- [22:45:53.652] [SUCCESS] (214/1618) Tweedledum jacobian coordinates: Group properties (opposite_equality)
- [22:45:53.666] [SUCCESS] (215/1618) Tweedledum jacobian coordinates: Group properties (zero is the identity)
- [22:45:54.590] [SUCCESS] (216/1618) Tweedledum jacobian coordinates: Group properties (distributivity)
- [22:45:55.201] [SUCCESS] (217/1618) Tweedledum jacobian coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec)
- [22:45:55.215] [SUCCESS] (218/1618) Tweedledum jacobian coordinates: Group properties (opposite_existential_property)
- [22:45:55.829] [SUCCESS] (219/1618) Tweedledum jacobian coordinates: Group properties (mul_by_order_of_base_field_equals_element)
- [22:45:57.638] [SUCCESS] (220/1618) Tweedledum jacobian coordinates: Group properties (multiplication_properties_on_base_field_element)
- [22:45:57.655] [SUCCESS] (221/1618) Tweedledum jacobian coordinates: Group properties (double)
- [22:45:58.571] [SUCCESS] (222/1618) Tweedledum jacobian coordinates: Group properties (additive_associativity_with_scalar)
- [22:45:59.787] [SUCCESS] (223/1618) Tweedledum jacobian coordinates: Group properties (inverse on scalar)
- [22:45:59.832] [SUCCESS] (224/1618) Tweedledum jacobian coordinates: Group properties (additive_associativity)
- [22:45:59.862] [SUCCESS] (225/1618) Tweedledum jacobian coordinates: Group properties (additive_commutativity)
- [22:45:59.862] [SUCCESS] (226/1618) Tweedledum jacobian coordinates: Group properties (Generator is of prime order)
- [22:45:59.875] [SUCCESS] (227/1618) Tweedledum affine coordinates: value generation (random)
- [22:45:59.875] [SUCCESS] (228/1618) Tweedledum affine coordinates: value generation (negate_with_one)
- [22:45:59.876] [SUCCESS] (229/1618) Tweedledum affine coordinates: value generation (negate_with_zero)
- [22:45:59.889] [SUCCESS] (230/1618) Tweedledum affine coordinates: value generation (negate_with_random)
- [22:45:59.904] [SUCCESS] (231/1618) Tweedledum affine coordinates: value generation (double_with_random)
- [22:45:59.918] [SUCCESS] (232/1618) Tweedledum affine coordinates: value generation (negate generates a valid point)
- [22:45:59.946] [SUCCESS] (233/1618) Tweedledum affine coordinates: value generation (addition generates a valid point)
- [22:45:59.960] [SUCCESS] (234/1618) Tweedledum affine coordinates: value generation (double generates a valid point)
- [22:46:00.274] [SUCCESS] (235/1618) Tweedledum affine coordinates: value generation (scalar multiplication generates a valid point)
- [22:46:00.288] [SUCCESS] (236/1618) Tweedledum affine coordinates: value generation (of_bytes_exn and to_bytes are inverse functions)
- [22:46:00.302] [SUCCESS] (237/1618) Tweedledum affine coordinates: value generation (check bytes on random with to_bytes)
- [22:46:00.302] [SUCCESS] (238/1618) Tweedledum affine coordinates: value generation (double_with_one)
- [22:46:00.302] [SUCCESS] (239/1618) Tweedledum affine coordinates: value generation (double_with_zero)
- [22:46:00.302] [SUCCESS] (240/1618) Tweedledum affine coordinates: equality (zero)
- [22:46:00.302] [SUCCESS] (241/1618) Tweedledum affine coordinates: equality (one)
- [22:46:00.316] [SUCCESS] (242/1618) Tweedledum affine coordinates: equality (random_same_objects)
- [22:46:00.330] [SUCCESS] (243/1618) Tweedledum affine coordinates: Group properties (check_bytes_random)
- [22:46:00.330] [SUCCESS] (244/1618) Tweedledum affine coordinates: Group properties (check_bytes_zero)
- [22:46:00.330] [SUCCESS] (245/1618) Tweedledum affine coordinates: Group properties (check_bytes_one)
- [22:46:00.345] [SUCCESS] (246/1618) Tweedledum affine coordinates: Group properties (check_bytes_random_double)
- [22:46:00.373] [SUCCESS] (247/1618) Tweedledum affine coordinates: Group properties (check_bytes_random_sum)
- [22:46:00.689] [SUCCESS] (248/1618) Tweedledum affine coordinates: Group properties (check_bytes_random_multiplication)
- [22:46:00.689] [SUCCESS] (249/1618) Tweedledum affine coordinates: Group properties (zero_scalar_nullifier_one)
- [22:46:00.689] [SUCCESS] (250/1618) Tweedledum affine coordinates: Group properties (zero_scalar_nullifier_zero)
- [22:46:00.703] [SUCCESS] (251/1618) Tweedledum affine coordinates: Group properties (zero_scalar_nullifier_random)
- [22:46:00.717] [SUCCESS] (252/1618) Tweedledum affine coordinates: Group properties (multiply_by_one_does_nothing)
- [22:46:00.731] [SUCCESS] (253/1618) Tweedledum affine coordinates: Group properties (opposite_of_opposite)
- [22:46:00.745] [SUCCESS] (254/1618) Tweedledum affine coordinates: Group properties (opposite_of_opposite_using_scalar)
- [22:46:00.746] [SUCCESS] (255/1618) Tweedledum affine coordinates: Group properties (opposite_of_zero_is_zero)
- [22:46:00.746] [SUCCESS] (256/1618) Tweedledum affine coordinates: Group properties (opposite_of_opposite_of_zero_is_zero)
- [22:46:00.746] [SUCCESS] (257/1618) Tweedledum affine coordinates: Group properties (opposite_of_opposite_of_one_is_one)
- [22:46:00.758] [SUCCESS] (258/1618) Tweedledum affine coordinates: Group properties (opposite_equality)
- [22:46:00.771] [SUCCESS] (259/1618) Tweedledum affine coordinates: Group properties (zero is the identity)
- [22:46:01.691] [SUCCESS] (260/1618) Tweedledum affine coordinates: Group properties (distributivity)
- [22:46:02.303] [SUCCESS] (261/1618) Tweedledum affine coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec)
- [22:46:02.316] [SUCCESS] (262/1618) Tweedledum affine coordinates: Group properties (opposite_existential_property)
- [22:46:02.934] [SUCCESS] (263/1618) Tweedledum affine coordinates: Group properties (mul_by_order_of_base_field_equals_element)
- [22:46:04.760] [SUCCESS] (264/1618) Tweedledum affine coordinates: Group properties (multiplication_properties_on_base_field_element)
- [22:46:04.775] [SUCCESS] (265/1618) Tweedledum affine coordinates: Group properties (double)
- [22:46:05.684] [SUCCESS] (266/1618) Tweedledum affine coordinates: Group properties (additive_associativity_with_scalar)
- [22:46:06.884] [SUCCESS] (267/1618) Tweedledum affine coordinates: Group properties (inverse on scalar)
- [22:46:06.927] [SUCCESS] (268/1618) Tweedledum affine coordinates: Group properties (additive_associativity)
- [22:46:06.954] [SUCCESS] (269/1618) Tweedledum affine coordinates: Group properties (additive_commutativity)
- [22:46:06.954] [SUCCESS] (270/1618) Tweedledum affine coordinates: Group properties (Generator is of prime order)
- [22:46:06.954] [SUCCESS] (271/1618) Tweedledum affine coordinates: Compressed representation (Compressed representation of zero is the bs with zeroes)
- [22:46:06.980] [SUCCESS] (272/1618) Tweedledum affine coordinates: Compressed representation (of_compressed_bytes_exn recovers correct point from uncompressed representation)
- [22:46:07.006] [SUCCESS] (273/1618) Tweedledum affine coordinates: Compressed representation (of_compressed_bytes_opt recovers correct point from uncompressed representation)
- [22:46:07.006] [SUCCESS] (274/1618) Tweedledum affine coordinates: Compressed representation (Compressed version is half the size)
- [22:46:07.020] [SUCCESS] (275/1618) Tweedledum affine coordinates: Compressed representation (of_compressed_bytes_exn/opt do not accept uncompressed bytes representation)
- [22:46:07.034] [SUCCESS] (276/1618) Tweedledum affine coordinates: Compressed representation (of_bytes_exn/opt do not accept compressed bytes representation)
- [22:46:07.048] [SUCCESS] (277/1618) Tweedledee projective coordinates: value generation (random)
- [22:46:07.048] [SUCCESS] (278/1618) Tweedledee projective coordinates: value generation (negate_with_one)
- [22:46:07.048] [SUCCESS] (279/1618) Tweedledee projective coordinates: value generation (negate_with_zero)
- [22:46:07.062] [SUCCESS] (280/1618) Tweedledee projective coordinates: value generation (negate_with_random)
- [22:46:07.076] [SUCCESS] (281/1618) Tweedledee projective coordinates: value generation (double_with_random)
- [22:46:07.090] [SUCCESS] (282/1618) Tweedledee projective coordinates: value generation (negate generates a valid point)
- [22:46:07.119] [SUCCESS] (283/1618) Tweedledee projective coordinates: value generation (addition generates a valid point)
- [22:46:07.134] [SUCCESS] (284/1618) Tweedledee projective coordinates: value generation (double generates a valid point)
- [22:46:07.317] [SUCCESS] (285/1618) Tweedledee projective coordinates: value generation (scalar multiplication generates a valid point)
- [22:46:07.332] [SUCCESS] (286/1618) Tweedledee projective coordinates: value generation (of_bytes_exn and to_bytes are inverse functions)
- [22:46:07.346] [SUCCESS] (287/1618) Tweedledee projective coordinates: value generation (check bytes on random with to_bytes)
- [22:46:07.346] [SUCCESS] (288/1618) Tweedledee projective coordinates: value generation (double_with_one)
- [22:46:07.346] [SUCCESS] (289/1618) Tweedledee projective coordinates: value generation (double_with_zero)
- [22:46:07.346] [SUCCESS] (290/1618) Tweedledee projective coordinates: equality (zero)
- [22:46:07.346] [SUCCESS] (291/1618) Tweedledee projective coordinates: equality (one)
- [22:46:07.360] [SUCCESS] (292/1618) Tweedledee projective coordinates: equality (random_same_objects)
- [22:46:07.374] [SUCCESS] (293/1618) Tweedledee projective coordinates: Group properties (check_bytes_random)
- [22:46:07.374] [SUCCESS] (294/1618) Tweedledee projective coordinates: Group properties (check_bytes_zero)
- [22:46:07.375] [SUCCESS] (295/1618) Tweedledee projective coordinates: Group properties (check_bytes_one)
- [22:46:07.390] [SUCCESS] (296/1618) Tweedledee projective coordinates: Group properties (check_bytes_random_double)
- [22:46:07.419] [SUCCESS] (297/1618) Tweedledee projective coordinates: Group properties (check_bytes_random_sum)
- [22:46:07.602] [SUCCESS] (298/1618) Tweedledee projective coordinates: Group properties (check_bytes_random_multiplication)
- [22:46:07.602] [SUCCESS] (299/1618) Tweedledee projective coordinates: Group properties (zero_scalar_nullifier_one)
- [22:46:07.602] [SUCCESS] (300/1618) Tweedledee projective coordinates: Group properties (zero_scalar_nullifier_zero)
- [22:46:07.616] [SUCCESS] (301/1618) Tweedledee projective coordinates: Group properties (zero_scalar_nullifier_random)
- [22:46:07.631] [SUCCESS] (302/1618) Tweedledee projective coordinates: Group properties (multiply_by_one_does_nothing)
- [22:46:07.645] [SUCCESS] (303/1618) Tweedledee projective coordinates: Group properties (opposite_of_opposite)
- [22:46:07.659] [SUCCESS] (304/1618) Tweedledee projective coordinates: Group properties (opposite_of_opposite_using_scalar)
- [22:46:07.659] [SUCCESS] (305/1618) Tweedledee projective coordinates: Group properties (opposite_of_zero_is_zero)
- [22:46:07.659] [SUCCESS] (306/1618) Tweedledee projective coordinates: Group properties (opposite_of_opposite_of_zero_is_zero)
- [22:46:07.659] [SUCCESS] (307/1618) Tweedledee projective coordinates: Group properties (opposite_of_opposite_of_one_is_one)
- [22:46:07.666] [SUCCESS] (308/1618) Tweedledee projective coordinates: Group properties (opposite_equality)
- [22:46:07.680] [SUCCESS] (309/1618) Tweedledee projective coordinates: Group properties (zero is the identity)
- [22:46:08.215] [SUCCESS] (310/1618) Tweedledee projective coordinates: Group properties (distributivity)
- [22:46:08.567] [SUCCESS] (311/1618) Tweedledee projective coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec)
- [22:46:08.581] [SUCCESS] (312/1618) Tweedledee projective coordinates: Group properties (opposite_existential_property)
- [22:46:08.931] [SUCCESS] (313/1618) Tweedledee projective coordinates: Group properties (mul_by_order_of_base_field_equals_element)
- [22:46:09.957] [SUCCESS] (314/1618) Tweedledee projective coordinates: Group properties (multiplication_properties_on_base_field_element)
- [22:46:09.972] [SUCCESS] (315/1618) Tweedledee projective coordinates: Group properties (double)
- [22:46:10.493] [SUCCESS] (316/1618) Tweedledee projective coordinates: Group properties (additive_associativity_with_scalar)
- [22:46:11.185] [SUCCESS] (317/1618) Tweedledee projective coordinates: Group properties (inverse on scalar)
- [22:46:11.230] [SUCCESS] (318/1618) Tweedledee projective coordinates: Group properties (additive_associativity)
- [22:46:11.261] [SUCCESS] (319/1618) Tweedledee projective coordinates: Group properties (additive_commutativity)
- [22:46:11.261] [SUCCESS] (320/1618) Tweedledee projective coordinates: Group properties (Generator is of prime order)
- [22:46:11.275] [SUCCESS] (321/1618) Tweedledee jacobian coordinates: value generation (random)
- [22:46:11.276] [SUCCESS] (322/1618) Tweedledee jacobian coordinates: value generation (negate_with_one)
- [22:46:11.276] [SUCCESS] (323/1618) Tweedledee jacobian coordinates: value generation (negate_with_zero)
- [22:46:11.290] [SUCCESS] (324/1618) Tweedledee jacobian coordinates: value generation (negate_with_random)
- [22:46:11.304] [SUCCESS] (325/1618) Tweedledee jacobian coordinates: value generation (double_with_random)
- [22:46:11.320] [SUCCESS] (326/1618) Tweedledee jacobian coordinates: value generation (negate generates a valid point)
- [22:46:11.350] [SUCCESS] (327/1618) Tweedledee jacobian coordinates: value generation (addition generates a valid point)
- [22:46:11.365] [SUCCESS] (328/1618) Tweedledee jacobian coordinates: value generation (double generates a valid point)
- [22:46:11.683] [SUCCESS] (329/1618) Tweedledee jacobian coordinates: value generation (scalar multiplication generates a valid point)
- [22:46:11.698] [SUCCESS] (330/1618) Tweedledee jacobian coordinates: value generation (of_bytes_exn and to_bytes are inverse functions)
- [22:46:11.712] [SUCCESS] (331/1618) Tweedledee jacobian coordinates: value generation (check bytes on random with to_bytes)
- [22:46:11.712] [SUCCESS] (332/1618) Tweedledee jacobian coordinates: value generation (double_with_one)
- [22:46:11.712] [SUCCESS] (333/1618) Tweedledee jacobian coordinates: value generation (double_with_zero)
- [22:46:11.712] [SUCCESS] (334/1618) Tweedledee jacobian coordinates: equality (zero)
- [22:46:11.712] [SUCCESS] (335/1618) Tweedledee jacobian coordinates: equality (one)
- [22:46:11.727] [SUCCESS] (336/1618) Tweedledee jacobian coordinates: equality (random_same_objects)
- [22:46:11.741] [SUCCESS] (337/1618) Tweedledee jacobian coordinates: Group properties (check_bytes_random)
- [22:46:11.741] [SUCCESS] (338/1618) Tweedledee jacobian coordinates: Group properties (check_bytes_zero)
- [22:46:11.741] [SUCCESS] (339/1618) Tweedledee jacobian coordinates: Group properties (check_bytes_one)
- [22:46:11.756] [SUCCESS] (340/1618) Tweedledee jacobian coordinates: Group properties (check_bytes_random_double)
- [22:46:11.786] [SUCCESS] (341/1618) Tweedledee jacobian coordinates: Group properties (check_bytes_random_sum)
- [22:46:12.104] [SUCCESS] (342/1618) Tweedledee jacobian coordinates: Group properties (check_bytes_random_multiplication)
- [22:46:12.104] [SUCCESS] (343/1618) Tweedledee jacobian coordinates: Group properties (zero_scalar_nullifier_one)
- [22:46:12.104] [SUCCESS] (344/1618) Tweedledee jacobian coordinates: Group properties (zero_scalar_nullifier_zero)
- [22:46:12.119] [SUCCESS] (345/1618) Tweedledee jacobian coordinates: Group properties (zero_scalar_nullifier_random)
- [22:46:12.133] [SUCCESS] (346/1618) Tweedledee jacobian coordinates: Group properties (multiply_by_one_does_nothing)
- [22:46:12.147] [SUCCESS] (347/1618) Tweedledee jacobian coordinates: Group properties (opposite_of_opposite)
- [22:46:12.162] [SUCCESS] (348/1618) Tweedledee jacobian coordinates: Group properties (opposite_of_opposite_using_scalar)
- [22:46:12.162] [SUCCESS] (349/1618) Tweedledee jacobian coordinates: Group properties (opposite_of_zero_is_zero)
- [22:46:12.162] [SUCCESS] (350/1618) Tweedledee jacobian coordinates: Group properties (opposite_of_opposite_of_zero_is_zero)
- [22:46:12.162] [SUCCESS] (351/1618) Tweedledee jacobian coordinates: Group properties (opposite_of_opposite_of_one_is_one)
- [22:46:12.174] [SUCCESS] (352/1618) Tweedledee jacobian coordinates: Group properties (opposite_equality)
- [22:46:12.189] [SUCCESS] (353/1618) Tweedledee jacobian coordinates: Group properties (zero is the identity)
- [22:46:13.125] [SUCCESS] (354/1618) Tweedledee jacobian coordinates: Group properties (distributivity)
- [22:46:13.741] [SUCCESS] (355/1618) Tweedledee jacobian coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec)
- [22:46:13.756] [SUCCESS] (356/1618) Tweedledee jacobian coordinates: Group properties (opposite_existential_property)
- [22:46:14.369] [SUCCESS] (357/1618) Tweedledee jacobian coordinates: Group properties (mul_by_order_of_base_field_equals_element)
- [22:46:16.199] [SUCCESS] (358/1618) Tweedledee jacobian coordinates: Group properties (multiplication_properties_on_base_field_element)
- [22:46:16.215] [SUCCESS] (359/1618) Tweedledee jacobian coordinates: Group properties (double)
- [22:46:17.126] [SUCCESS] (360/1618) Tweedledee jacobian coordinates: Group properties (additive_associativity_with_scalar)
- [22:46:18.370] [SUCCESS] (361/1618) Tweedledee jacobian coordinates: Group properties (inverse on scalar)
- [22:46:18.418] [SUCCESS] (362/1618) Tweedledee jacobian coordinates: Group properties (additive_associativity)
- [22:46:18.449] [SUCCESS] (363/1618) Tweedledee jacobian coordinates: Group properties (additive_commutativity)
- [22:46:18.449] [SUCCESS] (364/1618) Tweedledee jacobian coordinates: Group properties (Generator is of prime order)
- [22:46:18.463] [SUCCESS] (365/1618) Tweedledee affine coordinates: value generation (random)
- [22:46:18.463] [SUCCESS] (366/1618) Tweedledee affine coordinates: value generation (negate_with_one)
- [22:46:18.463] [SUCCESS] (367/1618) Tweedledee affine coordinates: value generation (negate_with_zero)
- [22:46:18.478] [SUCCESS] (368/1618) Tweedledee affine coordinates: value generation (negate_with_random)
- [22:46:18.493] [SUCCESS] (369/1618) Tweedledee affine coordinates: value generation (double_with_random)
- [22:46:18.507] [SUCCESS] (370/1618) Tweedledee affine coordinates: value generation (negate generates a valid point)
- [22:46:18.536] [SUCCESS] (371/1618) Tweedledee affine coordinates: value generation (addition generates a valid point)
- [22:46:18.552] [SUCCESS] (372/1618) Tweedledee affine coordinates: value generation (double generates a valid point)
- [22:46:18.868] [SUCCESS] (373/1618) Tweedledee affine coordinates: value generation (scalar multiplication generates a valid point)
- [22:46:18.883] [SUCCESS] (374/1618) Tweedledee affine coordinates: value generation (of_bytes_exn and to_bytes are inverse functions)
- [22:46:18.898] [SUCCESS] (375/1618) Tweedledee affine coordinates: value generation (check bytes on random with to_bytes)
- [22:46:18.898] [SUCCESS] (376/1618) Tweedledee affine coordinates: value generation (double_with_one)
- [22:46:18.898] [SUCCESS] (377/1618) Tweedledee affine coordinates: value generation (double_with_zero)
- [22:46:18.898] [SUCCESS] (378/1618) Tweedledee affine coordinates: equality (zero)
- [22:46:18.898] [SUCCESS] (379/1618) Tweedledee affine coordinates: equality (one)
- [22:46:18.913] [SUCCESS] (380/1618) Tweedledee affine coordinates: equality (random_same_objects)
- [22:46:18.928] [SUCCESS] (381/1618) Tweedledee affine coordinates: Group properties (check_bytes_random)
- [22:46:18.928] [SUCCESS] (382/1618) Tweedledee affine coordinates: Group properties (check_bytes_zero)
- [22:46:18.928] [SUCCESS] (383/1618) Tweedledee affine coordinates: Group properties (check_bytes_one)
- [22:46:18.943] [SUCCESS] (384/1618) Tweedledee affine coordinates: Group properties (check_bytes_random_double)
- [22:46:18.972] [SUCCESS] (385/1618) Tweedledee affine coordinates: Group properties (check_bytes_random_sum)
- [22:46:19.290] [SUCCESS] (386/1618) Tweedledee affine coordinates: Group properties (check_bytes_random_multiplication)
- [22:46:19.290] [SUCCESS] (387/1618) Tweedledee affine coordinates: Group properties (zero_scalar_nullifier_one)
- [22:46:19.290] [SUCCESS] (388/1618) Tweedledee affine coordinates: Group properties (zero_scalar_nullifier_zero)
- [22:46:19.304] [SUCCESS] (389/1618) Tweedledee affine coordinates: Group properties (zero_scalar_nullifier_random)
- [22:46:19.319] [SUCCESS] (390/1618) Tweedledee affine coordinates: Group properties (multiply_by_one_does_nothing)
- [22:46:19.333] [SUCCESS] (391/1618) Tweedledee affine coordinates: Group properties (opposite_of_opposite)
- [22:46:19.347] [SUCCESS] (392/1618) Tweedledee affine coordinates: Group properties (opposite_of_opposite_using_scalar)
- [22:46:19.347] [SUCCESS] (393/1618) Tweedledee affine coordinates: Group properties (opposite_of_zero_is_zero)
- [22:46:19.348] [SUCCESS] (394/1618) Tweedledee affine coordinates: Group properties (opposite_of_opposite_of_zero_is_zero)
- [22:46:19.348] [SUCCESS] (395/1618) Tweedledee affine coordinates: Group properties (opposite_of_opposite_of_one_is_one)
- [22:46:19.360] [SUCCESS] (396/1618) Tweedledee affine coordinates: Group properties (opposite_equality)
- [22:46:19.374] [SUCCESS] (397/1618) Tweedledee affine coordinates: Group properties (zero is the identity)
- [22:46:20.296] [SUCCESS] (398/1618) Tweedledee affine coordinates: Group properties (distributivity)
- [22:46:20.903] [SUCCESS] (399/1618) Tweedledee affine coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec)
- [22:46:20.917] [SUCCESS] (400/1618) Tweedledee affine coordinates: Group properties (opposite_existential_property)
- [22:46:21.527] [SUCCESS] (401/1618) Tweedledee affine coordinates: Group properties (mul_by_order_of_base_field_equals_element)
- [22:46:23.333] [SUCCESS] (402/1618) Tweedledee affine coordinates: Group properties (multiplication_properties_on_base_field_element)
- [22:46:23.349] [SUCCESS] (403/1618) Tweedledee affine coordinates: Group properties (double)
- [22:46:24.259] [SUCCESS] (404/1618) Tweedledee affine coordinates: Group properties (additive_associativity_with_scalar)
- [22:46:25.465] [SUCCESS] (405/1618) Tweedledee affine coordinates: Group properties (inverse on scalar)
- [22:46:25.509] [SUCCESS] (406/1618) Tweedledee affine coordinates: Group properties (additive_associativity)
- [22:46:25.538] [SUCCESS] (407/1618) Tweedledee affine coordinates: Group properties (additive_commutativity)
- [22:46:25.538] [SUCCESS] (408/1618) Tweedledee affine coordinates: Group properties (Generator is of prime order)
- [22:46:25.538] [SUCCESS] (409/1618) Tweedledee affine coordinates: Compressed representation (Compressed representation of zero is the bs with zeroes)
- [22:46:25.566] [SUCCESS] (410/1618) Tweedledee affine coordinates: Compressed representation (of_compressed_bytes_exn recovers correct point from uncompressed representation)
- [22:46:25.593] [SUCCESS] (411/1618) Tweedledee affine coordinates: Compressed representation (of_compressed_bytes_opt recovers correct point from uncompressed representation)
- [22:46:25.593] [SUCCESS] (412/1618) Tweedledee affine coordinates: Compressed representation (Compressed version is half the size)
- [22:46:25.607] [SUCCESS] (413/1618) Tweedledee affine coordinates: Compressed representation (of_compressed_bytes_exn/opt do not accept uncompressed bytes representation)
- [22:46:25.621] [SUCCESS] (414/1618) Tweedledee affine coordinates: Compressed representation (of_bytes_exn/opt do not accept compressed bytes representation)
- [22:46:25.621] [SUCCESS] (415/1618) Sinsemilla: Test vectors for Sinsemilla (Test vectors from zcash-ochard/zcash-test-vectors)
- [22:46:28.258] [SUCCESS] (416/1618) Sinsemilla: Properties (Collision when padding last chunk with zeroes)
- [22:46:28.262] [SUCCESS] (417/1618) secp256r1 projective coordinates: value generation (random)
- [22:46:28.262] [SUCCESS] (418/1618) secp256r1 projective coordinates: value generation (negate_with_one)
- [22:46:28.262] [SUCCESS] (419/1618) secp256r1 projective coordinates: value generation (negate_with_zero)
- [22:46:28.265] [SUCCESS] (420/1618) secp256r1 projective coordinates: value generation (negate_with_random)
- [22:46:28.269] [SUCCESS] (421/1618) secp256r1 projective coordinates: value generation (double_with_random)
- [22:46:28.273] [SUCCESS] (422/1618) secp256r1 projective coordinates: value generation (negate generates a valid point)
- [22:46:28.281] [SUCCESS] (423/1618) secp256r1 projective coordinates: value generation (addition generates a valid point)
- [22:46:28.286] [SUCCESS] (424/1618) secp256r1 projective coordinates: value generation (double generates a valid point)
- [22:46:28.450] [SUCCESS] (425/1618) secp256r1 projective coordinates: value generation (scalar multiplication generates a valid point)
- [22:46:28.454] [SUCCESS] (426/1618) secp256r1 projective coordinates: value generation (of_bytes_exn and to_bytes are inverse functions)
- [22:46:28.458] [SUCCESS] (427/1618) secp256r1 projective coordinates: value generation (check bytes on random with to_bytes)
- [22:46:28.458] [SUCCESS] (428/1618) secp256r1 projective coordinates: value generation (double_with_one)
- [22:46:28.458] [SUCCESS] (429/1618) secp256r1 projective coordinates: value generation (double_with_zero)
- [22:46:28.458] [SUCCESS] (430/1618) secp256r1 projective coordinates: equality (zero)
- [22:46:28.458] [SUCCESS] (431/1618) secp256r1 projective coordinates: equality (one)
- [22:46:28.462] [SUCCESS] (432/1618) secp256r1 projective coordinates: equality (random_same_objects)
- [22:46:28.466] [SUCCESS] (433/1618) secp256r1 projective coordinates: Group properties (check_bytes_random)
- [22:46:28.466] [SUCCESS] (434/1618) secp256r1 projective coordinates: Group properties (check_bytes_zero)
- [22:46:28.466] [SUCCESS] (435/1618) secp256r1 projective coordinates: Group properties (check_bytes_one)
- [22:46:28.471] [SUCCESS] (436/1618) secp256r1 projective coordinates: Group properties (check_bytes_random_double)
- [22:46:28.478] [SUCCESS] (437/1618) secp256r1 projective coordinates: Group properties (check_bytes_random_sum)
- [22:46:28.643] [SUCCESS] (438/1618) secp256r1 projective coordinates: Group properties (check_bytes_random_multiplication)
- [22:46:28.643] [SUCCESS] (439/1618) secp256r1 projective coordinates: Group properties (zero_scalar_nullifier_one)
- [22:46:28.643] [SUCCESS] (440/1618) secp256r1 projective coordinates: Group properties (zero_scalar_nullifier_zero)
- [22:46:28.647] [SUCCESS] (441/1618) secp256r1 projective coordinates: Group properties (zero_scalar_nullifier_random)
- [22:46:28.651] [SUCCESS] (442/1618) secp256r1 projective coordinates: Group properties (multiply_by_one_does_nothing)
- [22:46:28.655] [SUCCESS] (443/1618) secp256r1 projective coordinates: Group properties (opposite_of_opposite)
- [22:46:28.659] [SUCCESS] (444/1618) secp256r1 projective coordinates: Group properties (opposite_of_opposite_using_scalar)
- [22:46:28.659] [SUCCESS] (445/1618) secp256r1 projective coordinates: Group properties (opposite_of_zero_is_zero)
- [22:46:28.659] [SUCCESS] (446/1618) secp256r1 projective coordinates: Group properties (opposite_of_opposite_of_zero_is_zero)
- [22:46:28.659] [SUCCESS] (447/1618) secp256r1 projective coordinates: Group properties (opposite_of_opposite_of_one_is_one)
- [22:46:28.665] [SUCCESS] (448/1618) secp256r1 projective coordinates: Group properties (opposite_equality)
- [22:46:28.670] [SUCCESS] (449/1618) secp256r1 projective coordinates: Group properties (zero is the identity)
- [22:46:29.160] [SUCCESS] (450/1618) secp256r1 projective coordinates: Group properties (distributivity)
- [22:46:29.485] [SUCCESS] (451/1618) secp256r1 projective coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec)
- [22:46:29.489] [SUCCESS] (452/1618) secp256r1 projective coordinates: Group properties (opposite_existential_property)
- [22:46:29.813] [SUCCESS] (453/1618) secp256r1 projective coordinates: Group properties (mul_by_order_of_base_field_equals_element)
- [22:46:30.782] [SUCCESS] (454/1618) secp256r1 projective coordinates: Group properties (multiplication_properties_on_base_field_element)
- [22:46:30.788] [SUCCESS] (455/1618) secp256r1 projective coordinates: Group properties (double)
- [22:46:31.274] [SUCCESS] (456/1618) secp256r1 projective coordinates: Group properties (additive_associativity_with_scalar)
- [22:46:31.919] [SUCCESS] (457/1618) secp256r1 projective coordinates: Group properties (inverse on scalar)
- [22:46:31.931] [SUCCESS] (458/1618) secp256r1 projective coordinates: Group properties (additive_associativity)
- [22:46:31.939] [SUCCESS] (459/1618) secp256r1 projective coordinates: Group properties (additive_commutativity)
- [22:46:31.939] [SUCCESS] (460/1618) secp256r1 projective coordinates: Group properties (Generator is of prime order)
- [22:46:31.943] [SUCCESS] (461/1618) secp256r1 jacobian coordinates: value generation (random)
- [22:46:31.943] [SUCCESS] (462/1618) secp256r1 jacobian coordinates: value generation (negate_with_one)
- [22:46:31.943] [SUCCESS] (463/1618) secp256r1 jacobian coordinates: value generation (negate_with_zero)
- [22:46:31.946] [SUCCESS] (464/1618) secp256r1 jacobian coordinates: value generation (negate_with_random)
- [22:46:31.951] [SUCCESS] (465/1618) secp256r1 jacobian coordinates: value generation (double_with_random)
- [22:46:31.954] [SUCCESS] (466/1618) secp256r1 jacobian coordinates: value generation (negate generates a valid point)
- [22:46:31.963] [SUCCESS] (467/1618) secp256r1 jacobian coordinates: value generation (addition generates a valid point)
- [22:46:31.967] [SUCCESS] (468/1618) secp256r1 jacobian coordinates: value generation (double generates a valid point)
- [22:46:32.258] [SUCCESS] (469/1618) secp256r1 jacobian coordinates: value generation (scalar multiplication generates a valid point)
- [22:46:32.262] [SUCCESS] (470/1618) secp256r1 jacobian coordinates: value generation (of_bytes_exn and to_bytes are inverse functions)
- [22:46:32.266] [SUCCESS] (471/1618) secp256r1 jacobian coordinates: value generation (check bytes on random with to_bytes)
- [22:46:32.266] [SUCCESS] (472/1618) secp256r1 jacobian coordinates: value generation (double_with_one)
- [22:46:32.266] [SUCCESS] (473/1618) secp256r1 jacobian coordinates: value generation (double_with_zero)
- [22:46:32.266] [SUCCESS] (474/1618) secp256r1 jacobian coordinates: equality (zero)
- [22:46:32.266] [SUCCESS] (475/1618) secp256r1 jacobian coordinates: equality (one)
- [22:46:32.270] [SUCCESS] (476/1618) secp256r1 jacobian coordinates: equality (random_same_objects)
- [22:46:32.274] [SUCCESS] (477/1618) secp256r1 jacobian coordinates: Group properties (check_bytes_random)
- [22:46:32.274] [SUCCESS] (478/1618) secp256r1 jacobian coordinates: Group properties (check_bytes_zero)
- [22:46:32.274] [SUCCESS] (479/1618) secp256r1 jacobian coordinates: Group properties (check_bytes_one)
- [22:46:32.279] [SUCCESS] (480/1618) secp256r1 jacobian coordinates: Group properties (check_bytes_random_double)
- [22:46:32.287] [SUCCESS] (481/1618) secp256r1 jacobian coordinates: Group properties (check_bytes_random_sum)
- [22:46:32.578] [SUCCESS] (482/1618) secp256r1 jacobian coordinates: Group properties (check_bytes_random_multiplication)
- [22:46:32.578] [SUCCESS] (483/1618) secp256r1 jacobian coordinates: Group properties (zero_scalar_nullifier_one)
- [22:46:32.578] [SUCCESS] (484/1618) secp256r1 jacobian coordinates: Group properties (zero_scalar_nullifier_zero)
- [22:46:32.582] [SUCCESS] (485/1618) secp256r1 jacobian coordinates: Group properties (zero_scalar_nullifier_random)
- [22:46:32.586] [SUCCESS] (486/1618) secp256r1 jacobian coordinates: Group properties (multiply_by_one_does_nothing)
- [22:46:32.590] [SUCCESS] (487/1618) secp256r1 jacobian coordinates: Group properties (opposite_of_opposite)
- [22:46:32.594] [SUCCESS] (488/1618) secp256r1 jacobian coordinates: Group properties (opposite_of_opposite_using_scalar)
- [22:46:32.594] [SUCCESS] (489/1618) secp256r1 jacobian coordinates: Group properties (opposite_of_zero_is_zero)
- [22:46:32.594] [SUCCESS] (490/1618) secp256r1 jacobian coordinates: Group properties (opposite_of_opposite_of_zero_is_zero)
- [22:46:32.594] [SUCCESS] (491/1618) secp256r1 jacobian coordinates: Group properties (opposite_of_opposite_of_one_is_one)
- [22:46:32.605] [SUCCESS] (492/1618) secp256r1 jacobian coordinates: Group properties (opposite_equality)
- [22:46:32.609] [SUCCESS] (493/1618) secp256r1 jacobian coordinates: Group properties (zero is the identity)
- [22:46:33.483] [SUCCESS] (494/1618) secp256r1 jacobian coordinates: Group properties (distributivity)
- [22:46:34.067] [SUCCESS] (495/1618) secp256r1 jacobian coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec)
- [22:46:34.071] [SUCCESS] (496/1618) secp256r1 jacobian coordinates: Group properties (opposite_existential_property)
- [22:46:34.649] [SUCCESS] (497/1618) secp256r1 jacobian coordinates: Group properties (mul_by_order_of_base_field_equals_element)
- [22:46:36.398] [SUCCESS] (498/1618) secp256r1 jacobian coordinates: Group properties (multiplication_properties_on_base_field_element)
- [22:46:36.403] [SUCCESS] (499/1618) secp256r1 jacobian coordinates: Group properties (double)
- [22:46:37.279] [SUCCESS] (500/1618) secp256r1 jacobian coordinates: Group properties (additive_associativity_with_scalar)
- [22:46:38.509] [SUCCESS] (501/1618) secp256r1 jacobian coordinates: Group properties (inverse on scalar)
- [22:46:38.523] [SUCCESS] (502/1618) secp256r1 jacobian coordinates: Group properties (additive_associativity)
- [22:46:38.533] [SUCCESS] (503/1618) secp256r1 jacobian coordinates: Group properties (additive_commutativity)
- [22:46:38.533] [SUCCESS] (504/1618) secp256r1 jacobian coordinates: Group properties (Generator is of prime order)
- [22:46:38.536] [SUCCESS] (505/1618) secp256r1 affine coordinates: value generation (random)
- [22:46:38.536] [SUCCESS] (506/1618) secp256r1 affine coordinates: value generation (negate_with_one)
- [22:46:38.536] [SUCCESS] (507/1618) secp256r1 affine coordinates: value generation (negate_with_zero)
- [22:46:38.540] [SUCCESS] (508/1618) secp256r1 affine coordinates: value generation (negate_with_random)
- [22:46:38.545] [SUCCESS] (509/1618) secp256r1 affine coordinates: value generation (double_with_random)
- [22:46:38.549] [SUCCESS] (510/1618) secp256r1 affine coordinates: value generation (negate generates a valid point)
- [22:46:38.556] [SUCCESS] (511/1618) secp256r1 affine coordinates: value generation (addition generates a valid point)
- [22:46:38.561] [SUCCESS] (512/1618) secp256r1 affine coordinates: value generation (double generates a valid point)
- [22:46:38.859] [SUCCESS] (513/1618) secp256r1 affine coordinates: value generation (scalar multiplication generates a valid point)
- [22:46:38.863] [SUCCESS] (514/1618) secp256r1 affine coordinates: value generation (of_bytes_exn and to_bytes are inverse functions)
- [22:46:38.867] [SUCCESS] (515/1618) secp256r1 affine coordinates: value generation (check bytes on random with to_bytes)
- [22:46:38.867] [SUCCESS] (516/1618) secp256r1 affine coordinates: value generation (double_with_one)
- [22:46:38.867] [SUCCESS] (517/1618) secp256r1 affine coordinates: value generation (double_with_zero)
- [22:46:38.867] [SUCCESS] (518/1618) secp256r1 affine coordinates: equality (zero)
- [22:46:38.867] [SUCCESS] (519/1618) secp256r1 affine coordinates: equality (one)
- [22:46:38.871] [SUCCESS] (520/1618) secp256r1 affine coordinates: equality (random_same_objects)
- [22:46:38.874] [SUCCESS] (521/1618) secp256r1 affine coordinates: Group properties (check_bytes_random)
- [22:46:38.874] [SUCCESS] (522/1618) secp256r1 affine coordinates: Group properties (check_bytes_zero)
- [22:46:38.875] [SUCCESS] (523/1618) secp256r1 affine coordinates: Group properties (check_bytes_one)
- [22:46:38.879] [SUCCESS] (524/1618) secp256r1 affine coordinates: Group properties (check_bytes_random_double)
- [22:46:38.887] [SUCCESS] (525/1618) secp256r1 affine coordinates: Group properties (check_bytes_random_sum)
- [22:46:39.195] [SUCCESS] (526/1618) secp256r1 affine coordinates: Group properties (check_bytes_random_multiplication)
- [22:46:39.195] [SUCCESS] (527/1618) secp256r1 affine coordinates: Group properties (zero_scalar_nullifier_one)
- [22:46:39.195] [SUCCESS] (528/1618) secp256r1 affine coordinates: Group properties (zero_scalar_nullifier_zero)
- [22:46:39.199] [SUCCESS] (529/1618) secp256r1 affine coordinates: Group properties (zero_scalar_nullifier_random)
- [22:46:39.203] [SUCCESS] (530/1618) secp256r1 affine coordinates: Group properties (multiply_by_one_does_nothing)
- [22:46:39.206] [SUCCESS] (531/1618) secp256r1 affine coordinates: Group properties (opposite_of_opposite)
- [22:46:39.210] [SUCCESS] (532/1618) secp256r1 affine coordinates: Group properties (opposite_of_opposite_using_scalar)
- [22:46:39.210] [SUCCESS] (533/1618) secp256r1 affine coordinates: Group properties (opposite_of_zero_is_zero)
- [22:46:39.210] [SUCCESS] (534/1618) secp256r1 affine coordinates: Group properties (opposite_of_opposite_of_zero_is_zero)
- [22:46:39.210] [SUCCESS] (535/1618) secp256r1 affine coordinates: Group properties (opposite_of_opposite_of_one_is_one)
- [22:46:39.222] [SUCCESS] (536/1618) secp256r1 affine coordinates: Group properties (opposite_equality)
- [22:46:39.226] [SUCCESS] (537/1618) secp256r1 affine coordinates: Group properties (zero is the identity)
- [22:46:40.116] [SUCCESS] (538/1618) secp256r1 affine coordinates: Group properties (distributivity)
- [22:46:40.707] [SUCCESS] (539/1618) secp256r1 affine coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec)
- [22:46:40.710] [SUCCESS] (540/1618) secp256r1 affine coordinates: Group properties (opposite_existential_property)
- [22:46:41.298] [SUCCESS] (541/1618) secp256r1 affine coordinates: Group properties (mul_by_order_of_base_field_equals_element)
- [22:46:43.077] [SUCCESS] (542/1618) secp256r1 affine coordinates: Group properties (multiplication_properties_on_base_field_element)
- [22:46:43.083] [SUCCESS] (543/1618) secp256r1 affine coordinates: Group properties (double)
- [22:46:43.966] [SUCCESS] (544/1618) secp256r1 affine coordinates: Group properties (additive_associativity_with_scalar)
- [22:46:45.137] [SUCCESS] (545/1618) secp256r1 affine coordinates: Group properties (inverse on scalar)
- [22:46:45.149] [SUCCESS] (546/1618) secp256r1 affine coordinates: Group properties (additive_associativity)
- [22:46:45.157] [SUCCESS] (547/1618) secp256r1 affine coordinates: Group properties (additive_commutativity)
- [22:46:45.157] [SUCCESS] (548/1618) secp256r1 affine coordinates: Group properties (Generator is of prime order)
- [22:46:45.157] [SUCCESS] (549/1618) secp256k1 projective coordinates: Vectors (test vectors)
- [22:46:45.161] [SUCCESS] (550/1618) secp256k1 projective coordinates: value generation (random)
- [22:46:45.161] [SUCCESS] (551/1618) secp256k1 projective coordinates: value generation (negate_with_one)
- [22:46:45.161] [SUCCESS] (552/1618) secp256k1 projective coordinates: value generation (negate_with_zero)
- [22:46:45.165] [SUCCESS] (553/1618) secp256k1 projective coordinates: value generation (negate_with_random)
- [22:46:45.169] [SUCCESS] (554/1618) secp256k1 projective coordinates: value generation (double_with_random)
- [22:46:45.173] [SUCCESS] (555/1618) secp256k1 projective coordinates: value generation (negate generates a valid point)
- [22:46:45.181] [SUCCESS] (556/1618) secp256k1 projective coordinates: value generation (addition generates a valid point)
- [22:46:45.186] [SUCCESS] (557/1618) secp256k1 projective coordinates: value generation (double generates a valid point)
- [22:46:45.346] [SUCCESS] (558/1618) secp256k1 projective coordinates: value generation (scalar multiplication generates a valid point)
- [22:46:45.350] [SUCCESS] (559/1618) secp256k1 projective coordinates: value generation (of_bytes_exn and to_bytes are inverse functions)
- [22:46:45.354] [SUCCESS] (560/1618) secp256k1 projective coordinates: value generation (check bytes on random with to_bytes)
- [22:46:45.355] [SUCCESS] (561/1618) secp256k1 projective coordinates: value generation (double_with_one)
- [22:46:45.355] [SUCCESS] (562/1618) secp256k1 projective coordinates: value generation (double_with_zero)
- [22:46:45.355] [SUCCESS] (563/1618) secp256k1 projective coordinates: equality (zero)
- [22:46:45.355] [SUCCESS] (564/1618) secp256k1 projective coordinates: equality (one)
- [22:46:45.359] [SUCCESS] (565/1618) secp256k1 projective coordinates: equality (random_same_objects)
- [22:46:45.363] [SUCCESS] (566/1618) secp256k1 projective coordinates: Group properties (check_bytes_random)
- [22:46:45.363] [SUCCESS] (567/1618) secp256k1 projective coordinates: Group properties (check_bytes_zero)
- [22:46:45.363] [SUCCESS] (568/1618) secp256k1 projective coordinates: Group properties (check_bytes_one)
- [22:46:45.367] [SUCCESS] (569/1618) secp256k1 projective coordinates: Group properties (check_bytes_random_double)
- [22:46:45.376] [SUCCESS] (570/1618) secp256k1 projective coordinates: Group properties (check_bytes_random_sum)
- [22:46:45.537] [SUCCESS] (571/1618) secp256k1 projective coordinates: Group properties (check_bytes_random_multiplication)
- [22:46:45.537] [SUCCESS] (572/1618) secp256k1 projective coordinates: Group properties (zero_scalar_nullifier_one)
- [22:46:45.537] [SUCCESS] (573/1618) secp256k1 projective coordinates: Group properties (zero_scalar_nullifier_zero)
- [22:46:45.540] [SUCCESS] (574/1618) secp256k1 projective coordinates: Group properties (zero_scalar_nullifier_random)
- [22:46:45.544] [SUCCESS] (575/1618) secp256k1 projective coordinates: Group properties (multiply_by_one_does_nothing)
- [22:46:45.548] [SUCCESS] (576/1618) secp256k1 projective coordinates: Group properties (opposite_of_opposite)
- [22:46:45.552] [SUCCESS] (577/1618) secp256k1 projective coordinates: Group properties (opposite_of_opposite_using_scalar)
- [22:46:45.552] [SUCCESS] (578/1618) secp256k1 projective coordinates: Group properties (opposite_of_zero_is_zero)
- [22:46:45.552] [SUCCESS] (579/1618) secp256k1 projective coordinates: Group properties (opposite_of_opposite_of_zero_is_zero)
- [22:46:45.552] [SUCCESS] (580/1618) secp256k1 projective coordinates: Group properties (opposite_of_opposite_of_one_is_one)
- [22:46:45.559] [SUCCESS] (581/1618) secp256k1 projective coordinates: Group properties (opposite_equality)
- [22:46:45.563] [SUCCESS] (582/1618) secp256k1 projective coordinates: Group properties (zero is the identity)
- [22:46:46.038] [SUCCESS] (583/1618) secp256k1 projective coordinates: Group properties (distributivity)
- [22:46:46.354] [SUCCESS] (584/1618) secp256k1 projective coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec)
- [22:46:46.358] [SUCCESS] (585/1618) secp256k1 projective coordinates: Group properties (opposite_existential_property)
- [22:46:46.675] [SUCCESS] (586/1618) secp256k1 projective coordinates: Group properties (mul_by_order_of_base_field_equals_element)
- [22:46:47.613] [SUCCESS] (587/1618) secp256k1 projective coordinates: Group properties (multiplication_properties_on_base_field_element)
- [22:46:47.618] [SUCCESS] (588/1618) secp256k1 projective coordinates: Group properties (double)
- [22:46:48.090] [SUCCESS] (589/1618) secp256k1 projective coordinates: Group properties (additive_associativity_with_scalar)
- [22:46:48.721] [SUCCESS] (590/1618) secp256k1 projective coordinates: Group properties (inverse on scalar)
- [22:46:48.734] [SUCCESS] (591/1618) secp256k1 projective coordinates: Group properties (additive_associativity)
- [22:46:48.743] [SUCCESS] (592/1618) secp256k1 projective coordinates: Group properties (additive_commutativity)
- [22:46:48.744] [SUCCESS] (593/1618) secp256k1 projective coordinates: Group properties (Generator is of prime order)
- [22:46:48.747] [SUCCESS] (594/1618) secp256k1 jacobian coordinates: value generation (random)
- [22:46:48.747] [SUCCESS] (595/1618) secp256k1 jacobian coordinates: value generation (negate_with_one)
- [22:46:48.747] [SUCCESS] (596/1618) secp256k1 jacobian coordinates: value generation (negate_with_zero)
- [22:46:48.751] [SUCCESS] (597/1618) secp256k1 jacobian coordinates: value generation (negate_with_random)
- [22:46:48.755] [SUCCESS] (598/1618) secp256k1 jacobian coordinates: value generation (double_with_random)
- [22:46:48.759] [SUCCESS] (599/1618) secp256k1 jacobian coordinates: value generation (negate generates a valid point)
- [22:46:48.767] [SUCCESS] (600/1618) secp256k1 jacobian coordinates: value generation (addition generates a valid point)
- [22:46:48.772] [SUCCESS] (601/1618) secp256k1 jacobian coordinates: value generation (double generates a valid point)
- [22:46:49.062] [SUCCESS] (602/1618) secp256k1 jacobian coordinates: value generation (scalar multiplication generates a valid point)
- [22:46:49.066] [SUCCESS] (603/1618) secp256k1 jacobian coordinates: value generation (of_bytes_exn and to_bytes are inverse functions)
- [22:46:49.070] [SUCCESS] (604/1618) secp256k1 jacobian coordinates: value generation (check bytes on random with to_bytes)
- [22:46:49.070] [SUCCESS] (605/1618) secp256k1 jacobian coordinates: value generation (double_with_one)
- [22:46:49.070] [SUCCESS] (606/1618) secp256k1 jacobian coordinates: value generation (double_with_zero)
- [22:46:49.070] [SUCCESS] (607/1618) secp256k1 jacobian coordinates: equality (zero)
- [22:46:49.070] [SUCCESS] (608/1618) secp256k1 jacobian coordinates: equality (one)
- [22:46:49.074] [SUCCESS] (609/1618) secp256k1 jacobian coordinates: equality (random_same_objects)
- [22:46:49.078] [SUCCESS] (610/1618) secp256k1 jacobian coordinates: Group properties (check_bytes_random)
- [22:46:49.078] [SUCCESS] (611/1618) secp256k1 jacobian coordinates: Group properties (check_bytes_zero)
- [22:46:49.078] [SUCCESS] (612/1618) secp256k1 jacobian coordinates: Group properties (check_bytes_one)
- [22:46:49.083] [SUCCESS] (613/1618) secp256k1 jacobian coordinates: Group properties (check_bytes_random_double)
- [22:46:49.091] [SUCCESS] (614/1618) secp256k1 jacobian coordinates: Group properties (check_bytes_random_sum)
- [22:46:49.380] [SUCCESS] (615/1618) secp256k1 jacobian coordinates: Group properties (check_bytes_random_multiplication)
- [22:46:49.380] [SUCCESS] (616/1618) secp256k1 jacobian coordinates: Group properties (zero_scalar_nullifier_one)
- [22:46:49.380] [SUCCESS] (617/1618) secp256k1 jacobian coordinates: Group properties (zero_scalar_nullifier_zero)
- [22:46:49.384] [SUCCESS] (618/1618) secp256k1 jacobian coordinates: Group properties (zero_scalar_nullifier_random)
- [22:46:49.388] [SUCCESS] (619/1618) secp256k1 jacobian coordinates: Group properties (multiply_by_one_does_nothing)
- [22:46:49.392] [SUCCESS] (620/1618) secp256k1 jacobian coordinates: Group properties (opposite_of_opposite)
- [22:46:49.395] [SUCCESS] (621/1618) secp256k1 jacobian coordinates: Group properties (opposite_of_opposite_using_scalar)
- [22:46:49.396] [SUCCESS] (622/1618) secp256k1 jacobian coordinates: Group properties (opposite_of_zero_is_zero)
- [22:46:49.396] [SUCCESS] (623/1618) secp256k1 jacobian coordinates: Group properties (opposite_of_opposite_of_zero_is_zero)
- [22:46:49.396] [SUCCESS] (624/1618) secp256k1 jacobian coordinates: Group properties (opposite_of_opposite_of_one_is_one)
- [22:46:49.407] [SUCCESS] (625/1618) secp256k1 jacobian coordinates: Group properties (opposite_equality)
- [22:46:49.411] [SUCCESS] (626/1618) secp256k1 jacobian coordinates: Group properties (zero is the identity)
- [22:46:50.281] [SUCCESS] (627/1618) secp256k1 jacobian coordinates: Group properties (distributivity)
- [22:46:50.862] [SUCCESS] (628/1618) secp256k1 jacobian coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec)
- [22:46:50.866] [SUCCESS] (629/1618) secp256k1 jacobian coordinates: Group properties (opposite_existential_property)
- [22:46:51.443] [SUCCESS] (630/1618) secp256k1 jacobian coordinates: Group properties (mul_by_order_of_base_field_equals_element)
- [22:46:53.186] [SUCCESS] (631/1618) secp256k1 jacobian coordinates: Group properties (multiplication_properties_on_base_field_element)
- [22:46:53.191] [SUCCESS] (632/1618) secp256k1 jacobian coordinates: Group properties (double)
- [22:46:54.064] [SUCCESS] (633/1618) secp256k1 jacobian coordinates: Group properties (additive_associativity_with_scalar)
- [22:46:55.225] [SUCCESS] (634/1618) secp256k1 jacobian coordinates: Group properties (inverse on scalar)
- [22:46:55.240] [SUCCESS] (635/1618) secp256k1 jacobian coordinates: Group properties (additive_associativity)
- [22:46:55.249] [SUCCESS] (636/1618) secp256k1 jacobian coordinates: Group properties (additive_commutativity)
- [22:46:55.249] [SUCCESS] (637/1618) secp256k1 jacobian coordinates: Group properties (Generator is of prime order)
- [22:46:55.249] [SUCCESS] (638/1618) secp256k1 affine coordinates: Vectors (test vectors)
- [22:46:55.252] [SUCCESS] (639/1618) secp256k1 affine coordinates: value generation (random)
- [22:46:55.252] [SUCCESS] (640/1618) secp256k1 affine coordinates: value generation (negate_with_one)
- [22:46:55.252] [SUCCESS] (641/1618) secp256k1 affine coordinates: value generation (negate_with_zero)
- [22:46:55.256] [SUCCESS] (642/1618) secp256k1 affine coordinates: value generation (negate_with_random)
- [22:46:55.261] [SUCCESS] (643/1618) secp256k1 affine coordinates: value generation (double_with_random)
- [22:46:55.265] [SUCCESS] (644/1618) secp256k1 affine coordinates: value generation (negate generates a valid point)
- [22:46:55.273] [SUCCESS] (645/1618) secp256k1 affine coordinates: value generation (addition generates a valid point)
- [22:46:55.278] [SUCCESS] (646/1618) secp256k1 affine coordinates: value generation (double generates a valid point)
- [22:46:55.575] [SUCCESS] (647/1618) secp256k1 affine coordinates: value generation (scalar multiplication generates a valid point)
- [22:46:55.579] [SUCCESS] (648/1618) secp256k1 affine coordinates: value generation (of_bytes_exn and to_bytes are inverse functions)
- [22:46:55.583] [SUCCESS] (649/1618) secp256k1 affine coordinates: value generation (check bytes on random with to_bytes)
- [22:46:55.583] [SUCCESS] (650/1618) secp256k1 affine coordinates: value generation (double_with_one)
- [22:46:55.583] [SUCCESS] (651/1618) secp256k1 affine coordinates: value generation (double_with_zero)
- [22:46:55.583] [SUCCESS] (652/1618) secp256k1 affine coordinates: equality (zero)
- [22:46:55.583] [SUCCESS] (653/1618) secp256k1 affine coordinates: equality (one)
- [22:46:55.587] [SUCCESS] (654/1618) secp256k1 affine coordinates: equality (random_same_objects)
- [22:46:55.590] [SUCCESS] (655/1618) secp256k1 affine coordinates: Group properties (check_bytes_random)
- [22:46:55.591] [SUCCESS] (656/1618) secp256k1 affine coordinates: Group properties (check_bytes_zero)
- [22:46:55.591] [SUCCESS] (657/1618) secp256k1 affine coordinates: Group properties (check_bytes_one)
- [22:46:55.596] [SUCCESS] (658/1618) secp256k1 affine coordinates: Group properties (check_bytes_random_double)
- [22:46:55.604] [SUCCESS] (659/1618) secp256k1 affine coordinates: Group properties (check_bytes_random_sum)
- [22:46:55.900] [SUCCESS] (660/1618) secp256k1 affine coordinates: Group properties (check_bytes_random_multiplication)
- [22:46:55.900] [SUCCESS] (661/1618) secp256k1 affine coordinates: Group properties (zero_scalar_nullifier_one)
- [22:46:55.900] [SUCCESS] (662/1618) secp256k1 affine coordinates: Group properties (zero_scalar_nullifier_zero)
- [22:46:55.904] [SUCCESS] (663/1618) secp256k1 affine coordinates: Group properties (zero_scalar_nullifier_random)
- [22:46:55.907] [SUCCESS] (664/1618) secp256k1 affine coordinates: Group properties (multiply_by_one_does_nothing)
- [22:46:55.911] [SUCCESS] (665/1618) secp256k1 affine coordinates: Group properties (opposite_of_opposite)
- [22:46:55.915] [SUCCESS] (666/1618) secp256k1 affine coordinates: Group properties (opposite_of_opposite_using_scalar)
- [22:46:55.915] [SUCCESS] (667/1618) secp256k1 affine coordinates: Group properties (opposite_of_zero_is_zero)
- [22:46:55.915] [SUCCESS] (668/1618) secp256k1 affine coordinates: Group properties (opposite_of_opposite_of_zero_is_zero)
- [22:46:55.915] [SUCCESS] (669/1618) secp256k1 affine coordinates: Group properties (opposite_of_opposite_of_one_is_one)
- [22:46:55.927] [SUCCESS] (670/1618) secp256k1 affine coordinates: Group properties (opposite_equality)
- [22:46:55.931] [SUCCESS] (671/1618) secp256k1 affine coordinates: Group properties (zero is the identity)
- [22:46:56.814] [SUCCESS] (672/1618) secp256k1 affine coordinates: Group properties (distributivity)
- [22:46:57.401] [SUCCESS] (673/1618) secp256k1 affine coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec)
- [22:46:57.404] [SUCCESS] (674/1618) secp256k1 affine coordinates: Group properties (opposite_existential_property)
- [22:46:57.992] [SUCCESS] (675/1618) secp256k1 affine coordinates: Group properties (mul_by_order_of_base_field_equals_element)
- [22:46:59.743] [SUCCESS] (676/1618) secp256k1 affine coordinates: Group properties (multiplication_properties_on_base_field_element)
- [22:46:59.749] [SUCCESS] (677/1618) secp256k1 affine coordinates: Group properties (double)
- [22:47:00.627] [SUCCESS] (678/1618) secp256k1 affine coordinates: Group properties (additive_associativity_with_scalar)
- [22:47:01.801] [SUCCESS] (679/1618) secp256k1 affine coordinates: Group properties (inverse on scalar)
- [22:47:01.814] [SUCCESS] (680/1618) secp256k1 affine coordinates: Group properties (additive_associativity)
- [22:47:01.822] [SUCCESS] (681/1618) secp256k1 affine coordinates: Group properties (additive_commutativity)
- [22:47:01.822] [SUCCESS] (682/1618) secp256k1 affine coordinates: Group properties (Generator is of prime order)
- [22:47:01.823] [SUCCESS] (683/1618) secp256k1 affine coordinates: Compressed representation (Compressed representation of zero is the bs with zeroes)
- [22:47:01.829] [SUCCESS] (684/1618) secp256k1 affine coordinates: Compressed representation (of_compressed_bytes_exn recovers correct point from uncompressed representation)
- [22:47:01.835] [SUCCESS] (685/1618) secp256k1 affine coordinates: Compressed representation (of_compressed_bytes_opt recovers correct point from uncompressed representation)
- [22:47:01.835] [SUCCESS] (686/1618) secp256k1 affine coordinates: Compressed representation (Compressed version is half the size)
- [22:47:01.838] [SUCCESS] (687/1618) secp256k1 affine coordinates: Compressed representation (of_compressed_bytes_exn/opt do not accept uncompressed bytes representation)
- [22:47:01.842] [SUCCESS] (688/1618) secp256k1 affine coordinates: Compressed representation (of_bytes_exn/opt do not accept compressed bytes representation)
- [22:47:02.806] [SUCCESS] (689/1618) RedJubjub: Signature scheme properties (Sign and verify random message)
- [22:47:03.768] [SUCCESS] (690/1618) RedJubjub: Signature scheme properties (Sign and verify wrong message)
- [22:47:04.733] [SUCCESS] (691/1618) RedJubjub: Signature scheme properties (sign and verify with an invalid verifying key (different sk))
- [22:47:05.705] [SUCCESS] (692/1618) RedJubjub: Signature scheme properties (sign and verify with an invalid verifying key (different generator))
- [22:47:05.725] [SUCCESS] (693/1618) RedJubjub: Sign on test vectors (Sign on test vectors from librustzcash/zcash_primitives)
- [22:47:05.727] [SUCCESS] (694/1618) Poseidon252: Properties (Perm is consistent)
- [22:47:05.728] [SUCCESS] (695/1618) Poseidon252: Test vectors for Hades252 (Test vectors from dusk-network/hades252)
- [22:47:05.736] [SUCCESS] (696/1618) Poseidon252: Test vectors for Poseidon252 (Test vectors from dusk-network/poseidon252)
- [22:47:05.736] [SUCCESS] (697/1618) Poseidon128: Properties (Perm is consistent)
- [22:47:05.742] [SUCCESS] (698/1618) Poseidon128: Test vectors for Poseidon128 (Regression test vectors for poseidon128)
- [22:47:05.851] [SUCCESS] (699/1618) Pedersen Hash Zcash: Vectors (Test vector from zcash primitives)
- [22:47:05.866] [SUCCESS] (700/1618) Pedersen Hash Zcash: Too long bitstrings (Too long bitstrings, not enough generators)
- [22:47:05.879] [SUCCESS] (701/1618) Pallas projective coordinates: value generation (random)
- [22:47:05.879] [SUCCESS] (702/1618) Pallas projective coordinates: value generation (negate_with_one)
- [22:47:05.879] [SUCCESS] (703/1618) Pallas projective coordinates: value generation (negate_with_zero)
- [22:47:05.892] [SUCCESS] (704/1618) Pallas projective coordinates: value generation (negate_with_random)
- [22:47:05.905] [SUCCESS] (705/1618) Pallas projective coordinates: value generation (double_with_random)
- [22:47:05.919] [SUCCESS] (706/1618) Pallas projective coordinates: value generation (negate generates a valid point)
- [22:47:05.946] [SUCCESS] (707/1618) Pallas projective coordinates: value generation (addition generates a valid point)
- [22:47:05.961] [SUCCESS] (708/1618) Pallas projective coordinates: value generation (double generates a valid point)
- [22:47:06.140] [SUCCESS] (709/1618) Pallas projective coordinates: value generation (scalar multiplication generates a valid point)
- [22:47:06.153] [SUCCESS] (710/1618) Pallas projective coordinates: value generation (of_bytes_exn and to_bytes are inverse functions)
- [22:47:06.167] [SUCCESS] (711/1618) Pallas projective coordinates: value generation (check bytes on random with to_bytes)
- [22:47:06.167] [SUCCESS] (712/1618) Pallas projective coordinates: value generation (double_with_one)
- [22:47:06.167] [SUCCESS] (713/1618) Pallas projective coordinates: value generation (double_with_zero)
- [22:47:06.167] [SUCCESS] (714/1618) Pallas projective coordinates: equality (zero)
- [22:47:06.167] [SUCCESS] (715/1618) Pallas projective coordinates: equality (one)
- [22:47:06.180] [SUCCESS] (716/1618) Pallas projective coordinates: equality (random_same_objects)
- [22:47:06.193] [SUCCESS] (717/1618) Pallas projective coordinates: Group properties (check_bytes_random)
- [22:47:06.193] [SUCCESS] (718/1618) Pallas projective coordinates: Group properties (check_bytes_zero)
- [22:47:06.193] [SUCCESS] (719/1618) Pallas projective coordinates: Group properties (check_bytes_one)
- [22:47:06.207] [SUCCESS] (720/1618) Pallas projective coordinates: Group properties (check_bytes_random_double)
- [22:47:06.235] [SUCCESS] (721/1618) Pallas projective coordinates: Group properties (check_bytes_random_sum)
- [22:47:06.414] [SUCCESS] (722/1618) Pallas projective coordinates: Group properties (check_bytes_random_multiplication)
- [22:47:06.414] [SUCCESS] (723/1618) Pallas projective coordinates: Group properties (zero_scalar_nullifier_one)
- [22:47:06.414] [SUCCESS] (724/1618) Pallas projective coordinates: Group properties (zero_scalar_nullifier_zero)
- [22:47:06.427] [SUCCESS] (725/1618) Pallas projective coordinates: Group properties (zero_scalar_nullifier_random)
- [22:47:06.440] [SUCCESS] (726/1618) Pallas projective coordinates: Group properties (multiply_by_one_does_nothing)
- [22:47:06.454] [SUCCESS] (727/1618) Pallas projective coordinates: Group properties (opposite_of_opposite)
- [22:47:06.467] [SUCCESS] (728/1618) Pallas projective coordinates: Group properties (opposite_of_opposite_using_scalar)
- [22:47:06.467] [SUCCESS] (729/1618) Pallas projective coordinates: Group properties (opposite_of_zero_is_zero)
- [22:47:06.467] [SUCCESS] (730/1618) Pallas projective coordinates: Group properties (opposite_of_opposite_of_zero_is_zero)
- [22:47:06.467] [SUCCESS] (731/1618) Pallas projective coordinates: Group properties (opposite_of_opposite_of_one_is_one)
- [22:47:06.474] [SUCCESS] (732/1618) Pallas projective coordinates: Group properties (opposite_equality)
- [22:47:06.487] [SUCCESS] (733/1618) Pallas projective coordinates: Group properties (zero is the identity)
- [22:47:07.011] [SUCCESS] (734/1618) Pallas projective coordinates: Group properties (distributivity)
- [22:47:07.356] [SUCCESS] (735/1618) Pallas projective coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec)
- [22:47:07.370] [SUCCESS] (736/1618) Pallas projective coordinates: Group properties (opposite_existential_property)
- [22:47:07.724] [SUCCESS] (737/1618) Pallas projective coordinates: Group properties (mul_by_order_of_base_field_equals_element)
- [22:47:08.731] [SUCCESS] (738/1618) Pallas projective coordinates: Group properties (multiplication_properties_on_base_field_element)
- [22:47:08.746] [SUCCESS] (739/1618) Pallas projective coordinates: Group properties (double)
- [22:47:09.261] [SUCCESS] (740/1618) Pallas projective coordinates: Group properties (additive_associativity_with_scalar)
- [22:47:09.947] [SUCCESS] (741/1618) Pallas projective coordinates: Group properties (inverse on scalar)
- [22:47:09.989] [SUCCESS] (742/1618) Pallas projective coordinates: Group properties (additive_associativity)
- [22:47:10.016] [SUCCESS] (743/1618) Pallas projective coordinates: Group properties (additive_commutativity)
- [22:47:10.016] [SUCCESS] (744/1618) Pallas projective coordinates: Group properties (Generator is of prime order)
- [22:47:10.030] [SUCCESS] (745/1618) Pallas jacobian coordinates: value generation (random)
- [22:47:10.030] [SUCCESS] (746/1618) Pallas jacobian coordinates: value generation (negate_with_one)
- [22:47:10.030] [SUCCESS] (747/1618) Pallas jacobian coordinates: value generation (negate_with_zero)
- [22:47:10.043] [SUCCESS] (748/1618) Pallas jacobian coordinates: value generation (negate_with_random)
- [22:47:10.056] [SUCCESS] (749/1618) Pallas jacobian coordinates: value generation (double_with_random)
- [22:47:10.070] [SUCCESS] (750/1618) Pallas jacobian coordinates: value generation (negate generates a valid point)
- [22:47:10.097] [SUCCESS] (751/1618) Pallas jacobian coordinates: value generation (addition generates a valid point)
- [22:47:10.112] [SUCCESS] (752/1618) Pallas jacobian coordinates: value generation (double generates a valid point)
- [22:47:10.421] [SUCCESS] (753/1618) Pallas jacobian coordinates: value generation (scalar multiplication generates a valid point)
- [22:47:10.434] [SUCCESS] (754/1618) Pallas jacobian coordinates: value generation (of_bytes_exn and to_bytes are inverse functions)
- [22:47:10.448] [SUCCESS] (755/1618) Pallas jacobian coordinates: value generation (check bytes on random with to_bytes)
- [22:47:10.448] [SUCCESS] (756/1618) Pallas jacobian coordinates: value generation (double_with_one)
- [22:47:10.448] [SUCCESS] (757/1618) Pallas jacobian coordinates: value generation (double_with_zero)
- [22:47:10.448] [SUCCESS] (758/1618) Pallas jacobian coordinates: equality (zero)
- [22:47:10.448] [SUCCESS] (759/1618) Pallas jacobian coordinates: equality (one)
- [22:47:10.461] [SUCCESS] (760/1618) Pallas jacobian coordinates: equality (random_same_objects)
- [22:47:10.475] [SUCCESS] (761/1618) Pallas jacobian coordinates: Group properties (check_bytes_random)
- [22:47:10.475] [SUCCESS] (762/1618) Pallas jacobian coordinates: Group properties (check_bytes_zero)
- [22:47:10.475] [SUCCESS] (763/1618) Pallas jacobian coordinates: Group properties (check_bytes_one)
- [22:47:10.489] [SUCCESS] (764/1618) Pallas jacobian coordinates: Group properties (check_bytes_random_double)
- [22:47:10.517] [SUCCESS] (765/1618) Pallas jacobian coordinates: Group properties (check_bytes_random_sum)
- [22:47:10.826] [SUCCESS] (766/1618) Pallas jacobian coordinates: Group properties (check_bytes_random_multiplication)
- [22:47:10.826] [SUCCESS] (767/1618) Pallas jacobian coordinates: Group properties (zero_scalar_nullifier_one)
- [22:47:10.826] [SUCCESS] (768/1618) Pallas jacobian coordinates: Group properties (zero_scalar_nullifier_zero)
- [22:47:10.839] [SUCCESS] (769/1618) Pallas jacobian coordinates: Group properties (zero_scalar_nullifier_random)
- [22:47:10.852] [SUCCESS] (770/1618) Pallas jacobian coordinates: Group properties (multiply_by_one_does_nothing)
- [22:47:10.866] [SUCCESS] (771/1618) Pallas jacobian coordinates: Group properties (opposite_of_opposite)
- [22:47:10.880] [SUCCESS] (772/1618) Pallas jacobian coordinates: Group properties (opposite_of_opposite_using_scalar)
- [22:47:10.880] [SUCCESS] (773/1618) Pallas jacobian coordinates: Group properties (opposite_of_zero_is_zero)
- [22:47:10.880] [SUCCESS] (774/1618) Pallas jacobian coordinates: Group properties (opposite_of_opposite_of_zero_is_zero)
- [22:47:10.880] [SUCCESS] (775/1618) Pallas jacobian coordinates: Group properties (opposite_of_opposite_of_one_is_one)
- [22:47:10.892] [SUCCESS] (776/1618) Pallas jacobian coordinates: Group properties (opposite_equality)
- [22:47:10.906] [SUCCESS] (777/1618) Pallas jacobian coordinates: Group properties (zero is the identity)
- [22:47:11.826] [SUCCESS] (778/1618) Pallas jacobian coordinates: Group properties (distributivity)
- [22:47:12.431] [SUCCESS] (779/1618) Pallas jacobian coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec)
- [22:47:12.444] [SUCCESS] (780/1618) Pallas jacobian coordinates: Group properties (opposite_existential_property)
- [22:47:13.046] [SUCCESS] (781/1618) Pallas jacobian coordinates: Group properties (mul_by_order_of_base_field_equals_element)
- [22:47:14.823] [SUCCESS] (782/1618) Pallas jacobian coordinates: Group properties (multiplication_properties_on_base_field_element)
- [22:47:14.838] [SUCCESS] (783/1618) Pallas jacobian coordinates: Group properties (double)
- [22:47:15.734] [SUCCESS] (784/1618) Pallas jacobian coordinates: Group properties (additive_associativity_with_scalar)
- [22:47:16.924] [SUCCESS] (785/1618) Pallas jacobian coordinates: Group properties (inverse on scalar)
- [22:47:16.968] [SUCCESS] (786/1618) Pallas jacobian coordinates: Group properties (additive_associativity)
- [22:47:16.996] [SUCCESS] (787/1618) Pallas jacobian coordinates: Group properties (additive_commutativity)
- [22:47:16.996] [SUCCESS] (788/1618) Pallas jacobian coordinates: Group properties (Generator is of prime order)
- [22:47:17.009] [SUCCESS] (789/1618) Pallas affine coordinates: value generation (random)
- [22:47:17.009] [SUCCESS] (790/1618) Pallas affine coordinates: value generation (negate_with_one)
- [22:47:17.009] [SUCCESS] (791/1618) Pallas affine coordinates: value generation (negate_with_zero)
- [22:47:17.022] [SUCCESS] (792/1618) Pallas affine coordinates: value generation (negate_with_random)
- [22:47:17.036] [SUCCESS] (793/1618) Pallas affine coordinates: value generation (double_with_random)
- [22:47:17.050] [SUCCESS] (794/1618) Pallas affine coordinates: value generation (negate generates a valid point)
- [22:47:17.076] [SUCCESS] (795/1618) Pallas affine coordinates: value generation (addition generates a valid point)
- [22:47:17.091] [SUCCESS] (796/1618) Pallas affine coordinates: value generation (double generates a valid point)
- [22:47:17.398] [SUCCESS] (797/1618) Pallas affine coordinates: value generation (scalar multiplication generates a valid point)
- [22:47:17.411] [SUCCESS] (798/1618) Pallas affine coordinates: value generation (of_bytes_exn and to_bytes are inverse functions)
- [22:47:17.424] [SUCCESS] (799/1618) Pallas affine coordinates: value generation (check bytes on random with to_bytes)
- [22:47:17.424] [SUCCESS] (800/1618) Pallas affine coordinates: value generation (double_with_one)
- [22:47:17.424] [SUCCESS] (801/1618) Pallas affine coordinates: value generation (double_with_zero)
- [22:47:17.424] [SUCCESS] (802/1618) Pallas affine coordinates: equality (zero)
- [22:47:17.424] [SUCCESS] (803/1618) Pallas affine coordinates: equality (one)
- [22:47:17.437] [SUCCESS] (804/1618) Pallas affine coordinates: equality (random_same_objects)
- [22:47:17.450] [SUCCESS] (805/1618) Pallas affine coordinates: Group properties (check_bytes_random)
- [22:47:17.450] [SUCCESS] (806/1618) Pallas affine coordinates: Group properties (check_bytes_zero)
- [22:47:17.450] [SUCCESS] (807/1618) Pallas affine coordinates: Group properties (check_bytes_one)
- [22:47:17.465] [SUCCESS] (808/1618) Pallas affine coordinates: Group properties (check_bytes_random_double)
- [22:47:17.491] [SUCCESS] (809/1618) Pallas affine coordinates: Group properties (check_bytes_random_sum)
- [22:47:17.798] [SUCCESS] (810/1618) Pallas affine coordinates: Group properties (check_bytes_random_multiplication)
- [22:47:17.798] [SUCCESS] (811/1618) Pallas affine coordinates: Group properties (zero_scalar_nullifier_one)
- [22:47:17.798] [SUCCESS] (812/1618) Pallas affine coordinates: Group properties (zero_scalar_nullifier_zero)
- [22:47:17.811] [SUCCESS] (813/1618) Pallas affine coordinates: Group properties (zero_scalar_nullifier_random)
- [22:47:17.825] [SUCCESS] (814/1618) Pallas affine coordinates: Group properties (multiply_by_one_does_nothing)
- [22:47:17.838] [SUCCESS] (815/1618) Pallas affine coordinates: Group properties (opposite_of_opposite)
- [22:47:17.851] [SUCCESS] (816/1618) Pallas affine coordinates: Group properties (opposite_of_opposite_using_scalar)
- [22:47:17.851] [SUCCESS] (817/1618) Pallas affine coordinates: Group properties (opposite_of_zero_is_zero)
- [22:47:17.851] [SUCCESS] (818/1618) Pallas affine coordinates: Group properties (opposite_of_opposite_of_zero_is_zero)
- [22:47:17.851] [SUCCESS] (819/1618) Pallas affine coordinates: Group properties (opposite_of_opposite_of_one_is_one)
- [22:47:17.863] [SUCCESS] (820/1618) Pallas affine coordinates: Group properties (opposite_equality)
- [22:47:17.876] [SUCCESS] (821/1618) Pallas affine coordinates: Group properties (zero is the identity)
- [22:47:18.789] [SUCCESS] (822/1618) Pallas affine coordinates: Group properties (distributivity)
- [22:47:19.399] [SUCCESS] (823/1618) Pallas affine coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec)
- [22:47:19.413] [SUCCESS] (824/1618) Pallas affine coordinates: Group properties (opposite_existential_property)
- [22:47:20.041] [SUCCESS] (825/1618) Pallas affine coordinates: Group properties (mul_by_order_of_base_field_equals_element)
- [22:47:21.885] [SUCCESS] (826/1618) Pallas affine coordinates: Group properties (multiplication_properties_on_base_field_element)
- [22:47:21.900] [SUCCESS] (827/1618) Pallas affine coordinates: Group properties (double)
- [22:47:22.866] [SUCCESS] (828/1618) Pallas affine coordinates: Group properties (additive_associativity_with_scalar)
- [22:47:24.095] [SUCCESS] (829/1618) Pallas affine coordinates: Group properties (inverse on scalar)
- [22:47:24.147] [SUCCESS] (830/1618) Pallas affine coordinates: Group properties (additive_associativity)
- [22:47:24.176] [SUCCESS] (831/1618) Pallas affine coordinates: Group properties (additive_commutativity)
- [22:47:24.176] [SUCCESS] (832/1618) Pallas affine coordinates: Group properties (Generator is of prime order)
- [22:47:24.176] [SUCCESS] (833/1618) Pallas affine coordinates: Compressed representation (Compressed representation of zero is the bs with zeroes)
- [22:47:24.202] [SUCCESS] (834/1618) Pallas affine coordinates: Compressed representation (of_compressed_bytes_exn recovers correct point from uncompressed representation)
- [22:47:24.228] [SUCCESS] (835/1618) Pallas affine coordinates: Compressed representation (of_compressed_bytes_opt recovers correct point from uncompressed representation)
- [22:47:24.229] [SUCCESS] (836/1618) Pallas affine coordinates: Compressed representation (Compressed version is half the size)
- [22:47:24.242] [SUCCESS] (837/1618) Pallas affine coordinates: Compressed representation (of_compressed_bytes_exn/opt do not accept uncompressed bytes representation)
- [22:47:24.257] [SUCCESS] (838/1618) Pallas affine coordinates: Compressed representation (of_bytes_exn/opt do not accept compressed bytes representation)
- [22:47:24.257] [SUCCESS] (839/1618) Orchard: Properties (Perm is consistent)
- [22:47:24.258] [SUCCESS] (840/1618) Orchard: Test vectors for Hades Orchard (Test vectors from zcash-hackworks/zcash-test-vectors)
- [22:47:24.262] [SUCCESS] (841/1618) Orchard: No padding (Inputs of length 2)
- [22:47:24.263] [SUCCESS] (842/1618) Neptunus: Properties (Perm is consistent)
- [22:47:24.264] [SUCCESS] (843/1618) Marvellous permutation: Built on scalar field of BLS12-381 (Test vectors from reference implementation from KUL)
- [22:47:24.266] [SUCCESS] (844/1618) Marvellous permutation: Built on scalar field of BLS12-381 (Regression tests)
- [22:47:24.268] [SUCCESS] (845/1618) Linear trick: Regression test (Poseidon128)
- [22:47:24.285] [SUCCESS] (846/1618) Jubjub - Weierstrass - Affine coordinates: value generation (random)
- [22:47:24.285] [SUCCESS] (847/1618) Jubjub - Weierstrass - Affine coordinates: value generation (negate_with_one)
- [22:47:24.285] [SUCCESS] (848/1618) Jubjub - Weierstrass - Affine coordinates: value generation (negate_with_zero)
- [22:47:24.302] [SUCCESS] (849/1618) Jubjub - Weierstrass - Affine coordinates: value generation (negate_with_random)
- [22:47:24.320] [SUCCESS] (850/1618) Jubjub - Weierstrass - Affine coordinates: value generation (double_with_random)
- [22:47:24.340] [SUCCESS] (851/1618) Jubjub - Weierstrass - Affine coordinates: value generation (negate generates a valid point)
- [22:47:24.379] [SUCCESS] (852/1618) Jubjub - Weierstrass - Affine coordinates: value generation (addition generates a valid point)
- [22:47:24.402] [SUCCESS] (853/1618) Jubjub - Weierstrass - Affine coordinates: value generation (double generates a valid point)
- [22:47:24.732] [SUCCESS] (854/1618) Jubjub - Weierstrass - Affine coordinates: value generation (scalar multiplication generates a valid point)
- [22:47:24.753] [SUCCESS] (855/1618) Jubjub - Weierstrass - Affine coordinates: value generation (of_bytes_exn and to_bytes are inverse functions)
- [22:47:24.774] [SUCCESS] (856/1618) Jubjub - Weierstrass - Affine coordinates: value generation (check bytes on random with to_bytes)
- [22:47:24.774] [SUCCESS] (857/1618) Jubjub - Weierstrass - Affine coordinates: value generation (double_with_one)
- [22:47:24.774] [SUCCESS] (858/1618) Jubjub - Weierstrass - Affine coordinates: value generation (double_with_zero)
- [22:47:24.774] [SUCCESS] (859/1618) Jubjub - Weierstrass - Affine coordinates: equality (zero)
- [22:47:24.774] [SUCCESS] (860/1618) Jubjub - Weierstrass - Affine coordinates: equality (one)
- [22:47:24.792] [SUCCESS] (861/1618) Jubjub - Weierstrass - Affine coordinates: equality (random_same_objects)
- [22:47:24.812] [SUCCESS] (862/1618) Jubjub - Weierstrass - Affine coordinates: Group properties (check_bytes_random)
- [22:47:24.812] [SUCCESS] (863/1618) Jubjub - Weierstrass - Affine coordinates: Group properties (check_bytes_zero)
- [22:47:24.812] [SUCCESS] (864/1618) Jubjub - Weierstrass - Affine coordinates: Group properties (check_bytes_one)
- [22:47:24.834] [SUCCESS] (865/1618) Jubjub - Weierstrass - Affine coordinates: Group properties (check_bytes_random_double)
- [22:47:24.873] [SUCCESS] (866/1618) Jubjub - Weierstrass - Affine coordinates: Group properties (check_bytes_random_sum)
- [22:47:25.189] [SUCCESS] (867/1618) Jubjub - Weierstrass - Affine coordinates: Group properties (check_bytes_random_multiplication)
- [22:47:25.189] [SUCCESS] (868/1618) Jubjub - Weierstrass - Affine coordinates: Group properties (zero_scalar_nullifier_one)
- [22:47:25.189] [SUCCESS] (869/1618) Jubjub - Weierstrass - Affine coordinates: Group properties (zero_scalar_nullifier_zero)
- [22:47:25.206] [SUCCESS] (870/1618) Jubjub - Weierstrass - Affine coordinates: Group properties (zero_scalar_nullifier_random)
- [22:47:25.223] [SUCCESS] (871/1618) Jubjub - Weierstrass - Affine coordinates: Group properties (multiply_by_one_does_nothing)
- [22:47:25.240] [SUCCESS] (872/1618) Jubjub - Weierstrass - Affine coordinates: Group properties (opposite_of_opposite)
- [22:47:25.257] [SUCCESS] (873/1618) Jubjub - Weierstrass - Affine coordinates: Group properties (opposite_of_opposite_using_scalar)
- [22:47:25.257] [SUCCESS] (874/1618) Jubjub - Weierstrass - Affine coordinates: Group properties (opposite_of_zero_is_zero)
- [22:47:25.257] [SUCCESS] (875/1618) Jubjub - Weierstrass - Affine coordinates: Group properties (opposite_of_opposite_of_zero_is_zero)
- [22:47:25.257] [SUCCESS] (876/1618) Jubjub - Weierstrass - Affine coordinates: Group properties (opposite_of_opposite_of_one_is_one)
- [22:47:25.269] [SUCCESS] (877/1618) Jubjub - Weierstrass - Affine coordinates: Group properties (opposite_equality)
- [22:47:25.286] [SUCCESS] (878/1618) Jubjub - Weierstrass - Affine coordinates: Group properties (zero is the identity)
- [22:47:26.296] [SUCCESS] (879/1618) Jubjub - Weierstrass - Affine coordinates: Group properties (distributivity)
- [22:47:26.947] [SUCCESS] (880/1618) Jubjub - Weierstrass - Affine coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec)
- [22:47:26.966] [SUCCESS] (881/1618) Jubjub - Weierstrass - Affine coordinates: Group properties (opposite_existential_property)
- [22:47:27.626] [SUCCESS] (882/1618) Jubjub - Weierstrass - Affine coordinates: Group properties (mul_by_order_of_base_field_equals_element)
- [22:47:29.468] [SUCCESS] (883/1618) Jubjub - Weierstrass - Affine coordinates: Group properties (multiplication_properties_on_base_field_element)
- [22:47:29.487] [SUCCESS] (884/1618) Jubjub - Weierstrass - Affine coordinates: Group properties (double)
- [22:47:30.391] [SUCCESS] (885/1618) Jubjub - Weierstrass - Affine coordinates: Group properties (additive_associativity_with_scalar)
- [22:47:31.591] [SUCCESS] (886/1618) Jubjub - Weierstrass - Affine coordinates: Group properties (inverse on scalar)
- [22:47:31.643] [SUCCESS] (887/1618) Jubjub - Weierstrass - Affine coordinates: Group properties (additive_associativity)
- [22:47:31.678] [SUCCESS] (888/1618) Jubjub - Weierstrass - Affine coordinates: Group properties (additive_commutativity)
- [22:47:31.678] [SUCCESS] (889/1618) Jubjub - Weierstrass - Affine coordinates: Group properties (Generator is of prime order)
- [22:47:31.678] [SUCCESS] (890/1618) Jubjub - Weierstrass - Affine coordinates: Compressed representation (Compressed representation of zero is the bs with zeroes)
- [22:47:31.710] [SUCCESS] (891/1618) Jubjub - Weierstrass - Affine coordinates: Compressed representation (of_compressed_bytes_exn recovers correct point from uncompressed representation)
- [22:47:31.750] [SUCCESS] (892/1618) Jubjub - Weierstrass - Affine coordinates: Compressed representation (of_compressed_bytes_opt recovers correct point from uncompressed representation)
- [22:47:31.750] [SUCCESS] (893/1618) Jubjub - Weierstrass - Affine coordinates: Compressed representation (Compressed version is half the size)
- [22:47:31.768] [SUCCESS] (894/1618) Jubjub - Weierstrass - Affine coordinates: Compressed representation (of_compressed_bytes_exn/opt do not accept uncompressed bytes representation)
- [22:47:31.784] [SUCCESS] (895/1618) Jubjub - Weierstrass - Affine coordinates: Compressed representation (of_bytes_exn/opt do not accept compressed bytes representation)
- [22:47:31.824] [SUCCESS] (896/1618) JubJub: Affine Edwards <-> Affine Montgomery ; Affine Edwards -> Affine Weierstrass (Points are on both curves)
- [22:47:31.914] [SUCCESS] (897/1618) JubJub: Affine Edwards <-> Affine Montgomery ; Affine Edwards -> Affine Weierstrass (Addition)
- [22:47:33.068] [SUCCESS] (898/1618) JubJub: Affine Edwards <-> Affine Montgomery ; Affine Edwards -> Affine Weierstrass (Scalar multiplication)
- [22:47:33.069] [SUCCESS] (899/1618) Jubjub: Vectors (test vectors elements)
- [22:47:33.069] [SUCCESS] (900/1618) Jubjub: Compressed/Uncompressed (Correct point; uncompressed_exn)
- [22:47:33.069] [SUCCESS] (901/1618) Jubjub: Compressed/Uncompressed (Random values must not be accepted)
- [22:47:33.069] [SUCCESS] (902/1618) Jubjub: Compressed/Uncompressed (Compressed gives 32 bytes)
- [22:47:33.069] [SUCCESS] (903/1618) Jubjub: Compressed/Uncompressed (Correct point; uncompressed_opt)
- [22:47:33.072] [SUCCESS] (904/1618) Jubjub: Compressed/Uncompressed (Test vectors)
- [22:47:33.072] [SUCCESS] (905/1618) Jubjub: Compressed/Uncompressed (Encoding of zero)
- [22:47:33.072] [SUCCESS] (906/1618) Jubjub: Tests random (test random coordinates do not give a point on the curve)
- [22:47:33.089] [SUCCESS] (907/1618) Jubjub: value generation (random)
- [22:47:33.089] [SUCCESS] (908/1618) Jubjub: value generation (negate_with_one)
- [22:47:33.089] [SUCCESS] (909/1618) Jubjub: value generation (negate_with_zero)
- [22:47:33.105] [SUCCESS] (910/1618) Jubjub: value generation (negate_with_random)
- [22:47:33.122] [SUCCESS] (911/1618) Jubjub: value generation (double_with_random)
- [22:47:33.141] [SUCCESS] (912/1618) Jubjub: value generation (negate generates a valid point)
- [22:47:33.176] [SUCCESS] (913/1618) Jubjub: value generation (addition generates a valid point)
- [22:47:33.195] [SUCCESS] (914/1618) Jubjub: value generation (double generates a valid point)
- [22:47:33.452] [SUCCESS] (915/1618) Jubjub: value generation (scalar multiplication generates a valid point)
- [22:47:33.470] [SUCCESS] (916/1618) Jubjub: value generation (of_bytes_exn and to_bytes are inverse functions)
- [22:47:33.488] [SUCCESS] (917/1618) Jubjub: value generation (check bytes on random with to_bytes)
- [22:47:33.488] [SUCCESS] (918/1618) Jubjub: value generation (double_with_one)
- [22:47:33.488] [SUCCESS] (919/1618) Jubjub: value generation (double_with_zero)
- [22:47:33.488] [SUCCESS] (920/1618) Jubjub: Group properties of Edwards curve (unsafe_from_coordinates do not check the point is on the curve)
- [22:47:33.488] [SUCCESS] (921/1618) Jubjub: Group properties of Edwards curve (Test check_bytes and of_bytes_[exn/opt] with a different number of bytes than expected)
- [22:47:33.506] [SUCCESS] (922/1618) Jubjub: Group properties (check_bytes_random)
- [22:47:33.506] [SUCCESS] (923/1618) Jubjub: Group properties (check_bytes_zero)
- [22:47:33.506] [SUCCESS] (924/1618) Jubjub: Group properties (check_bytes_one)
- [22:47:33.527] [SUCCESS] (925/1618) Jubjub: Group properties (check_bytes_random_double)
- [22:47:33.564] [SUCCESS] (926/1618) Jubjub: Group properties (check_bytes_random_sum)
- [22:47:33.833] [SUCCESS] (927/1618) Jubjub: Group properties (check_bytes_random_multiplication)
- [22:47:33.833] [SUCCESS] (928/1618) Jubjub: Group properties (zero_scalar_nullifier_one)
- [22:47:33.833] [SUCCESS] (929/1618) Jubjub: Group properties (zero_scalar_nullifier_zero)
- [22:47:33.850] [SUCCESS] (930/1618) Jubjub: Group properties (zero_scalar_nullifier_random)
- [22:47:33.867] [SUCCESS] (931/1618) Jubjub: Group properties (multiply_by_one_does_nothing)
- [22:47:33.884] [SUCCESS] (932/1618) Jubjub: Group properties (opposite_of_opposite)
- [22:47:33.900] [SUCCESS] (933/1618) Jubjub: Group properties (opposite_of_opposite_using_scalar)
- [22:47:33.900] [SUCCESS] (934/1618) Jubjub: Group properties (opposite_of_zero_is_zero)
- [22:47:33.901] [SUCCESS] (935/1618) Jubjub: Group properties (opposite_of_opposite_of_zero_is_zero)
- [22:47:33.901] [SUCCESS] (936/1618) Jubjub: Group properties (opposite_of_opposite_of_one_is_one)
- [22:47:33.911] [SUCCESS] (937/1618) Jubjub: Group properties (opposite_equality)
- [22:47:33.928] [SUCCESS] (938/1618) Jubjub: Group properties (zero is the identity)
- [22:47:34.678] [SUCCESS] (939/1618) Jubjub: Group properties (distributivity)
- [22:47:35.170] [SUCCESS] (940/1618) Jubjub: Group properties (opposite_of_scalar_is_opposite_of_ec)
- [22:47:35.187] [SUCCESS] (941/1618) Jubjub: Group properties (opposite_existential_property)
- [22:47:35.681] [SUCCESS] (942/1618) Jubjub: Group properties (mul_by_order_of_base_field_equals_element)
- [22:47:37.126] [SUCCESS] (943/1618) Jubjub: Group properties (multiplication_properties_on_base_field_element)
- [22:47:37.143] [SUCCESS] (944/1618) Jubjub: Group properties (double)
- [22:47:37.877] [SUCCESS] (945/1618) Jubjub: Group properties (additive_associativity_with_scalar)
- [22:47:38.846] [SUCCESS] (946/1618) Jubjub: Group properties (inverse on scalar)
- [22:47:38.897] [SUCCESS] (947/1618) Jubjub: Group properties (additive_associativity)
- [22:47:38.931] [SUCCESS] (948/1618) Jubjub: Group properties (additive_commutativity)
- [22:47:38.931] [SUCCESS] (949/1618) Jubjub: Group properties (Generator is of prime order)
- [22:47:38.931] [SUCCESS] (950/1618) Jubjub: equality (zero)
- [22:47:38.931] [SUCCESS] (951/1618) Jubjub: equality (one)
- [22:47:38.947] [SUCCESS] (952/1618) Jubjub: equality (random_same_objects)
- [22:47:38.947] [SUCCESS] (953/1618) Iterator: Bytes (One byte)
- [22:47:38.947] [SUCCESS] (954/1618) Iterator: Bytes (Multiple bytes)
- [22:47:38.947] [SUCCESS] (955/1618) Iterator: Bool list (Test vectors)
- [22:47:38.947] [SUCCESS] (956/1618) Iterator: Utils functions (is processed)
- [22:47:38.947] [SUCCESS] (957/1618) Iterator: get chunk (get chnk)
- [22:47:38.947] [SUCCESS] (958/1618) Iso Pallas affine form: Test isogeny (With random point)
- [22:47:38.961] [SUCCESS] (959/1618) Iso Pallas affine form: value generation (random)
- [22:47:38.961] [SUCCESS] (960/1618) Iso Pallas affine form: value generation (negate_with_one)
- [22:47:38.961] [SUCCESS] (961/1618) Iso Pallas affine form: value generation (negate_with_zero)
- [22:47:38.974] [SUCCESS] (962/1618) Iso Pallas affine form: value generation (negate_with_random)
- [22:47:38.988] [SUCCESS] (963/1618) Iso Pallas affine form: value generation (double_with_random)
- [22:47:39.002] [SUCCESS] (964/1618) Iso Pallas affine form: value generation (negate generates a valid point)
- [22:47:39.029] [SUCCESS] (965/1618) Iso Pallas affine form: value generation (addition generates a valid point)
- [22:47:39.043] [SUCCESS] (966/1618) Iso Pallas affine form: value generation (double generates a valid point)
- [22:47:39.354] [SUCCESS] (967/1618) Iso Pallas affine form: value generation (scalar multiplication generates a valid point)
- [22:47:39.367] [SUCCESS] (968/1618) Iso Pallas affine form: value generation (of_bytes_exn and to_bytes are inverse functions)
- [22:47:39.380] [SUCCESS] (969/1618) Iso Pallas affine form: value generation (check bytes on random with to_bytes)
- [22:47:39.381] [SUCCESS] (970/1618) Iso Pallas affine form: value generation (double_with_one)
- [22:47:39.381] [SUCCESS] (971/1618) Iso Pallas affine form: value generation (double_with_zero)
- [22:47:39.381] [SUCCESS] (972/1618) Iso Pallas affine form: equality (zero)
- [22:47:39.381] [SUCCESS] (973/1618) Iso Pallas affine form: equality (one)
- [22:47:39.394] [SUCCESS] (974/1618) Iso Pallas affine form: equality (random_same_objects)
- [22:47:39.407] [SUCCESS] (975/1618) Iso Pallas affine form: Group properties (check_bytes_random)
- [22:47:39.407] [SUCCESS] (976/1618) Iso Pallas affine form: Group properties (check_bytes_zero)
- [22:47:39.407] [SUCCESS] (977/1618) Iso Pallas affine form: Group properties (check_bytes_one)
- [22:47:39.421] [SUCCESS] (978/1618) Iso Pallas affine form: Group properties (check_bytes_random_double)
- [22:47:39.448] [SUCCESS] (979/1618) Iso Pallas affine form: Group properties (check_bytes_random_sum)
- [22:47:39.757] [SUCCESS] (980/1618) Iso Pallas affine form: Group properties (check_bytes_random_multiplication)
- [22:47:39.757] [SUCCESS] (981/1618) Iso Pallas affine form: Group properties (zero_scalar_nullifier_one)
- [22:47:39.757] [SUCCESS] (982/1618) Iso Pallas affine form: Group properties (zero_scalar_nullifier_zero)
- [22:47:39.770] [SUCCESS] (983/1618) Iso Pallas affine form: Group properties (zero_scalar_nullifier_random)
- [22:47:39.783] [SUCCESS] (984/1618) Iso Pallas affine form: Group properties (multiply_by_one_does_nothing)
- [22:47:39.796] [SUCCESS] (985/1618) Iso Pallas affine form: Group properties (opposite_of_opposite)
- [22:47:39.809] [SUCCESS] (986/1618) Iso Pallas affine form: Group properties (opposite_of_opposite_using_scalar)
- [22:47:39.809] [SUCCESS] (987/1618) Iso Pallas affine form: Group properties (opposite_of_zero_is_zero)
- [22:47:39.809] [SUCCESS] (988/1618) Iso Pallas affine form: Group properties (opposite_of_opposite_of_zero_is_zero)
- [22:47:39.809] [SUCCESS] (989/1618) Iso Pallas affine form: Group properties (opposite_of_opposite_of_one_is_one)
- [22:47:39.821] [SUCCESS] (990/1618) Iso Pallas affine form: Group properties (opposite_equality)
- [22:47:39.834] [SUCCESS] (991/1618) Iso Pallas affine form: Group properties (zero is the identity)
- [22:47:40.747] [SUCCESS] (992/1618) Iso Pallas affine form: Group properties (distributivity)
- [22:47:41.353] [SUCCESS] (993/1618) Iso Pallas affine form: Group properties (opposite_of_scalar_is_opposite_of_ec)
- [22:47:41.366] [SUCCESS] (994/1618) Iso Pallas affine form: Group properties (opposite_existential_property)
- [22:47:41.970] [SUCCESS] (995/1618) Iso Pallas affine form: Group properties (mul_by_order_of_base_field_equals_element)
- [22:47:43.764] [SUCCESS] (996/1618) Iso Pallas affine form: Group properties (multiplication_properties_on_base_field_element)
- [22:47:43.779] [SUCCESS] (997/1618) Iso Pallas affine form: Group properties (double)
- [22:47:44.739] [SUCCESS] (998/1618) Iso Pallas affine form: Group properties (additive_associativity_with_scalar)
- [22:47:45.992] [SUCCESS] (999/1618) Iso Pallas affine form: Group properties (inverse on scalar)
- [22:47:46.034] [SUCCESS] (1000/1618) Iso Pallas affine form: Group properties (additive_associativity)
- [22:47:46.061] [SUCCESS] (1001/1618) Iso Pallas affine form: Group properties (additive_commutativity)
- [22:47:46.061] [SUCCESS] (1002/1618) Iso Pallas affine form: Group properties (Generator is of prime order)
- [22:47:46.062] [SUCCESS] (1003/1618) Find group hash: Zcash test vectors (Test vectors)
- [22:47:46.062] [SUCCESS] (1004/1618) Curve functors: Check initialisation strengthen conditions (b cannot be null)
- [22:47:46.062] [SUCCESS] (1005/1618) Digestif fork: Blake2b test vectors (Test vector with personalisation)
- [22:47:46.071] [SUCCESS] (1006/1618) Digestif fork: Blake2b properties (Feed twice and finalize gives the same result than feeding with the concatenation and finalize)
- [22:47:46.085] [SUCCESS] (1007/1618) Curve448: value generation (random)
- [22:47:46.085] [SUCCESS] (1008/1618) Curve448: value generation (negate_with_one)
- [22:47:46.085] [SUCCESS] (1009/1618) Curve448: value generation (negate_with_zero)
- [22:47:46.100] [SUCCESS] (1010/1618) Curve448: value generation (negate_with_random)
- [22:47:46.115] [SUCCESS] (1011/1618) Curve448: value generation (double_with_random)
- [22:47:46.132] [SUCCESS] (1012/1618) Curve448: value generation (negate generates a valid point)
- [22:47:46.165] [SUCCESS] (1013/1618) Curve448: value generation (addition generates a valid point)
- [22:47:46.182] [SUCCESS] (1014/1618) Curve448: value generation (double generates a valid point)
- [22:47:46.839] [SUCCESS] (1015/1618) Curve448: value generation (scalar multiplication generates a valid point)
- [22:47:46.856] [SUCCESS] (1016/1618) Curve448: value generation (of_bytes_exn and to_bytes are inverse functions)
- [22:47:46.872] [SUCCESS] (1017/1618) Curve448: value generation (check bytes on random with to_bytes)
- [22:47:46.872] [SUCCESS] (1018/1618) Curve448: value generation (double_with_one)
- [22:47:46.873] [SUCCESS] (1019/1618) Curve448: value generation (double_with_zero)
- [22:47:46.889] [SUCCESS] (1020/1618) Curve448: Group properties (check_bytes_random)
- [22:47:46.889] [SUCCESS] (1021/1618) Curve448: Group properties (check_bytes_zero)
- [22:47:46.889] [SUCCESS] (1022/1618) Curve448: Group properties (check_bytes_one)
- [22:47:46.906] [SUCCESS] (1023/1618) Curve448: Group properties (check_bytes_random_double)
- [22:47:46.938] [SUCCESS] (1024/1618) Curve448: Group properties (check_bytes_random_sum)
- [22:47:47.589] [SUCCESS] (1025/1618) Curve448: Group properties (check_bytes_random_multiplication)
- [22:47:47.589] [SUCCESS] (1026/1618) Curve448: Group properties (zero_scalar_nullifier_one)
- [22:47:47.589] [SUCCESS] (1027/1618) Curve448: Group properties (zero_scalar_nullifier_zero)
- [22:47:47.603] [SUCCESS] (1028/1618) Curve448: Group properties (zero_scalar_nullifier_random)
- [22:47:47.617] [SUCCESS] (1029/1618) Curve448: Group properties (multiply_by_one_does_nothing)
- [22:47:47.631] [SUCCESS] (1030/1618) Curve448: Group properties (opposite_of_opposite)
- [22:47:47.645] [SUCCESS] (1031/1618) Curve448: Group properties (opposite_of_opposite_using_scalar)
- [22:47:47.645] [SUCCESS] (1032/1618) Curve448: Group properties (opposite_of_zero_is_zero)
- [22:47:47.645] [SUCCESS] (1033/1618) Curve448: Group properties (opposite_of_opposite_of_zero_is_zero)
- [22:47:47.645] [SUCCESS] (1034/1618) Curve448: Group properties (opposite_of_opposite_of_one_is_one)
- [22:47:47.671] [SUCCESS] (1035/1618) Curve448: Group properties (opposite_equality)
- [22:47:47.686] [SUCCESS] (1036/1618) Curve448: Group properties (zero is the identity)
- [22:47:49.641] [SUCCESS] (1037/1618) Curve448: Group properties (distributivity)
- [22:47:50.927] [SUCCESS] (1038/1618) Curve448: Group properties (opposite_of_scalar_is_opposite_of_ec)
- [22:47:50.942] [SUCCESS] (1039/1618) Curve448: Group properties (opposite_existential_property)
- [22:47:52.226] [SUCCESS] (1040/1618) Curve448: Group properties (mul_by_order_of_base_field_equals_element)
- [22:47:56.057] [SUCCESS] (1041/1618) Curve448: Group properties (multiplication_properties_on_base_field_element)
- [22:47:56.073] [SUCCESS] (1042/1618) Curve448: Group properties (double)
- [22:47:58.012] [SUCCESS] (1043/1618) Curve448: Group properties (additive_associativity_with_scalar)
- [22:48:00.561] [SUCCESS] (1044/1618) Curve448: Group properties (inverse on scalar)
- [22:48:00.609] [SUCCESS] (1045/1618) Curve448: Group properties (additive_associativity)
- [22:48:00.640] [SUCCESS] (1046/1618) Curve448: Group properties (additive_commutativity)
- [22:48:00.640] [SUCCESS] (1047/1618) Curve448: Group properties (Generator is of prime order)
- [22:48:00.640] [SUCCESS] (1048/1618) Curve448: Group properties of Edwards curve (unsafe_from_coordinates do not check the point is on the curve)
- [22:48:00.640] [SUCCESS] (1049/1618) Curve448: Group properties of Edwards curve (Test check_bytes and of_bytes_[exn/opt] with a different number of bytes than expected)
- [22:48:00.640] [SUCCESS] (1050/1618) Curve448: equality (zero)
- [22:48:00.640] [SUCCESS] (1051/1618) Curve448: equality (one)
- [22:48:00.654] [SUCCESS] (1052/1618) Curve448: equality (random_same_objects)
- [22:48:00.663] [SUCCESS] (1053/1618) Curve25519: value generation (random)
- [22:48:00.663] [SUCCESS] (1054/1618) Curve25519: value generation (negate_with_one)
- [22:48:00.663] [SUCCESS] (1055/1618) Curve25519: value generation (negate_with_zero)
- [22:48:00.672] [SUCCESS] (1056/1618) Curve25519: value generation (negate_with_random)
- [22:48:00.681] [SUCCESS] (1057/1618) Curve25519: value generation (double_with_random)
- [22:48:00.692] [SUCCESS] (1058/1618) Curve25519: value generation (negate generates a valid point)
- [22:48:00.711] [SUCCESS] (1059/1618) Curve25519: value generation (addition generates a valid point)
- [22:48:00.722] [SUCCESS] (1060/1618) Curve25519: value generation (double generates a valid point)
- [22:48:00.899] [SUCCESS] (1061/1618) Curve25519: value generation (scalar multiplication generates a valid point)
- [22:48:00.909] [SUCCESS] (1062/1618) Curve25519: value generation (of_bytes_exn and to_bytes are inverse functions)
- [22:48:00.920] [SUCCESS] (1063/1618) Curve25519: value generation (check bytes on random with to_bytes)
- [22:48:00.920] [SUCCESS] (1064/1618) Curve25519: value generation (double_with_one)
- [22:48:00.920] [SUCCESS] (1065/1618) Curve25519: value generation (double_with_zero)
- [22:48:00.930] [SUCCESS] (1066/1618) Curve25519: Group properties (check_bytes_random)
- [22:48:00.930] [SUCCESS] (1067/1618) Curve25519: Group properties (check_bytes_zero)
- [22:48:00.930] [SUCCESS] (1068/1618) Curve25519: Group properties (check_bytes_one)
- [22:48:00.941] [SUCCESS] (1069/1618) Curve25519: Group properties (check_bytes_random_double)
- [22:48:00.961] [SUCCESS] (1070/1618) Curve25519: Group properties (check_bytes_random_sum)
- [22:48:01.137] [SUCCESS] (1071/1618) Curve25519: Group properties (check_bytes_random_multiplication)
- [22:48:01.137] [SUCCESS] (1072/1618) Curve25519: Group properties (zero_scalar_nullifier_one)
- [22:48:01.137] [SUCCESS] (1073/1618) Curve25519: Group properties (zero_scalar_nullifier_zero)
- [22:48:01.146] [SUCCESS] (1074/1618) Curve25519: Group properties (zero_scalar_nullifier_random)
- [22:48:01.155] [SUCCESS] (1075/1618) Curve25519: Group properties (multiply_by_one_does_nothing)
- [22:48:01.164] [SUCCESS] (1076/1618) Curve25519: Group properties (opposite_of_opposite)
- [22:48:01.173] [SUCCESS] (1077/1618) Curve25519: Group properties (opposite_of_opposite_using_scalar)
- [22:48:01.173] [SUCCESS] (1078/1618) Curve25519: Group properties (opposite_of_zero_is_zero)
- [22:48:01.173] [SUCCESS] (1079/1618) Curve25519: Group properties (opposite_of_opposite_of_zero_is_zero)
- [22:48:01.173] [SUCCESS] (1080/1618) Curve25519: Group properties (opposite_of_opposite_of_one_is_one)
- [22:48:01.180] [SUCCESS] (1081/1618) Curve25519: Group properties (opposite_equality)
- [22:48:01.189] [SUCCESS] (1082/1618) Curve25519: Group properties (zero is the identity)
- [22:48:01.710] [SUCCESS] (1083/1618) Curve25519: Group properties (distributivity)
- [22:48:02.053] [SUCCESS] (1084/1618) Curve25519: Group properties (opposite_of_scalar_is_opposite_of_ec)
- [22:48:02.062] [SUCCESS] (1085/1618) Curve25519: Group properties (opposite_existential_property)
- [22:48:02.403] [SUCCESS] (1086/1618) Curve25519: Group properties (mul_by_order_of_base_field_equals_element)
- [22:48:03.420] [SUCCESS] (1087/1618) Curve25519: Group properties (multiplication_properties_on_base_field_element)
- [22:48:03.430] [SUCCESS] (1088/1618) Curve25519: Group properties (double)
- [22:48:03.940] [SUCCESS] (1089/1618) Curve25519: Group properties (additive_associativity_with_scalar)
- [22:48:04.616] [SUCCESS] (1090/1618) Curve25519: Group properties (inverse on scalar)
- [22:48:04.644] [SUCCESS] (1091/1618) Curve25519: Group properties (additive_associativity)
- [22:48:04.663] [SUCCESS] (1092/1618) Curve25519: Group properties (additive_commutativity)
- [22:48:04.663] [SUCCESS] (1093/1618) Curve25519: Group properties (Generator is of prime order)
- [22:48:04.663] [SUCCESS] (1094/1618) Curve25519: equality (zero)
- [22:48:04.663] [SUCCESS] (1095/1618) Curve25519: equality (one)
- [22:48:04.672] [SUCCESS] (1096/1618) Curve25519: equality (random_same_objects)
- [22:48:04.695] [SUCCESS] (1097/1618) Curve 25519 conversions between the different forms: Edwards <-> Montgomery (Points are on both curves)
- [22:48:04.753] [SUCCESS] (1098/1618) Curve 25519 conversions between the different forms: Edwards <-> Montgomery (Addition)
- [22:48:05.591] [SUCCESS] (1099/1618) Curve 25519 conversions between the different forms: Edwards <-> Montgomery (Scalar multiplication)
- [22:48:05.601] [SUCCESS] (1100/1618) Curve25519 edwards form and affine coordinates: value generation (random)
- [22:48:05.601] [SUCCESS] (1101/1618) Curve25519 edwards form and affine coordinates: value generation (negate_with_one)
- [22:48:05.601] [SUCCESS] (1102/1618) Curve25519 edwards form and affine coordinates: value generation (negate_with_zero)
- [22:48:05.611] [SUCCESS] (1103/1618) Curve25519 edwards form and affine coordinates: value generation (negate_with_random)
- [22:48:05.621] [SUCCESS] (1104/1618) Curve25519 edwards form and affine coordinates: value generation (double_with_random)
- [22:48:05.633] [SUCCESS] (1105/1618) Curve25519 edwards form and affine coordinates: value generation (negate generates a valid point)
- [22:48:05.656] [SUCCESS] (1106/1618) Curve25519 edwards form and affine coordinates: value generation (addition generates a valid point)
- [22:48:05.668] [SUCCESS] (1107/1618) Curve25519 edwards form and affine coordinates: value generation (double generates a valid point)
- [22:48:05.919] [SUCCESS] (1108/1618) Curve25519 edwards form and affine coordinates: value generation (scalar multiplication generates a valid point)
- [22:48:05.931] [SUCCESS] (1109/1618) Curve25519 edwards form and affine coordinates: value generation (of_bytes_exn and to_bytes are inverse functions)
- [22:48:05.943] [SUCCESS] (1110/1618) Curve25519 edwards form and affine coordinates: value generation (check bytes on random with to_bytes)
- [22:48:05.943] [SUCCESS] (1111/1618) Curve25519 edwards form and affine coordinates: value generation (double_with_one)
- [22:48:05.943] [SUCCESS] (1112/1618) Curve25519 edwards form and affine coordinates: value generation (double_with_zero)
- [22:48:05.955] [SUCCESS] (1113/1618) Curve25519 edwards form and affine coordinates: Group properties (check_bytes_random)
- [22:48:05.955] [SUCCESS] (1114/1618) Curve25519 edwards form and affine coordinates: Group properties (check_bytes_zero)
- [22:48:05.955] [SUCCESS] (1115/1618) Curve25519 edwards form and affine coordinates: Group properties (check_bytes_one)
- [22:48:05.968] [SUCCESS] (1116/1618) Curve25519 edwards form and affine coordinates: Group properties (check_bytes_random_double)
- [22:48:05.990] [SUCCESS] (1117/1618) Curve25519 edwards form and affine coordinates: Group properties (check_bytes_random_sum)
- [22:48:06.238] [SUCCESS] (1118/1618) Curve25519 edwards form and affine coordinates: Group properties (check_bytes_random_multiplication)
- [22:48:06.238] [SUCCESS] (1119/1618) Curve25519 edwards form and affine coordinates: Group properties (zero_scalar_nullifier_one)
- [22:48:06.238] [SUCCESS] (1120/1618) Curve25519 edwards form and affine coordinates: Group properties (zero_scalar_nullifier_zero)
- [22:48:06.248] [SUCCESS] (1121/1618) Curve25519 edwards form and affine coordinates: Group properties (zero_scalar_nullifier_random)
- [22:48:06.258] [SUCCESS] (1122/1618) Curve25519 edwards form and affine coordinates: Group properties (multiply_by_one_does_nothing)
- [22:48:06.268] [SUCCESS] (1123/1618) Curve25519 edwards form and affine coordinates: Group properties (opposite_of_opposite)
- [22:48:06.278] [SUCCESS] (1124/1618) Curve25519 edwards form and affine coordinates: Group properties (opposite_of_opposite_using_scalar)
- [22:48:06.278] [SUCCESS] (1125/1618) Curve25519 edwards form and affine coordinates: Group properties (opposite_of_zero_is_zero)
- [22:48:06.278] [SUCCESS] (1126/1618) Curve25519 edwards form and affine coordinates: Group properties (opposite_of_opposite_of_zero_is_zero)
- [22:48:06.278] [SUCCESS] (1127/1618) Curve25519 edwards form and affine coordinates: Group properties (opposite_of_opposite_of_one_is_one)
- [22:48:06.287] [SUCCESS] (1128/1618) Curve25519 edwards form and affine coordinates: Group properties (opposite_equality)
- [22:48:06.297] [SUCCESS] (1129/1618) Curve25519 edwards form and affine coordinates: Group properties (zero is the identity)
- [22:48:07.023] [SUCCESS] (1130/1618) Curve25519 edwards form and affine coordinates: Group properties (distributivity)
- [22:48:07.522] [SUCCESS] (1131/1618) Curve25519 edwards form and affine coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec)
- [22:48:07.533] [SUCCESS] (1132/1618) Curve25519 edwards form and affine coordinates: Group properties (opposite_existential_property)
- [22:48:08.027] [SUCCESS] (1133/1618) Curve25519 edwards form and affine coordinates: Group properties (mul_by_order_of_base_field_equals_element)
- [22:48:09.460] [SUCCESS] (1134/1618) Curve25519 edwards form and affine coordinates: Group properties (multiplication_properties_on_base_field_element)
- [22:48:09.471] [SUCCESS] (1135/1618) Curve25519 edwards form and affine coordinates: Group properties (double)
- [22:48:10.191] [SUCCESS] (1136/1618) Curve25519 edwards form and affine coordinates: Group properties (additive_associativity_with_scalar)
- [22:48:11.146] [SUCCESS] (1137/1618) Curve25519 edwards form and affine coordinates: Group properties (inverse on scalar)
- [22:48:11.178] [SUCCESS] (1138/1618) Curve25519 edwards form and affine coordinates: Group properties (additive_associativity)
- [22:48:11.199] [SUCCESS] (1139/1618) Curve25519 edwards form and affine coordinates: Group properties (additive_commutativity)
- [22:48:11.199] [SUCCESS] (1140/1618) Curve25519 edwards form and affine coordinates: Group properties (Generator is of prime order)
- [22:48:11.199] [SUCCESS] (1141/1618) Curve25519 edwards form and affine coordinates: Group properties of Edwards curve (unsafe_from_coordinates do not check the point is on the curve)
- [22:48:11.199] [SUCCESS] (1142/1618) Curve25519 edwards form and affine coordinates: Group properties of Edwards curve (Test check_bytes and of_bytes_[exn/opt] with a different number of bytes than expected)
- [22:48:11.199] [SUCCESS] (1143/1618) Curve25519 edwards form and affine coordinates: equality (zero)
- [22:48:11.199] [SUCCESS] (1144/1618) Curve25519 edwards form and affine coordinates: equality (one)
- [22:48:11.209] [SUCCESS] (1145/1618) Curve25519 edwards form and affine coordinates: equality (random_same_objects)
- [22:48:11.212] [SUCCESS] (1146/1618) BN254 projective form: value generation (random)
- [22:48:11.212] [SUCCESS] (1147/1618) BN254 projective form: value generation (negate_with_one)
- [22:48:11.212] [SUCCESS] (1148/1618) BN254 projective form: value generation (negate_with_zero)
- [22:48:11.215] [SUCCESS] (1149/1618) BN254 projective form: value generation (negate_with_random)
- [22:48:11.219] [SUCCESS] (1150/1618) BN254 projective form: value generation (double_with_random)
- [22:48:11.222] [SUCCESS] (1151/1618) BN254 projective form: value generation (negate generates a valid point)
- [22:48:11.229] [SUCCESS] (1152/1618) BN254 projective form: value generation (addition generates a valid point)
- [22:48:11.233] [SUCCESS] (1153/1618) BN254 projective form: value generation (double generates a valid point)
- [22:48:11.401] [SUCCESS] (1154/1618) BN254 projective form: value generation (scalar multiplication generates a valid point)
- [22:48:11.405] [SUCCESS] (1155/1618) BN254 projective form: value generation (of_bytes_exn and to_bytes are inverse functions)
- [22:48:11.408] [SUCCESS] (1156/1618) BN254 projective form: value generation (check bytes on random with to_bytes)
- [22:48:11.408] [SUCCESS] (1157/1618) BN254 projective form: value generation (double_with_one)
- [22:48:11.408] [SUCCESS] (1158/1618) BN254 projective form: value generation (double_with_zero)
- [22:48:11.408] [SUCCESS] (1159/1618) BN254 projective form: equality (zero)
- [22:48:11.408] [SUCCESS] (1160/1618) BN254 projective form: equality (one)
- [22:48:11.412] [SUCCESS] (1161/1618) BN254 projective form: equality (random_same_objects)
- [22:48:11.415] [SUCCESS] (1162/1618) BN254 projective form: Group properties (check_bytes_random)
- [22:48:11.415] [SUCCESS] (1163/1618) BN254 projective form: Group properties (check_bytes_zero)
- [22:48:11.415] [SUCCESS] (1164/1618) BN254 projective form: Group properties (check_bytes_one)
- [22:48:11.419] [SUCCESS] (1165/1618) BN254 projective form: Group properties (check_bytes_random_double)
- [22:48:11.426] [SUCCESS] (1166/1618) BN254 projective form: Group properties (check_bytes_random_sum)
- [22:48:11.594] [SUCCESS] (1167/1618) BN254 projective form: Group properties (check_bytes_random_multiplication)
- [22:48:11.594] [SUCCESS] (1168/1618) BN254 projective form: Group properties (zero_scalar_nullifier_one)
- [22:48:11.594] [SUCCESS] (1169/1618) BN254 projective form: Group properties (zero_scalar_nullifier_zero)
- [22:48:11.598] [SUCCESS] (1170/1618) BN254 projective form: Group properties (zero_scalar_nullifier_random)
- [22:48:11.601] [SUCCESS] (1171/1618) BN254 projective form: Group properties (multiply_by_one_does_nothing)
- [22:48:11.604] [SUCCESS] (1172/1618) BN254 projective form: Group properties (opposite_of_opposite)
- [22:48:11.607] [SUCCESS] (1173/1618) BN254 projective form: Group properties (opposite_of_opposite_using_scalar)
- [22:48:11.607] [SUCCESS] (1174/1618) BN254 projective form: Group properties (opposite_of_zero_is_zero)
- [22:48:11.608] [SUCCESS] (1175/1618) BN254 projective form: Group properties (opposite_of_opposite_of_zero_is_zero)
- [22:48:11.608] [SUCCESS] (1176/1618) BN254 projective form: Group properties (opposite_of_opposite_of_one_is_one)
- [22:48:11.614] [SUCCESS] (1177/1618) BN254 projective form: Group properties (opposite_equality)
- [22:48:11.618] [SUCCESS] (1178/1618) BN254 projective form: Group properties (zero is the identity)
- [22:48:12.125] [SUCCESS] (1179/1618) BN254 projective form: Group properties (distributivity)
- [22:48:12.459] [SUCCESS] (1180/1618) BN254 projective form: Group properties (opposite_of_scalar_is_opposite_of_ec)
- [22:48:12.463] [SUCCESS] (1181/1618) BN254 projective form: Group properties (opposite_existential_property)
- [22:48:12.795] [SUCCESS] (1182/1618) BN254 projective form: Group properties (mul_by_order_of_base_field_equals_element)
- [22:48:13.797] [SUCCESS] (1183/1618) BN254 projective form: Group properties (multiplication_properties_on_base_field_element)
- [22:48:13.802] [SUCCESS] (1184/1618) BN254 projective form: Group properties (double)
- [22:48:14.306] [SUCCESS] (1185/1618) BN254 projective form: Group properties (additive_associativity_with_scalar)
- [22:48:14.978] [SUCCESS] (1186/1618) BN254 projective form: Group properties (inverse on scalar)
- [22:48:14.989] [SUCCESS] (1187/1618) BN254 projective form: Group properties (additive_associativity)
- [22:48:14.996] [SUCCESS] (1188/1618) BN254 projective form: Group properties (additive_commutativity)
- [22:48:14.996] [SUCCESS] (1189/1618) BN254 projective form: Group properties (Generator is of prime order)
- [22:48:15.000] [SUCCESS] (1190/1618) BN254 jacobian coordinates: value generation (random)
- [22:48:15.000] [SUCCESS] (1191/1618) BN254 jacobian coordinates: value generation (negate_with_one)
- [22:48:15.000] [SUCCESS] (1192/1618) BN254 jacobian coordinates: value generation (negate_with_zero)
- [22:48:15.003] [SUCCESS] (1193/1618) BN254 jacobian coordinates: value generation (negate_with_random)
- [22:48:15.006] [SUCCESS] (1194/1618) BN254 jacobian coordinates: value generation (double_with_random)
- [22:48:15.010] [SUCCESS] (1195/1618) BN254 jacobian coordinates: value generation (negate generates a valid point)
- [22:48:15.017] [SUCCESS] (1196/1618) BN254 jacobian coordinates: value generation (addition generates a valid point)
- [22:48:15.021] [SUCCESS] (1197/1618) BN254 jacobian coordinates: value generation (double generates a valid point)
- [22:48:15.319] [SUCCESS] (1198/1618) BN254 jacobian coordinates: value generation (scalar multiplication generates a valid point)
- [22:48:15.322] [SUCCESS] (1199/1618) BN254 jacobian coordinates: value generation (of_bytes_exn and to_bytes are inverse functions)
- [22:48:15.326] [SUCCESS] (1200/1618) BN254 jacobian coordinates: value generation (check bytes on random with to_bytes)
- [22:48:15.326] [SUCCESS] (1201/1618) BN254 jacobian coordinates: value generation (double_with_one)
- [22:48:15.326] [SUCCESS] (1202/1618) BN254 jacobian coordinates: value generation (double_with_zero)
- [22:48:15.326] [SUCCESS] (1203/1618) BN254 jacobian coordinates: equality (zero)
- [22:48:15.326] [SUCCESS] (1204/1618) BN254 jacobian coordinates: equality (one)
- [22:48:15.329] [SUCCESS] (1205/1618) BN254 jacobian coordinates: equality (random_same_objects)
- [22:48:15.333] [SUCCESS] (1206/1618) BN254 jacobian coordinates: Group properties (check_bytes_random)
- [22:48:15.333] [SUCCESS] (1207/1618) BN254 jacobian coordinates: Group properties (check_bytes_zero)
- [22:48:15.333] [SUCCESS] (1208/1618) BN254 jacobian coordinates: Group properties (check_bytes_one)
- [22:48:15.337] [SUCCESS] (1209/1618) BN254 jacobian coordinates: Group properties (check_bytes_random_double)
- [22:48:15.344] [SUCCESS] (1210/1618) BN254 jacobian coordinates: Group properties (check_bytes_random_sum)
- [22:48:15.643] [SUCCESS] (1211/1618) BN254 jacobian coordinates: Group properties (check_bytes_random_multiplication)
- [22:48:15.643] [SUCCESS] (1212/1618) BN254 jacobian coordinates: Group properties (zero_scalar_nullifier_one)
- [22:48:15.643] [SUCCESS] (1213/1618) BN254 jacobian coordinates: Group properties (zero_scalar_nullifier_zero)
- [22:48:15.647] [SUCCESS] (1214/1618) BN254 jacobian coordinates: Group properties (zero_scalar_nullifier_random)
- [22:48:15.650] [SUCCESS] (1215/1618) BN254 jacobian coordinates: Group properties (multiply_by_one_does_nothing)
- [22:48:15.653] [SUCCESS] (1216/1618) BN254 jacobian coordinates: Group properties (opposite_of_opposite)
- [22:48:15.657] [SUCCESS] (1217/1618) BN254 jacobian coordinates: Group properties (opposite_of_opposite_using_scalar)
- [22:48:15.657] [SUCCESS] (1218/1618) BN254 jacobian coordinates: Group properties (opposite_of_zero_is_zero)
- [22:48:15.657] [SUCCESS] (1219/1618) BN254 jacobian coordinates: Group properties (opposite_of_opposite_of_zero_is_zero)
- [22:48:15.657] [SUCCESS] (1220/1618) BN254 jacobian coordinates: Group properties (opposite_of_opposite_of_one_is_one)
- [22:48:15.669] [SUCCESS] (1221/1618) BN254 jacobian coordinates: Group properties (opposite_equality)
- [22:48:15.672] [SUCCESS] (1222/1618) BN254 jacobian coordinates: Group properties (zero is the identity)
- [22:48:16.572] [SUCCESS] (1223/1618) BN254 jacobian coordinates: Group properties (distributivity)
- [22:48:17.171] [SUCCESS] (1224/1618) BN254 jacobian coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec)
- [22:48:17.175] [SUCCESS] (1225/1618) BN254 jacobian coordinates: Group properties (opposite_existential_property)
- [22:48:17.767] [SUCCESS] (1226/1618) BN254 jacobian coordinates: Group properties (mul_by_order_of_base_field_equals_element)
- [22:48:19.539] [SUCCESS] (1227/1618) BN254 jacobian coordinates: Group properties (multiplication_properties_on_base_field_element)
- [22:48:19.544] [SUCCESS] (1228/1618) BN254 jacobian coordinates: Group properties (double)
- [22:48:20.445] [SUCCESS] (1229/1618) BN254 jacobian coordinates: Group properties (additive_associativity_with_scalar)
- [22:48:21.634] [SUCCESS] (1230/1618) BN254 jacobian coordinates: Group properties (inverse on scalar)
- [22:48:21.648] [SUCCESS] (1231/1618) BN254 jacobian coordinates: Group properties (additive_associativity)
- [22:48:21.656] [SUCCESS] (1232/1618) BN254 jacobian coordinates: Group properties (additive_commutativity)
- [22:48:21.656] [SUCCESS] (1233/1618) BN254 jacobian coordinates: Group properties (Generator is of prime order)
- [22:48:21.659] [SUCCESS] (1234/1618) BN254 affine form: value generation (random)
- [22:48:21.659] [SUCCESS] (1235/1618) BN254 affine form: value generation (negate_with_one)
- [22:48:21.659] [SUCCESS] (1236/1618) BN254 affine form: value generation (negate_with_zero)
- [22:48:21.662] [SUCCESS] (1237/1618) BN254 affine form: value generation (negate_with_random)
- [22:48:21.666] [SUCCESS] (1238/1618) BN254 affine form: value generation (double_with_random)
- [22:48:21.669] [SUCCESS] (1239/1618) BN254 affine form: value generation (negate generates a valid point)
- [22:48:21.676] [SUCCESS] (1240/1618) BN254 affine form: value generation (addition generates a valid point)
- [22:48:21.680] [SUCCESS] (1241/1618) BN254 affine form: value generation (double generates a valid point)
- [22:48:21.979] [SUCCESS] (1242/1618) BN254 affine form: value generation (scalar multiplication generates a valid point)
- [22:48:21.982] [SUCCESS] (1243/1618) BN254 affine form: value generation (of_bytes_exn and to_bytes are inverse functions)
- [22:48:21.985] [SUCCESS] (1244/1618) BN254 affine form: value generation (check bytes on random with to_bytes)
- [22:48:21.985] [SUCCESS] (1245/1618) BN254 affine form: value generation (double_with_one)
- [22:48:21.985] [SUCCESS] (1246/1618) BN254 affine form: value generation (double_with_zero)
- [22:48:21.985] [SUCCESS] (1247/1618) BN254 affine form: equality (zero)
- [22:48:21.985] [SUCCESS] (1248/1618) BN254 affine form: equality (one)
- [22:48:21.988] [SUCCESS] (1249/1618) BN254 affine form: equality (random_same_objects)
- [22:48:21.992] [SUCCESS] (1250/1618) BN254 affine form: Group properties (check_bytes_random)
- [22:48:21.992] [SUCCESS] (1251/1618) BN254 affine form: Group properties (check_bytes_zero)
- [22:48:21.992] [SUCCESS] (1252/1618) BN254 affine form: Group properties (check_bytes_one)
- [22:48:21.996] [SUCCESS] (1253/1618) BN254 affine form: Group properties (check_bytes_random_double)
- [22:48:22.002] [SUCCESS] (1254/1618) BN254 affine form: Group properties (check_bytes_random_sum)
- [22:48:22.301] [SUCCESS] (1255/1618) BN254 affine form: Group properties (check_bytes_random_multiplication)
- [22:48:22.301] [SUCCESS] (1256/1618) BN254 affine form: Group properties (zero_scalar_nullifier_one)
- [22:48:22.301] [SUCCESS] (1257/1618) BN254 affine form: Group properties (zero_scalar_nullifier_zero)
- [22:48:22.305] [SUCCESS] (1258/1618) BN254 affine form: Group properties (zero_scalar_nullifier_random)
- [22:48:22.308] [SUCCESS] (1259/1618) BN254 affine form: Group properties (multiply_by_one_does_nothing)
- [22:48:22.311] [SUCCESS] (1260/1618) BN254 affine form: Group properties (opposite_of_opposite)
- [22:48:22.314] [SUCCESS] (1261/1618) BN254 affine form: Group properties (opposite_of_opposite_using_scalar)
- [22:48:22.314] [SUCCESS] (1262/1618) BN254 affine form: Group properties (opposite_of_zero_is_zero)
- [22:48:22.314] [SUCCESS] (1263/1618) BN254 affine form: Group properties (opposite_of_opposite_of_zero_is_zero)
- [22:48:22.314] [SUCCESS] (1264/1618) BN254 affine form: Group properties (opposite_of_opposite_of_one_is_one)
- [22:48:22.326] [SUCCESS] (1265/1618) BN254 affine form: Group properties (opposite_equality)
- [22:48:22.329] [SUCCESS] (1266/1618) BN254 affine form: Group properties (zero is the identity)
- [22:48:23.227] [SUCCESS] (1267/1618) BN254 affine form: Group properties (distributivity)
- [22:48:23.823] [SUCCESS] (1268/1618) BN254 affine form: Group properties (opposite_of_scalar_is_opposite_of_ec)
- [22:48:23.826] [SUCCESS] (1269/1618) BN254 affine form: Group properties (opposite_existential_property)
- [22:48:24.420] [SUCCESS] (1270/1618) BN254 affine form: Group properties (mul_by_order_of_base_field_equals_element)
- [22:48:26.201] [SUCCESS] (1271/1618) BN254 affine form: Group properties (multiplication_properties_on_base_field_element)
- [22:48:26.206] [SUCCESS] (1272/1618) BN254 affine form: Group properties (double)
- [22:48:27.100] [SUCCESS] (1273/1618) BN254 affine form: Group properties (additive_associativity_with_scalar)
- [22:48:28.286] [SUCCESS] (1274/1618) BN254 affine form: Group properties (inverse on scalar)
- [22:48:28.297] [SUCCESS] (1275/1618) BN254 affine form: Group properties (additive_associativity)
- [22:48:28.304] [SUCCESS] (1276/1618) BN254 affine form: Group properties (additive_commutativity)
- [22:48:28.304] [SUCCESS] (1277/1618) BN254 affine form: Group properties (Generator is of prime order)
- [22:48:28.304] [SUCCESS] (1278/1618) BN254 affine form: Compressed representation (Compressed representation of zero is the bs with zeroes)
- [22:48:28.309] [SUCCESS] (1279/1618) BN254 affine form: Compressed representation (of_compressed_bytes_exn recovers correct point from uncompressed representation)
- [22:48:28.314] [SUCCESS] (1280/1618) BN254 affine form: Compressed representation (of_compressed_bytes_opt recovers correct point from uncompressed representation)
- [22:48:28.314] [SUCCESS] (1281/1618) BN254 affine form: Compressed representation (Compressed version is half the size)
- [22:48:28.317] [SUCCESS] (1282/1618) BN254 affine form: Compressed representation (of_compressed_bytes_exn/opt do not accept uncompressed bytes representation)
- [22:48:28.320] [SUCCESS] (1283/1618) BN254 affine form: Compressed representation (of_bytes_exn/opt do not accept compressed bytes representation)
- [22:48:28.416] [SUCCESS] (1284/1618) BLS12-381 G1 projective form: value generation (random)
- [22:48:28.416] [SUCCESS] (1285/1618) BLS12-381 G1 projective form: value generation (negate_with_one)
- [22:48:28.416] [SUCCESS] (1286/1618) BLS12-381 G1 projective form: value generation (negate_with_zero)
- [22:48:28.511] [SUCCESS] (1287/1618) BLS12-381 G1 projective form: value generation (negate_with_random)
- [22:48:28.607] [SUCCESS] (1288/1618) BLS12-381 G1 projective form: value generation (double_with_random)
- [22:48:28.789] [SUCCESS] (1289/1618) BLS12-381 G1 projective form: value generation (negate generates a valid point)
- [22:48:29.066] [SUCCESS] (1290/1618) BLS12-381 G1 projective form: value generation (addition generates a valid point)
- [22:48:29.248] [SUCCESS] (1291/1618) BLS12-381 G1 projective form: value generation (double generates a valid point)
- [22:48:29.620] [SUCCESS] (1292/1618) BLS12-381 G1 projective form: value generation (scalar multiplication generates a valid point)
- [22:48:29.803] [SUCCESS] (1293/1618) BLS12-381 G1 projective form: value generation (of_bytes_exn and to_bytes are inverse functions)
- [22:48:29.986] [SUCCESS] (1294/1618) BLS12-381 G1 projective form: value generation (check bytes on random with to_bytes)
- [22:48:29.986] [SUCCESS] (1295/1618) BLS12-381 G1 projective form: value generation (double_with_one)
- [22:48:29.986] [SUCCESS] (1296/1618) BLS12-381 G1 projective form: value generation (double_with_zero)
- [22:48:29.986] [SUCCESS] (1297/1618) BLS12-381 G1 projective form: equality (zero)
- [22:48:29.986] [SUCCESS] (1298/1618) BLS12-381 G1 projective form: equality (one)
- [22:48:30.082] [SUCCESS] (1299/1618) BLS12-381 G1 projective form: equality (random_same_objects)
- [22:48:30.265] [SUCCESS] (1300/1618) BLS12-381 G1 projective form: Group properties (check_bytes_random)
- [22:48:30.265] [SUCCESS] (1301/1618) BLS12-381 G1 projective form: Group properties (check_bytes_zero)
- [22:48:30.266] [SUCCESS] (1302/1618) BLS12-381 G1 projective form: Group properties (check_bytes_one)
- [22:48:30.449] [SUCCESS] (1303/1618) BLS12-381 G1 projective form: Group properties (check_bytes_random_double)
- [22:48:30.727] [SUCCESS] (1304/1618) BLS12-381 G1 projective form: Group properties (check_bytes_random_sum)
- [22:48:31.101] [SUCCESS] (1305/1618) BLS12-381 G1 projective form: Group properties (check_bytes_random_multiplication)
- [22:48:31.102] [SUCCESS] (1306/1618) BLS12-381 G1 projective form: Group properties (zero_scalar_nullifier_one)
- [22:48:31.102] [SUCCESS] (1307/1618) BLS12-381 G1 projective form: Group properties (zero_scalar_nullifier_zero)
- [22:48:31.197] [SUCCESS] (1308/1618) BLS12-381 G1 projective form: Group properties (zero_scalar_nullifier_random)
- [22:48:31.293] [SUCCESS] (1309/1618) BLS12-381 G1 projective form: Group properties (multiply_by_one_does_nothing)
- [22:48:31.389] [SUCCESS] (1310/1618) BLS12-381 G1 projective form: Group properties (opposite_of_opposite)
- [22:48:31.485] [SUCCESS] (1311/1618) BLS12-381 G1 projective form: Group properties (opposite_of_opposite_using_scalar)
- [22:48:31.485] [SUCCESS] (1312/1618) BLS12-381 G1 projective form: Group properties (opposite_of_zero_is_zero)
- [22:48:31.485] [SUCCESS] (1313/1618) BLS12-381 G1 projective form: Group properties (opposite_of_opposite_of_zero_is_zero)
- [22:48:31.485] [SUCCESS] (1314/1618) BLS12-381 G1 projective form: Group properties (opposite_of_opposite_of_one_is_one)
- [22:48:31.494] [SUCCESS] (1315/1618) BLS12-381 G1 projective form: Group properties (opposite_equality)
- [22:48:31.591] [SUCCESS] (1316/1618) BLS12-381 G1 projective form: Group properties (zero is the identity)
- [22:48:32.359] [SUCCESS] (1317/1618) BLS12-381 G1 projective form: Group properties (distributivity)
- [22:48:32.837] [SUCCESS] (1318/1618) BLS12-381 G1 projective form: Group properties (opposite_of_scalar_is_opposite_of_ec)
- [22:48:32.932] [SUCCESS] (1319/1618) BLS12-381 G1 projective form: Group properties (opposite_existential_property)
- [22:48:33.408] [SUCCESS] (1320/1618) BLS12-381 G1 projective form: Group properties (mul_by_order_of_base_field_equals_element)
- [22:48:34.654] [SUCCESS] (1321/1618) BLS12-381 G1 projective form: Group properties (multiplication_properties_on_base_field_element)
- [22:48:34.751] [SUCCESS] (1322/1618) BLS12-381 G1 projective form: Group properties (double)
- [22:48:35.423] [SUCCESS] (1323/1618) BLS12-381 G1 projective form: Group properties (additive_associativity_with_scalar)
- [22:48:36.290] [SUCCESS] (1324/1618) BLS12-381 G1 projective form: Group properties (inverse on scalar)
- [22:48:36.578] [SUCCESS] (1325/1618) BLS12-381 G1 projective form: Group properties (additive_associativity)
- [22:48:36.771] [SUCCESS] (1326/1618) BLS12-381 G1 projective form: Group properties (additive_commutativity)
- [22:48:36.771] [SUCCESS] (1327/1618) BLS12-381 G1 projective form: Group properties (Generator is of prime order)
- [22:48:36.967] [SUCCESS] (1328/1618) BLS12-381 G1 affine form: value generation (random)
- [22:48:36.967] [SUCCESS] (1329/1618) BLS12-381 G1 affine form: value generation (negate_with_one)
- [22:48:36.967] [SUCCESS] (1330/1618) BLS12-381 G1 affine form: value generation (negate_with_zero)
- [22:48:37.162] [SUCCESS] (1331/1618) BLS12-381 G1 affine form: value generation (negate_with_random)
- [22:48:37.360] [SUCCESS] (1332/1618) BLS12-381 G1 affine form: value generation (double_with_random)
- [22:48:37.743] [SUCCESS] (1333/1618) BLS12-381 G1 affine form: value generation (negate generates a valid point)
- [22:48:38.321] [SUCCESS] (1334/1618) BLS12-381 G1 affine form: value generation (addition generates a valid point)
- [22:48:38.704] [SUCCESS] (1335/1618) BLS12-381 G1 affine form: value generation (double generates a valid point)
- [22:48:39.485] [SUCCESS] (1336/1618) BLS12-381 G1 affine form: value generation (scalar multiplication generates a valid point)
- [22:48:39.869] [SUCCESS] (1337/1618) BLS12-381 G1 affine form: value generation (of_bytes_exn and to_bytes are inverse functions)
- [22:48:40.252] [SUCCESS] (1338/1618) BLS12-381 G1 affine form: value generation (check bytes on random with to_bytes)
- [22:48:40.252] [SUCCESS] (1339/1618) BLS12-381 G1 affine form: value generation (double_with_one)
- [22:48:40.252] [SUCCESS] (1340/1618) BLS12-381 G1 affine form: value generation (double_with_zero)
- [22:48:40.252] [SUCCESS] (1341/1618) BLS12-381 G1 affine form: equality (zero)
- [22:48:40.252] [SUCCESS] (1342/1618) BLS12-381 G1 affine form: equality (one)
- [22:48:40.448] [SUCCESS] (1343/1618) BLS12-381 G1 affine form: equality (random_same_objects)
- [22:48:40.829] [SUCCESS] (1344/1618) BLS12-381 G1 affine form: Group properties (check_bytes_random)
- [22:48:40.830] [SUCCESS] (1345/1618) BLS12-381 G1 affine form: Group properties (check_bytes_zero)
- [22:48:40.831] [SUCCESS] (1346/1618) BLS12-381 G1 affine form: Group properties (check_bytes_one)
- [22:48:41.214] [SUCCESS] (1347/1618) BLS12-381 G1 affine form: Group properties (check_bytes_random_double)
- [22:48:41.792] [SUCCESS] (1348/1618) BLS12-381 G1 affine form: Group properties (check_bytes_random_sum)
- [22:48:42.573] [SUCCESS] (1349/1618) BLS12-381 G1 affine form: Group properties (check_bytes_random_multiplication)
- [22:48:42.573] [SUCCESS] (1350/1618) BLS12-381 G1 affine form: Group properties (zero_scalar_nullifier_one)
- [22:48:42.573] [SUCCESS] (1351/1618) BLS12-381 G1 affine form: Group properties (zero_scalar_nullifier_zero)
- [22:48:42.769] [SUCCESS] (1352/1618) BLS12-381 G1 affine form: Group properties (zero_scalar_nullifier_random)
- [22:48:42.964] [SUCCESS] (1353/1618) BLS12-381 G1 affine form: Group properties (multiply_by_one_does_nothing)
- [22:48:43.160] [SUCCESS] (1354/1618) BLS12-381 G1 affine form: Group properties (opposite_of_opposite)
- [22:48:43.356] [SUCCESS] (1355/1618) BLS12-381 G1 affine form: Group properties (opposite_of_opposite_using_scalar)
- [22:48:43.356] [SUCCESS] (1356/1618) BLS12-381 G1 affine form: Group properties (opposite_of_zero_is_zero)
- [22:48:43.356] [SUCCESS] (1357/1618) BLS12-381 G1 affine form: Group properties (opposite_of_opposite_of_zero_is_zero)
- [22:48:43.356] [SUCCESS] (1358/1618) BLS12-381 G1 affine form: Group properties (opposite_of_opposite_of_one_is_one)
- [22:48:43.374] [SUCCESS] (1359/1618) BLS12-381 G1 affine form: Group properties (opposite_equality)
- [22:48:43.570] [SUCCESS] (1360/1618) BLS12-381 G1 affine form: Group properties (zero is the identity)
- [22:48:45.161] [SUCCESS] (1361/1618) BLS12-381 G1 affine form: Group properties (distributivity)
- [22:48:46.152] [SUCCESS] (1362/1618) BLS12-381 G1 affine form: Group properties (opposite_of_scalar_is_opposite_of_ec)
- [22:48:46.347] [SUCCESS] (1363/1618) BLS12-381 G1 affine form: Group properties (opposite_existential_property)
- [22:48:47.336] [SUCCESS] (1364/1618) BLS12-381 G1 affine form: Group properties (mul_by_order_of_base_field_equals_element)
- [22:48:49.921] [SUCCESS] (1365/1618) BLS12-381 G1 affine form: Group properties (multiplication_properties_on_base_field_element)
- [22:48:50.119] [SUCCESS] (1366/1618) BLS12-381 G1 affine form: Group properties (double)
- [22:48:51.507] [SUCCESS] (1367/1618) BLS12-381 G1 affine form: Group properties (additive_associativity_with_scalar)
- [22:48:53.287] [SUCCESS] (1368/1618) BLS12-381 G1 affine form: Group properties (inverse on scalar)
- [22:48:53.872] [SUCCESS] (1369/1618) BLS12-381 G1 affine form: Group properties (additive_associativity)
- [22:48:54.262] [SUCCESS] (1370/1618) BLS12-381 G1 affine form: Group properties (additive_commutativity)
- [22:48:54.262] [SUCCESS] (1371/1618) BLS12-381 G1 affine form: Group properties (Generator is of prime order)
- [22:48:54.262] [SUCCESS] (1372/1618) BLS12-381 G1 affine form: Compressed representation (Compressed representation of zero is the bs with zeroes)
- [22:48:54.649] [SUCCESS] (1373/1618) BLS12-381 G1 affine form: Compressed representation (of_compressed_bytes_exn recovers correct point from uncompressed representation)
- [22:48:55.038] [SUCCESS] (1374/1618) BLS12-381 G1 affine form: Compressed representation (of_compressed_bytes_opt recovers correct point from uncompressed representation)
- [22:48:55.040] [SUCCESS] (1375/1618) BLS12-381 G1 affine form: Compressed representation (Compressed version is half the size)
- [22:48:55.236] [SUCCESS] (1376/1618) BLS12-381 G1 affine form: Compressed representation (of_compressed_bytes_exn/opt do not accept uncompressed bytes representation)
- [22:48:55.431] [SUCCESS] (1377/1618) BLS12-381 G1 affine form: Compressed representation (of_bytes_exn/opt do not accept compressed bytes representation)
- [22:48:55.447] [SUCCESS] (1378/1618) Bandersnatch Weierstrass form, affine coordinates: value generation (random)
- [22:48:55.447] [SUCCESS] (1379/1618) Bandersnatch Weierstrass form, affine coordinates: value generation (negate_with_one)
- [22:48:55.447] [SUCCESS] (1380/1618) Bandersnatch Weierstrass form, affine coordinates: value generation (negate_with_zero)
- [22:48:55.463] [SUCCESS] (1381/1618) Bandersnatch Weierstrass form, affine coordinates: value generation (negate_with_random)
- [22:48:55.479] [SUCCESS] (1382/1618) Bandersnatch Weierstrass form, affine coordinates: value generation (double_with_random)
- [22:48:55.497] [SUCCESS] (1383/1618) Bandersnatch Weierstrass form, affine coordinates: value generation (negate generates a valid point)
- [22:48:55.531] [SUCCESS] (1384/1618) Bandersnatch Weierstrass form, affine coordinates: value generation (addition generates a valid point)
- [22:48:55.550] [SUCCESS] (1385/1618) Bandersnatch Weierstrass form, affine coordinates: value generation (double generates a valid point)
- [22:48:55.863] [SUCCESS] (1386/1618) Bandersnatch Weierstrass form, affine coordinates: value generation (scalar multiplication generates a valid point)
- [22:48:55.880] [SUCCESS] (1387/1618) Bandersnatch Weierstrass form, affine coordinates: value generation (of_bytes_exn and to_bytes are inverse functions)
- [22:48:55.898] [SUCCESS] (1388/1618) Bandersnatch Weierstrass form, affine coordinates: value generation (check bytes on random with to_bytes)
- [22:48:55.898] [SUCCESS] (1389/1618) Bandersnatch Weierstrass form, affine coordinates: value generation (double_with_one)
- [22:48:55.898] [SUCCESS] (1390/1618) Bandersnatch Weierstrass form, affine coordinates: value generation (double_with_zero)
- [22:48:55.898] [SUCCESS] (1391/1618) Bandersnatch Weierstrass form, affine coordinates: equality (zero)
- [22:48:55.898] [SUCCESS] (1392/1618) Bandersnatch Weierstrass form, affine coordinates: equality (one)
- [22:48:55.914] [SUCCESS] (1393/1618) Bandersnatch Weierstrass form, affine coordinates: equality (random_same_objects)
- [22:48:55.932] [SUCCESS] (1394/1618) Bandersnatch Weierstrass form, affine coordinates: Group properties (check_bytes_random)
- [22:48:55.932] [SUCCESS] (1395/1618) Bandersnatch Weierstrass form, affine coordinates: Group properties (check_bytes_zero)
- [22:48:55.932] [SUCCESS] (1396/1618) Bandersnatch Weierstrass form, affine coordinates: Group properties (check_bytes_one)
- [22:48:55.951] [SUCCESS] (1397/1618) Bandersnatch Weierstrass form, affine coordinates: Group properties (check_bytes_random_double)
- [22:48:55.985] [SUCCESS] (1398/1618) Bandersnatch Weierstrass form, affine coordinates: Group properties (check_bytes_random_sum)
- [22:48:56.299] [SUCCESS] (1399/1618) Bandersnatch Weierstrass form, affine coordinates: Group properties (check_bytes_random_multiplication)
- [22:48:56.299] [SUCCESS] (1400/1618) Bandersnatch Weierstrass form, affine coordinates: Group properties (zero_scalar_nullifier_one)
- [22:48:56.299] [SUCCESS] (1401/1618) Bandersnatch Weierstrass form, affine coordinates: Group properties (zero_scalar_nullifier_zero)
- [22:48:56.314] [SUCCESS] (1402/1618) Bandersnatch Weierstrass form, affine coordinates: Group properties (zero_scalar_nullifier_random)
- [22:48:56.330] [SUCCESS] (1403/1618) Bandersnatch Weierstrass form, affine coordinates: Group properties (multiply_by_one_does_nothing)
- [22:48:56.346] [SUCCESS] (1404/1618) Bandersnatch Weierstrass form, affine coordinates: Group properties (opposite_of_opposite)
- [22:48:56.362] [SUCCESS] (1405/1618) Bandersnatch Weierstrass form, affine coordinates: Group properties (opposite_of_opposite_using_scalar)
- [22:48:56.362] [SUCCESS] (1406/1618) Bandersnatch Weierstrass form, affine coordinates: Group properties (opposite_of_zero_is_zero)
- [22:48:56.362] [SUCCESS] (1407/1618) Bandersnatch Weierstrass form, affine coordinates: Group properties (opposite_of_opposite_of_zero_is_zero)
- [22:48:56.362] [SUCCESS] (1408/1618) Bandersnatch Weierstrass form, affine coordinates: Group properties (opposite_of_opposite_of_one_is_one)
- [22:48:56.374] [SUCCESS] (1409/1618) Bandersnatch Weierstrass form, affine coordinates: Group properties (opposite_equality)
- [22:48:56.390] [SUCCESS] (1410/1618) Bandersnatch Weierstrass form, affine coordinates: Group properties (zero is the identity)
- [22:48:57.311] [SUCCESS] (1411/1618) Bandersnatch Weierstrass form, affine coordinates: Group properties (distributivity)
- [22:48:57.920] [SUCCESS] (1412/1618) Bandersnatch Weierstrass form, affine coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec)
- [22:48:57.936] [SUCCESS] (1413/1618) Bandersnatch Weierstrass form, affine coordinates: Group properties (opposite_existential_property)
- [22:48:58.544] [SUCCESS] (1414/1618) Bandersnatch Weierstrass form, affine coordinates: Group properties (mul_by_order_of_base_field_equals_element)
- [22:49:00.335] [SUCCESS] (1415/1618) Bandersnatch Weierstrass form, affine coordinates: Group properties (multiplication_properties_on_base_field_element)
- [22:49:00.352] [SUCCESS] (1416/1618) Bandersnatch Weierstrass form, affine coordinates: Group properties (double)
- [22:49:01.259] [SUCCESS] (1417/1618) Bandersnatch Weierstrass form, affine coordinates: Group properties (additive_associativity_with_scalar)
- [22:49:02.471] [SUCCESS] (1418/1618) Bandersnatch Weierstrass form, affine coordinates: Group properties (inverse on scalar)
- [22:49:02.522] [SUCCESS] (1419/1618) Bandersnatch Weierstrass form, affine coordinates: Group properties (additive_associativity)
- [22:49:02.555] [SUCCESS] (1420/1618) Bandersnatch Weierstrass form, affine coordinates: Group properties (additive_commutativity)
- [22:49:02.555] [SUCCESS] (1421/1618) Bandersnatch Weierstrass form, affine coordinates: Group properties (Generator is of prime order)
- [22:49:02.555] [SUCCESS] (1422/1618) Bandersnatch Weierstrass form, affine coordinates: Compressed representation (Compressed representation of zero is the bs with zeroes)
- [22:49:02.585] [SUCCESS] (1423/1618) Bandersnatch Weierstrass form, affine coordinates: Compressed representation (of_compressed_bytes_exn recovers correct point from uncompressed representation)
- [22:49:02.616] [SUCCESS] (1424/1618) Bandersnatch Weierstrass form, affine coordinates: Compressed representation (of_compressed_bytes_opt recovers correct point from uncompressed representation)
- [22:49:02.616] [SUCCESS] (1425/1618) Bandersnatch Weierstrass form, affine coordinates: Compressed representation (Compressed version is half the size)
- [22:49:02.632] [SUCCESS] (1426/1618) Bandersnatch Weierstrass form, affine coordinates: Compressed representation (of_compressed_bytes_exn/opt do not accept uncompressed bytes representation)
- [22:49:02.648] [SUCCESS] (1427/1618) Bandersnatch Weierstrass form, affine coordinates: Compressed representation (of_bytes_exn/opt do not accept compressed bytes representation)
- [22:49:02.663] [SUCCESS] (1428/1618) Bandersnatch Montgomery form and affine coordinates: value generation (random)
- [22:49:02.663] [SUCCESS] (1429/1618) Bandersnatch Montgomery form and affine coordinates: value generation (negate_with_one)
- [22:49:02.663] [SUCCESS] (1430/1618) Bandersnatch Montgomery form and affine coordinates: value generation (negate_with_zero)
- [22:49:02.678] [SUCCESS] (1431/1618) Bandersnatch Montgomery form and affine coordinates: value generation (negate_with_random)
- [22:49:02.693] [SUCCESS] (1432/1618) Bandersnatch Montgomery form and affine coordinates: value generation (double_with_random)
- [22:49:02.709] [SUCCESS] (1433/1618) Bandersnatch Montgomery form and affine coordinates: value generation (negate generates a valid point)
- [22:49:02.741] [SUCCESS] (1434/1618) Bandersnatch Montgomery form and affine coordinates: value generation (addition generates a valid point)
- [22:49:02.758] [SUCCESS] (1435/1618) Bandersnatch Montgomery form and affine coordinates: value generation (double generates a valid point)
- [22:49:02.943] [SUCCESS] (1436/1618) Bandersnatch Montgomery form and affine coordinates: value generation (scalar multiplication generates a valid point)
- [22:49:02.959] [SUCCESS] (1437/1618) Bandersnatch Montgomery form and affine coordinates: value generation (of_bytes_exn and to_bytes are inverse functions)
- [22:49:02.975] [SUCCESS] (1438/1618) Bandersnatch Montgomery form and affine coordinates: value generation (check bytes on random with to_bytes)
- [22:49:02.975] [SUCCESS] (1439/1618) Bandersnatch Montgomery form and affine coordinates: value generation (double_with_one)
- [22:49:02.975] [SUCCESS] (1440/1618) Bandersnatch Montgomery form and affine coordinates: value generation (double_with_zero)
- [22:49:02.991] [SUCCESS] (1441/1618) Bandersnatch Montgomery form and affine coordinates: Group properties (check_bytes_random)
- [22:49:02.991] [SUCCESS] (1442/1618) Bandersnatch Montgomery form and affine coordinates: Group properties (check_bytes_zero)
- [22:49:02.991] [SUCCESS] (1443/1618) Bandersnatch Montgomery form and affine coordinates: Group properties (check_bytes_one)
- [22:49:03.008] [SUCCESS] (1444/1618) Bandersnatch Montgomery form and affine coordinates: Group properties (check_bytes_random_double)
- [22:49:03.040] [SUCCESS] (1445/1618) Bandersnatch Montgomery form and affine coordinates: Group properties (check_bytes_random_sum)
- [22:49:03.226] [SUCCESS] (1446/1618) Bandersnatch Montgomery form and affine coordinates: Group properties (check_bytes_random_multiplication)
- [22:49:03.226] [SUCCESS] (1447/1618) Bandersnatch Montgomery form and affine coordinates: Group properties (zero_scalar_nullifier_one)
- [22:49:03.226] [SUCCESS] (1448/1618) Bandersnatch Montgomery form and affine coordinates: Group properties (zero_scalar_nullifier_zero)
- [22:49:03.241] [SUCCESS] (1449/1618) Bandersnatch Montgomery form and affine coordinates: Group properties (zero_scalar_nullifier_random)
- [22:49:03.256] [SUCCESS] (1450/1618) Bandersnatch Montgomery form and affine coordinates: Group properties (multiply_by_one_does_nothing)
- [22:49:03.271] [SUCCESS] (1451/1618) Bandersnatch Montgomery form and affine coordinates: Group properties (opposite_of_opposite)
- [22:49:03.286] [SUCCESS] (1452/1618) Bandersnatch Montgomery form and affine coordinates: Group properties (opposite_of_opposite_using_scalar)
- [22:49:03.286] [SUCCESS] (1453/1618) Bandersnatch Montgomery form and affine coordinates: Group properties (opposite_of_zero_is_zero)
- [22:49:03.286] [SUCCESS] (1454/1618) Bandersnatch Montgomery form and affine coordinates: Group properties (opposite_of_opposite_of_zero_is_zero)
- [22:49:03.286] [SUCCESS] (1455/1618) Bandersnatch Montgomery form and affine coordinates: Group properties (opposite_of_opposite_of_one_is_one)
- [22:49:03.293] [SUCCESS] (1456/1618) Bandersnatch Montgomery form and affine coordinates: Group properties (opposite_equality)
- [22:49:03.308] [SUCCESS] (1457/1618) Bandersnatch Montgomery form and affine coordinates: Group properties (zero is the identity)
- [22:49:03.846] [SUCCESS] (1458/1618) Bandersnatch Montgomery form and affine coordinates: Group properties (distributivity)
- [22:49:04.199] [SUCCESS] (1459/1618) Bandersnatch Montgomery form and affine coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec)
- [22:49:04.214] [SUCCESS] (1460/1618) Bandersnatch Montgomery form and affine coordinates: Group properties (opposite_existential_property)
- [22:49:04.566] [SUCCESS] (1461/1618) Bandersnatch Montgomery form and affine coordinates: Group properties (mul_by_order_of_base_field_equals_element)
- [22:49:05.610] [SUCCESS] (1462/1618) Bandersnatch Montgomery form and affine coordinates: Group properties (multiplication_properties_on_base_field_element)
- [22:49:05.626] [SUCCESS] (1463/1618) Bandersnatch Montgomery form and affine coordinates: Group properties (double)
- [22:49:06.153] [SUCCESS] (1464/1618) Bandersnatch Montgomery form and affine coordinates: Group properties (additive_associativity_with_scalar)
- [22:49:06.843] [SUCCESS] (1465/1618) Bandersnatch Montgomery form and affine coordinates: Group properties (inverse on scalar)
- [22:49:06.890] [SUCCESS] (1466/1618) Bandersnatch Montgomery form and affine coordinates: Group properties (additive_associativity)
- [22:49:06.921] [SUCCESS] (1467/1618) Bandersnatch Montgomery form and affine coordinates: Group properties (additive_commutativity)
- [22:49:06.921] [SUCCESS] (1468/1618) Bandersnatch Montgomery form and affine coordinates: Group properties (Generator is of prime order)
- [22:49:06.921] [SUCCESS] (1469/1618) Bandersnatch Montgomery form and affine coordinates: equality (zero)
- [22:49:06.921] [SUCCESS] (1470/1618) Bandersnatch Montgomery form and affine coordinates: equality (one)
- [22:49:06.936] [SUCCESS] (1471/1618) Bandersnatch Montgomery form and affine coordinates: equality (random_same_objects)
- [22:49:06.952] [SUCCESS] (1472/1618) Bandersnatch Edwards form, affine coordinates: value generation (random)
- [22:49:06.952] [SUCCESS] (1473/1618) Bandersnatch Edwards form, affine coordinates: value generation (negate_with_one)
- [22:49:06.952] [SUCCESS] (1474/1618) Bandersnatch Edwards form, affine coordinates: value generation (negate_with_zero)
- [22:49:06.967] [SUCCESS] (1475/1618) Bandersnatch Edwards form, affine coordinates: value generation (negate_with_random)
- [22:49:06.984] [SUCCESS] (1476/1618) Bandersnatch Edwards form, affine coordinates: value generation (double_with_random)
- [22:49:07.001] [SUCCESS] (1477/1618) Bandersnatch Edwards form, affine coordinates: value generation (negate generates a valid point)
- [22:49:07.035] [SUCCESS] (1478/1618) Bandersnatch Edwards form, affine coordinates: value generation (addition generates a valid point)
- [22:49:07.053] [SUCCESS] (1479/1618) Bandersnatch Edwards form, affine coordinates: value generation (double generates a valid point)
- [22:49:07.308] [SUCCESS] (1480/1618) Bandersnatch Edwards form, affine coordinates: value generation (scalar multiplication generates a valid point)
- [22:49:07.325] [SUCCESS] (1481/1618) Bandersnatch Edwards form, affine coordinates: value generation (of_bytes_exn and to_bytes are inverse functions)
- [22:49:07.342] [SUCCESS] (1482/1618) Bandersnatch Edwards form, affine coordinates: value generation (check bytes on random with to_bytes)
- [22:49:07.342] [SUCCESS] (1483/1618) Bandersnatch Edwards form, affine coordinates: value generation (double_with_one)
- [22:49:07.343] [SUCCESS] (1484/1618) Bandersnatch Edwards form, affine coordinates: value generation (double_with_zero)
- [22:49:07.360] [SUCCESS] (1485/1618) Bandersnatch Edwards form, affine coordinates: Group properties (check_bytes_random)
- [22:49:07.360] [SUCCESS] (1486/1618) Bandersnatch Edwards form, affine coordinates: Group properties (check_bytes_zero)
- [22:49:07.360] [SUCCESS] (1487/1618) Bandersnatch Edwards form, affine coordinates: Group properties (check_bytes_one)
- [22:49:07.378] [SUCCESS] (1488/1618) Bandersnatch Edwards form, affine coordinates: Group properties (check_bytes_random_double)
- [22:49:07.411] [SUCCESS] (1489/1618) Bandersnatch Edwards form, affine coordinates: Group properties (check_bytes_random_sum)
- [22:49:07.666] [SUCCESS] (1490/1618) Bandersnatch Edwards form, affine coordinates: Group properties (check_bytes_random_multiplication)
- [22:49:07.666] [SUCCESS] (1491/1618) Bandersnatch Edwards form, affine coordinates: Group properties (zero_scalar_nullifier_one)
- [22:49:07.666] [SUCCESS] (1492/1618) Bandersnatch Edwards form, affine coordinates: Group properties (zero_scalar_nullifier_zero)
- [22:49:07.682] [SUCCESS] (1493/1618) Bandersnatch Edwards form, affine coordinates: Group properties (zero_scalar_nullifier_random)
- [22:49:07.698] [SUCCESS] (1494/1618) Bandersnatch Edwards form, affine coordinates: Group properties (multiply_by_one_does_nothing)
- [22:49:07.714] [SUCCESS] (1495/1618) Bandersnatch Edwards form, affine coordinates: Group properties (opposite_of_opposite)
- [22:49:07.730] [SUCCESS] (1496/1618) Bandersnatch Edwards form, affine coordinates: Group properties (opposite_of_opposite_using_scalar)
- [22:49:07.730] [SUCCESS] (1497/1618) Bandersnatch Edwards form, affine coordinates: Group properties (opposite_of_zero_is_zero)
- [22:49:07.730] [SUCCESS] (1498/1618) Bandersnatch Edwards form, affine coordinates: Group properties (opposite_of_opposite_of_zero_is_zero)
- [22:49:07.730] [SUCCESS] (1499/1618) Bandersnatch Edwards form, affine coordinates: Group properties (opposite_of_opposite_of_one_is_one)
- [22:49:07.739] [SUCCESS] (1500/1618) Bandersnatch Edwards form, affine coordinates: Group properties (opposite_equality)
- [22:49:07.756] [SUCCESS] (1501/1618) Bandersnatch Edwards form, affine coordinates: Group properties (zero is the identity)
- [22:49:08.502] [SUCCESS] (1502/1618) Bandersnatch Edwards form, affine coordinates: Group properties (distributivity)
- [22:49:08.992] [SUCCESS] (1503/1618) Bandersnatch Edwards form, affine coordinates: Group properties (opposite_of_scalar_is_opposite_of_ec)
- [22:49:09.009] [SUCCESS] (1504/1618) Bandersnatch Edwards form, affine coordinates: Group properties (opposite_existential_property)
- [22:49:09.499] [SUCCESS] (1505/1618) Bandersnatch Edwards form, affine coordinates: Group properties (mul_by_order_of_base_field_equals_element)
- [22:49:10.947] [SUCCESS] (1506/1618) Bandersnatch Edwards form, affine coordinates: Group properties (multiplication_properties_on_base_field_element)
- [22:49:10.964] [SUCCESS] (1507/1618) Bandersnatch Edwards form, affine coordinates: Group properties (double)
- [22:49:11.695] [SUCCESS] (1508/1618) Bandersnatch Edwards form, affine coordinates: Group properties (additive_associativity_with_scalar)
- [22:49:12.662] [SUCCESS] (1509/1618) Bandersnatch Edwards form, affine coordinates: Group properties (inverse on scalar)
- [22:49:12.712] [SUCCESS] (1510/1618) Bandersnatch Edwards form, affine coordinates: Group properties (additive_associativity)
- [22:49:12.745] [SUCCESS] (1511/1618) Bandersnatch Edwards form, affine coordinates: Group properties (additive_commutativity)
- [22:49:12.745] [SUCCESS] (1512/1618) Bandersnatch Edwards form, affine coordinates: Group properties (Generator is of prime order)
- [22:49:12.745] [SUCCESS] (1513/1618) Bandersnatch Edwards form, affine coordinates: Group properties of Edwards curve (unsafe_from_coordinates do not check the point is on the curve)
- [22:49:12.745] [SUCCESS] (1514/1618) Bandersnatch Edwards form, affine coordinates: Group properties of Edwards curve (Test check_bytes and of_bytes_[exn/opt] with a different number of bytes than expected)
- [22:49:12.745] [SUCCESS] (1515/1618) Bandersnatch Edwards form, affine coordinates: equality (zero)
- [22:49:12.745] [SUCCESS] (1516/1618) Bandersnatch Edwards form, affine coordinates: equality (one)
- [22:49:12.761] [SUCCESS] (1517/1618) Bandersnatch Edwards form, affine coordinates: equality (random_same_objects)
- [22:49:12.762] [SUCCESS] (1518/1618) BabyJubjub reduced twisted edwards form: Vectors (test random coordinates u, v do not give a point on the curve)
- [22:49:12.777] [SUCCESS] (1519/1618) BabyJubjub reduced twisted edwards form: value generation (random)
- [22:49:12.777] [SUCCESS] (1520/1618) BabyJubjub reduced twisted edwards form: value generation (negate_with_one)
- [22:49:12.777] [SUCCESS] (1521/1618) BabyJubjub reduced twisted edwards form: value generation (negate_with_zero)
- [22:49:12.792] [SUCCESS] (1522/1618) BabyJubjub reduced twisted edwards form: value generation (negate_with_random)
- [22:49:12.807] [SUCCESS] (1523/1618) BabyJubjub reduced twisted edwards form: value generation (double_with_random)
- [22:49:12.825] [SUCCESS] (1524/1618) BabyJubjub reduced twisted edwards form: value generation (negate generates a valid point)
- [22:49:12.857] [SUCCESS] (1525/1618) BabyJubjub reduced twisted edwards form: value generation (addition generates a valid point)
- [22:49:12.875] [SUCCESS] (1526/1618) BabyJubjub reduced twisted edwards form: value generation (double generates a valid point)
- [22:49:13.129] [SUCCESS] (1527/1618) BabyJubjub reduced twisted edwards form: value generation (scalar multiplication generates a valid point)
- [22:49:13.146] [SUCCESS] (1528/1618) BabyJubjub reduced twisted edwards form: value generation (of_bytes_exn and to_bytes are inverse functions)
- [22:49:13.164] [SUCCESS] (1529/1618) BabyJubjub reduced twisted edwards form: value generation (check bytes on random with to_bytes)
- [22:49:13.164] [SUCCESS] (1530/1618) BabyJubjub reduced twisted edwards form: value generation (double_with_one)
- [22:49:13.164] [SUCCESS] (1531/1618) BabyJubjub reduced twisted edwards form: value generation (double_with_zero)
- [22:49:13.164] [SUCCESS] (1532/1618) BabyJubjub reduced twisted edwards form: Group properties of Edwards curve (unsafe_from_coordinates do not check the point is on the curve)
- [22:49:13.164] [SUCCESS] (1533/1618) BabyJubjub reduced twisted edwards form: Group properties of Edwards curve (Test check_bytes and of_bytes_[exn/opt] with a different number of bytes than expected)
- [22:49:13.181] [SUCCESS] (1534/1618) BabyJubjub reduced twisted edwards form: Group properties (check_bytes_random)
- [22:49:13.181] [SUCCESS] (1535/1618) BabyJubjub reduced twisted edwards form: Group properties (check_bytes_zero)
- [22:49:13.181] [SUCCESS] (1536/1618) BabyJubjub reduced twisted edwards form: Group properties (check_bytes_one)
- [22:49:13.199] [SUCCESS] (1537/1618) BabyJubjub reduced twisted edwards form: Group properties (check_bytes_random_double)
- [22:49:13.231] [SUCCESS] (1538/1618) BabyJubjub reduced twisted edwards form: Group properties (check_bytes_random_sum)
- [22:49:13.486] [SUCCESS] (1539/1618) BabyJubjub reduced twisted edwards form: Group properties (check_bytes_random_multiplication)
- [22:49:13.486] [SUCCESS] (1540/1618) BabyJubjub reduced twisted edwards form: Group properties (zero_scalar_nullifier_one)
- [22:49:13.486] [SUCCESS] (1541/1618) BabyJubjub reduced twisted edwards form: Group properties (zero_scalar_nullifier_zero)
- [22:49:13.501] [SUCCESS] (1542/1618) BabyJubjub reduced twisted edwards form: Group properties (zero_scalar_nullifier_random)
- [22:49:13.516] [SUCCESS] (1543/1618) BabyJubjub reduced twisted edwards form: Group properties (multiply_by_one_does_nothing)
- [22:49:13.531] [SUCCESS] (1544/1618) BabyJubjub reduced twisted edwards form: Group properties (opposite_of_opposite)
- [22:49:13.547] [SUCCESS] (1545/1618) BabyJubjub reduced twisted edwards form: Group properties (opposite_of_opposite_using_scalar)
- [22:49:13.547] [SUCCESS] (1546/1618) BabyJubjub reduced twisted edwards form: Group properties (opposite_of_zero_is_zero)
- [22:49:13.547] [SUCCESS] (1547/1618) BabyJubjub reduced twisted edwards form: Group properties (opposite_of_opposite_of_zero_is_zero)
- [22:49:13.547] [SUCCESS] (1548/1618) BabyJubjub reduced twisted edwards form: Group properties (opposite_of_opposite_of_one_is_one)
- [22:49:13.557] [SUCCESS] (1549/1618) BabyJubjub reduced twisted edwards form: Group properties (opposite_equality)
- [22:49:13.572] [SUCCESS] (1550/1618) BabyJubjub reduced twisted edwards form: Group properties (zero is the identity)
- [22:49:14.316] [SUCCESS] (1551/1618) BabyJubjub reduced twisted edwards form: Group properties (distributivity)
- [22:49:14.806] [SUCCESS] (1552/1618) BabyJubjub reduced twisted edwards form: Group properties (opposite_of_scalar_is_opposite_of_ec)
- [22:49:14.822] [SUCCESS] (1553/1618) BabyJubjub reduced twisted edwards form: Group properties (opposite_existential_property)
- [22:49:15.311] [SUCCESS] (1554/1618) BabyJubjub reduced twisted edwards form: Group properties (mul_by_order_of_base_field_equals_element)
- [22:49:16.747] [SUCCESS] (1555/1618) BabyJubjub reduced twisted edwards form: Group properties (multiplication_properties_on_base_field_element)
- [22:49:16.763] [SUCCESS] (1556/1618) BabyJubjub reduced twisted edwards form: Group properties (double)
- [22:49:17.487] [SUCCESS] (1557/1618) BabyJubjub reduced twisted edwards form: Group properties (additive_associativity_with_scalar)
- [22:49:18.450] [SUCCESS] (1558/1618) BabyJubjub reduced twisted edwards form: Group properties (inverse on scalar)
- [22:49:18.497] [SUCCESS] (1559/1618) BabyJubjub reduced twisted edwards form: Group properties (additive_associativity)
- [22:49:18.528] [SUCCESS] (1560/1618) BabyJubjub reduced twisted edwards form: Group properties (additive_commutativity)
- [22:49:18.528] [SUCCESS] (1561/1618) BabyJubjub reduced twisted edwards form: Group properties (Generator is of prime order)
- [22:49:18.528] [SUCCESS] (1562/1618) BabyJubjub reduced twisted edwards form: Serialisation (of_bytes_exn and to_bytes are inverse functions)
- [22:49:18.528] [SUCCESS] (1563/1618) BabyJubjub reduced twisted edwards form: Serialisation (of_bytes_opt and to_bytes are inverse functions)
- [22:49:18.528] [SUCCESS] (1564/1618) BabyJubjub reduced twisted edwards form: equality (zero)
- [22:49:18.528] [SUCCESS] (1565/1618) BabyJubjub reduced twisted edwards form: equality (one)
- [22:49:18.543] [SUCCESS] (1566/1618) BabyJubjub reduced twisted edwards form: equality (random_same_objects)
- [22:49:18.544] [SUCCESS] (1567/1618) BabyJubjub: Vectors (test vectors addition)
- [22:49:18.546] [SUCCESS] (1568/1618) BabyJubjub: Vectors (test scalar multiplication)
- [22:49:18.547] [SUCCESS] (1569/1618) BabyJubjub: Vectors (test random coordinates u, v do not give a point on the curve)
- [22:49:18.547] [SUCCESS] (1570/1618) BabyJubjub: Vectors (test vectors doubling)
- [22:49:18.562] [SUCCESS] (1571/1618) BabyJubjub: value generation (random)
- [22:49:18.562] [SUCCESS] (1572/1618) BabyJubjub: value generation (negate_with_one)
- [22:49:18.562] [SUCCESS] (1573/1618) BabyJubjub: value generation (negate_with_zero)
- [22:49:18.577] [SUCCESS] (1574/1618) BabyJubjub: value generation (negate_with_random)
- [22:49:18.592] [SUCCESS] (1575/1618) BabyJubjub: value generation (double_with_random)
- [22:49:18.609] [SUCCESS] (1576/1618) BabyJubjub: value generation (negate generates a valid point)
- [22:49:18.642] [SUCCESS] (1577/1618) BabyJubjub: value generation (addition generates a valid point)
- [22:49:18.659] [SUCCESS] (1578/1618) BabyJubjub: value generation (double generates a valid point)
- [22:49:18.912] [SUCCESS] (1579/1618) BabyJubjub: value generation (scalar multiplication generates a valid point)
- [22:49:18.929] [SUCCESS] (1580/1618) BabyJubjub: value generation (of_bytes_exn and to_bytes are inverse functions)
- [22:49:18.946] [SUCCESS] (1581/1618) BabyJubjub: value generation (check bytes on random with to_bytes)
- [22:49:18.946] [SUCCESS] (1582/1618) BabyJubjub: value generation (double_with_one)
- [22:49:18.946] [SUCCESS] (1583/1618) BabyJubjub: value generation (double_with_zero)
- [22:49:18.963] [SUCCESS] (1584/1618) BabyJubjub: Group properties (check_bytes_random)
- [22:49:18.963] [SUCCESS] (1585/1618) BabyJubjub: Group properties (check_bytes_zero)
- [22:49:18.963] [SUCCESS] (1586/1618) BabyJubjub: Group properties (check_bytes_one)
- [22:49:18.981] [SUCCESS] (1587/1618) BabyJubjub: Group properties (check_bytes_random_double)
- [22:49:19.013] [SUCCESS] (1588/1618) BabyJubjub: Group properties (check_bytes_random_sum)
- [22:49:19.264] [SUCCESS] (1589/1618) BabyJubjub: Group properties (check_bytes_random_multiplication)
- [22:49:19.264] [SUCCESS] (1590/1618) BabyJubjub: Group properties (zero_scalar_nullifier_one)
- [22:49:19.264] [SUCCESS] (1591/1618) BabyJubjub: Group properties (zero_scalar_nullifier_zero)
- [22:49:19.279] [SUCCESS] (1592/1618) BabyJubjub: Group properties (zero_scalar_nullifier_random)
- [22:49:19.294] [SUCCESS] (1593/1618) BabyJubjub: Group properties (multiply_by_one_does_nothing)
- [22:49:19.309] [SUCCESS] (1594/1618) BabyJubjub: Group properties (opposite_of_opposite)
- [22:49:19.324] [SUCCESS] (1595/1618) BabyJubjub: Group properties (opposite_of_opposite_using_scalar)
- [22:49:19.324] [SUCCESS] (1596/1618) BabyJubjub: Group properties (opposite_of_zero_is_zero)
- [22:49:19.324] [SUCCESS] (1597/1618) BabyJubjub: Group properties (opposite_of_opposite_of_zero_is_zero)
- [22:49:19.324] [SUCCESS] (1598/1618) BabyJubjub: Group properties (opposite_of_opposite_of_one_is_one)
- [22:49:19.334] [SUCCESS] (1599/1618) BabyJubjub: Group properties (opposite_equality)
- [22:49:19.349] [SUCCESS] (1600/1618) BabyJubjub: Group properties (zero is the identity)
- [22:49:20.087] [SUCCESS] (1601/1618) BabyJubjub: Group properties (distributivity)
- [22:49:20.572] [SUCCESS] (1602/1618) BabyJubjub: Group properties (opposite_of_scalar_is_opposite_of_ec)
- [22:49:20.588] [SUCCESS] (1603/1618) BabyJubjub: Group properties (opposite_existential_property)
- [22:49:21.072] [SUCCESS] (1604/1618) BabyJubjub: Group properties (mul_by_order_of_base_field_equals_element)
- [22:49:22.499] [SUCCESS] (1605/1618) BabyJubjub: Group properties (multiplication_properties_on_base_field_element)
- [22:49:22.515] [SUCCESS] (1606/1618) BabyJubjub: Group properties (double)
- [22:49:23.235] [SUCCESS] (1607/1618) BabyJubjub: Group properties (additive_associativity_with_scalar)
- [22:49:24.193] [SUCCESS] (1608/1618) BabyJubjub: Group properties (inverse on scalar)
- [22:49:24.240] [SUCCESS] (1609/1618) BabyJubjub: Group properties (additive_associativity)
- [22:49:24.271] [SUCCESS] (1610/1618) BabyJubjub: Group properties (additive_commutativity)
- [22:49:24.271] [SUCCESS] (1611/1618) BabyJubjub: Group properties (Generator is of prime order)
- [22:49:24.271] [SUCCESS] (1612/1618) BabyJubjub: Serialisation (of_bytes_exn and to_bytes are inverse functions)
- [22:49:24.272] [SUCCESS] (1613/1618) BabyJubjub: Serialisation (of_bytes_opt and to_bytes are inverse functions)
- [22:49:24.272] [SUCCESS] (1614/1618) BabyJubjub: Group properties of Edwards curve (unsafe_from_coordinates do not check the point is on the curve)
- [22:49:24.272] [SUCCESS] (1615/1618) BabyJubjub: Group properties of Edwards curve (Test check_bytes and of_bytes_[exn/opt] with a different number of bytes than expected)
- [22:49:24.272] [SUCCESS] (1616/1618) BabyJubjub: equality (zero)
- [22:49:24.272] [SUCCESS] (1617/1618) BabyJubjub: equality (one)
- [22:49:24.287] [SUCCESS] (1618/1618) BabyJubjub: equality (random_same_objects)
-> compiled  octez-libs.18.1
-> removed   octez-libs.18.1
-> installed octez-libs.18.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-27 22:49.28 ---> saved as "701e37958e36514ce96230af98f7fdec1a57adc2f635d28e91e5a458093bcfaf"
Job succeeded
2026-01-27 22:49.35: Job succeeded