(for PR #29582)
2026-03-25 13:14.47: New job: test fiat-p256.0.2.3 with ocaml-compiler.5.4.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29582/head (fa5fb3a6a806e832e4c7791145889a6bbe8b64ef)
on debian-13-ocaml-5.4/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29582/head" && git reset --hard fa5fb3a6
git fetch origin master
git merge --no-edit 2f93e9d4614d6376ed929fc2cee7c59cb9d5833b
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn ocaml-compiler.5.4.0 5.4.0
RUN opam reinstall --update-invariant ocaml-compiler.5.4.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ocaml-compiler.5.4.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall fiat-p256.0.2.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" != 'fiat-p256.0.2.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 fiat-p256.0.2.3) || true
RUN opam reinstall --with-test --verbose fiat-p256.0.2.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" != 'fiat-p256.0.2.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-03-25 13:14.47: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6-ocaml-compiler.5.4.0-fiat-p256.0.2.3-fa5fb3a6a806e832e4c7791145889a6bbe8b64ef"
2026-03-25 13:14.47: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
(run (shell "opam option solver=builtin-0install && opam config report"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMPRECISETRACKING 1)
(env CI true)
(env OPAM_REPO_CI true)
(run (shell "rm -rf opam-repository/"))
(copy (src .) (dst opam-repository/))
(run (shell "opam repository set-url --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn ocaml-compiler.5.4.0 5.4.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall --update-invariant ocaml-compiler.5.4.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocaml-compiler.5.4.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall fiat-p256.0.2.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\" != 'fiat-p256.0.2.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 fiat-p256.0.2.3) || true"))
(run (shell "opam reinstall --with-test --verbose fiat-p256.0.2.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\" != 'fiat-p256.0.2.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-03-25 13:14.47: Waiting for resource in pool OCluster
2026-03-25 19:14.57: Waiting for worker…
2026-03-25 19:17.52: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at 2f93e9d461 Merge pull request #29592 from dinosaure/release-miou-v0.5.5
Merge made by the 'ort' strategy.
packages/ocaml-compiler/ocaml-compiler.5.3.0/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.3/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.4.0/opam | 5 ++++-
.../ocaml-compiler/ocaml-compiler.5.4.0~alpha1/opam | 5 ++++-
.../ocaml-compiler/ocaml-compiler.5.4.0~beta1/opam | 5 ++++-
.../ocaml-compiler/ocaml-compiler.5.4.0~beta2/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.4.0~rc1/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.4.1/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.4/opam | 5 ++++-
.../ocaml-compiler/ocaml-compiler.5.5.0~alpha1/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.5/opam | 5 ++++-
packages/ocaml-compiler/ocaml-compiler.5.6/opam | 5 ++++-
packages/ocaml-option-llvm/ocaml-option-llvm.1/opam | 18 ++++++++++++++++++
.../ocaml-options-vanilla/ocaml-options-vanilla.1/opam | 1 +
packages/ocaml-variants/ocaml-variants.5.2.0+msvc/opam | 2 ++
15 files changed, 69 insertions(+), 12 deletions(-)
create mode 100644 packages/ocaml-option-llvm/ocaml-option-llvm.1/opam
(from ocaml/opam:debian-13-ocaml-5.4@sha256:bd342cbd7766c453282fdafbc2e565ae3361320ec344722cf4372b782e4a97f6)
2026-03-25 19:18.01 ---> using "41eea30e3f639c18d8cf57c309ec76919ec7b2398036f7e41744cbce59a133d3" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-25 19:18.01 ---> using "4ad7f430d684c40cedc651267e0edf890c044fe4e624255de377c471b4526bac" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=71 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-25 19:18.01 ---> using "71fa58e52457bf6a7eac317c6a6ef1e2bdf53e533a1e4fd04b90c9349347e038" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 255
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 5.4
# invariant ["ocaml-base-compiler" {= "5.4.0"}]
# compiler-packages ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.0
2026-03-25 19:18.01 ---> using "ed86081cb38ca125a920162bfe6a4bb7b1c27c6973c917551687c83cf44dbfdf" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2026-03-25 19:18.01 ---> using "04a48515eea40c32b96da0c71328b4bba0edb66eed83d4f78554b39097cf1f25" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-25 19:18.02 ---> using "034191995d824300f355cbba1072d6e5fe6d815701f24eb84d82c75009d73829" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-25 19:18.02 ---> using "8232259ea36ea8848dc29ae49703acf145fd27b40f3ebd8fb785db7f8da1b9d4" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian trixie/main amd64 Packages [9671 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [114 kB]
- Fetched 10.0 MB in 1s (10.9 MB/s)
- Reading package lists...
-
2026-03-25 19:18.02 ---> using "a75782a571df4fc8f8933e94c681af881015ee87cdd4c652f8ae9af1d8cfad37" from cache
/home/opam: (run (shell "opam pin add -k version -yn ocaml-compiler.5.4.0 5.4.0"))
ocaml-compiler is now pinned to version 5.4.0
2026-03-25 19:18.02 ---> using "60e129f7398974b5fa5afc8f56ec09bd24a9182f5e9834464bfc959db1aa6b14" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall --update-invariant ocaml-compiler.5.4.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ocaml-compiler.5.4.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
The following actions will be performed:
=== recompile 8 packages
- recompile base-domains base [uses ocaml]
- recompile base-effects base [uses ocaml]
- recompile base-nnp base [uses base-domains]
- recompile ocaml 5.4.0 [uses ocaml-base-compiler]
- recompile ocaml-base-compiler 5.4.0 (pinned) [uses ocaml-compiler]
- recompile ocaml-compiler 5.4.0 (pinned)
- recompile ocaml-config 3 [uses ocaml-base-compiler]
- recompile opam-depext 1.2.3 [uses ocaml]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocaml-compiler.5.4.0 (cached)
-> retrieved ocaml-config.3 (cached)
-> retrieved opam-depext.1.2.3 (cached)
-> removed base-effects.base
-> removed base-nnp.base
-> removed base-domains.base
-> removed opam-depext.1.2.3
-> removed ocaml.5.4.0
-> removed ocaml-config.3
-> removed ocaml-base-compiler.5.4.0
-> removed ocaml-compiler.5.4.0
-> installed ocaml-compiler.5.4.0
-> installed ocaml-base-compiler.5.4.0
-> installed ocaml-config.3
-> installed ocaml.5.4.0
-> installed base-domains.base
-> installed base-effects.base
-> installed base-nnp.base
-> installed opam-depext.1.2.3
Done.
<><> opam-depext.1.2.3 installed successfully <><><><><><><><><><><><><><><><><>
=> opam-depext is unnecessary when used with opam >= 2.1. Please use opam install directly instead
# To update the current shell environment, run: eval $(opam env)
2026-03-25 19:18.02 ---> using "efbc92fc0c607605c8bb33f9e4c8fe340a48c67e14d2f61592db8a4edc5c0b15" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall fiat-p256.0.2.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\" != 'fiat-p256.0.2.3' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
fiat-p256.0.2.3 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 9 packages
- install bigarray-compat 1.1.0 [required by fiat-p256]
- install conf-pkg-config 4 [required by fiat-p256]
- install csexp 1.5.2 [required by dune-configurator]
- install cstruct 6.0.1 [required by fiat-p256]
- install dune 3.22.0 [required by fiat-p256]
- install dune-configurator 3.22.0 [required by fiat-p256]
- install eqaf 0.9 [required by fiat-p256]
- install fiat-p256 0.2.3 (deprecated)
- install hex 1.5.0 [required by fiat-p256]
The following system packages will first need to be installed:
pkg-config
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
4. Abort the installation
[1/2/3/4] 1
+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "pkg-config"
- Selecting previously unselected package libpkgconf3:amd64.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20654 files and directories currently installed.)
- Preparing to unpack .../libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Processing triggers for libc-bin (2.41-12+deb13u1) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bigarray-compat.1.1.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved cstruct.6.0.1 (cached)
-> installed conf-pkg-config.4
-> retrieved dune.3.22.0, dune-configurator.3.22.0 (cached)
-> retrieved eqaf.0.9 (cached)
-> retrieved fiat-p256.0.2.3 (cached)
-> retrieved hex.1.5.0 (cached)
-> installed dune.3.22.0
-> installed csexp.1.5.2
-> installed bigarray-compat.1.1.0
-> installed cstruct.6.0.1
-> installed hex.1.5.0
-> installed eqaf.0.9
-> installed dune-configurator.3.22.0
-> installed fiat-p256.0.2.3
Done.
<><> fiat-p256.0.2.3 installed successfully <><><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 19:18.43 ---> saved as "6cdde519303099a4e7be4b75b4e5d400ce2e2fddd6312894455ece287704e419"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test fiat-p256.0.2.3) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile fiat-p256 0.2.3 (deprecated)
=== install 24 packages
- install alcotest 1.0.1 [required by fiat-p256]
- install asn1-combinators 0.2.6 [required by fiat-p256]
- install astring 0.8.5 [required by alcotest]
- install benchmark 1.7 [required by fiat-p256]
- install cmdliner 1.3.0 [required by alcotest]
- install conf-gmp 5 [required by zarith]
- install cppo 1.8.0 [required by ppx_deriving]
- install fmt 0.11.0 [required by alcotest]
- install ocaml-compiler-libs v0.17.0 [required by ppxlib]
- install ocamlbuild 0.16.1 [required by rresult]
- install ocamlfind 1.9.8 [required by rresult]
- install ppx_derivers 1.2.1 [required by ppx_deriving]
- install ppx_deriving 6.1.1 [required by ppx_deriving_yojson]
- install ppx_deriving_yojson 3.10.0 [required by fiat-p256]
- install ppxlib 0.37.0 [required by ppx_deriving_yojson]
- install ptime 1.2.0 [required by asn1-combinators]
- install re 1.14.0 [required by alcotest]
- install rresult 0.7.0 [required by fiat-p256]
- install sexplib0 v0.17.0 [required by ppxlib]
- install stdlib-shims 0.3.0 [required by fiat-p256]
- install topkg 1.1.1 [required by rresult]
- install uuidm 0.9.10 [required by alcotest]
- install yojson 3.0.0 [required by fiat-p256]
- install zarith 1.14 [required by asn1-combinators]
The following system packages will first need to be installed:
libgmp-dev
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
4. Abort the installation
[1/2/3/4] 1
+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libgmp-dev"
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- (Reading database ...
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20691 files and directories currently installed.)
- Preparing to unpack .../libgmpxx4ldbl_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Processing triggers for libc-bin (2.41-12+deb13u1) ...
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.0.1 (https://opam.ocaml.org/cache)
-> retrieved asn1-combinators.0.2.6 (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5 (https://opam.ocaml.org/cache)
-> retrieved benchmark.1.7 (https://opam.ocaml.org/cache)
-> installed benchmark.1.7
-> retrieved cmdliner.1.3.0 (https://opam.ocaml.org/cache)
-> retrieved conf-gmp.5 (https://opam.ocaml.org/cache)
-> installed conf-gmp.5
-> retrieved cppo.1.8.0 (https://opam.ocaml.org/cache)
-> retrieved fiat-p256.0.2.3 (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0 (https://opam.ocaml.org/cache)
-> retrieved ocaml-compiler-libs.v0.17.0 (https://opam.ocaml.org/cache)
-> retrieved ocamlbuild.0.16.1 (https://opam.ocaml.org/cache)
-> installed cppo.1.8.0
-> retrieved ocamlfind.1.9.8 (https://opam.ocaml.org/cache)
-> installed ocaml-compiler-libs.v0.17.0
-> retrieved ppx_derivers.1.2.1 (https://opam.ocaml.org/cache)
-> installed cmdliner.1.3.0
-> installed ppx_derivers.1.2.1
-> retrieved ppx_deriving.6.1.1 (https://opam.ocaml.org/cache)
-> retrieved ppx_deriving_yojson.3.10.0 (https://opam.ocaml.org/cache)
-> retrieved ppxlib.0.37.0 (https://opam.ocaml.org/cache)
-> retrieved ptime.1.2.0 (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0 (https://opam.ocaml.org/cache)
-> retrieved rresult.0.7.0 (https://opam.ocaml.org/cache)
-> installed ocamlfind.1.9.8
-> retrieved sexplib0.v0.17.0 (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0 (https://opam.ocaml.org/cache)
-> installed sexplib0.v0.17.0
-> installed re.1.14.0
-> installed stdlib-shims.0.3.0
-> retrieved topkg.1.1.1 (https://opam.ocaml.org/cache)
-> retrieved uuidm.0.9.10 (https://opam.ocaml.org/cache)
-> installed ocamlbuild.0.16.1
-> retrieved yojson.3.0.0 (https://opam.ocaml.org/cache)
-> retrieved zarith.1.14 (https://opam.ocaml.org/cache)
-> removed fiat-p256.0.2.3
-> installed yojson.3.0.0
-> installed zarith.1.14
-> installed topkg.1.1.1
-> installed rresult.0.7.0
-> installed uuidm.0.9.10
-> installed fmt.0.11.0
-> installed ptime.1.2.0
-> installed astring.0.8.5
-> installed asn1-combinators.0.2.6
-> installed alcotest.1.0.1
-> installed ppxlib.0.37.0
-> installed ppx_deriving.6.1.1
-> installed ppx_deriving_yojson.3.10.0
-> installed fiat-p256.0.2.3
Done.
<><> fiat-p256.0.2.3 installed successfully <><><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 19:19.19 ---> saved as "31eea1ca39ab771c229620b5eaf401422819d7497ceccca3b770eebb472b7f99"
/home/opam: (run (shell "opam reinstall --with-test --verbose fiat-p256.0.2.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\" != 'fiat-p256.0.2.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 fiat-p256 0.2.3 (deprecated)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [fiat-p256.0.2.3: extract]
-> retrieved fiat-p256.0.2.3 (cached)
Processing 2/4: [fiat-p256: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "fiat-p256" "-j" "255" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/fiat-p256.0.2.3)
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I p256/.fiat_p256.objs/byte -I p256/.fiat_p256.objs/native -I /home/opam/.opam/5.4/lib/bigarray-compat -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/hex -cmi-file p256/.fiat_p256.objs/byte/fiat_p256__Field_element.cmi -no-alias-deps -open Fiat_p256__ -o p256/.fiat_p256.objs/native/fiat_p256__Field_element.cmx -c -impl p256/field_element.ml)
- File "p256/field_element.ml", line 25, characters 10-21:
- 25 | assert (Cstruct.len cs = 32);
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I p256/.fiat_p256.objs/byte -I /home/opam/.opam/5.4/lib/bigarray-compat -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/hex -cmi-file p256/.fiat_p256.objs/byte/fiat_p256__Field_element.cmi -no-alias-deps -open Fiat_p256__ -o p256/.fiat_p256.objs/byte/fiat_p256__Field_element.cmo -c -impl p256/field_element.ml)
- File "p256/field_element.ml", line 25, characters 10-21:
- 25 | assert (Cstruct.len cs = 32);
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I p256/.fiat_p256.objs/byte -I /home/opam/.opam/5.4/lib/bigarray-compat -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/hex -cmi-file p256/.fiat_p256.objs/byte/fiat_p256__Point.cmi -no-alias-deps -open Fiat_p256__ -o p256/.fiat_p256.objs/byte/fiat_p256__Point.cmo -c -impl p256/point.ml)
- File "p256/point.ml", line 52, characters 5-16:
- 52 | if Cstruct.len cs = 0 then None else Some (Cstruct.get_uint8 cs 0)
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "p256/point.ml", line 55, characters 24-35:
- 55 | match (first_byte cs, Cstruct.len cs) with
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I p256/.fiat_p256.objs/byte -I p256/.fiat_p256.objs/native -I /home/opam/.opam/5.4/lib/bigarray-compat -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/hex -cmi-file p256/.fiat_p256.objs/byte/fiat_p256__Point.cmi -no-alias-deps -open Fiat_p256__ -o p256/.fiat_p256.objs/native/fiat_p256__Point.cmx -c -impl p256/point.ml)
- File "p256/point.ml", line 52, characters 5-16:
- 52 | if Cstruct.len cs = 0 then None else Some (Cstruct.get_uint8 cs 0)
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "p256/point.ml", line 55, characters 24-35:
- 55 | match (first_byte cs, Cstruct.len cs) with
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I test/unit/.test_p256.eobjs/byte -I test/unit/.test_p256.eobjs/native -I /home/opam/.opam/5.4/lib/alcotest -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/cmdliner -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/fmt -I /home/opam/.opam/5.4/lib/fmt/cli -I /home/opam/.opam/5.4/lib/fmt/tty -I /home/opam/.opam/5.4/lib/hex -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/uuidm -I p256/.fiat_p256.objs/byte -I p256/.fiat_p256.objs/native -cmi-file test/unit/.test_p256.eobjs/byte/dune__exe__Test_p256.cmi -no-alias-deps -o test/unit/.test_p256.eobjs/native/dune__exe__Test_p256.cmx -c -impl test/unit/test_p256.ml)
- File "test/unit/test_p256.ml", line 12, characters 10-21:
- 12 | let n = Cstruct.len cs in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default/freestanding && /usr/bin/gmake)
- touch libfiat_p256_freestanding_stubs.a
- (cd _build/default/test/functional && ./test_fiat_p256.exe)
- Testing Fiat_p256.
- This run has ID `BD221361-6FA2-4811-B778-0D8D2862852D`.
- ... Functional 0 whole_key_exchange.
[OK] Functional 0 whole_key_exchange.
- The full test results are available in `/home/opam/.opam/5.4/.opam-switch/build/fiat-p256.0.2.3/_build/default/test/functional/_build/_tests/BD221361-6FA2-4811-B778-0D8D2862852D`.
- Test Successful in 0.000s. 1 test run.
- ASSERT whole_key_exchange
- (cd _build/default/test/unit && ./test_p256.exe)
- Testing Fiat_p256.
- This run has ID `C61BFB4B-2297-4859-8A09-E54F5468BDB6`.
- ... Key exchange 0 b*A.
[OK] Key exchange 0 b*A.
- ... Key exchange 1 a*B.
[OK] Key exchange 1 a*B.
- ... Key exchange 2 a*A.
[OK] Key exchange 2 a*A.
- ... Key exchange 3 b*B.
[OK] Key exchange 3 b*B.
- ... Low level scalar mult 0 Scalar mult (#0).
[OK] Low level scalar mult 0 Scalar mult (#0).
- ... Low level scalar mult 1 Scalar mult (#1).
[OK] Low level scalar mult 1 Scalar mult (#1).
- ... Low level scalar mult 2 Scalar mult (#2).
[OK] Low level scalar mult 2 Scalar mult (#2).
- ... Low level scalar mult 3 Scalar mult (#3).
[OK] Low level scalar mult 3 Scalar mult (#3).
- ... Low level scalar mult 4 Scalar mult (#4).
[OK] Low level scalar mult 4 Scalar mult (#4).
- ... Low level scalar mult 5 Scalar mult (#5).
[OK] Low level scalar mult 5 Scalar mult (#5).
- ... Point validation 0 Ok.
[OK] Point validation 0 Ok.
- ... Point validation 1 P=0.
[OK] Point validation 1 P=0.
- ... Point validation 2 (0, sqrt(b)).
[OK] Point validation 2 (0, sqrt(b)).
- ... Point validation 3 out of range.
[OK] Point validation 3 out of range.
- ... Scalar validation when generating 0 0.
[OK] Scalar validation when generating 0 0.
- ... Scalar validation when generating 1 1.
[OK] Scalar validation when generating 1 1.
- ... Scalar validation when generating 2 n-1.
[OK] Scalar validation when generating 2 n-1.
- ... Scalar validation when generating 3 n.
[OK] Scalar validation when generating 3 n.
- The full test results are available in `/home/opam/.opam/5.4/.opam-switch/build/fiat-p256.0.2.3/_build/default/test/unit/_build/_tests/C61BFB4B-2297-4859-8A09-E54F5468BDB6`.
- Test Successful in 0.000s. 18 tests run.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I test/wycheproof/.test.eobjs/byte -I test/wycheproof/.test.eobjs/native -I /home/opam/.opam/5.4/lib/alcotest -I /home/opam/.opam/5.4/lib/asn1-combinators -I /home/opam/.opam/5.4/lib/astring -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/cmdliner -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/fmt -I /home/opam/.opam/5.4/lib/fmt/cli -I /home/opam/.opam/5.4/lib/fmt/tty -I /home/opam/.opam/5.4/lib/hex -I /home/opam/.opam/5.4/lib/ocaml/str -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/ppx_deriving/runtime -I /home/opam/.opam/5.4/lib/ppx_deriving_yojson/runtime -I /home/opam/.opam/5.4/lib/ptime -I /home/opam/.opam/5.4/lib/re -I /home/opam/.opam/5.4/lib/stdlib-shims -I /home/opam/.opam/5.4/lib/uuidm -I /home/opam/.opam/5.4/lib/yojson -I /home/opam/.opam/5.4/lib/zarith -I p256/.fiat_p256.objs/byte -I p256/.fiat_p256.objs/native -I test/helpers/wycheproof/.wycheproof.objs/byte -I test/helpers/wycheproof/.wycheproof.objs/native -cmi-file test/wycheproof/.test.eobjs/byte/dune__exe__Test.cmi -no-alias-deps -o test/wycheproof/.test.eobjs/native/dune__exe__Test.cmx -c -impl test/wycheproof/test.ml)
- File "test/wycheproof/test.ml", line 14, characters 9-20:
- 14 | if Cstruct.len rest <> 0 then Error "ASN1 leftover"
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "test/wycheproof/test.ml", line 32, characters 15-26:
- 32 | let cs_len = Cstruct.len cs in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
-
- File "test/wycheproof/test.ml", line 44, characters 20-31:
- 44 | match total_len - Cstruct.len cs with
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default/test/wycheproof && ./test.exe)
- Testing Wycheproof-hacl-p256.
- This run has ID `1B36C57E-1370-4F91-90F7-C5B0AE034CA2`.
- ... test vectors 0 1 - normal case.
[OK] test vectors 0 1 - normal case.
- ... test vectors 1 3 - edge case for shared secret.
[OK] test vectors 1 3 - edge case for shared secret.
- ... test vectors 2 4 - edge case for shared secret.
[OK] test vectors 2 4 - edge case for shared secret.
- ... test vectors 3 5 - edge case for shared secret.
[OK] test vectors 3 5 - edge case for shared secret.
- ... test vectors 4 6 - edge case for shared secret.
[OK] test vectors 4 6 - edge case for shared secret.
- ... test vectors 5 7 - edge case for shared secret.
[OK] test vectors 5 7 - edge case for shared secret.
- ... test vectors 6 8 - edge case for shared secret.
[OK] test vectors 6 8 - edge case for shared secret.
- ... test vectors 7 9 - edge case for shared secret.
[OK] test vectors 7 9 - edge case for shared secret.
- ... test vectors 8 10 - edge case for shared secret.
[OK] test vectors 8 10 - edge case for shared secret.
- ... test vectors 9 11 - edge case for shared secret.
[OK] test vectors 9 11 - edge case for shared secret.
- ... test vectors 10 12 - edge case for shared secret.
[OK] test vectors 10 12 - edge case for shared secret.
- ... test vectors 11 13 - edge case for shared secret.
[OK] test vectors 11 13 - edge case for shared secret.
- ... test vectors 12 14 - edge case for shared secret.
[OK] test vectors 12 14 - edge case for shared secret.
- ... test vectors 13 15 - edge case for shared secret.
[OK] test vectors 13 15 - edge case for shared secret.
- ... test vectors 14 16 - edge case for shared secret.
[OK] test vectors 14 16 - edge case for shared secret.
- ... test vectors 15 17 - edge case for shared secret.
[OK] test vectors 15 17 - edge case for shared secret.
- ... test vectors 16 18 - edge case for shared secret.
[OK] test vectors 16 18 - edge case for shared secret.
- ... test vectors 17 19 - y-coordinate of the public key is small.
[OK] test vectors 17 19 - y-coordinate of the public key is small.
- ... test vectors 18 20 - y-coordinate of the public key is small.
[OK] test vectors 18 20 - y-coordinate of the public key is small.
- ... test vectors 19 21 - y-coordinate of the public key is small.
[OK] test vectors 19 21 - y-coordinate of the public key is small.
- ... test vectors 20 22 - y-coordinate of the public key is large.
[OK] test vectors 20 22 - y-coordinate of the public key is large.
- ... test vectors 21 23 - y-coordinate of the public key is large.
[OK] test vectors 21 23 - y-coordinate of the public key is large.
- ... test vectors 22 24 - y-coordinate of the public key is large.
[OK] test vectors 22 24 - y-coordinate of the public key is large.
- ... test vectors 23 25 - y-coordinate of the public key has many trailing 1's.
[OK] test vectors 23 25 - y-coordinate of the public key has many trailing 1's.
- ... test vectors 24 26 - y-coordinate of the public key has many trailing 1's.
[OK] test vectors 24 26 - y-coordinate of the public key has many trailing 1's.
- ... test vectors 25 27 - y-coordinate of the public key has many trailing 1's.
[OK] test vectors 25 27 - y-coordinate of the public key has many trailing 1's.
- ... test vectors 26 28 - y-coordinate of the public key has many trailing 0's.
[OK] test vectors 26 28 - y-coordinate of the public key has many trailing 0's.
- ... test vectors 27 29 - y-coordinate of the public key has many trailing 0's.
[OK] test vectors 27 29 - y-coordinate of the public key has many trailing 0's.
- ... test vectors 28 30 - y-coordinate of the public key has many trailing 0's.
[OK] test vectors 28 30 - y-coordinate of the public key has many trailing 0's.
- ... test vectors 29 31 - edge cases for ephemeral key.
[OK] test vectors 29 31 - edge cases for ephemeral key.
- ... test vectors 30 32 - edge cases for ephemeral key.
[OK] test vectors 30 32 - edge cases for ephemeral key.
- ... test vectors 31 33 - edge cases for ephemeral key.
[OK] test vectors 31 33 - edge cases for ephemeral key.
- ... test vectors 32 34 - edge cases for ephemeral key.
[OK] test vectors 32 34 - edge cases for ephemeral key.
- ... test vectors 33 35 - edge cases for ephemeral key.
[OK] test vectors 33 35 - edge cases for ephemeral key.
- ... test vectors 34 36 - edge cases for ephemeral key.
[OK] test vectors 34 36 - edge cases for ephemeral key.
- ... test vectors 35 37 - edge cases for ephemeral key.
[OK] test vectors 35 37 - edge cases for ephemeral key.
- ... test vectors 36 38 - edge cases for ephemeral key.
[OK] test vectors 36 38 - edge cases for ephemeral key.
- ... test vectors 37 39 - edge cases for ephemeral key.
[OK] test vectors 37 39 - edge cases for ephemeral key.
- ... test vectors 38 40 - edge cases for ephemeral key.
[OK] test vectors 38 40 - edge cases for ephemeral key.
- ... test vectors 39 41 - edge cases for ephemeral key.
[OK] test vectors 39 41 - edge cases for ephemeral key.
- ... test vectors 40 42 - edge cases for ephemeral key.
[OK] test vectors 40 42 - edge cases for ephemeral key.
- ... test vectors 41 43 - edge cases for ephemeral key.
[OK] test vectors 41 43 - edge cases for ephemeral key.
- ... test vectors 42 44 - edge cases for ephemeral key.
[OK] test vectors 42 44 - edge cases for ephemeral key.
- ... test vectors 43 45 - edge cases for ephemeral key.
[OK] test vectors 43 45 - edge cases for ephemeral key.
- ... test vectors 44 46 - edge cases for ephemeral key.
[OK] test vectors 44 46 - edge cases for ephemeral key.
- ... test vectors 45 47 - edge cases for ephemeral key.
[OK] test vectors 45 47 - edge cases for ephemeral key.
- ... test vectors 46 48 - edge cases for ephemeral key.
[OK] test vectors 46 48 - edge cases for ephemeral key.
- ... test vectors 47 49 - edge cases for ephemeral key.
[OK] test vectors 47 49 - edge cases for ephemeral key.
- ... test vectors 48 50 - edge cases for ephemeral key.
[OK] test vectors 48 50 - edge cases for ephemeral key.
- ... test vectors 49 51 - edge cases for ephemeral key.
[OK] test vectors 49 51 - edge cases for ephemeral key.
- ... test vectors 50 52 - edge cases for ephemeral key.
[OK] test vectors 50 52 - edge cases for ephemeral key.
- ... test vectors 51 53 - edge cases for ephemeral key.
[OK] test vectors 51 53 - edge cases for ephemeral key.
- ... test vectors 52 54 - edge cases for ephemeral key.
[OK] test vectors 52 54 - edge cases for ephemeral key.
- ... test vectors 53 55 - edge cases for ephemeral key.
[OK] test vectors 53 55 - edge cases for ephemeral key.
- ... test vectors 54 56 - edge cases for ephemeral key.
[OK] test vectors 54 56 - edge cases for ephemeral key.
- ... test vectors 55 57 - edge cases for ephemeral key.
[OK] test vectors 55 57 - edge cases for ephemeral key.
- ... test vectors 56 58 - edge cases for ephemeral key.
[OK] test vectors 56 58 - edge cases for ephemeral key.
- ... test vectors 57 59 - edge case private key.
[OK] test vectors 57 59 - edge case private key.
- ... test vectors 58 60 - edge case private key.
[OK] test vectors 58 60 - edge case private key.
- ... test vectors 59 61 - edge case private key.
[OK] test vectors 59 61 - edge case private key.
- ... test vectors 60 62 - edge case private key.
[OK] test vectors 60 62 - edge case private key.
- ... test vectors 61 63 - edge case private key.
[OK] test vectors 61 63 - edge case private key.
- ... test vectors 62 64 - edge case private key.
[OK] test vectors 62 64 - edge case private key.
- ... test vectors 63 65 - edge case private key.
[OK] test vectors 63 65 - edge case private key.
- ... test vectors 64 66 - edge case private key.
[OK] test vectors 64 66 - edge case private key.
- ... test vectors 65 67 - edge case private key.
[OK] test vectors 65 67 - edge case private key.
- ... test vectors 66 68 - edge case private key.
[OK] test vectors 66 68 - edge case private key.
- ... test vectors 67 69 - edge case private key.
[OK] test vectors 67 69 - edge case private key.
- ... test vectors 68 70 - edge case private key.
[OK] test vectors 68 70 - edge case private key.
- ... test vectors 69 71 - edge case private key.
[OK] test vectors 69 71 - edge case private key.
- ... test vectors 70 72 - edge case private key.
[OK] test vectors 70 72 - edge case private key.
- ... test vectors 71 73 - edge case private key.
[OK] test vectors 71 73 - edge case private key.
- ... test vectors 72 74 - CVE-2017-8932.
[OK] test vectors 72 74 - CVE-2017-8932.
- ... test vectors 73 75 - CVE-2017-8932.
[OK] test vectors 73 75 - CVE-2017-8932.
- ... test vectors 74 76 - point is not on curve.
[OK] test vectors 74 76 - point is not on curve.
- ... test vectors 75 77 - point is not on curve.
[OK] test vectors 75 77 - point is not on curve.
- ... test vectors 76 78 - point is not on curve.
[OK] test vectors 76 78 - point is not on curve.
- ... test vectors 77 79 - point is not on curve.
[OK] test vectors 77 79 - point is not on curve.
- ... test vectors 78 80 - point is not on curve.
[OK] test vectors 78 80 - point is not on curve.
- ... test vectors 79 81 - point is not on curve.
[OK] test vectors 79 81 - point is not on curve.
- ... test vectors 80 82 - point is not on curve.
[OK] test vectors 80 82 - point is not on curve.
- ... test vectors 81 83 - point is not on curve.
[OK] test vectors 81 83 - point is not on curve.
- ... test vectors 82 84 - point is not on curve.
[OK] test vectors 82 84 - point is not on curve.
- ... test vectors 83 85 - point is not on curve.
[OK] test vectors 83 85 - point is not on curve.
- ... test vectors 84 86 - point is not on curve.
[OK] test vectors 84 86 - point is not on curve.
- ... test vectors 85 87 - point is not on curve.
[OK] test vectors 85 87 - point is not on curve.
- ... test vectors 86 88 - point is not on curve.
[OK] test vectors 86 88 - point is not on curve.
- ... test vectors 87 89 - point is not on curve.
[OK] test vectors 87 89 - point is not on curve.
- ... test vectors 88 90 - point is not on curve.
[OK] test vectors 88 90 - point is not on curve.
- ... test vectors 89 91 - point is not on curve.
[OK] test vectors 89 91 - point is not on curve.
- ... test vectors 90 92 - .
[OK] test vectors 90 92 - .
- ... test vectors 91 93 - public point not on curve.
[OK] test vectors 91 93 - public point not on curve.
- ... test vectors 92 94 - public point = (0,0).
[OK] test vectors 92 94 - public point = (0,0).
- ... test vectors 93 107 - using secp224r1.
[OK] test vectors 93 107 - using secp224r1.
- ... test vectors 94 108 - using secp256k1.
[OK] test vectors 94 108 - using secp256k1.
- ... test vectors 95 111 - Public key uses wrong curve: secp224r1.
[OK] test vectors 95 111 - Public key uses wrong curve: secp224r1.
- ... test vectors 96 112 - Public key uses wrong curve: secp384r1.
[OK] test vectors 96 112 - Public key uses wrong curve: secp384r1.
- ... test vectors 97 113 - Public key uses wrong curve: secp521r1.
[OK] test vectors 97 113 - Public key uses wrong curve: secp521r1.
- ... test vectors 98 114 - Public key uses wrong curve: secp256k1.
[OK] test vectors 98 114 - Public key uses wrong curve: secp256k1.
- ... test vectors 99 115 - Public key uses wrong curve: brainpoolP224r1.
[OK] test vectors 99 115 - Public key uses wrong curve: brainpoolP224r1.
- ... test vectors 100 116 - Public key uses wrong curve: brainpoolP256r1.
[OK] test vectors 100 116 - Public key uses wrong curve: brainpoolP256r1.
- ... test vectors 101 117 - Public key uses wrong curve: brainpoolP320r1.
[OK] test vectors 101 117 - Public key uses wrong curve: brainpoolP320r1.
- ... test vectors 102 118 - Public key uses wrong curve: brainpoolP384r1.
[OK] test vectors 102 118 - Public key uses wrong curve: brainpoolP384r1.
- ... test vectors 103 119 - Public key uses wrong curve: brainpoolP512r1.
[OK] test vectors 103 119 - Public key uses wrong curve: brainpoolP512r1.
- ... test vectors 104 120 - Public key uses wrong curve: brainpoolP224t1.
[OK] test vectors 104 120 - Public key uses wrong curve: brainpoolP224t1.
- ... test vectors 105 121 - Public key uses wrong curve: brainpoolP256t1.
[OK] test vectors 105 121 - Public key uses wrong curve: brainpoolP256t1.
- ... test vectors 106 122 - Public key uses wrong curve: brainpoolP320t1.
[OK] test vectors 106 122 - Public key uses wrong curve: brainpoolP320t1.
- ... test vectors 107 123 - Public key uses wrong curve: brainpoolP384t1.
[OK] test vectors 107 123 - Public key uses wrong curve: brainpoolP384t1.
- ... test vectors 108 124 - Public key uses wrong curve: brainpoolP512t1.
[OK] test vectors 108 124 - Public key uses wrong curve: brainpoolP512t1.
- The full test results are available in `/home/opam/.opam/5.4/.opam-switch/build/fiat-p256.0.2.3/_build/default/test/wycheproof/_build/_tests/1B36C57E-1370-4F91-90F7-C5B0AE034CA2`.
- Test Successful in 0.000s. 109 tests run.
-> compiled fiat-p256.0.2.3
-> removed fiat-p256.0.2.3
-> installed fiat-p256.0.2.3
Done.
<><> fiat-p256.0.2.3 installed successfully <><><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
# To update the current shell environment, run: eval $(opam env)
2026-03-25 19:19.24 ---> saved as "1b8c291de779f5ee4c114589ad55a08da8950043568765bb3ae835e82cbd3a72"
Job succeeded
2026-03-25 19:19.31: Job succeeded