Build:
- 0
2026-02-27 04:03.50: New job: test mirage-crypto-ec.0.11.3 with ocaml-compiler.5.4.0~rc1, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29451/head (09d7830dd4a7cd4cfc1725bd69ec5b222eae677d)
on debian-13-ocaml-5.4/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29451/head" && git reset --hard 09d7830d
git fetch origin master
git merge --no-edit 5abb4f44e937819c2e438ab71bc23607a7cad3da
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn ocaml-compiler.5.4.0~rc1 5.4.0~rc1
RUN opam reinstall --update-invariant ocaml-compiler.5.4.0~rc1; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ocaml-compiler.5.4.0~rc1' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall mirage-crypto-ec.0.11.3; \
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-crypto-ec.0.11.3' && 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 mirage-crypto-ec.0.11.3) || true
RUN opam reinstall --with-test --verbose mirage-crypto-ec.0.11.3; \
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-crypto-ec.0.11.3' && 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-02-27 04:03.50: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c-ocaml-compiler.5.4.0~rc1-mirage-crypto-ec.0.11.3-09d7830dd4a7cd4cfc1725bd69ec5b222eae677d"
2026-02-27 04:03.50: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
(run (shell "opam option solver=builtin-0install && opam config report"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMPRECISETRACKING 1)
(env CI true)
(env OPAM_REPO_CI true)
(run (shell "rm -rf opam-repository/"))
(copy (src .) (dst opam-repository/))
(run (shell "opam repository set-url --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn ocaml-compiler.5.4.0~rc1 5.4.0~rc1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall --update-invariant ocaml-compiler.5.4.0~rc1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocaml-compiler.5.4.0~rc1' && 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 mirage-crypto-ec.0.11.3;\
\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-crypto-ec.0.11.3' && 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 mirage-crypto-ec.0.11.3) || true"))
(run (shell "opam reinstall --with-test --verbose mirage-crypto-ec.0.11.3;\
\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-crypto-ec.0.11.3' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-02-27 04:03.50: Waiting for resource in pool OCluster
2026-03-02 00:12.06: Waiting for worker…
2026-03-02 00:14.59: Got resource from pool OCluster
Building on eumache
All commits already cached
Updating files: 71% (13094/18334)
Updating files: 72% (13201/18334)
Updating files: 73% (13384/18334)
Updating files: 74% (13568/18334)
Updating files: 75% (13751/18334)
Updating files: 76% (13934/18334)
Updating files: 77% (14118/18334)
Updating files: 78% (14301/18334)
Updating files: 79% (14484/18334)
Updating files: 80% (14668/18334)
Updating files: 81% (14851/18334)
Updating files: 82% (15034/18334)
Updating files: 83% (15218/18334)
Updating files: 84% (15401/18334)
Updating files: 85% (15584/18334)
Updating files: 86% (15768/18334)
Updating files: 87% (15951/18334)
Updating files: 88% (16134/18334)
Updating files: 89% (16318/18334)
Updating files: 90% (16501/18334)
Updating files: 91% (16684/18334)
Updating files: 92% (16868/18334)
Updating files: 93% (17051/18334)
Updating files: 94% (17234/18334)
Updating files: 95% (17418/18334)
Updating files: 96% (17601/18334)
Updating files: 97% (17784/18334)
Updating files: 98% (17968/18334)
Updating files: 99% (18151/18334)
Updating files: 100% (18334/18334)
Updating files: 100% (18334/18334), done.
HEAD is now at 5abb4f44e9 Merge pull request #29466 from mseri/release-doi2bib-0.9.1
Merge made by the 'ort' strategy.
.../ocaml-base-compiler.3.07+1/opam | 1 +
.../ocaml-base-compiler.3.07+2/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.3.07/opam | 1 +
.../ocaml-base-compiler.3.08.0/opam | 1 +
.../ocaml-base-compiler.3.08.1/opam | 1 +
.../ocaml-base-compiler.3.08.2/opam | 1 +
.../ocaml-base-compiler.3.08.3/opam | 1 +
.../ocaml-base-compiler.3.08.4/opam | 1 +
.../ocaml-base-compiler.3.09.0/opam | 1 +
.../ocaml-base-compiler.3.09.1/opam | 1 +
.../ocaml-base-compiler.3.09.2/opam | 1 +
.../ocaml-base-compiler.3.09.3/opam | 1 +
.../ocaml-base-compiler.3.10.0/opam | 1 +
.../ocaml-base-compiler.3.10.1/opam | 1 +
.../ocaml-base-compiler.3.10.2/opam | 1 +
.../ocaml-base-compiler.3.11.0/opam | 1 +
.../ocaml-base-compiler.3.11.1/opam | 1 +
.../ocaml-base-compiler.3.11.2/opam | 1 +
.../ocaml-base-compiler.3.12.0/opam | 1 +
.../ocaml-base-compiler.3.12.1/opam | 1 +
.../ocaml-base-compiler.4.00.0/opam | 1 +
.../ocaml-base-compiler.4.00.1/opam | 1 +
.../ocaml-base-compiler.4.01.0/opam | 1 +
.../ocaml-base-compiler.4.02.0/opam | 1 +
.../ocaml-base-compiler.4.02.1/opam | 1 +
.../ocaml-base-compiler.4.02.2/opam | 1 +
.../ocaml-base-compiler.4.02.3/opam | 1 +
.../ocaml-base-compiler.4.03.0/opam | 1 +
.../ocaml-base-compiler.4.04.0/opam | 1 +
.../ocaml-base-compiler.4.04.1/opam | 1 +
.../ocaml-base-compiler.4.04.2/opam | 1 +
.../ocaml-base-compiler.4.05.0/opam | 1 +
.../ocaml-base-compiler.4.06.0/opam | 1 +
.../ocaml-base-compiler.4.06.1/opam | 1 +
.../ocaml-base-compiler.4.07.0/opam | 1 +
.../ocaml-base-compiler.4.07.1/opam | 1 +
.../ocaml-base-compiler.4.08.0/opam | 1 +
.../ocaml-base-compiler.4.08.1/opam | 1 +
.../ocaml-base-compiler.4.09.0/opam | 1 +
.../ocaml-base-compiler.4.09.1/opam | 1 +
.../ocaml-base-compiler.4.10.0/opam | 1 +
.../ocaml-base-compiler.4.10.1/opam | 1 +
.../ocaml-base-compiler.4.10.2/opam | 1 +
.../ocaml-base-compiler.4.11.0/opam | 1 +
.../ocaml-base-compiler.4.11.1/opam | 1 +
.../ocaml-base-compiler.4.11.2/opam | 1 +
.../ocaml-base-compiler.4.12.0/opam | 1 +
.../ocaml-base-compiler.4.12.1/opam | 1 +
.../ocaml-base-compiler.4.13.0/opam | 1 +
.../ocaml-base-compiler.4.13.1/opam | 1 +
.../ocaml-base-compiler.4.14.0/opam | 1 +
.../ocaml-base-compiler.4.14.1/opam | 1 +
.../ocaml-base-compiler.4.14.2/opam | 1 +
.../ocaml-base-compiler.4.14.2~rc1/opam | 1 +
.../ocaml-base-compiler.4.14.3/opam | 1 +
.../ocaml-base-compiler/ocaml-base-compiler.5.0.0/opam | 5 ++++-
.../ocaml-base-compiler/ocaml-base-compiler.5.1.0/opam | 5 ++++-
.../ocaml-base-compiler/ocaml-base-compiler.5.1.1/opam | 5 ++++-
.../ocaml-base-compiler/ocaml-base-compiler.5.2.0/opam | 5 ++++-
.../ocaml-base-compiler/ocaml-base-compiler.5.2.1/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.3.0/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.3/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.4.0/opam | 1 +
.../ocaml-compiler/ocaml-compiler.5.4.0~alpha1/opam | 1 +
.../ocaml-compiler/ocaml-compiler.5.4.0~beta1/opam | 1 +
.../ocaml-compiler/ocaml-compiler.5.4.0~beta2/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.4.0~rc1/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.4.1/opam | 1 +
packages/ocaml-compiler/ocaml-compiler.5.4/opam | 1 +
.../ocaml-secondary-compiler.4.08.1-1/opam | 1 +
.../ocaml-secondary-compiler.4.08.1/opam | 1 +
.../ocaml-secondary-compiler.4.14.2/opam | 1 +
.../ocaml-variants.3.09.1+metaocaml/opam | 1 +
.../ocaml-variants.4.00.0+debug-runtime/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.00.1+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.00.1+PIC/opam | 1 +
.../ocaml-variants.4.00.1+debug-runtime/opam | 1 +
.../ocaml-variants.4.00.1+open-types/opam | 1 +
.../ocaml-variants.4.00.1+raspberrypi/opam | 1 +
.../ocaml-variants.4.00.1+short-types/opam | 1 +
.../ocaml-variants/ocaml-variants.4.01.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.01.0+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.01.0+PIC/opam | 1 +
.../ocaml-variants.4.01.0+armv6-freebsd/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.01.0+fp/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.01.0+lsb/opam | 1 +
.../ocaml-variants.4.01.0+musl+static/opam | 1 +
.../ocaml-variants/ocaml-variants.4.01.0+musl/opam | 1 +
.../ocaml-variants.4.01.0+open-types/opam | 1 +
.../ocaml-variants/ocaml-variants.4.01.0+profile/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.0+PIC/opam | 1 +
.../ocaml-variants.4.02.0+improved-errors/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.1+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.1+PIC/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.1+fp/opam | 1 +
.../ocaml-variants.4.02.1+modular-implicits-ber/opam | 1 +
.../ocaml-variants.4.02.1+modular-implicits/opam | 1 +
.../ocaml-variants.4.02.1+musl+static/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.1+musl/opam | 1 +
.../ocaml-variants.4.02.2+improved-errors/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.3+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.3+PIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.3+buckle-1/opam | 1 +
.../ocaml-variants.4.02.3+buckle-master/opam | 1 +
.../ocaml-variants.4.02.3+bytecode-only/opam | 1 +
.../ocaml-variants.4.02.3+curried-constr/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.02.3+fp/opam | 1 +
.../ocaml-variants.4.02.3+musl+static/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.3+musl/opam | 1 +
.../ocaml-variants/ocaml-variants.4.02.4+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.03.0+32bit/opam | 1 +
.../ocaml-variants/ocaml-variants.4.03.0+fPIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.03.0+flambda/opam | 1 +
.../ocaml-variants.4.03.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.03.0+fp/opam | 1 +
.../ocaml-variants.4.03.0+statistical-memprof/opam | 1 +
.../ocaml-variants/ocaml-variants.4.03.1+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.0+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.0+afl/opam | 1 +
.../ocaml-variants.4.04.0+bytecode-only/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.0+fPIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.0+flambda/opam | 1 +
.../ocaml-variants.4.04.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.0+fp/opam | 1 +
.../ocaml-variants.4.04.0+safe-string/opam | 1 +
.../ocaml-variants.4.04.0+spacetime/opam | 1 +
.../ocaml-variants.4.04.0+trunk+forced_lto/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.1+32bit/opam | 1 +
.../ocaml-variants.4.04.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.04.1+copatterns/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.1+fPIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.1+flambda/opam | 1 +
.../ocaml-variants.4.04.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.1+fp/opam | 1 +
.../ocaml-variants.4.04.1+safe-string/opam | 1 +
.../ocaml-variants.4.04.1+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.2+32bit/opam | 1 +
.../ocaml-variants.4.04.2+bytecode-only/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.2+fPIC/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.2+flambda/opam | 1 +
.../ocaml-variants.4.04.2+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.04.2+fp/opam | 1 +
.../ocaml-variants.4.04.2+safe-string/opam | 1 +
.../ocaml-variants.4.04.2+spacetime/opam | 1 +
.../ocaml-variants.4.04.2+statistical-memprof/opam | 1 +
.../ocaml-variants/ocaml-variants.4.04.3+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.05.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.05.0+afl/opam | 1 +
.../ocaml-variants.4.05.0+bytecode-only/opam | 1 +
.../ocaml-variants/ocaml-variants.4.05.0+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.05.0+lto/opam | 1 +
.../ocaml-variants.4.05.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.05.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.05.0+safe-string/opam | 1 +
.../ocaml-variants.4.05.0+spacetime/opam | 1 +
.../ocaml-variants.4.05.0+statistical-memprof/opam | 1 +
.../ocaml-variants.4.05.1+trunk+afl/opam | 1 +
.../ocaml-variants.4.05.1+trunk+flambda/opam | 1 +
.../ocaml-variants.4.05.1+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.05.1+trunk+fp/opam | 1 +
.../ocaml-variants.4.05.1+trunk+safe-string/opam | 1 +
.../ocaml-variants/ocaml-variants.4.05.1+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.0+afl/opam | 1 +
.../ocaml-variants.4.06.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.06.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.0+flambda/opam | 1 +
.../ocaml-variants.4.06.0+force-safe-string/opam | 1 +
.../ocaml-variants.4.06.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.0+fp/opam | 1 +
.../ocaml-variants.4.06.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.06.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.06.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.06.0+spacetime/opam | 1 +
.../ocaml-variants.4.06.0+statistical-memprof/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.1+afl/opam | 1 +
.../ocaml-variants.4.06.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.06.1+default-unsafe-string/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.1+flambda/opam | 1 +
.../ocaml-variants.4.06.1+force-safe-string/opam | 1 +
.../ocaml-variants.4.06.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.1+fp/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.06.1+lto/opam | 1 +
.../ocaml-variants.4.06.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.06.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.06.1+no-flat-float-array/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.1+rescript/opam | 1 +
.../ocaml-variants.4.06.1+statistical-memprof/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.1+termux/opam | 1 +
.../ocaml-variants.4.06.2+trunk+afl/opam | 1 +
.../ocaml-variants.4.06.2+trunk+flambda/opam | 1 +
.../ocaml-variants.4.06.2+trunk+force-safe-string/opam | 1 +
.../ocaml-variants.4.06.2+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.2+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.06.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.0+afl/opam | 1 +
.../ocaml-variants.4.07.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.07.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.0+flambda/opam | 1 +
.../ocaml-variants.4.07.0+force-safe-string/opam | 1 +
.../ocaml-variants.4.07.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.0+fp/opam | 1 +
.../ocaml-variants.4.07.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.07.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.1+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.1+afl/opam | 1 +
.../ocaml-variants.4.07.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.07.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.1+flambda/opam | 1 +
.../ocaml-variants.4.07.1+force-safe-string/opam | 1 +
.../ocaml-variants.4.07.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.07.1+fp/opam | 1 +
.../ocaml-variants.4.07.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.07.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.07.1+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.07.1+spacetime/opam | 1 +
.../ocaml-variants.4.07.1+statistical-memprof/opam | 1 +
.../ocaml-variants.4.07.2+trunk+afl/opam | 1 +
.../opam | 1 +
.../ocaml-variants.4.07.2+trunk+flambda/opam | 1 +
.../ocaml-variants.4.07.2+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.2+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.07.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.08.0+afl/opam | 1 +
.../ocaml-variants.4.08.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.08.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.0+flambda/opam | 1 +
.../ocaml-variants.4.08.0+force-safe-string/opam | 1 +
.../ocaml-variants.4.08.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.08.0+fp/opam | 1 +
.../ocaml-variants.4.08.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.08.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.08.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.08.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.08.1+afl/opam | 1 +
.../ocaml-variants.4.08.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.08.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.1+flambda/opam | 1 +
.../ocaml-variants.4.08.1+force-safe-string/opam | 1 +
.../ocaml-variants.4.08.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.08.1+fp/opam | 1 +
.../ocaml-variants.4.08.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.08.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.08.1+spacetime/opam | 1 +
.../ocaml-variants.4.08.2+trunk+afl/opam | 1 +
.../opam | 1 +
.../ocaml-variants.4.08.2+trunk+flambda/opam | 1 +
.../ocaml-variants.4.08.2+trunk+force-safe-string/opam | 1 +
.../ocaml-variants.4.08.2+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.2+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.08.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.09.0+afl/opam | 1 +
.../ocaml-variants.4.09.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.09.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.0+flambda/opam | 1 +
.../ocaml-variants.4.09.0+force-safe-string/opam | 1 +
.../ocaml-variants.4.09.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.09.0+fp/opam | 1 +
.../ocaml-variants.4.09.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.09.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.09.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.09.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.1+32bit/opam | 1 +
.../ocaml-variants.4.09.1+afl+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.09.1+afl/opam | 1 +
.../ocaml-variants.4.09.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.09.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.1+flambda/opam | 1 +
.../ocaml-variants.4.09.1+force-safe-string/opam | 1 +
.../ocaml-variants.4.09.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.09.1+fp/opam | 1 +
.../ocaml-variants.4.09.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.09.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.09.1+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.09.1+spacetime/opam | 1 +
.../ocaml-variants.4.09.2+trunk+afl/opam | 1 +
.../opam | 1 +
.../ocaml-variants.4.09.2+trunk+flambda/opam | 1 +
.../ocaml-variants.4.09.2+trunk+fp+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.2+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.09.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.0+afl/opam | 1 +
.../ocaml-variants.4.10.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.10.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.0+flambda/opam | 1 +
.../ocaml-variants.4.10.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.0+fp/opam | 1 +
.../ocaml-variants.4.10.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.10.0+musl+static+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.0+nnpcheck/opam | 1 +
.../ocaml-variants.4.10.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.10.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.1+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.1+afl/opam | 1 +
.../ocaml-variants.4.10.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.10.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.1+flambda/opam | 1 +
.../ocaml-variants.4.10.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.1+fp/opam | 1 +
.../ocaml-variants.4.10.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.10.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.10.1+no-flat-float-array/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.1+rc1+afl/opam | 1 +
.../ocaml-variants.4.10.1+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.2+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.2+afl/opam | 1 +
.../ocaml-variants.4.10.2+bytecode-only/opam | 1 +
.../ocaml-variants.4.10.2+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.2+flambda/opam | 1 +
.../ocaml-variants.4.10.2+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.10.2+fp/opam | 1 +
.../ocaml-variants.4.10.2+musl+flambda/opam | 1 +
.../ocaml-variants.4.10.2+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.10.2+no-flat-float-array/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.2+rescript/opam | 1 +
.../ocaml-variants.4.10.2+spacetime/opam | 1 +
.../ocaml-variants.4.10.3+trunk+afl/opam | 1 +
.../ocaml-variants.4.10.3+trunk+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.3+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.10.3+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.0+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.0+afl/opam | 1 +
.../ocaml-variants.4.11.0+bytecode-only/opam | 1 +
.../ocaml-variants.4.11.0+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.0+flambda/opam | 1 +
.../ocaml-variants.4.11.0+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.0+fp/opam | 1 +
.../ocaml-variants.4.11.0+musl+flambda/opam | 1 +
.../ocaml-variants.4.11.0+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.11.0+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.11.0+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.1+32bit/opam | 1 +
.../ocaml-variants.4.11.1+BER+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.1+BER/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.1+afl/opam | 1 +
.../ocaml-variants.4.11.1+bytecode-only/opam | 1 +
.../ocaml-variants.4.11.1+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.1+flambda/opam | 1 +
.../ocaml-variants.4.11.1+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.1+fp/opam | 1 +
.../ocaml-variants.4.11.1+musl+flambda/opam | 1 +
.../ocaml-variants.4.11.1+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.11.1+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.11.1+spacetime/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.2+32bit/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.2+afl/opam | 1 +
.../ocaml-variants.4.11.2+bytecode-only/opam | 1 +
.../ocaml-variants.4.11.2+default-unsafe-string/opam | 1 +
.../opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.2+flambda/opam | 1 +
.../ocaml-variants.4.11.2+fp+flambda/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.11.2+fp/opam | 1 +
.../ocaml-variants.4.11.2+musl+flambda/opam | 1 +
.../ocaml-variants.4.11.2+musl+static+flambda/opam | 1 +
.../ocaml-variants.4.11.2+no-flat-float-array/opam | 1 +
.../ocaml-variants.4.11.2+spacetime/opam | 1 +
.../ocaml-variants.4.11.3+trunk+afl/opam | 1 +
.../ocaml-variants.4.11.3+trunk+flambda/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.3+trunk+fp/opam | 1 +
.../ocaml-variants/ocaml-variants.4.11.3+trunk/opam | 1 +
.../ocaml-variants.4.12.0+domains+effects/opam | 1 +
.../ocaml-variants/ocaml-variants.4.12.0+domains/opam | 1 +
.../ocaml-variants/ocaml-variants.4.12.0+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.12.1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.12.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.13.0+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.13.1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.13.2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.0+options/opam | 1 +
packages/ocaml-variants/ocaml-variants.4.14.1+BER/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.2+options/opam | 1 +
.../ocaml-variants.4.14.2~rc1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.3+options/opam | 1 +
.../ocaml-variants/ocaml-variants.4.14.4+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.5.0.0+options/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.0.0+tsan/opam | 1 +
.../ocaml-variants/ocaml-variants.5.0.1+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.5.1.0+options/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.1.0+tsan/opam | 1 +
.../ocaml-variants.5.1.1+effect-syntax/opam | 1 +
.../ocaml-variants.5.1.1+flambda2+trunk/opam | 1 +
.../ocaml-variants/ocaml-variants.5.1.1+flambda2/opam | 1 +
.../ocaml-variants/ocaml-variants.5.1.1+options/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.1.1+tsan/opam | 1 +
.../ocaml-variants/ocaml-variants.5.1.2+trunk/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.2.0+msvc/opam | 1 +
.../ocaml-variants/ocaml-variants.5.2.0+options/opam | 1 +
.../ocaml-variants.5.2.0+statmemprof/opam | 1 +
.../ocaml-variants/ocaml-variants.5.2.1+options/opam | 1 +
.../ocaml-variants.5.2.1~rc1+options/opam | 1 +
.../ocaml-variants/ocaml-variants.5.2.2+trunk/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.3.0+BER/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.0/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.1/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.2+win/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.2/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.3+win/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.14.3/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.15.0/opam | 1 +
packages/ocamlbuild/ocamlbuild.0.16.1/opam | 1 +
packages/ocamlfind/ocamlfind.1.8.0/opam | 1 +
packages/ocamlfind/ocamlfind.1.8.1/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.1/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.2/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.3/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.5/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.6/opam | 1 +
packages/ocamlfind/ocamlfind.1.9.8/opam | 1 +
packages/relocatable/relocatable.packages/opam | 18 ++++++++++++++++++
432 files changed, 464 insertions(+), 5 deletions(-)
create mode 100644 packages/relocatable/relocatable.packages/opam
(from ocaml/opam:debian-13-ocaml-5.4@sha256:4add1601135529e9f2e403a25c1c640231c0e871e87f88cf8feab4be5095104c)
2026-03-02 00:15.09 ---> using "3c18c9e472a4f76bc128dc0a5a1e21158ba3dbd0d6773ace6ec33f0cfe6fac9b" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-02 00:15.09 ---> using "7a3442ad99cd957e3ce65df65cad40aee4354c6d524c7813b8b589bc410c187e" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-02 00:15.09 ---> using "4214446d06a5b764dff5167574d07a5b4441731262795df63d7a3c5f64e1a189" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 5.4
# invariant ["ocaml-base-compiler" {>= "5.4.0"}]
# compiler-packages ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.0
2026-03-02 00:15.09 ---> using "8bf276ecf196c09ac4fb294f887dce47d9744c212aabbbad5d313f0a4179272a" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2026-03-02 00:15.09 ---> using "c04e3f046c8eaf07d3d8f4b30debe47a6f7742bcdbfbfeb4d464149613cd35cd" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-02 00:15.10 ---> using "f28d2d55603b70a3956974bde95e68526d52d43abb5c3f086de712d28b994566" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-02 00:15.10 ---> using "3775e9b8ca53e7a42e175e2f214e7d345a02bf22f9dd6d271ae720654f277192" 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 [113 kB]
- Fetched 203 kB in 0s (962 kB/s)
- Reading package lists...
-
2026-03-02 00:15.10 ---> using "a6fcf1eb697bb2cbcd49a3ac591b228ed4dfb5d9211b39971561804e137638fa" from cache
/home/opam: (run (shell "opam pin add -k version -yn ocaml-compiler.5.4.0~rc1 5.4.0~rc1"))
ocaml-compiler is now pinned to version 5.4.0~rc1
2026-03-02 00:15.10 ---> using "7f59afc8569d372cdff05a25219bb838bcd2ac1106223157c8c00d0d2de86f37" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall --update-invariant ocaml-compiler.5.4.0~rc1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocaml-compiler.5.4.0~rc1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
ocaml-compiler.5.4.0~rc1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== remove 1 package
- remove ocaml-base-compiler 5.4.0 (pinned) [conflicts with ocaml-compiler]
=== downgrade 1 package
- downgrade ocaml-compiler 5.4.0 to 5.4.0~rc1 (pinned)
=== recompile 6 packages
- recompile base-domains base [uses ocaml]
- recompile base-effects base [uses ocaml]
- recompile base-nnp base [uses base-domains]
- recompile ocaml 5.4.0 [uses ocaml-base-compiler]
- recompile ocaml-config 3 [uses ocaml-base-compiler]
- recompile opam-depext 1.2.3 [uses ocaml]
=== install 1 package
- install ocaml-variants 5.4.0~rc1+options [required by ocaml]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocaml-compiler.5.4.0~rc1 (cached)
-> retrieved ocaml-config.3 (cached)
-> retrieved opam-depext.1.2.3 (cached)
-> removed base-effects.base
-> removed base-nnp.base
-> removed base-domains.base
-> removed opam-depext.1.2.3
-> removed ocaml.5.4.0
-> removed ocaml-config.3
-> removed ocaml-base-compiler.5.4.0
-> removed ocaml-compiler.5.4.0
-> installed ocaml-compiler.5.4.0~rc1
-> installed ocaml-variants.5.4.0~rc1+options
-> installed ocaml-config.3
-> installed ocaml.5.4.0
-> installed base-domains.base
-> installed base-effects.base
-> installed base-nnp.base
-> installed opam-depext.1.2.3
[NOTE] Switch invariant was updated to ["ocaml-variants" {= "5.4.0~rc1+options"}]
Use `opam switch set-invariant' to change it.
Done.
<><> opam-depext.1.2.3 installed successfully <><><><><><><><><><><><><><><><><>
=> opam-depext is unnecessary when used with opam >= 2.1. Please use opam install directly instead
# To update the current shell environment, run: eval $(opam env)
2026-03-02 00:15.10 ---> using "74f1d3c2ced61271e81f53a652eb1fc779b2788839e8821a36f8d5d64e64c908" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall mirage-crypto-ec.0.11.3;\
\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-crypto-ec.0.11.3' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
mirage-crypto-ec.0.11.3 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 14 packages
- install csexp 1.5.2 [required by dune-configurator]
- install cstruct 6.2.0 [required by mirage-crypto-ec]
- install dune 3.21.1 [required by mirage-crypto-ec]
- install dune-configurator 3.21.1 [required by mirage-crypto-ec]
- install duration 0.2.1 [required by mirage-crypto-rng]
- install eqaf 0.9 [required by mirage-crypto-ec]
- install fmt 0.11.0 [required by cstruct]
- install logs 0.10.0 [required by mirage-crypto-rng]
- install mirage-crypto 0.11.3 [required by mirage-crypto-ec]
- install mirage-crypto-ec 0.11.3
- install mirage-crypto-rng 0.11.3 [required by mirage-crypto-ec]
- install ocamlbuild 0.16.1 [required by fmt, logs]
- install ocamlfind 1.9.8 [required by fmt, logs]
- install topkg 1.1.1 [required by fmt, logs]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved csexp.1.5.2 (cached)
-> retrieved cstruct.6.2.0 (cached)
-> retrieved dune.3.21.1, dune-configurator.3.21.1 (cached)
-> retrieved duration.0.2.1 (cached)
-> retrieved eqaf.0.9 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved mirage-crypto.0.11.3, mirage-crypto-ec.0.11.3, mirage-crypto-rng.0.11.3 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved topkg.1.1.1 (cached)
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed fmt.0.11.0
-> installed logs.0.10.0
-> installed dune.3.21.1
-> installed duration.0.2.1
-> installed csexp.1.5.2
-> installed cstruct.6.2.0
-> installed eqaf.0.9
-> installed dune-configurator.3.21.1
-> installed mirage-crypto.0.11.3
-> installed mirage-crypto-rng.0.11.3
-> installed mirage-crypto-ec.0.11.3
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-02 00:16.35 ---> saved as "9f95f55409bfc30a3db20e79dd0fafb07d1d7d681255034d43a1b94aceef81c9"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test mirage-crypto-ec.0.11.3) || true"))
The following actions will be performed:
=== recompile 7 packages
- recompile cstruct 6.2.0 [uses fmt]
- recompile eqaf 0.9 [uses cstruct]
- recompile fmt 0.11.0 [uses cmdliner]
- recompile logs 0.10.0 [uses cmdliner]
- recompile mirage-crypto 0.11.3 [uses cstruct]
- recompile mirage-crypto-ec 0.11.3
- recompile mirage-crypto-rng 0.11.3 [uses cstruct, logs]
=== install 16 packages
- install alcotest 1.9.1 [required by mirage-crypto-ec]
- install astring 0.8.5 [required by alcotest]
- install cmdliner 2.1.0 [required by alcotest]
- install cppo 1.8.0 [required by ppx_deriving]
- install hex 1.5.0 [required by mirage-crypto-ec]
- install ocaml-compiler-libs v0.17.0 [required by ppxlib]
- install ocaml-syntax-shims 1.0.0 [required by alcotest]
- install ppx_derivers 1.2.1 [required by ppx_deriving]
- install ppx_deriving 6.1.1 [required by mirage-crypto-ec]
- install ppx_deriving_yojson 3.10.0 [required by mirage-crypto-ec]
- install ppxlib 0.37.0 [required by ppx_deriving, ppx_deriving_yojson]
- install re 1.14.0 [required by alcotest]
- install sexplib0 v0.17.0 [required by ppxlib]
- install stdlib-shims 0.3.0 [required by alcotest]
- install uutf 1.0.4 [required by alcotest]
- install yojson 3.0.0 [required by mirage-crypto-ec]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1 (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5 (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.0 (https://opam.ocaml.org/cache)
-> retrieved cppo.1.8.0 (https://opam.ocaml.org/cache)
-> retrieved cstruct.6.2.0 (https://opam.ocaml.org/cache)
-> retrieved eqaf.0.9 (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0 (https://opam.ocaml.org/cache)
-> retrieved hex.1.5.0 (https://opam.ocaml.org/cache)
-> retrieved logs.0.10.0 (https://opam.ocaml.org/cache)
-> installed cppo.1.8.0
-> retrieved mirage-crypto.0.11.3, mirage-crypto-ec.0.11.3, mirage-crypto-rng.0.11.3 (https://opam.ocaml.org/cache)
-> retrieved ocaml-compiler-libs.v0.17.0 (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0 (https://opam.ocaml.org/cache)
-> retrieved ppx_derivers.1.2.1 (https://opam.ocaml.org/cache)
-> installed astring.0.8.5
-> retrieved ppx_deriving.6.1.1 (https://opam.ocaml.org/cache)
-> retrieved ppx_deriving_yojson.3.10.0 (https://opam.ocaml.org/cache)
-> installed ppx_derivers.1.2.1
-> retrieved ppxlib.0.37.0 (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0 (https://opam.ocaml.org/cache)
-> retrieved sexplib0.v0.17.0 (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0 (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
-> retrieved yojson.3.0.0 (https://opam.ocaml.org/cache)
-> installed ocaml-syntax-shims.1.0.0
-> installed ocaml-compiler-libs.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.17.0
-> installed re.1.14.0
-> installed yojson.3.0.0
-> removed mirage-crypto-ec.0.11.3
-> removed mirage-crypto-rng.0.11.3
-> removed logs.0.10.0
-> removed mirage-crypto.0.11.3
-> removed eqaf.0.9
-> removed cstruct.6.2.0
-> removed fmt.0.11.0
-> installed cmdliner.2.1.0
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed cstruct.6.2.0
-> installed hex.1.5.0
-> installed alcotest.1.9.1
-> installed eqaf.0.9
-> installed logs.0.10.0
-> installed mirage-crypto.0.11.3
-> installed mirage-crypto-rng.0.11.3
-> installed ppxlib.0.37.0
-> installed ppx_deriving.6.1.1
-> installed ppx_deriving_yojson.3.10.0
-> installed mirage-crypto-ec.0.11.3
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-02 00:18.01 ---> saved as "89fd54b926e620f7211b26b8d2e59e83821c7c22edb54fd7b9c3b6ece639b289"
/home/opam: (run (shell "opam reinstall --with-test --verbose mirage-crypto-ec.0.11.3;\
\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-crypto-ec.0.11.3' && 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 mirage-crypto-ec 0.11.3
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [mirage-crypto-ec.0.11.3: extract]
-> retrieved mirage-crypto-ec.0.11.3 (cached)
Processing 2/4: [mirage-crypto-ec: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "mirage-crypto-ec" "-j" "71" (CWD=/home/opam/.opam/5.4/.opam-switch/build/mirage-crypto-ec.0.11.3)
- (cd _build/default/ec && /usr/bin/gcc -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread -D_FILE_OFFSET_BITS=64 -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread -DNDEBUG --std=c11 -Wall -Wextra -Wpedantic -O3 -DENTROPY -mrdrnd -mrdseed -DACCELERATE -mssse3 -maes -mpclmul -g -I /home/opam/.opam/5.4/lib/ocaml -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/eqaf -I /home/opam/.opam/5.4/lib/eqaf/bigstring -I /home/opam/.opam/5.4/lib/eqaf/cstruct -I /home/opam/.opam/5.4/lib/mirage-crypto -I /home/opam/.opam/5.4/lib/mirage-crypto-rng -I ../src/native -o np224_stubs.o -c native/np224_stubs.c)
- In file included from native/np224_stubs.c:23:
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:89:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 89 | CAMLmalloc(caml_stat_free, 1, 1) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:89:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:96:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 96 | CAMLmalloc(caml_stat_free, 1, 1)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:96:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:105:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 105 | CAMLaligned_alloc(caml_stat_free, 1, 1, 2) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:105:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:105:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:112:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 112 | CAMLaligned_alloc(caml_stat_free, 1, 1, 2)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:112:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:112:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:121:35: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 121 | CAMLcalloc(caml_stat_free, 1, 1, 2)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:121:35: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:132:14: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 132 | CAMLrealloc(2) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:138:14: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 138 | CAMLrealloc(2)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:149:28: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 149 | CAMLalloc(caml_stat_free, 1) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:155:28: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 155 | CAMLalloc(caml_stat_free, 1)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:175:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 175 | CAMLmalloc(caml_stat_free, 1, 2) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:175:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:184:28: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 184 | CAMLalloc(caml_stat_free, 1) CAMLreturns_nonnull()
- | ^
- (cd _build/default/ec && /usr/bin/gcc -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread -D_FILE_OFFSET_BITS=64 -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread -DNDEBUG --std=c11 -Wall -Wextra -Wpedantic -O3 -DENTROPY -mrdrnd -mrdseed -DACCELERATE -mssse3 -maes -mpclmul -g -I /home/opam/.opam/5.4/lib/ocaml -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/eqaf -I /home/opam/.opam/5.4/lib/eqaf/bigstring -I /home/opam/.opam/5.4/lib/eqaf/cstruct -I /home/opam/.opam/5.4/lib/mirage-crypto -I /home/opam/.opam/5.4/lib/mirage-crypto-rng -I ../src/native -o np256_stubs.o -c native/np256_stubs.c)
- In file included from native/np256_stubs.c:23:
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:89:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 89 | CAMLmalloc(caml_stat_free, 1, 1) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:89:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:96:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 96 | CAMLmalloc(caml_stat_free, 1, 1)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:96:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:105:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 105 | CAMLaligned_alloc(caml_stat_free, 1, 1, 2) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:105:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:105:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:112:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 112 | CAMLaligned_alloc(caml_stat_free, 1, 1, 2)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:112:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:112:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:121:35: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 121 | CAMLcalloc(caml_stat_free, 1, 1, 2)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:121:35: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:132:14: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 132 | CAMLrealloc(2) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:138:14: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 138 | CAMLrealloc(2)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:149:28: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 149 | CAMLalloc(caml_stat_free, 1) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:155:28: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 155 | CAMLalloc(caml_stat_free, 1)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:175:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 175 | CAMLmalloc(caml_stat_free, 1, 2) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:175:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:184:28: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 184 | CAMLalloc(caml_stat_free, 1) CAMLreturns_nonnull()
- | ^
- (cd _build/default/ec && /usr/bin/gcc -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread -D_FILE_OFFSET_BITS=64 -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread -DNDEBUG --std=c11 -Wall -Wextra -Wpedantic -O3 -DENTROPY -mrdrnd -mrdseed -DACCELERATE -mssse3 -maes -mpclmul -g -I /home/opam/.opam/5.4/lib/ocaml -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/eqaf -I /home/opam/.opam/5.4/lib/eqaf/bigstring -I /home/opam/.opam/5.4/lib/eqaf/cstruct -I /home/opam/.opam/5.4/lib/mirage-crypto -I /home/opam/.opam/5.4/lib/mirage-crypto-rng -I ../src/native -o p224_stubs.o -c native/p224_stubs.c)
- In file included from native/p224_stubs.c:26:
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:89:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 89 | CAMLmalloc(caml_stat_free, 1, 1) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:89:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:96:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 96 | CAMLmalloc(caml_stat_free, 1, 1)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:96:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:105:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 105 | CAMLaligned_alloc(caml_stat_free, 1, 1, 2) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:105:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:105:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:112:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 112 | CAMLaligned_alloc(caml_stat_free, 1, 1, 2)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:112:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:112:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:121:35: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 121 | CAMLcalloc(caml_stat_free, 1, 1, 2)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:121:35: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:132:14: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 132 | CAMLrealloc(2) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:138:14: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 138 | CAMLrealloc(2)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:149:28: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 149 | CAMLalloc(caml_stat_free, 1) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:155:28: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 155 | CAMLalloc(caml_stat_free, 1)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:175:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 175 | CAMLmalloc(caml_stat_free, 1, 2) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:175:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:184:28: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 184 | CAMLalloc(caml_stat_free, 1) CAMLreturns_nonnull()
- | ^
- (cd _build/default/ec && /usr/bin/gcc -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread -D_FILE_OFFSET_BITS=64 -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread -DNDEBUG --std=c11 -Wall -Wextra -Wpedantic -O3 -DENTROPY -mrdrnd -mrdseed -DACCELERATE -mssse3 -maes -mpclmul -g -I /home/opam/.opam/5.4/lib/ocaml -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/eqaf -I /home/opam/.opam/5.4/lib/eqaf/bigstring -I /home/opam/.opam/5.4/lib/eqaf/cstruct -I /home/opam/.opam/5.4/lib/mirage-crypto -I /home/opam/.opam/5.4/lib/mirage-crypto-rng -I ../src/native -o p256_stubs.o -c native/p256_stubs.c)
- In file included from native/p256_stubs.c:26:
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:89:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 89 | CAMLmalloc(caml_stat_free, 1, 1) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:89:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:96:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 96 | CAMLmalloc(caml_stat_free, 1, 1)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:96:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:105:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 105 | CAMLaligned_alloc(caml_stat_free, 1, 1, 2) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:105:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:105:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:112:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 112 | CAMLaligned_alloc(caml_stat_free, 1, 1, 2)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:112:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:112:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:121:35: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 121 | CAMLcalloc(caml_stat_free, 1, 1, 2)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:121:35: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:132:14: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 132 | CAMLrealloc(2) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:138:14: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 138 | CAMLrealloc(2)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:149:28: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 149 | CAMLalloc(caml_stat_free, 1) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:155:28: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 155 | CAMLalloc(caml_stat_free, 1)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:175:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 175 | CAMLmalloc(caml_stat_free, 1, 2) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:175:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:184:28: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 184 | CAMLalloc(caml_stat_free, 1) CAMLreturns_nonnull()
- | ^
- (cd _build/default/ec && /usr/bin/gcc -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread -D_FILE_OFFSET_BITS=64 -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread -DNDEBUG --std=c11 -Wall -Wextra -Wpedantic -O3 -DENTROPY -mrdrnd -mrdseed -DACCELERATE -mssse3 -maes -mpclmul -g -I /home/opam/.opam/5.4/lib/ocaml -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/eqaf -I /home/opam/.opam/5.4/lib/eqaf/bigstring -I /home/opam/.opam/5.4/lib/eqaf/cstruct -I /home/opam/.opam/5.4/lib/mirage-crypto -I /home/opam/.opam/5.4/lib/mirage-crypto-rng -I ../src/native -o curve25519_stubs.o -c native/curve25519_stubs.c)
- In file included from native/curve25519_stubs.c:1802:
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:89:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 89 | CAMLmalloc(caml_stat_free, 1, 1) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:89:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:96:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 96 | CAMLmalloc(caml_stat_free, 1, 1)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:96:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:105:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 105 | CAMLaligned_alloc(caml_stat_free, 1, 1, 2) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:105:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:105:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:112:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 112 | CAMLaligned_alloc(caml_stat_free, 1, 1, 2)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:112:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:112:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:121:35: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 121 | CAMLcalloc(caml_stat_free, 1, 1, 2)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:121:35: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:132:14: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 132 | CAMLrealloc(2) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:138:14: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 138 | CAMLrealloc(2)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:149:28: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 149 | CAMLalloc(caml_stat_free, 1) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:155:28: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 155 | CAMLalloc(caml_stat_free, 1)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:175:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 175 | CAMLmalloc(caml_stat_free, 1, 2) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:175:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:184:28: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 184 | CAMLalloc(caml_stat_free, 1) CAMLreturns_nonnull()
- | ^
- (cd _build/default/ec && /usr/bin/gcc -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread -D_FILE_OFFSET_BITS=64 -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread -DNDEBUG --std=c11 -Wall -Wextra -Wpedantic -O3 -DENTROPY -mrdrnd -mrdseed -DACCELERATE -mssse3 -maes -mpclmul -g -I /home/opam/.opam/5.4/lib/ocaml -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/eqaf -I /home/opam/.opam/5.4/lib/eqaf/bigstring -I /home/opam/.opam/5.4/lib/eqaf/cstruct -I /home/opam/.opam/5.4/lib/mirage-crypto -I /home/opam/.opam/5.4/lib/mirage-crypto-rng -I ../src/native -o np384_stubs.o -c native/np384_stubs.c)
- In file included from native/np384_stubs.c:23:
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:89:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 89 | CAMLmalloc(caml_stat_free, 1, 1) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:89:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:96:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 96 | CAMLmalloc(caml_stat_free, 1, 1)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:96:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:105:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 105 | CAMLaligned_alloc(caml_stat_free, 1, 1, 2) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:105:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:105:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:112:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 112 | CAMLaligned_alloc(caml_stat_free, 1, 1, 2)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:112:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:112:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:121:35: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 121 | CAMLcalloc(caml_stat_free, 1, 1, 2)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:121:35: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:132:14: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 132 | CAMLrealloc(2) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:138:14: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 138 | CAMLrealloc(2)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:149:28: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 149 | CAMLalloc(caml_stat_free, 1) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:155:28: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 155 | CAMLalloc(caml_stat_free, 1)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:175:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 175 | CAMLmalloc(caml_stat_free, 1, 2) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:175:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:184:28: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 184 | CAMLalloc(caml_stat_free, 1) CAMLreturns_nonnull()
- | ^
- (cd _build/default/ec && /usr/bin/gcc -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread -D_FILE_OFFSET_BITS=64 -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread -DNDEBUG --std=c11 -Wall -Wextra -Wpedantic -O3 -DENTROPY -mrdrnd -mrdseed -DACCELERATE -mssse3 -maes -mpclmul -g -I /home/opam/.opam/5.4/lib/ocaml -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/eqaf -I /home/opam/.opam/5.4/lib/eqaf/bigstring -I /home/opam/.opam/5.4/lib/eqaf/cstruct -I /home/opam/.opam/5.4/lib/mirage-crypto -I /home/opam/.opam/5.4/lib/mirage-crypto-rng -I ../src/native -o p384_stubs.o -c native/p384_stubs.c)
- In file included from native/p384_stubs.c:26:
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:89:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 89 | CAMLmalloc(caml_stat_free, 1, 1) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:89:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:96:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 96 | CAMLmalloc(caml_stat_free, 1, 1)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:96:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:105:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 105 | CAMLaligned_alloc(caml_stat_free, 1, 1, 2) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:105:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:105:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:112:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 112 | CAMLaligned_alloc(caml_stat_free, 1, 1, 2)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:112:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:112:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:121:35: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 121 | CAMLcalloc(caml_stat_free, 1, 1, 2)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:121:35: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:132:14: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 132 | CAMLrealloc(2) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:138:14: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 138 | CAMLrealloc(2)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:149:28: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 149 | CAMLalloc(caml_stat_free, 1) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:155:28: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 155 | CAMLalloc(caml_stat_free, 1)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:175:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 175 | CAMLmalloc(caml_stat_free, 1, 2) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:175:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:184:28: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 184 | CAMLalloc(caml_stat_free, 1) CAMLreturns_nonnull()
- | ^
- (cd _build/default/ec && /usr/bin/gcc -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread -D_FILE_OFFSET_BITS=64 -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread -DNDEBUG --std=c11 -Wall -Wextra -Wpedantic -O3 -DENTROPY -mrdrnd -mrdseed -DACCELERATE -mssse3 -maes -mpclmul -g -I /home/opam/.opam/5.4/lib/ocaml -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/eqaf -I /home/opam/.opam/5.4/lib/eqaf/bigstring -I /home/opam/.opam/5.4/lib/eqaf/cstruct -I /home/opam/.opam/5.4/lib/mirage-crypto -I /home/opam/.opam/5.4/lib/mirage-crypto-rng -I ../src/native -o p521_stubs.o -c native/p521_stubs.c)
- In file included from native/p521_stubs.c:26:
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:89:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 89 | CAMLmalloc(caml_stat_free, 1, 1) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:89:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:96:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 96 | CAMLmalloc(caml_stat_free, 1, 1)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:96:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:105:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 105 | CAMLaligned_alloc(caml_stat_free, 1, 1, 2) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:105:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:105:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:112:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 112 | CAMLaligned_alloc(caml_stat_free, 1, 1, 2)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:112:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:112:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:121:35: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 121 | CAMLcalloc(caml_stat_free, 1, 1, 2)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:121:35: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:132:14: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 132 | CAMLrealloc(2) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:138:14: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 138 | CAMLrealloc(2)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:149:28: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 149 | CAMLalloc(caml_stat_free, 1) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:155:28: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 155 | CAMLalloc(caml_stat_free, 1)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:175:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 175 | CAMLmalloc(caml_stat_free, 1, 2) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:175:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:184:28: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 184 | CAMLalloc(caml_stat_free, 1) CAMLreturns_nonnull()
- | ^
- (cd _build/default/ec && /usr/bin/gcc -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread -D_FILE_OFFSET_BITS=64 -O2 -fno-strict-aliasing -fwrapv -fPIC -pthread -DNDEBUG --std=c11 -Wall -Wextra -Wpedantic -O3 -DENTROPY -mrdrnd -mrdseed -DACCELERATE -mssse3 -maes -mpclmul -g -I /home/opam/.opam/5.4/lib/ocaml -I /home/opam/.opam/5.4/lib/cstruct -I /home/opam/.opam/5.4/lib/eqaf -I /home/opam/.opam/5.4/lib/eqaf/bigstring -I /home/opam/.opam/5.4/lib/eqaf/cstruct -I /home/opam/.opam/5.4/lib/mirage-crypto -I /home/opam/.opam/5.4/lib/mirage-crypto-rng -I ../src/native -o np521_stubs.o -c native/np521_stubs.c)
- In file included from native/np521_stubs.c:23:
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:89:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 89 | CAMLmalloc(caml_stat_free, 1, 1) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:89:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:96:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 96 | CAMLmalloc(caml_stat_free, 1, 1)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:96:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:105:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 105 | CAMLaligned_alloc(caml_stat_free, 1, 1, 2) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:105:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:105:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:112:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 112 | CAMLaligned_alloc(caml_stat_free, 1, 1, 2)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:112:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:112:42: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:121:35: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 121 | CAMLcalloc(caml_stat_free, 1, 1, 2)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:121:35: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:132:14: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 132 | CAMLrealloc(2) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:138:14: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 138 | CAMLrealloc(2)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:149:28: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 149 | CAMLalloc(caml_stat_free, 1) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:155:28: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 155 | CAMLalloc(caml_stat_free, 1)
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:175:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 175 | CAMLmalloc(caml_stat_free, 1, 2) CAMLreturns_nonnull()
- | ^
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:175:32: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- /home/opam/.opam/5.4/lib/ocaml/caml/memory.h:184:28: warning: ISO C99 requires at least one argument for the "..." in a variadic macro
- 184 | CAMLalloc(caml_stat_free, 1) CAMLreturns_nonnull()
- | ^
Processing 2/4: [mirage-crypto-ec: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "mirage-crypto-ec" "-j" "71" (CWD=/home/opam/.opam/5.4/.opam-switch/build/mirage-crypto-ec.0.11.3)
- (cd _build/default/tests && ./test_ec.exe)
- Testing `EC'.
- This run has ID `XZZILOS3'.
-
- [OK] P256 Key exchange 0 b*A.
- [OK] P256 Key exchange 1 a*B.
- [OK] P256 Key exchange 2 b'*A.
- [OK] P256 Key exchange 3 a*B'.
- [OK] P256 Key exchange 4 a*A.
- [OK] P256 Key exchange 5 b*B.
- [OK] P256 Low level scalar mult 0 Scalar mu...
- [OK] P256 Low level scalar mult 1 Scalar mu...
- [OK] P256 Low level scalar mult 2 Scalar mu...
- [OK] P256 Low level scalar mult 3 Scalar mu...
- [OK] P256 Low level scalar mult 4 Scalar mu...
- [OK] P256 Low level scalar mult 5 Scalar mu...
- [OK] P256 Point validation 0 Ok.
- [OK] P256 Point validation 1 P=0.
- [OK] P256 Point validation 2 (0, sqrt(...
- [OK] P256 Point validation 3 out of ra...
- [OK] P256 Scalar validation when generating 0 0.
- [OK] P256 Scalar validation when generating 1 1.
- [OK] P256 Scalar validation when generating 2 n-1.
- [OK] P256 Scalar validation when generating 3 n.
- [OK] ECDSA NIST 0 ECDSA gen.
- [OK] ECDSA NIST 1 ECDSA sign.
- [OK] ECDSA NIST 2 ECDSA ver...
- [OK] ECDSA RFC 6979 P224 0 public ke...
- [OK] ECDSA RFC 6979 P224 1 RFC 6979 ...
- [OK] ECDSA RFC 6979 P224 2 RFC 6979 ...
- [OK] ECDSA RFC 6979 P224 3 RFC 6979 ...
- [OK] ECDSA RFC 6979 P224 4 RFC 6979 ...
- [OK] ECDSA RFC 6979 P224 5 RFC 6979 ...
- [OK] ECDSA RFC 6979 P224 6 RFC 6979 ...
- [OK] ECDSA RFC 6979 P224 7 RFC 6979 ...
- [OK] ECDSA RFC 6979 P224 8 RFC 6979 ...
- [OK] ECDSA RFC 6979 P224 9 RFC 6979 ...
- [OK] ECDSA RFC 6979 P224 10 RFC 6979 ...
- [OK] ECDSA RFC 6979 P256 0 public ke...
- [OK] ECDSA RFC 6979 P256 1 public ke...
- [OK] ECDSA RFC 6979 P256 2 RFC 6979 ...
- [OK] ECDSA RFC 6979 P256 3 RFC 6979 ...
- [OK] ECDSA RFC 6979 P256 4 RFC 6979 ...
- [OK] ECDSA RFC 6979 P256 5 RFC 6979 ...
- [OK] ECDSA RFC 6979 P256 6 RFC 6979 ...
- [OK] ECDSA RFC 6979 P256 7 RFC 6979 ...
- [OK] ECDSA RFC 6979 P256 8 RFC 6979 ...
- [OK] ECDSA RFC 6979 P256 9 RFC 6979 ...
- [OK] ECDSA RFC 6979 P256 10 RFC 6979 ...
- [OK] ECDSA RFC 6979 P256 11 RFC 6979 ...
- [OK] ECDSA RFC 6979 P384 0 public ke...
- [OK] ECDSA RFC 6979 P384 1 public ke...
- [OK] ECDSA RFC 6979 P384 2 RFC 6979 ...
- [OK] ECDSA RFC 6979 P384 3 RFC 6979 ...
- [OK] ECDSA RFC 6979 P384 4 RFC 6979 ...
- [OK] ECDSA RFC 6979 P384 5 RFC 6979 ...
- [OK] ECDSA RFC 6979 P384 6 RFC 6979 ...
- [OK] ECDSA RFC 6979 P384 7 RFC 6979 ...
- [OK] ECDSA RFC 6979 P384 8 RFC 6979 ...
- [OK] ECDSA RFC 6979 P384 9 RFC 6979 ...
- [OK] ECDSA RFC 6979 P384 10 RFC 6979 ...
- [OK] ECDSA RFC 6979 P384 11 RFC 6979 ...
- [OK] ECDSA RFC 6979 P521 0 public ke...
- [OK] ECDSA RFC 6979 P521 1 public ke...
- [OK] X25519 0 RFC 7748.
- [OK] ED25519 0 RFC 8032 1.
- [OK] ED25519 1 RFC 8032 2.
- [OK] ED25519 2 RFC 8032 3.
- [OK] ED25519 3 RFC 8032 4.
- [OK] ED25519 4 RFC 8032 5.
- [OK] ED25519 with offsets 0 one.
- [OK] ECDSA P521 regression 0 regreesion1.
-
- Full test results in `~/.opam/5.4/.opam-switch/build/mirage-crypto-ec.0.11.3/_build/default/tests/_build/_tests/EC'.
- Test Successful in 0.059s. 68 tests run.
- (cd _build/default/tests && ./test_ec_wycheproof.exe)
- Testing `Wycheproof NIST curves'.
- This run has ID `BPGVTNDQ'.
-
- [OK] ECDH P224 test vectors 0 1 - normal case.
- [OK] ECDH P224 test vectors 1 3 - edge case f...
- [OK] ECDH P224 test vectors 2 4 - edge case f...
- [OK] ECDH P224 test vectors 3 5 - edge case f...
- [OK] ECDH P224 test vectors 4 6 - edge case f...
- [OK] ECDH P224 test vectors 5 7 - edge case f...
- [OK] ECDH P224 test vectors 6 8 - edge case f...
- [OK] ECDH P224 test vectors 7 9 - edge case f...
- [OK] ECDH P224 test vectors 8 10 - edge case ...
- [OK] ECDH P224 test vectors 9 11 - edge case ...
- [OK] ECDH P224 test vectors 10 12 - edge case ...
- [OK] ECDH P224 test vectors 11 13 - edge case ...
- [OK] ECDH P224 test vectors 12 14 - edge case ...
- [OK] ECDH P224 test vectors 13 15 - edge case ...
- [OK] ECDH P224 test vectors 14 16 - edge case ...
- [OK] ECDH P224 test vectors 15 17 - edge case ...
- [OK] ECDH P224 test vectors 16 18 - edge case ...
- [OK] ECDH P224 test vectors 17 19 - edge cases...
- [OK] ECDH P224 test vectors 18 20 - edge cases...
- [OK] ECDH P224 test vectors 19 21 - edge cases...
- [OK] ECDH P224 test vectors 20 22 - edge cases...
- [OK] ECDH P224 test vectors 21 23 - edge cases...
- [OK] ECDH P224 test vectors 22 24 - edge cases...
- [OK] ECDH P224 test vectors 23 25 - edge cases...
- [OK] ECDH P224 test vectors 24 26 - edge cases...
- [OK] ECDH P224 test vectors 25 27 - edge cases...
- [OK] ECDH P224 test vectors 26 28 - edge cases...
- [OK] ECDH P224 test vectors 27 29 - edge cases...
- [OK] ECDH P224 test vectors 28 30 - edge cases...
- [OK] ECDH P224 test vectors 29 31 - edge cases...
- [OK] ECDH P224 test vectors 30 32 - edge cases...
- [OK] ECDH P224 test vectors 31 33 - edge cases...
- [OK] ECDH P224 test vectors 32 34 - edge cases...
- [OK] ECDH P224 test vectors 33 35 - point with...
- [OK] ECDH P224 test vectors 34 36 - point with...
- [OK] ECDH P224 test vectors 35 37 - point with...
- [OK] ECDH P224 test vectors 36 38 - point with...
- [OK] ECDH P224 test vectors 37 39 - point with...
- [OK] ECDH P224 test vectors 38 40 - point with...
- [OK] ECDH P224 test vectors 39 41 - point with...
- [OK] ECDH P224 test vectors 40 42 - point with...
- [OK] ECDH P224 test vectors 41 43 - point with...
- [OK] ECDH P224 test vectors 42 44 - point with...
- [OK] ECDH P224 test vectors 43 45 - point with...
- [OK] ECDH P224 test vectors 44 46 - point with...
- [OK] ECDH P224 test vectors 45 47 - point with...
- [OK] ECDH P224 test vectors 46 48 - point with...
- [OK] ECDH P224 test vectors 47 49 - point with...
- [OK] ECDH P224 test vectors 48 50 - point with...
- [OK] ECDH P224 test vectors 49 51 - point with...
- [OK] ECDH P224 test vectors 50 52 - point with...
- [OK] ECDH P224 test vectors 51 53 - point with...
- [OK] ECDH P224 test vectors 52 54 - point with...
- [OK] ECDH P224 test vectors 53 55 - point with...
- [OK] ECDH P224 test vectors 54 56 - point with...
- [OK] ECDH P224 test vectors 55 57 - point with...
- [OK] ECDH P224 test vectors 56 58 - point with...
- [OK] ECDH P224 test vectors 57 59 - point with...
- [OK] ECDH P224 test vectors 58 60 - point with...
- [OK] ECDH P224 test vectors 59 61 - point with...
- [OK] ECDH P224 test vectors 60 62 - point with...
- [OK] ECDH P224 test vectors 61 63 - point with...
- [OK] ECDH P224 test vectors 62 64 - point with...
- [OK] ECDH P224 test vectors 63 65 - point with...
- [OK] ECDH P224 test vectors 64 66 - edge case ...
- [OK] ECDH P224 test vectors 65 67 - edge case ...
- [OK] ECDH P224 test vectors 66 68 - edge case ...
- [OK] ECDH P224 test vectors 67 69 - edge case ...
- [OK] ECDH P224 test vectors 68 70 - edge case ...
- [OK] ECDH P224 test vectors 69 71 - edge case ...
- [OK] ECDH P224 test vectors 70 72 - edge case ...
- [OK] ECDH P224 test vectors 71 73 - edge case ...
- [OK] ECDH P224 test vectors 72 74 - edge case ...
- [OK] ECDH P224 test vectors 73 75 - edge case ...
- [OK] ECDH P224 test vectors 74 76 - edge case ...
- [OK] ECDH P224 test vectors 75 77 - edge case ...
- [OK] ECDH P224 test vectors 76 78 - edge case ...
- [OK] ECDH P224 test vectors 77 79 - point is n...
- [OK] ECDH P224 test vectors 78 80 - point is n...
- [OK] ECDH P224 test vectors 79 81 - point is n...
- [OK] ECDH P224 test vectors 80 82 - point is n...
- [OK] ECDH P224 test vectors 81 83 - point is n...
- [OK] ECDH P224 test vectors 82 84 - point is n...
- [OK] ECDH P224 test vectors 83 85 - point is n...
- [OK] ECDH P224 test vectors 84 86 - point is n...
- [OK] ECDH P224 test vectors 85 87 - point is n...
- [OK] ECDH P224 test vectors 86 88 - point is n...
- [OK] ECDH P224 test vectors 87 89 - point is n...
- [OK] ECDH P224 test vectors 88 90 - point is n...
- [OK] ECDH P224 test vectors 89 91 - point is n...
- [OK] ECDH P224 test vectors 90 92 - point is n...
- [OK] ECDH P224 test vectors 91 93 - point is n...
- [OK] ECDH P224 test vectors 92 94 - point is n...
- [OK] ECDH P224 test vectors 93 95 - .
- [OK] ECDH P224 test vectors 94 96 - public poi...
- [OK] ECDH P224 test vectors 95 97 - public poi...
- [OK] ECDH P224 test vectors 96 110 - using sec...
- [OK] ECDH P224 test vectors 97 111 - using sec...
- [OK] ECDH P224 test vectors 98 114 - Public ke...
- [OK] ECDH P224 test vectors 99 115 - Public ke...
- [OK] ECDH P224 test vectors 100 116 - Public ke...
- [OK] ECDH P224 test vectors 101 117 - Public ke...
- [OK] ECDH P224 test vectors 102 118 - Public ke...
- [OK] ECDH P224 test vectors 103 119 - Public ke...
- [OK] ECDH P224 test vectors 104 120 - Public ke...
- [OK] ECDH P224 test vectors 105 121 - Public ke...
- [OK] ECDH P224 test vectors 106 122 - Public ke...
- [OK] ECDH P224 test vectors 107 123 - Public ke...
- [OK] ECDH P224 test vectors 108 124 - Public ke...
- [OK] ECDH P224 test vectors 109 125 - Public ke...
- [OK] ECDH P224 test vectors 110 126 - Public ke...
- [OK] ECDH P224 test vectors 111 127 - Public ke...
- [OK] ECDH P224 test vectors 112 128 - Public ke...
- [OK] ECDH P224 test vectors 113 129 - invalid p...
- [OK] ECDSA P224 test vectors (SHA224) 0 1 - signature m...
- [OK] ECDSA P224 test vectors (SHA224) 1 2 - Legacy:ASN ...
- [OK] ECDSA P224 test vectors (SHA224) 2 3 - valid.
- [OK] ECDSA P224 test vectors (SHA224) 3 4 - long form e...
- [OK] ECDSA P224 test vectors (SHA224) 4 5 - length of s...
- [OK] ECDSA P224 test vectors (SHA224) 5 6 - wrong lengt...
- [OK] ECDSA P224 test vectors (SHA224) 6 7 - wrong lengt...
- [OK] ECDSA P224 test vectors (SHA224) 7 8 - uint32 over...
- [OK] ECDSA P224 test vectors (SHA224) 8 9 - uint64 over...
- [OK] ECDSA P224 test vectors (SHA224) 9 10 - length of ...
- [OK] ECDSA P224 test vectors (SHA224) 10 11 - length of ...
- [OK] ECDSA P224 test vectors (SHA224) 11 12 - length of ...
- [OK] ECDSA P224 test vectors (SHA224) 12 13 - length of ...
- [OK] ECDSA P224 test vectors (SHA224) 13 14 - incorrect ...
- [OK] ECDSA P224 test vectors (SHA224) 14 15 - indefinite...
- [OK] ECDSA P224 test vectors (SHA224) 15 16 - indefinite...
- [OK] ECDSA P224 test vectors (SHA224) 16 17 - indefinite...
- [OK] ECDSA P224 test vectors (SHA224) 17 18 - removing s...
- [OK] ECDSA P224 test vectors (SHA224) 18 19 - lonely seq...
- [OK] ECDSA P224 test vectors (SHA224) 19 20 - appending ...
- [OK] ECDSA P224 test vectors (SHA224) 20 21 - prepending...
- [OK] ECDSA P224 test vectors (SHA224) 21 22 - appending ...
- [OK] ECDSA P224 test vectors (SHA224) 22 23 - appending ...
- [OK] ECDSA P224 test vectors (SHA224) 23 24 - including ...
- [OK] ECDSA P224 test vectors (SHA224) 24 25 - including ...
- [OK] ECDSA P224 test vectors (SHA224) 25 26 - including ...
- [OK] ECDSA P224 test vectors (SHA224) 26 27 - including ...
- [OK] ECDSA P224 test vectors (SHA224) 27 28 - including ...
- [OK] ECDSA P224 test vectors (SHA224) 28 29 - including ...
- [OK] ECDSA P224 test vectors (SHA224) 29 30 - including ...
- [OK] ECDSA P224 test vectors (SHA224) 30 31 - including ...
- [OK] ECDSA P224 test vectors (SHA224) 31 32 - including ...
- [OK] ECDSA P224 test vectors (SHA224) 32 33 - including ...
- [OK] ECDSA P224 test vectors (SHA224) 33 34 - including ...
- [OK] ECDSA P224 test vectors (SHA224) 34 35 - including ...
- [OK] ECDSA P224 test vectors (SHA224) 35 36 - including ...
- [OK] ECDSA P224 test vectors (SHA224) 36 37 - including ...
- [OK] ECDSA P224 test vectors (SHA224) 37 38 - including ...
- [OK] ECDSA P224 test vectors (SHA224) 38 39 - truncated ...
- [OK] ECDSA P224 test vectors (SHA224) 39 40 - using comp...
- [OK] ECDSA P224 test vectors (SHA224) 40 41 - using comp...
- [OK] ECDSA P224 test vectors (SHA224) 41 42 - using comp...
- [OK] ECDSA P224 test vectors (SHA224) 42 43 - using comp...
- [OK] ECDSA P224 test vectors (SHA224) 43 44 - using comp...
- [OK] ECDSA P224 test vectors (SHA224) 44 45 - using comp...
- [OK] ECDSA P224 test vectors (SHA224) 45 46 - Replacing ...
- [OK] ECDSA P224 test vectors (SHA224) 46 47 - changing t...
- [OK] ECDSA P224 test vectors (SHA224) 47 48 - changing t...
- [OK] ECDSA P224 test vectors (SHA224) 48 49 - changing t...
- [OK] ECDSA P224 test vectors (SHA224) 49 50 - changing t...
- [OK] ECDSA P224 test vectors (SHA224) 50 51 - changing t...
- [OK] ECDSA P224 test vectors (SHA224) 51 52 - dropping v...
- [OK] ECDSA P224 test vectors (SHA224) 52 53 - using comp...
- [OK] ECDSA P224 test vectors (SHA224) 53 54 - truncated ...
- [OK] ECDSA P224 test vectors (SHA224) 54 55 - truncated ...
- [OK] ECDSA P224 test vectors (SHA224) 55 56 - indefinite...
- [OK] ECDSA P224 test vectors (SHA224) 56 57 - indefinite...
- [OK] ECDSA P224 test vectors (SHA224) 57 58 - indefinite...
- [OK] ECDSA P224 test vectors (SHA224) 58 59 - indefinite...
- [OK] ECDSA P224 test vectors (SHA224) 59 60 - indefinite...
- [OK] ECDSA P224 test vectors (SHA224) 60 61 - indefinite...
- [OK] ECDSA P224 test vectors (SHA224) 61 62 - prepend em...
- [OK] ECDSA P224 test vectors (SHA224) 62 63 - append emp...
- [OK] ECDSA P224 test vectors (SHA224) 63 64 - append gar...
- [OK] ECDSA P224 test vectors (SHA224) 64 65 - sequence o...
- [OK] ECDSA P224 test vectors (SHA224) 65 66 - truncated ...
- [OK] ECDSA P224 test vectors (SHA224) 66 67 - repeating ...
- [OK] ECDSA P224 test vectors (SHA224) 67 68 - long form ...
- [OK] ECDSA P224 test vectors (SHA224) 68 69 - long form ...
- [OK] ECDSA P224 test vectors (SHA224) 69 70 - length of ...
- [OK] ECDSA P224 test vectors (SHA224) 70 71 - length of ...
- [OK] ECDSA P224 test vectors (SHA224) 71 72 - wrong leng...
- [OK] ECDSA P224 test vectors (SHA224) 72 73 - wrong leng...
- [OK] ECDSA P224 test vectors (SHA224) 73 74 - wrong leng...
- [OK] ECDSA P224 test vectors (SHA224) 74 75 - wrong leng...
- [OK] ECDSA P224 test vectors (SHA224) 75 76 - uint32 ove...
- [OK] ECDSA P224 test vectors (SHA224) 76 77 - uint32 ove...
- [OK] ECDSA P224 test vectors (SHA224) 77 78 - uint64 ove...
- [OK] ECDSA P224 test vectors (SHA224) 78 79 - uint64 ove...
- [OK] ECDSA P224 test vectors (SHA224) 79 80 - length of ...
- [OK] ECDSA P224 test vectors (SHA224) 80 81 - length of ...
- [OK] ECDSA P224 test vectors (SHA224) 81 82 - length of ...
- [OK] ECDSA P224 test vectors (SHA224) 82 83 - length of ...
- [OK] ECDSA P224 test vectors (SHA224) 83 84 - length of ...
- [OK] ECDSA P224 test vectors (SHA224) 84 85 - length of ...
- [OK] ECDSA P224 test vectors (SHA224) 85 86 - length of ...
- [OK] ECDSA P224 test vectors (SHA224) 86 87 - length of ...
- [OK] ECDSA P224 test vectors (SHA224) 87 88 - incorrect ...
- [OK] ECDSA P224 test vectors (SHA224) 88 89 - incorrect ...
- [OK] ECDSA P224 test vectors (SHA224) 89 90 - removing i...
- [OK] ECDSA P224 test vectors (SHA224) 90 91 - lonely int...
- [OK] ECDSA P224 test vectors (SHA224) 91 92 - lonely int...
- [OK] ECDSA P224 test vectors (SHA224) 92 93 - appending ...
- [OK] ECDSA P224 test vectors (SHA224) 93 94 - appending ...
- [OK] ECDSA P224 test vectors (SHA224) 94 95 - prepending...
- [OK] ECDSA P224 test vectors (SHA224) 95 96 - prepending...
- [OK] ECDSA P224 test vectors (SHA224) 96 97 - appending ...
- [OK] ECDSA P224 test vectors (SHA224) 97 98 - appending ...
- [OK] ECDSA P224 test vectors (SHA224) 98 99 - appending ...
- [OK] ECDSA P224 test vectors (SHA224) 99 100 - truncated...
- [OK] ECDSA P224 test vectors (SHA224) 100 101 - truncated...
- [OK] ECDSA P224 test vectors (SHA224) 101 102 - Replacing...
- [OK] ECDSA P224 test vectors (SHA224) 102 103 - Replacing...
- [OK] ECDSA P224 test vectors (SHA224) 103 104 - changing ...
- [OK] ECDSA P224 test vectors (SHA224) 104 105 - changing ...
- [OK] ECDSA P224 test vectors (SHA224) 105 106 - changing ...
- [OK] ECDSA P224 test vectors (SHA224) 106 107 - changing ...
- [OK] ECDSA P224 test vectors (SHA224) 107 108 - changing ...
- [OK] ECDSA P224 test vectors (SHA224) 108 109 - changing ...
- [OK] ECDSA P224 test vectors (SHA224) 109 110 - changing ...
- [OK] ECDSA P224 test vectors (SHA224) 110 111 - changing ...
- [OK] ECDSA P224 test vectors (SHA224) 111 112 - changing ...
- [OK] ECDSA P224 test vectors (SHA224) 112 113 - changing ...
- [OK] ECDSA P224 test vectors (SHA224) 113 114 - dropping ...
- [OK] ECDSA P224 test vectors (SHA224) 114 115 - dropping ...
- [OK] ECDSA P224 test vectors (SHA224) 115 116 - using com...
- [OK] ECDSA P224 test vectors (SHA224) 116 117 - using com...
- [OK] ECDSA P224 test vectors (SHA224) 117 118 - modify fi...
- [OK] ECDSA P224 test vectors (SHA224) 118 119 - modify fi...
- [OK] ECDSA P224 test vectors (SHA224) 119 120 - modify la...
- [OK] ECDSA P224 test vectors (SHA224) 120 121 - modify la...
- [OK] ECDSA P224 test vectors (SHA224) 121 122 - truncated...
- [OK] ECDSA P224 test vectors (SHA224) 122 123 - truncated...
- [OK] ECDSA P224 test vectors (SHA224) 123 124 - truncated...
- [OK] ECDSA P224 test vectors (SHA224) 124 125 - leading f...
- [OK] ECDSA P224 test vectors (SHA224) 125 126 - leading f...
- [OK] ECDSA P224 test vectors (SHA224) 126 127 - replaced ...
- [OK] ECDSA P224 test vectors (SHA224) 127 128 - replaced ...
- [OK] ECDSA P224 test vectors (SHA224) 128 129 - replacing...
- [OK] ECDSA P224 test vectors (SHA224) 129 130 - replacing...
- [OK] ECDSA P224 test vectors (SHA224) 130 131 - Modified ...
- [OK] ECDSA P224 test vectors (SHA224) 131 132 - Modified ...
- [OK] ECDSA P224 test vectors (SHA224) 132 133 - Modified ...
- [OK] ECDSA P224 test vectors (SHA224) 133 134 - Modified ...
- [OK] ECDSA P224 test vectors (SHA224) 134 135 - Modified ...
- [OK] ECDSA P224 test vectors (SHA224) 135 136 - Modified ...
- [OK] ECDSA P224 test vectors (SHA224) 136 137 - Modified ...
- [OK] ECDSA P224 test vectors (SHA224) 137 138 - Modified ...
- [OK] ECDSA P224 test vectors (SHA224) 138 139 - Modified ...
- [OK] ECDSA P224 test vectors (SHA224) 139 140 - Modified ...
- [OK] ECDSA P224 test vectors (SHA224) 140 141 - Modified ...
- [OK] ECDSA P224 test vectors (SHA224) 141 142 - Modified ...
- [OK] ECDSA P224 test vectors (SHA224) 142 143 - Modified ...
- [OK] ECDSA P224 test vectors (SHA224) 143 144 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 144 145 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 145 146 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 146 147 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 147 148 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 148 149 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 149 150 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 150 151 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 151 152 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 152 153 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 153 154 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 154 155 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 155 156 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 156 157 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 157 158 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 158 159 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 159 160 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 160 161 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 161 162 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 162 163 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 163 164 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 164 165 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 165 166 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 166 167 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 167 168 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 168 169 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 169 170 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 170 171 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 171 172 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 172 173 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 173 174 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 174 175 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 175 176 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 176 177 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 177 178 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 178 179 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 179 180 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 180 181 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 181 182 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 182 183 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 183 184 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 184 185 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 185 186 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 186 187 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 187 188 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 188 189 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 189 190 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 190 191 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 191 192 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 192 193 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 193 194 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 194 195 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 195 196 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 196 197 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 197 198 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 198 199 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 199 200 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 200 201 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 201 202 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 202 203 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 203 204 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 204 205 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 205 206 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 206 207 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 207 208 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 208 209 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 209 210 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 210 211 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 211 212 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 212 213 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 213 214 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 214 215 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 215 216 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 216 217 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 217 218 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 218 219 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 219 220 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 220 221 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 221 222 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 222 223 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 223 224 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 224 225 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 225 226 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 226 227 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 227 228 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 228 229 - Signature...
- [OK] ECDSA P224 test vectors (SHA224) 229 230 - Edge case...
- [OK] ECDSA P224 test vectors (SHA224) 230 231 - special c...
- [OK] ECDSA P224 test vectors (SHA224) 231 232 - special c...
- [OK] ECDSA P224 test vectors (SHA224) 232 233 - special c...
- [OK] ECDSA P224 test vectors (SHA224) 233 234 - special c...
- [OK] ECDSA P224 test vectors (SHA224) 234 235 - special c...
- [OK] ECDSA P224 test vectors (SHA224) 235 236 - special c...
- [OK] ECDSA P224 test vectors (SHA224) 236 237 - special c...
- [OK] ECDSA P224 test vectors (SHA224) 237 238 - special c...
- [OK] ECDSA P224 test vectors (SHA224) 238 239 - special c...
- [OK] ECDSA P224 test vectors (SHA224) 239 240 - special c...
- [OK] ECDSA P224 test vectors (SHA224) 240 241 - special c...
- [OK] ECDSA P224 test vectors (SHA224) 241 242 - special c...
- [OK] ECDSA P224 test vectors (SHA224) 242 243 - special c...
- [OK] ECDSA P224 test vectors (SHA224) 243 244 - special c...
- [OK] ECDSA P224 test vectors (SHA224) 244 245 - special c...
- [OK] ECDSA P224 test vectors (SHA224) 245 246 - special c...
- [OK] ECDSA P224 test vectors (SHA224) 246 247 - special c...
- [OK] ECDSA P224 test vectors (SHA224) 247 248 - special c...
- [OK] ECDSA P224 test vectors (SHA224) 248 249 - special c...
- [OK] ECDSA P224 test vectors (SHA224) 249 250 - special c...
- [OK] ECDSA P224 test vectors (SHA224) 250 251 - special c...
- [OK] ECDSA P224 test vectors (SHA224) 251 252 - special c...
- [OK] ECDSA P224 test vectors (SHA224) 252 253 - special c...
- [OK] ECDSA P224 test vectors (SHA224) 253 254 - special c...
- [OK] ECDSA P224 test vectors (SHA224) 254 255 - special c...
- [OK] ECDSA P224 test vectors (SHA224) 255 256 - special c...
- [OK] ECDSA P224 test vectors (SHA224) 256 257 - k*G has a...
- [OK] ECDSA P224 test vectors (SHA224) 257 258 - r too large.
- [OK] ECDSA P224 test vectors (SHA224) 258 259 - r,s are l...
- [OK] ECDSA P224 test vectors (SHA224) 259 260 - r and s^-...
- [OK] ECDSA P224 test vectors (SHA224) 260 261 - r and s^-...
- [OK] ECDSA P224 test vectors (SHA224) 261 262 - small r a...
- [OK] ECDSA P224 test vectors (SHA224) 262 263 - small r a...
- [OK] ECDSA P224 test vectors (SHA224) 263 264 - small r a...
- [OK] ECDSA P224 test vectors (SHA224) 264 265 - r is larg...
- [OK] ECDSA P224 test vectors (SHA224) 265 266 - s is larg...
- [OK] ECDSA P224 test vectors (SHA224) 266 267 - small r a...
- [OK] ECDSA P224 test vectors (SHA224) 267 268 - smallish ...
- [OK] ECDSA P224 test vectors (SHA224) 268 269 - 100-bit r...
- [OK] ECDSA P224 test vectors (SHA224) 269 270 - small r a...
- [OK] ECDSA P224 test vectors (SHA224) 270 271 - 100-bit r...
- [OK] ECDSA P224 test vectors (SHA224) 271 272 - r and s^-...
- [OK] ECDSA P224 test vectors (SHA224) 272 273 - s == 1.
- [OK] ECDSA P224 test vectors (SHA224) 273 274 - s == 0.
- [OK] ECDSA P224 test vectors (SHA224) 274 275 - point at ...
- [OK] ECDSA P224 test vectors (SHA224) 275 276 - edge case...
- [OK] ECDSA P224 test vectors (SHA224) 276 277 - edge case...
- [OK] ECDSA P224 test vectors (SHA224) 277 278 - u1 == 1.
- [OK] ECDSA P224 test vectors (SHA224) 278 279 - u1 == n - 1.
- [OK] ECDSA P224 test vectors (SHA224) 279 280 - u2 == 1.
- [OK] ECDSA P224 test vectors (SHA224) 280 281 - u2 == n - 1.
- [OK] ECDSA P224 test vectors (SHA224) 281 282 - edge case...
- [OK] ECDSA P224 test vectors (SHA224) 282 283 - edge case...
- [OK] ECDSA P224 test vectors (SHA224) 283 284 - edge case...
- [OK] ECDSA P224 test vectors (SHA224) 284 285 - edge case...
- [OK] ECDSA P224 test vectors (SHA224) 285 286 - edge case...
- [OK] ECDSA P224 test vectors (SHA224) 286 287 - edge case...
- [OK] ECDSA P224 test vectors (SHA224) 287 288 - edge case...
- [OK] ECDSA P224 test vectors (SHA224) 288 289 - edge case...
- [OK] ECDSA P224 test vectors (SHA224) 289 290 - edge case...
- [OK] ECDSA P224 test vectors (SHA224) 290 291 - edge case...
- [OK] ECDSA P224 test vectors (SHA224) 291 292 - edge case...
- [OK] ECDSA P224 test vectors (SHA224) 292 293 - edge case...
- [OK] ECDSA P224 test vectors (SHA224) 293 294 - edge case...
- [OK] ECDSA P224 test vectors (SHA224) 294 295 - edge case...
- [OK] ECDSA P224 test vectors (SHA224) 295 296 - edge case...
- [OK] ECDSA P224 test vectors (SHA224) 296 297 - edge case...
- [OK] ECDSA P224 test vectors (SHA224) 297 298 - edge case...
- [OK] ECDSA P224 test vectors (SHA224) 298 299 - edge case...
- [OK] ECDSA P224 test vectors (SHA224) 299 300 - edge case...
- [OK] ECDSA P224 test vectors (SHA224) 300 301 - edge case...
- [OK] ECDSA P224 test vectors (SHA224) 301 302 - edge case...
- [OK] ECDSA P224 test vectors (SHA224) 302 303 - edge case...
- [OK] ECDSA P224 test vectors (SHA224) 303 304 - point dup...
- [OK] ECDSA P224 test vectors (SHA224) 304 305 - duplicati...
- [OK] ECDSA P224 test vectors (SHA224) 305 306 - compariso...
- [OK] ECDSA P224 test vectors (SHA224) 306 307 - extreme v...
- [OK] ECDSA P224 test vectors (SHA224) 307 308 - extreme v...
- [OK] ECDSA P224 test vectors (SHA224) 308 309 - extreme v...
- [OK] ECDSA P224 test vectors (SHA224) 309 310 - extreme v...
- [OK] ECDSA P224 test vectors (SHA224) 310 311 - extreme v...
- [OK] ECDSA P224 test vectors (SHA224) 311 312 - extreme v...
- [OK] ECDSA P224 test vectors (SHA224) 312 313 - extreme v...
- [OK] ECDSA P224 test vectors (SHA224) 313 314 - extreme v...
- [OK] ECDSA P224 test vectors (SHA224) 314 315 - extreme v...
- [OK] ECDSA P224 test vectors (SHA224) 315 316 - extreme v...
- [OK] ECDSA P224 test vectors (SHA224) 316 317 - extreme v...
- [OK] ECDSA P224 test vectors (SHA224) 317 318 - extreme v...
- [OK] ECDSA P224 test vectors (SHA224) 318 319 - testing p...
- [OK] ECDSA P224 test vectors (SHA224) 319 320 - testing p...
- [OK] ECDSA P224 test vectors (SHA224) 320 321 - testing p...
- [OK] ECDSA P224 test vectors (SHA224) 321 322 - testing p...
- [OK] ECDSA P224 test vectors (SHA224) 322 323 - pseudoran...
- [OK] ECDSA P224 test vectors (SHA224) 323 324 - pseudoran...
- [OK] ECDSA P224 test vectors (SHA224) 324 325 - pseudoran...
- [OK] ECDSA P224 test vectors (SHA224) 325 326 - pseudoran...
- [OK] ECDSA P224 test vectors (SHA224) 326 327 - y-coordin...
- [OK] ECDSA P224 test vectors (SHA224) 327 328 - y-coordin...
- [OK] ECDSA P224 test vectors (SHA224) 328 329 - y-coordin...
- [OK] ECDSA P224 test vectors (SHA224) 329 330 - y-coordin...
- [OK] ECDSA P224 test vectors (SHA224) 330 331 - y-coordin...
- [OK] ECDSA P224 test vectors (SHA224) 331 332 - y-coordin...
- [OK] ECDSA P224 test vectors (SHA224) 332 333 - x-coordin...
- [OK] ECDSA P224 test vectors (SHA224) 333 334 - x-coordin...
- [OK] ECDSA P224 test vectors (SHA224) 334 335 - x-coordin...
- [OK] ECDSA P224 test vectors (SHA224) 335 336 - x-coordin...
- [OK] ECDSA P224 test vectors (SHA224) 336 337 - x-coordin...
- [OK] ECDSA P224 test vectors (SHA224) 337 338 - x-coordin...
- [OK] ECDSA P224 test vectors (SHA224) 338 339 - y-coordin...
- [OK] ECDSA P224 test vectors (SHA224) 339 340 - y-coordin...
- [OK] ECDSA P224 test vectors (SHA224) 340 341 - y-coordin...
- [OK] ECDSA P224 test vectors (SHA224) 341 342 - y-coordin...
- [OK] ECDSA P224 test vectors (SHA224) 342 343 - y-coordin...
- [OK] ECDSA P224 test vectors (SHA224) 343 344 - y-coordin...
- [OK] ECDSA P224 test vectors (SHA224) 344 345 - x-coordin...
- [OK] ECDSA P224 test vectors (SHA224) 345 346 - x-coordin...
- [OK] ECDSA P224 test vectors (SHA224) 346 347 - x-coordin...
- [OK] ECDSA P224 test vectors (SHA224) 347 348 - x-coordin...
- [OK] ECDSA P224 test vectors (SHA224) 348 349 - x-coordin...
- [OK] ECDSA P224 test vectors (SHA224) 349 350 - x-coordin...
- [OK] ECDSA P224 test vectors (SHA224) 350 351 - y-coordin...
- [OK] ECDSA P224 test vectors (SHA224) 351 352 - y-coordin...
- [OK] ECDSA P224 test vectors (SHA224) 352 353 - y-coordin...
- [OK] ECDSA P224 test vectors (SHA224) 353 354 - y-coordin...
- [OK] ECDSA P224 test vectors (SHA224) 354 355 - y-coordin...
- [OK] ECDSA P224 test vectors (SHA224) 355 356 - y-coordin...
- [OK] ECDSA P224 test vectors (SHA256) 0 1 - signature m...
- [OK] ECDSA P224 test vectors (SHA256) 1 2 - valid.
- [OK] ECDSA P224 test vectors (SHA256) 2 3 - long form e...
- [OK] ECDSA P224 test vectors (SHA256) 3 4 - length of s...
- [OK] ECDSA P224 test vectors (SHA256) 4 5 - wrong lengt...
- [OK] ECDSA P224 test vectors (SHA256) 5 6 - wrong lengt...
- [OK] ECDSA P224 test vectors (SHA256) 6 7 - uint32 over...
- [OK] ECDSA P224 test vectors (SHA256) 7 8 - uint64 over...
- [OK] ECDSA P224 test vectors (SHA256) 8 9 - length of s...
- [OK] ECDSA P224 test vectors (SHA256) 9 10 - length of ...
- [OK] ECDSA P224 test vectors (SHA256) 10 11 - length of ...
- [OK] ECDSA P224 test vectors (SHA256) 11 12 - length of ...
- [OK] ECDSA P224 test vectors (SHA256) 12 13 - incorrect ...
- [OK] ECDSA P224 test vectors (SHA256) 13 14 - indefinite...
- [OK] ECDSA P224 test vectors (SHA256) 14 15 - indefinite...
- [OK] ECDSA P224 test vectors (SHA256) 15 16 - indefinite...
- [OK] ECDSA P224 test vectors (SHA256) 16 17 - removing s...
- [OK] ECDSA P224 test vectors (SHA256) 17 18 - lonely seq...
- [OK] ECDSA P224 test vectors (SHA256) 18 19 - appending ...
- [OK] ECDSA P224 test vectors (SHA256) 19 20 - prepending...
- [OK] ECDSA P224 test vectors (SHA256) 20 21 - appending ...
- [OK] ECDSA P224 test vectors (SHA256) 21 22 - appending ...
- [OK] ECDSA P224 test vectors (SHA256) 22 23 - including ...
- [OK] ECDSA P224 test vectors (SHA256) 23 24 - including ...
- [OK] ECDSA P224 test vectors (SHA256) 24 25 - including ...
- [OK] ECDSA P224 test vectors (SHA256) 25 26 - including ...
- [OK] ECDSA P224 test vectors (SHA256) 26 27 - including ...
- [OK] ECDSA P224 test vectors (SHA256) 27 28 - including ...
- [OK] ECDSA P224 test vectors (SHA256) 28 29 - including ...
- [OK] ECDSA P224 test vectors (SHA256) 29 30 - including ...
- [OK] ECDSA P224 test vectors (SHA256) 30 31 - including ...
- [OK] ECDSA P224 test vectors (SHA256) 31 32 - including ...
- [OK] ECDSA P224 test vectors (SHA256) 32 33 - including ...
- [OK] ECDSA P224 test vectors (SHA256) 33 34 - including ...
- [OK] ECDSA P224 test vectors (SHA256) 34 35 - including ...
- ...TRUNCATED BY DUNE...
- [OK] X25519 test vectors 157 158 - special c...
- [OK] X25519 test vectors 158 159 - special c...
- [OK] X25519 test vectors 159 160 - special c...
- [OK] X25519 test vectors 160 161 - special c...
- [OK] X25519 test vectors 161 162 - special c...
- [OK] X25519 test vectors 162 163 - special c...
- [OK] X25519 test vectors 163 164 - special c...
- [OK] X25519 test vectors 164 165 - D = 0 in ...
- [OK] X25519 test vectors 165 166 - D = 0 in ...
- [OK] X25519 test vectors 166 167 - special c...
- [OK] X25519 test vectors 167 168 - special c...
- [OK] X25519 test vectors 168 169 - special c...
- [OK] X25519 test vectors 169 170 - special c...
- [OK] X25519 test vectors 170 171 - special c...
- [OK] X25519 test vectors 171 172 - special c...
- [OK] X25519 test vectors 172 173 - special c...
- [OK] X25519 test vectors 173 174 - special c...
- [OK] X25519 test vectors 174 175 - special c...
- [OK] X25519 test vectors 175 176 - special c...
- [OK] X25519 test vectors 176 177 - special c...
- [OK] X25519 test vectors 177 178 - special c...
- [OK] X25519 test vectors 178 179 - special c...
- [OK] X25519 test vectors 179 180 - special c...
- [OK] X25519 test vectors 180 181 - special c...
- [OK] X25519 test vectors 181 182 - special c...
- [OK] X25519 test vectors 182 183 - special c...
- [OK] X25519 test vectors 183 184 - special c...
- [OK] X25519 test vectors 184 185 - special c...
- [OK] X25519 test vectors 185 186 - special c...
- [OK] X25519 test vectors 186 187 - special c...
- [OK] X25519 test vectors 187 188 - special c...
- [OK] X25519 test vectors 188 189 - special c...
- [OK] X25519 test vectors 189 190 - special c...
- [OK] X25519 test vectors 190 191 - special c...
- [OK] X25519 test vectors 191 192 - special c...
- [OK] X25519 test vectors 192 193 - special c...
- [OK] X25519 test vectors 193 194 - special c...
- [OK] X25519 test vectors 194 195 - special c...
- [OK] X25519 test vectors 195 196 - special c...
- [OK] X25519 test vectors 196 197 - special c...
- [OK] X25519 test vectors 197 198 - special c...
- [OK] X25519 test vectors 198 199 - special c...
- [OK] X25519 test vectors 199 200 - special c...
- [OK] X25519 test vectors 200 201 - special c...
- [OK] X25519 test vectors 201 202 - special c...
- [OK] X25519 test vectors 202 203 - special c...
- [OK] X25519 test vectors 203 204 - special c...
- [OK] X25519 test vectors 204 205 - special c...
- [OK] X25519 test vectors 205 206 - special c...
- [OK] X25519 test vectors 206 207 - special c...
- [OK] X25519 test vectors 207 208 - special c...
- [OK] X25519 test vectors 208 209 - special c...
- [OK] X25519 test vectors 209 210 - special c...
- [OK] X25519 test vectors 210 211 - special c...
- [OK] X25519 test vectors 211 212 - special c...
- [OK] X25519 test vectors 212 213 - special c...
- [OK] X25519 test vectors 213 214 - special c...
- [OK] X25519 test vectors 214 215 - special c...
- [OK] X25519 test vectors 215 216 - special c...
- [OK] X25519 test vectors 216 217 - special c...
- [OK] X25519 test vectors 217 218 - special c...
- [OK] X25519 test vectors 218 219 - special c...
- [OK] X25519 test vectors 219 220 - special c...
- [OK] X25519 test vectors 220 221 - special c...
- [OK] X25519 test vectors 221 222 - special c...
- [OK] X25519 test vectors 222 223 - special c...
- [OK] X25519 test vectors 223 224 - special c...
- [OK] X25519 test vectors 224 225 - special c...
- [OK] X25519 test vectors 225 226 - special c...
- [OK] X25519 test vectors 226 227 - special c...
- [OK] X25519 test vectors 227 228 - special c...
- [OK] X25519 test vectors 228 229 - special c...
- [OK] X25519 test vectors 229 230 - special c...
- [OK] X25519 test vectors 230 231 - special c...
- [OK] X25519 test vectors 231 232 - special c...
- [OK] X25519 test vectors 232 233 - special c...
- [OK] X25519 test vectors 233 234 - special c...
- [OK] X25519 test vectors 234 235 - special c...
- [OK] X25519 test vectors 235 236 - special c...
- [OK] X25519 test vectors 236 237 - special c...
- [OK] X25519 test vectors 237 238 - special c...
- [OK] X25519 test vectors 238 239 - special c...
- [OK] X25519 test vectors 239 240 - special c...
- [OK] X25519 test vectors 240 241 - special c...
- [OK] X25519 test vectors 241 242 - special c...
- [OK] X25519 test vectors 242 243 - special c...
- [OK] X25519 test vectors 243 244 - special c...
- [OK] X25519 test vectors 244 245 - special c...
- [OK] X25519 test vectors 245 246 - special c...
- [OK] X25519 test vectors 246 247 - special c...
- [OK] X25519 test vectors 247 248 - special c...
- [OK] X25519 test vectors 248 249 - special c...
- [OK] X25519 test vectors 249 250 - special c...
- [OK] X25519 test vectors 250 251 - special c...
- [OK] X25519 test vectors 251 252 - special c...
- [OK] X25519 test vectors 252 253 - special c...
- [OK] X25519 test vectors 253 254 - special c...
- [OK] X25519 test vectors 254 255 - special c...
- [OK] X25519 test vectors 255 256 - special c...
- [OK] X25519 test vectors 256 257 - special c...
- [OK] X25519 test vectors 257 258 - special c...
- [OK] X25519 test vectors 258 259 - special c...
- [OK] X25519 test vectors 259 260 - special c...
- [OK] X25519 test vectors 260 261 - special c...
- [OK] X25519 test vectors 261 262 - special c...
- [OK] X25519 test vectors 262 263 - special c...
- [OK] X25519 test vectors 263 264 - special c...
- [OK] X25519 test vectors 264 265 - special c...
- [OK] X25519 test vectors 265 266 - special c...
- [OK] X25519 test vectors 266 267 - special c...
- [OK] X25519 test vectors 267 268 - special c...
- [OK] X25519 test vectors 268 269 - special c...
- [OK] X25519 test vectors 269 270 - special c...
- [OK] X25519 test vectors 270 271 - special c...
- [OK] X25519 test vectors 271 272 - special c...
- [OK] X25519 test vectors 272 273 - special c...
- [OK] X25519 test vectors 273 274 - special c...
- [OK] X25519 test vectors 274 275 - special c...
- [OK] X25519 test vectors 275 276 - special c...
- [OK] X25519 test vectors 276 277 - special c...
- [OK] X25519 test vectors 277 278 - special c...
- [OK] X25519 test vectors 278 279 - special c...
- [OK] X25519 test vectors 279 280 - special c...
- [OK] X25519 test vectors 280 281 - special c...
- [OK] X25519 test vectors 281 282 - special c...
- [OK] X25519 test vectors 282 283 - special c...
- [OK] X25519 test vectors 283 284 - special c...
- [OK] X25519 test vectors 284 285 - special c...
- [OK] X25519 test vectors 285 286 - special c...
- [OK] X25519 test vectors 286 287 - special c...
- [OK] X25519 test vectors 287 288 - special c...
- [OK] X25519 test vectors 288 289 - special c...
- [OK] X25519 test vectors 289 290 - special c...
- [OK] X25519 test vectors 290 291 - special c...
- [OK] X25519 test vectors 291 292 - special c...
- [OK] X25519 test vectors 292 293 - special c...
- [OK] X25519 test vectors 293 294 - special c...
- [OK] X25519 test vectors 294 295 - special c...
- [OK] X25519 test vectors 295 296 - special c...
- [OK] X25519 test vectors 296 297 - special c...
- [OK] X25519 test vectors 297 298 - special c...
- [OK] X25519 test vectors 298 299 - special c...
- [OK] X25519 test vectors 299 300 - special c...
- [OK] X25519 test vectors 300 301 - special c...
- [OK] X25519 test vectors 301 302 - special c...
- [OK] X25519 test vectors 302 303 - special c...
- [OK] X25519 test vectors 303 304 - special c...
- [OK] X25519 test vectors 304 305 - special c...
- [OK] X25519 test vectors 305 306 - special c...
- [OK] X25519 test vectors 306 307 - special c...
- [OK] X25519 test vectors 307 308 - special c...
- [OK] X25519 test vectors 308 309 - special c...
- [OK] X25519 test vectors 309 310 - special c...
- [OK] X25519 test vectors 310 311 - special c...
- [OK] X25519 test vectors 311 312 - special c...
- [OK] X25519 test vectors 312 313 - special c...
- [OK] X25519 test vectors 313 314 - special c...
- [OK] X25519 test vectors 314 315 - special c...
- [OK] X25519 test vectors 315 316 - special c...
- [OK] X25519 test vectors 316 317 - special c...
- [OK] X25519 test vectors 317 318 - special c...
- [OK] X25519 test vectors 318 319 - special c...
- [OK] X25519 test vectors 319 320 - special c...
- [OK] X25519 test vectors 320 321 - special c...
- [OK] X25519 test vectors 321 322 - special c...
- [OK] X25519 test vectors 322 323 - special c...
- [OK] X25519 test vectors 323 324 - special c...
- [OK] X25519 test vectors 324 325 - special c...
- [OK] X25519 test vectors 325 326 - special c...
- [OK] X25519 test vectors 326 327 - special c...
- [OK] X25519 test vectors 327 328 - special c...
- [OK] X25519 test vectors 328 329 - special c...
- [OK] X25519 test vectors 329 330 - special c...
- [OK] X25519 test vectors 330 331 - special c...
- [OK] X25519 test vectors 331 332 - special c...
- [OK] X25519 test vectors 332 333 - special c...
- [OK] X25519 test vectors 333 334 - special c...
- [OK] X25519 test vectors 334 335 - special c...
- [OK] X25519 test vectors 335 336 - special c...
- [OK] X25519 test vectors 336 337 - special c...
- [OK] X25519 test vectors 337 338 - special c...
- [OK] X25519 test vectors 338 339 - special c...
- [OK] X25519 test vectors 339 340 - special c...
- [OK] X25519 test vectors 340 341 - special c...
- [OK] X25519 test vectors 341 342 - special c...
- [OK] X25519 test vectors 342 343 - special c...
- [OK] X25519 test vectors 343 344 - special c...
- [OK] X25519 test vectors 344 345 - special c...
- [OK] X25519 test vectors 345 346 - special c...
- [OK] X25519 test vectors 346 347 - special c...
- [OK] X25519 test vectors 347 348 - special c...
- [OK] X25519 test vectors 348 349 - special c...
- [OK] X25519 test vectors 349 350 - special c...
- [OK] X25519 test vectors 350 351 - special c...
- [OK] X25519 test vectors 351 352 - special c...
- [OK] X25519 test vectors 352 353 - special c...
- [OK] X25519 test vectors 353 354 - special c...
- [OK] X25519 test vectors 354 355 - special c...
- [OK] X25519 test vectors 355 356 - special c...
- [OK] X25519 test vectors 356 357 - special c...
- [OK] X25519 test vectors 357 358 - special c...
- [OK] X25519 test vectors 358 359 - special c...
- [OK] X25519 test vectors 359 360 - special c...
- [OK] X25519 test vectors 360 361 - special c...
- [OK] X25519 test vectors 361 362 - special c...
- [OK] X25519 test vectors 362 363 - special c...
- [OK] X25519 test vectors 363 364 - special c...
- [OK] X25519 test vectors 364 365 - special c...
- [OK] X25519 test vectors 365 366 - special c...
- [OK] X25519 test vectors 366 367 - special c...
- [OK] X25519 test vectors 367 368 - special c...
- [OK] X25519 test vectors 368 369 - special c...
- [OK] X25519 test vectors 369 370 - special c...
- [OK] X25519 test vectors 370 371 - special c...
- [OK] X25519 test vectors 371 372 - special c...
- [OK] X25519 test vectors 372 373 - special c...
- [OK] X25519 test vectors 373 374 - special c...
- [OK] X25519 test vectors 374 375 - special c...
- [OK] X25519 test vectors 375 376 - special c...
- [OK] X25519 test vectors 376 377 - special c...
- [OK] X25519 test vectors 377 378 - special c...
- [OK] X25519 test vectors 378 379 - special c...
- [OK] X25519 test vectors 379 380 - special c...
- [OK] X25519 test vectors 380 381 - special c...
- [OK] X25519 test vectors 381 382 - special c...
- [OK] X25519 test vectors 382 383 - special c...
- [OK] X25519 test vectors 383 384 - special c...
- [OK] X25519 test vectors 384 385 - special c...
- [OK] X25519 test vectors 385 386 - special c...
- [OK] X25519 test vectors 386 387 - special c...
- [OK] X25519 test vectors 387 388 - special c...
- [OK] X25519 test vectors 388 389 - special c...
- [OK] X25519 test vectors 389 390 - special c...
- [OK] X25519 test vectors 390 391 - special c...
- [OK] X25519 test vectors 391 392 - special c...
- [OK] X25519 test vectors 392 393 - special c...
- [OK] X25519 test vectors 393 394 - special c...
- [OK] X25519 test vectors 394 395 - special c...
- [OK] X25519 test vectors 395 396 - special c...
- [OK] X25519 test vectors 396 397 - special c...
- [OK] X25519 test vectors 397 398 - special c...
- [OK] X25519 test vectors 398 399 - special c...
- [OK] X25519 test vectors 399 400 - special c...
- [OK] X25519 test vectors 400 401 - special c...
- [OK] X25519 test vectors 401 402 - special c...
- [OK] X25519 test vectors 402 403 - special c...
- [OK] X25519 test vectors 403 404 - special c...
- [OK] X25519 test vectors 404 405 - special c...
- [OK] X25519 test vectors 405 406 - special c...
- [OK] X25519 test vectors 406 407 - special c...
- [OK] X25519 test vectors 407 408 - special c...
- [OK] X25519 test vectors 408 409 - special c...
- [OK] X25519 test vectors 409 410 - special c...
- [OK] X25519 test vectors 410 411 - special c...
- [OK] X25519 test vectors 411 412 - special c...
- [OK] X25519 test vectors 412 413 - special c...
- [OK] X25519 test vectors 413 414 - special c...
- [OK] X25519 test vectors 414 415 - special c...
- [OK] X25519 test vectors 415 416 - special c...
- [OK] X25519 test vectors 416 417 - special c...
- [OK] X25519 test vectors 417 418 - special c...
- [OK] X25519 test vectors 418 419 - special c...
- [OK] X25519 test vectors 419 420 - special c...
- [OK] X25519 test vectors 420 421 - special c...
- [OK] X25519 test vectors 421 422 - special c...
- [OK] X25519 test vectors 422 423 - special c...
- [OK] X25519 test vectors 423 424 - special c...
- [OK] X25519 test vectors 424 425 - special c...
- [OK] X25519 test vectors 425 426 - special c...
- [OK] X25519 test vectors 426 427 - special c...
- [OK] X25519 test vectors 427 428 - special c...
- [OK] X25519 test vectors 428 429 - special c...
- [OK] X25519 test vectors 429 430 - special c...
- [OK] X25519 test vectors 430 431 - special c...
- [OK] X25519 test vectors 431 432 - special c...
- [OK] X25519 test vectors 432 433 - special c...
- [OK] X25519 test vectors 433 434 - special c...
- [OK] X25519 test vectors 434 435 - special c...
- [OK] X25519 test vectors 435 436 - special c...
- [OK] X25519 test vectors 436 437 - special c...
- [OK] X25519 test vectors 437 438 - special c...
- [OK] X25519 test vectors 438 439 - special c...
- [OK] X25519 test vectors 439 440 - special c...
- [OK] X25519 test vectors 440 441 - special c...
- [OK] X25519 test vectors 441 442 - special c...
- [OK] X25519 test vectors 442 443 - special c...
- [OK] X25519 test vectors 443 444 - special c...
- [OK] X25519 test vectors 444 445 - special c...
- [OK] X25519 test vectors 445 446 - special c...
- [OK] X25519 test vectors 446 447 - special c...
- [OK] X25519 test vectors 447 448 - special c...
- [OK] X25519 test vectors 448 449 - special c...
- [OK] X25519 test vectors 449 450 - special c...
- [OK] X25519 test vectors 450 451 - special c...
- [OK] X25519 test vectors 451 452 - special c...
- [OK] X25519 test vectors 452 453 - special c...
- [OK] X25519 test vectors 453 454 - special c...
- [OK] X25519 test vectors 454 455 - special c...
- [OK] X25519 test vectors 455 456 - special c...
- [OK] X25519 test vectors 456 457 - special c...
- [OK] X25519 test vectors 457 458 - special c...
- [OK] X25519 test vectors 458 459 - special c...
- [OK] X25519 test vectors 459 460 - special c...
- [OK] X25519 test vectors 460 461 - special c...
- [OK] X25519 test vectors 461 462 - special c...
- [OK] X25519 test vectors 462 463 - special c...
- [OK] X25519 test vectors 463 464 - special c...
- [OK] X25519 test vectors 464 465 - special c...
- [OK] X25519 test vectors 465 466 - special c...
- [OK] X25519 test vectors 466 467 - special c...
- [OK] X25519 test vectors 467 468 - special c...
- [OK] X25519 test vectors 468 469 - special c...
- [OK] X25519 test vectors 469 470 - special c...
- [OK] X25519 test vectors 470 471 - special c...
- [OK] X25519 test vectors 471 472 - special c...
- [OK] X25519 test vectors 472 473 - special c...
- [OK] X25519 test vectors 473 474 - special c...
- [OK] X25519 test vectors 474 475 - special c...
- [OK] X25519 test vectors 475 476 - special c...
- [OK] X25519 test vectors 476 477 - special c...
- [OK] X25519 test vectors 477 478 - special c...
- [OK] X25519 test vectors 478 479 - special c...
- [OK] X25519 test vectors 479 480 - special c...
- [OK] X25519 test vectors 480 481 - special c...
- [OK] X25519 test vectors 481 482 - special c...
- [OK] X25519 test vectors 482 483 - special c...
- [OK] X25519 test vectors 483 484 - special c...
- [OK] X25519 test vectors 484 485 - special c...
- [OK] X25519 test vectors 485 486 - special c...
- [OK] X25519 test vectors 486 487 - special c...
- [OK] X25519 test vectors 487 488 - special c...
- [OK] X25519 test vectors 488 489 - special c...
- [OK] X25519 test vectors 489 490 - special c...
- [OK] X25519 test vectors 490 491 - special c...
- [OK] X25519 test vectors 491 492 - special c...
- [OK] X25519 test vectors 492 493 - special c...
- [OK] X25519 test vectors 493 494 - special c...
- [OK] X25519 test vectors 494 495 - special c...
- [OK] X25519 test vectors 495 496 - special c...
- [OK] X25519 test vectors 496 497 - special c...
- [OK] X25519 test vectors 497 498 - special c...
- [OK] X25519 test vectors 498 499 - special c...
- [OK] X25519 test vectors 499 500 - special c...
- [OK] X25519 test vectors 500 501 - special c...
- [OK] X25519 test vectors 501 502 - special c...
- [OK] X25519 test vectors 502 503 - special c...
- [OK] X25519 test vectors 503 504 - special c...
- [OK] X25519 test vectors 504 505 - special c...
- [OK] X25519 test vectors 505 506 - special c...
- [OK] X25519 test vectors 506 507 - special c...
- [OK] X25519 test vectors 507 508 - special c...
- [OK] X25519 test vectors 508 509 - special c...
- [OK] X25519 test vectors 509 510 - special c...
- [OK] X25519 test vectors 510 511 - private k...
- [OK] X25519 test vectors 511 512 - private k...
- [OK] X25519 test vectors 512 513 - special c...
- [OK] X25519 test vectors 513 514 - special c...
- [OK] X25519 test vectors 514 515 - special c...
- [OK] X25519 test vectors 515 516 - special c...
- [OK] X25519 test vectors 516 517 - special c...
- [OK] X25519 test vectors 517 518 - special c...
- [OK] ED25519 test vectors 0 1 - .
- [OK] ED25519 test vectors 1 2 - .
- [OK] ED25519 test vectors 2 3 - .
- [OK] ED25519 test vectors 3 4 - .
- [OK] ED25519 test vectors 4 5 - .
- [OK] ED25519 test vectors 5 6 - .
- [OK] ED25519 test vectors 6 7 - .
- [OK] ED25519 test vectors 7 8 - .
- [OK] ED25519 test vectors 8 9 - .
- [OK] ED25519 test vectors 9 10 - special va...
- [OK] ED25519 test vectors 10 11 - special va...
- [OK] ED25519 test vectors 11 12 - special va...
- [OK] ED25519 test vectors 12 13 - special va...
- [OK] ED25519 test vectors 13 14 - special va...
- [OK] ED25519 test vectors 14 15 - special va...
- [OK] ED25519 test vectors 15 16 - special va...
- [OK] ED25519 test vectors 16 17 - special va...
- [OK] ED25519 test vectors 17 18 - special va...
- [OK] ED25519 test vectors 18 19 - special va...
- [OK] ED25519 test vectors 19 20 - special va...
- [OK] ED25519 test vectors 20 21 - special va...
- [OK] ED25519 test vectors 21 22 - special va...
- [OK] ED25519 test vectors 22 23 - special va...
- [OK] ED25519 test vectors 23 24 - special va...
- [OK] ED25519 test vectors 24 25 - special va...
- [OK] ED25519 test vectors 25 26 - special va...
- [OK] ED25519 test vectors 26 27 - special va...
- [OK] ED25519 test vectors 27 28 - special va...
- [OK] ED25519 test vectors 28 29 - special va...
- [OK] ED25519 test vectors 29 30 - empty sign...
- [OK] ED25519 test vectors 30 31 - s missing.
- [OK] ED25519 test vectors 31 32 - signature ...
- [OK] ED25519 test vectors 32 33 - signature ...
- [OK] ED25519 test vectors 33 34 - include pk...
- [OK] ED25519 test vectors 34 35 - prepending...
- [OK] ED25519 test vectors 35 36 - prepending...
- [OK] ED25519 test vectors 36 37 - appending ...
- [OK] ED25519 test vectors 37 38 - removing 0...
- [OK] ED25519 test vectors 38 39 - removing 0...
- [OK] ED25519 test vectors 39 40 - removing l...
- [OK] ED25519 test vectors 40 41 - dropping b...
- [OK] ED25519 test vectors 41 42 - modified b...
- [OK] ED25519 test vectors 42 43 - modified b...
- [OK] ED25519 test vectors 43 44 - modified b...
- [OK] ED25519 test vectors 44 45 - modified b...
- [OK] ED25519 test vectors 45 46 - modified b...
- [OK] ED25519 test vectors 46 47 - modified b...
- [OK] ED25519 test vectors 47 48 - modified b...
- [OK] ED25519 test vectors 48 49 - modified b...
- [OK] ED25519 test vectors 49 50 - modified b...
- [OK] ED25519 test vectors 50 51 - modified b...
- [OK] ED25519 test vectors 51 52 - modified b...
- [OK] ED25519 test vectors 52 53 - modified b...
- [OK] ED25519 test vectors 53 54 - modified b...
- [OK] ED25519 test vectors 54 55 - modified b...
- [OK] ED25519 test vectors 55 56 - modified b...
- [OK] ED25519 test vectors 56 57 - modified b...
- [OK] ED25519 test vectors 57 58 - modified b...
- [OK] ED25519 test vectors 58 59 - modified b...
- [OK] ED25519 test vectors 59 60 - R==0.
- [OK] ED25519 test vectors 60 61 - invalid R.
- [OK] ED25519 test vectors 61 62 - all bits f...
- [OK] ED25519 test vectors 62 63 - checking m...
- [OK] ED25519 test vectors 63 64 - checking m...
- [OK] ED25519 test vectors 64 65 - checking m...
- [OK] ED25519 test vectors 65 66 - checking m...
- [OK] ED25519 test vectors 66 67 - checking m...
- [OK] ED25519 test vectors 67 68 - checking m...
- [OK] ED25519 test vectors 68 69 - checking m...
- [OK] ED25519 test vectors 69 70 - checking m...
- [OK] ED25519 test vectors 70 71 - .
- [OK] ED25519 test vectors 71 72 - .
- [OK] ED25519 test vectors 72 73 - .
- [OK] ED25519 test vectors 73 74 - .
- [OK] ED25519 test vectors 74 75 - .
- [OK] ED25519 test vectors 75 76 - .
- [OK] ED25519 test vectors 76 77 - .
- [OK] ED25519 test vectors 77 78 - .
- [OK] ED25519 test vectors 78 79 - .
- [OK] ED25519 test vectors 79 80 - draft-jose...
- [OK] ED25519 test vectors 80 81 - draft-jose...
- [OK] ED25519 test vectors 81 82 - draft-jose...
- [OK] ED25519 test vectors 82 83 - draft-jose...
- [OK] ED25519 test vectors 83 84 - Random tes...
- [OK] ED25519 test vectors 84 85 - Random tes...
- [OK] ED25519 test vectors 85 86 - Random tes...
- [OK] ED25519 test vectors 86 87 - Random tes...
- [OK] ED25519 test vectors 87 88 - Random tes...
- [OK] ED25519 test vectors 88 89 - Random tes...
- [OK] ED25519 test vectors 89 90 - Random tes...
- [OK] ED25519 test vectors 90 91 - Random tes...
- [OK] ED25519 test vectors 91 92 - Random tes...
- [OK] ED25519 test vectors 92 93 - Random tes...
- [OK] ED25519 test vectors 93 94 - Random tes...
- [OK] ED25519 test vectors 94 95 - Random tes...
- [OK] ED25519 test vectors 95 96 - Random tes...
- [OK] ED25519 test vectors 96 97 - Random tes...
- [OK] ED25519 test vectors 97 98 - Random tes...
- [OK] ED25519 test vectors 98 99 - Random tes...
- [OK] ED25519 test vectors 99 100 - Random te...
- [OK] ED25519 test vectors 100 101 - Random te...
- [OK] ED25519 test vectors 101 102 - Random te...
- [OK] ED25519 test vectors 102 103 - Random te...
- [OK] ED25519 test vectors 103 104 - Random te...
- [OK] ED25519 test vectors 104 105 - Random te...
- [OK] ED25519 test vectors 105 106 - Random te...
- [OK] ED25519 test vectors 106 107 - Random te...
- [OK] ED25519 test vectors 107 108 - Random te...
- [OK] ED25519 test vectors 108 109 - Random te...
- [OK] ED25519 test vectors 109 110 - Random te...
- [OK] ED25519 test vectors 110 111 - Random te...
- [OK] ED25519 test vectors 111 112 - Test case...
- [OK] ED25519 test vectors 112 113 - Test case...
- [OK] ED25519 test vectors 113 114 - Test case...
- [OK] ED25519 test vectors 114 115 - Test case...
- [OK] ED25519 test vectors 115 116 - Test case...
- [OK] ED25519 test vectors 116 117 - regressio...
- [OK] ED25519 test vectors 117 118 - regressio...
- [OK] ED25519 test vectors 118 119 - regressio...
- [OK] ED25519 test vectors 119 120 - regressio...
- [OK] ED25519 test vectors 120 121 - regressio...
- [OK] ED25519 test vectors 121 122 - regressio...
- [OK] ED25519 test vectors 122 123 - regressio...
- [OK] ED25519 test vectors 123 124 - regressio...
- [OK] ED25519 test vectors 124 125 - regressio...
- [OK] ED25519 test vectors 125 126 - regressio...
- [OK] ED25519 test vectors 126 127 - regressio...
- [OK] ED25519 test vectors 127 128 - regressio...
- [OK] ED25519 test vectors 128 129 - regressio...
- [OK] ED25519 test vectors 129 130 - regressio...
- [OK] ED25519 test vectors 130 131 - regressio...
- [OK] ED25519 test vectors 131 132 - regressio...
- [OK] ED25519 test vectors 132 133 - regressio...
- [OK] ED25519 test vectors 133 134 - regressio...
- [OK] ED25519 test vectors 134 135 - regressio...
- [OK] ED25519 test vectors 135 136 - regressio...
- [OK] ED25519 test vectors 136 137 - regressio...
- [OK] ED25519 test vectors 137 138 - regressio...
- [OK] ED25519 test vectors 138 139 - regressio...
- [OK] ED25519 test vectors 139 140 - regressio...
- [OK] ED25519 test vectors 140 141 - regressio...
- [OK] ED25519 test vectors 141 142 - regressio...
- [OK] ED25519 test vectors 142 143 - regressio...
- [OK] ED25519 test vectors 143 144 - regressio...
- [OK] ED25519 test vectors 144 145 - regressio...
-
- Full test results in `~/.opam/5.4/.opam-switch/build/mirage-crypto-ec.0.11.3/_build/default/tests/_build/_tests/Wycheproof NIST curves'.
- Test Successful in 10.268s. 4811 tests run.
-> compiled mirage-crypto-ec.0.11.3
-> removed mirage-crypto-ec.0.11.3
-> installed mirage-crypto-ec.0.11.3
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-02 00:18.33 ---> saved as "5fec30bdaae077ab42c58a33604ec99f970934c09d0b3dd94cfed4143af7750d"
Job succeeded
2026-03-02 00:18.42: Job succeeded