Build:
- 0
2026-01-27 19:25.32: New job: test x509.0.7.1 with mirage-runtime.4.9.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29297/head (bec96dd4b29b0e3eb148af9966895e70442e68e2)
on debian-13-ocaml-4.14/amd64
To reproduce locally:
cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29297/head" && git reset --hard bec96dd4
git fetch origin master
git merge --no-edit 88150787b3c9df767fd8dadf5d416641f8ee58f8
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:b77f64f7a162903a6fb8a0d50071a7eb7a4a9bc4421699c19d2ab9050981c012
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn mirage-runtime.4.9.0 4.9.0
RUN opam reinstall mirage-runtime.4.9.0; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'mirage-runtime.4.9.0' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN opam reinstall x509.0.7.1; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'x509.0.7.1' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
RUN (opam reinstall --with-test x509.0.7.1) || true
RUN opam reinstall --with-test --verbose x509.0.7.1; \
res=$?; \
test "$res" != 31 && exit "$res"; \
export OPAMCLI=2.0; \
build_dir=$(opam var prefix)/.opam-switch/build; \
failed=$(ls "$build_dir"); \
partial_fails=""; \
for pkg in $failed; do \
if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'x509.0.7.1' && partial_fails="$partial_fails $pkg"; \
done; \
test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
exit 1
END-OF-DOCKERFILE
docker build -f ../Dockerfile .
2026-01-27 19:25.32: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:b77f64f7a162903a6fb8a0d50071a7eb7a4a9bc4421699c19d2ab9050981c012-mirage-runtime.4.9.0-x509.0.7.1-bec96dd4b29b0e3eb148af9966895e70442e68e2"
2026-01-27 19:25.32: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:b77f64f7a162903a6fb8a0d50071a7eb7a4a9bc4421699c19d2ab9050981c012)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
(run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
(run (shell "opam option solver=builtin-0install && opam config report"))
(env OPAMDOWNLOADJOBS 1)
(env OPAMERRLOGLEN 0)
(env OPAMPRECISETRACKING 1)
(env CI true)
(env OPAM_REPO_CI true)
(run (shell "rm -rf opam-repository/"))
(copy (src .) (dst opam-repository/))
(run (shell "opam repository set-url --strict default opam-repository/"))
(run (network host)
(shell "opam update --depexts || true"))
(run (shell "opam pin add -k version -yn mirage-runtime.4.9.0 4.9.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall mirage-runtime.4.9.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'mirage-runtime.4.9.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 x509.0.7.1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'x509.0.7.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
(run (network host)
(shell "(opam reinstall --with-test x509.0.7.1) || true"))
(run (shell "opam reinstall --with-test --verbose x509.0.7.1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'x509.0.7.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-01-27 19:25.32: Waiting for resource in pool OCluster
2026-01-28 01:24.51: Waiting for worker…
2026-01-28 01:27.49: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at 88150787b3 Merge pull request #29287 from dinosaure/release-git-kv-v0.2.1
Merge made by the 'ort' strategy.
packages/mirage-runtime/mirage-runtime.4.0.0/opam | 2 +-
packages/mirage-runtime/mirage-runtime.4.0.0~beta3/opam | 2 +-
packages/mirage-runtime/mirage-runtime.4.10.0/opam | 2 +-
packages/mirage-runtime/mirage-runtime.4.10.1/opam | 2 +-
packages/mirage-runtime/mirage-runtime.4.10.2/opam | 2 +-
packages/mirage-runtime/mirage-runtime.4.10.3/opam | 2 +-
packages/mirage-runtime/mirage-runtime.4.10.4/opam | 2 +-
packages/mirage-runtime/mirage-runtime.4.7.0/opam | 2 +-
packages/mirage-runtime/mirage-runtime.4.9.0/opam | 2 +-
9 files changed, 9 insertions(+), 9 deletions(-)
(from ocaml/opam:debian-13-ocaml-4.14@sha256:b77f64f7a162903a6fb8a0d50071a7eb7a4a9bc4421699c19d2ab9050981c012)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14@sha256:b77f64f7a162903a6fb8a0d50071a7eb7a4a9bc4421699c19d2ab9050981c012' locally
docker.io/ocaml/opam@sha256:b77f64f7a162903a6fb8a0d50071a7eb7a4a9bc4421699c19d2ab9050981c012: Pulling from ocaml/opam
32ef12fa09dd: Pulling fs layer
32ef12fa09dd: Waiting
32ef12fa09dd: Verifying Checksum
32ef12fa09dd: Download complete
32ef12fa09dd: Pull complete
Digest: sha256:b77f64f7a162903a6fb8a0d50071a7eb7a4a9bc4421699c19d2ab9050981c012
Status: Downloaded newer image for ocaml/opam@sha256:b77f64f7a162903a6fb8a0d50071a7eb7a4a9bc4421699c19d2ab9050981c012
2026-01-28 01:33.10 ---> using "3fd264bad5105e854dbd96d70e0cfc1d39526afdd30eb5071f64946db0e5017f" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-01-28 01:33.10 ---> using "c3cd77d504ddaf309a58ec97d6990fbd674dfde7b2abb842e8428debfcc0578e" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=71 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-01-28 01:33.10 ---> using "465a85423ed866bf442b5d4ea44e6d67ced29e9b9e842e1931d4e6d88019fbd3" from cache
/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version 2.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=debian os-version=13
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 255
# repositories 1 (version-controlled)
# pinned 1 (version)
# current-switch 4.14
# invariant ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native true
# ocaml:native-tools true
# ocaml:native-dynlink true
# ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 4.14.2
2026-01-28 01:33.10 ---> using "600a99cbfa8eb664d95037ff02fc36b5d64190bc45ec2fd4792c21267b01f885" from cache
/home/opam: (env OPAMDOWNLOADJOBS 1)
/home/opam: (env OPAMERRLOGLEN 0)
/home/opam: (env OPAMPRECISETRACKING 1)
/home/opam: (env CI true)
/home/opam: (env OPAM_REPO_CI true)
/home/opam: (run (shell "rm -rf opam-repository/"))
2026-01-28 01:33.10 ---> using "7a36498140d9470d1651f2f43060608bb30c70da80a143f96ae11f513ef0d2f1" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2026-01-28 01:33.11 ---> using "c9c281874add8ec6f824059ed6bc4b1cfa517948ec5e9031033d3104a09c31cb" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-01-28 01:33.11 ---> using "53502e89c855ed9f94e21d4f7bd4f9f40b749d1356523774f70e07d214514475" from cache
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [97.9 kB]
- Fetched 189 kB in 0s (1932 kB/s)
- Reading package lists...
2026-01-28 01:33.11 ---> using "fd9c746d3f7a0ef758e388fb04e10d9013e6617bfbced5cd67effbd293bab80d" from cache
/home/opam: (run (shell "opam pin add -k version -yn mirage-runtime.4.9.0 4.9.0"))
mirage-runtime is now pinned to version 4.9.0
2026-01-28 01:33.11 ---> using "779e486b013a05e0231cd6dcbeda26de945c782c6706923f85208bfac107cc54" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall mirage-runtime.4.9.0;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'mirage-runtime.4.9.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
mirage-runtime.4.9.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 16 packages
- install base-bytes base [required by ocplib-endian]
- install cmdliner 2.1.0 [required by mirage-runtime]
- install cppo 1.8.0 [required by lwt]
- install csexp 1.5.2 [required by dune-configurator]
- install domain-name 0.5.0 [required by ipaddr]
- install dune 3.21.0 [required by mirage-runtime]
- install dune-configurator 3.21.0 [required by lwt]
- install ipaddr 5.6.1 [required by mirage-runtime]
- install logs 0.10.0 [required by mirage-runtime]
- install lwt 5.9.2 [required by mirage-runtime]
- install macaddr 5.6.1 [required by ipaddr]
- install mirage-runtime 4.9.0 (pinned)
- install ocamlbuild 0.16.1 [required by logs]
- install ocamlfind 1.9.8 [required by logs]
- install ocplib-endian 1.2 [required by lwt]
- install topkg 1.1.1 [required by logs]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cmdliner.2.1.0 (cached)
-> retrieved cppo.1.8.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved domain-name.0.5.0 (cached)
-> retrieved dune.3.21.0, dune-configurator.3.21.0 (cached)
-> retrieved ipaddr.5.6.1, macaddr.5.6.1 (cached)
-> retrieved logs.0.10.0 (cached)
-> retrieved lwt.5.9.2 (cached)
-> retrieved mirage-runtime.4.9.0 (cached)
-> installed cmdliner.2.1.0
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocplib-endian.1.2 (cached)
-> retrieved topkg.1.1.1 (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed dune.3.21.0
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed domain-name.0.5.0
-> installed macaddr.5.6.1
-> installed ocplib-endian.1.2
-> installed ipaddr.5.6.1
-> installed dune-configurator.3.21.0
-> installed lwt.5.9.2
-> installed logs.0.10.0
-> installed mirage-runtime.4.9.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-28 01:33.11 ---> using "d8bce516323d5742df032344b4c92d182d9a4a4f363fdaf31c20cce37568f3f7" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall x509.0.7.1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'x509.0.7.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
x509.0.7.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== recompile 2 packages
- recompile logs 0.10.0 [uses fmt]
- recompile mirage-runtime 4.9.0 (pinned) [uses logs]
=== install 29 packages
- install asn1-combinators 0.2.6 [required by x509]
- install astring 0.8.5 [required by ocb-stubblr]
- install base v0.16.4 [required by ppx_sexp_conv]
- install bigarray-compat 1.1.0 [required by cstruct]
- install conf-gmp 5 [required by zarith]
- install conf-pkg-config 4 [required by zarith]
- install cpuid 0.1.2 [required by nocrypto]
- install cstruct 6.0.1 [required by x509]
- install cstruct-lwt 6.0.1 [required by nocrypto]
- install fmt 0.11.0 [required by x509]
- install gmap 0.3.0 [required by x509]
- install mirage-no-solo5 1 (deprecated) [required by nocrypto]
- install mirage-no-xen 1 (deprecated) [required by nocrypto]
- install nocrypto 0.5.4-2 [required by x509]
- install num 1.6 [required by sexplib]
- install ocaml-compiler-libs v0.12.4 [required by ppxlib]
- install ocb-stubblr 0.1.1-1 [required by nocrypto]
- install parsexp v0.16.0 [required by sexplib]
- install ppx_derivers 1.2.1 [required by ppx_deriving]
- install ppx_deriving 6.0.3 [required by nocrypto]
- install ppx_sexp_conv v0.16.0 [required by nocrypto]
- install ppxlib 0.35.0 [required by ppx_deriving, ppx_sexp_conv]
- install ptime 1.2.0 [required by x509]
- install rresult 0.7.0 [required by x509]
- install sexplib v0.16.0 [required by nocrypto]
- install sexplib0 v0.16.0 [required by ppx_sexp_conv, sexplib]
- install stdlib-shims 0.3.0 [required by ppxlib]
- install x509 0.7.1
- install zarith 1.14 [required by asn1-combinators, nocrypto]
The following system packages will first need to be installed:
libgmp-dev pkg-config
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
4. Abort the installation
[1/2/3/4] 1
+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libgmp-dev" "pkg-config"
- 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 ... 20623 files and directories currently installed.)
- Preparing to unpack .../0-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 .../1-libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../2-libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../3-pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../4-pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../5-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 libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ...
- 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 asn1-combinators.0.2.6 (cached)
-> retrieved astring.0.8.5 (cached)
-> retrieved base.v0.16.4 (cached)
-> retrieved bigarray-compat.1.1.0 (cached)
-> retrieved conf-gmp.5 (cached)
-> retrieved cpuid.0.1.2 (cached)
-> retrieved cstruct.6.0.1, cstruct-lwt.6.0.1 (cached)
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> retrieved fmt.0.11.0 (cached)
-> retrieved gmap.0.3.0 (cached)
-> retrieved logs.0.10.0 (cached)
-> installed mirage-no-solo5.1
-> installed mirage-no-xen.1
-> installed cpuid.0.1.2
-> installed bigarray-compat.1.1.0
-> installed gmap.0.3.0
-> retrieved nocrypto.0.5.4-2 (cached)
-> retrieved num.1.6 (cached)
-> retrieved ocaml-compiler-libs.v0.12.4 (cached)
-> retrieved ocb-stubblr.0.1.1-1 (cached)
-> retrieved parsexp.v0.16.0 (cached)
-> retrieved ppx_derivers.1.2.1 (cached)
-> retrieved ppx_deriving.6.0.3 (cached)
-> retrieved ppx_sexp_conv.v0.16.0 (cached)
-> retrieved ppxlib.0.35.0 (cached)
-> installed ppx_derivers.1.2.1
-> installed cstruct.6.0.1
-> retrieved ptime.1.2.0 (cached)
-> retrieved rresult.0.7.0 (cached)
-> retrieved sexplib.v0.16.0 (cached)
-> retrieved sexplib0.v0.16.0 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> retrieved x509.0.7.1 (cached)
-> retrieved zarith.1.14 (cached)
-> installed cstruct-lwt.6.0.1
-> installed stdlib-shims.0.3.0
-> removed mirage-runtime.4.9.0
-> removed logs.0.10.0
-> installed fmt.0.11.0
-> installed rresult.0.7.0
-> installed astring.0.8.5
-> installed sexplib0.v0.16.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed num.1.6
-> installed ocb-stubblr.0.1.1-1
-> installed ptime.1.2.0
-> installed logs.0.10.0
-> installed parsexp.v0.16.0
-> installed mirage-runtime.4.9.0
-> installed sexplib.v0.16.0
-> installed zarith.1.14
-> installed base.v0.16.4
-> installed asn1-combinators.0.2.6
-> installed ppxlib.0.35.0
-> installed ppx_sexp_conv.v0.16.0
-> installed ppx_deriving.6.0.3
-> installed nocrypto.0.5.4-2
-> installed x509.0.7.1
Done.
<><> mirage-no-xen.1 installed successfully <><><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
<><> mirage-no-solo5.1 installed successfully <><><><><><><><><><><><><><><><><>
=> Note: This package is deprecated.
# To update the current shell environment, run: eval $(opam env)
2026-01-28 01:33.38 ---> saved as "4ecf8429bde21c0fe11a3cbf7209dce292d17603b153980dedaeb94742999bcc"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test x509.0.7.1) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile x509 0.7.1
=== install 5 packages
- install alcotest 1.9.1 [required by x509]
- install cstruct-unix 6.0.1 [required by x509]
- install ocaml-syntax-shims 1.0.0 [required by alcotest]
- install re 1.14.0 [required by alcotest]
- install uutf 1.0.4 [required by alcotest]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1 (https://opam.ocaml.org/cache)
-> retrieved cstruct-unix.6.0.1 (https://opam.ocaml.org/cache)
-> installed cstruct-unix.6.0.1
-> retrieved ocaml-syntax-shims.1.0.0 (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0 (https://opam.ocaml.org/cache)
-> installed ocaml-syntax-shims.1.0.0
-> installed re.1.14.0
-> retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
-> retrieved x509.0.7.1 (https://opam.ocaml.org/cache)
-> removed x509.0.7.1
-> installed uutf.1.0.4
-> installed alcotest.1.9.1
-> installed x509.0.7.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-28 01:33.48 ---> saved as "26afd335f5003b2b2ada8afa711a5d47e6c8842d3e157de00707129827cc3d90"
/home/opam: (run (shell "opam reinstall --with-test --verbose x509.0.7.1;\
\n res=$?;\
\n test \"$res\" != 31 && exit \"$res\";\
\n export OPAMCLI=2.0;\
\n build_dir=$(opam var prefix)/.opam-switch/build;\
\n failed=$(ls \"$build_dir\");\
\n partial_fails=\"\";\
\n for pkg in $failed; do\
\n if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'x509.0.7.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
The following actions will be performed:
=== recompile 1 package
- recompile x509 0.7.1
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [x509.0.7.1: extract]
-> retrieved x509.0.7.1 (cached)
Processing 2/4: [x509: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "x509" "-j" "255" (CWD=/home/opam/.opam/4.14/.opam-switch/build/x509.0.7.1)
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -safe-string -g -bin-annot -I lib/.x509.objs/byte -I lib/.x509.objs/public_cmi -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/nocrypto -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/zarith -no-alias-deps -open X509__ -o lib/.x509.objs/byte/x509__Asn_grammars.cmo -c -impl lib/asn_grammars.ml)
- File "lib/asn_grammars.ml", line 7, characters 5-16:
- 7 | if Cstruct.len cs = 0 then Ok a else Error (`Parse "Leftover")
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -safe-string -g -bin-annot -I lib/.x509.objs/byte -I lib/.x509.objs/public_cmi -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/nocrypto -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/zarith -no-alias-deps -open X509__ -o lib/.x509.objs/byte/x509__Pem.cmo -c -impl lib/pem.ml)
- File "lib/pem.ml", line 7, characters 13-16:
- 7 | let l1 = len cs and l2 = len target in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/pem.ml", line 7, characters 29-32:
- 7 | let l1 = len cs and l2 = len target in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/pem.ml", line 11, characters 13-16:
- 11 | let l1 = len cs and l2 = len target in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/pem.ml", line 11, characters 29-32:
- 11 | let l1 = len cs and l2 = len target in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/pem.ml", line 14, characters 16-19:
- 14 | let null cs = len cs = 0
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/pem.ml", line 26, characters 38-41:
- 26 | `Begin (to_string @@ sub cs 11 (len cs - 16))
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/pem.ml", line 28, characters 35-38:
- 28 | `End (to_string @@ sub cs 9 (len cs - 14))
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/pem.ml", line 73, characters 15-18:
- 73 | | x when len x <= 64 -> List.rev (x :: acc)
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -safe-string -g -I lib/.x509.objs/byte -I lib/.x509.objs/native -I lib/.x509.objs/public_cmi -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/nocrypto -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open X509__ -o lib/.x509.objs/native/x509__Asn_grammars.cmx -c -impl lib/asn_grammars.ml)
- File "lib/asn_grammars.ml", line 7, characters 5-16:
- 7 | if Cstruct.len cs = 0 then Ok a else Error (`Parse "Leftover")
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -safe-string -g -I lib/.x509.objs/byte -I lib/.x509.objs/native -I lib/.x509.objs/public_cmi -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/nocrypto -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open X509__ -o lib/.x509.objs/native/x509__Pem.cmx -c -impl lib/pem.ml)
- File "lib/pem.ml", line 7, characters 13-16:
- 7 | let l1 = len cs and l2 = len target in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/pem.ml", line 7, characters 29-32:
- 7 | let l1 = len cs and l2 = len target in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/pem.ml", line 11, characters 13-16:
- 11 | let l1 = len cs and l2 = len target in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/pem.ml", line 11, characters 29-32:
- 11 | let l1 = len cs and l2 = len target in
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/pem.ml", line 14, characters 16-19:
- 14 | let null cs = len cs = 0
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/pem.ml", line 26, characters 38-41:
- 26 | `Begin (to_string @@ sub cs 11 (len cs - 16))
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/pem.ml", line 28, characters 35-38:
- 28 | `End (to_string @@ sub cs 9 (len cs - 14))
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/pem.ml", line 73, characters 15-18:
- 73 | | x when len x <= 64 -> List.rev (x :: acc)
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -safe-string -g -bin-annot -I lib/.x509.objs/byte -I lib/.x509.objs/public_cmi -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/nocrypto -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/zarith -no-alias-deps -open X509__ -o lib/.x509.objs/byte/x509__Distinguished_name.cmo -c -impl lib/distinguished_name.ml)
- File "lib/distinguished_name.ml", line 75, characters 18-22:
- 75 | Fmt.(list ~sep:(unit "/") pp_b) ppf (bindings dn)
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -safe-string -g -bin-annot -I lib/.x509.objs/byte -I lib/.x509.objs/public_cmi -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/nocrypto -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/zarith -no-alias-deps -open X509__ -o lib/.x509.objs/byte/x509__General_name.cmo -c -impl lib/general_name.ml)
- File "lib/general_name.ml", line 35, characters 32-36:
- 35 | let pp_strs = Fmt.(list ~sep:(unit "; ") string) in
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/general_name.ml", line 39, characters 40-44:
- 39 | Fmt.pf ppf "dns %a" Fmt.(list ~sep:(unit "; ") string) x
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/general_name.ml", line 43, characters 22-26:
- 43 | Fmt.(list ~sep:(unit "; ") Distinguished_name.pp) x
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/general_name.ml", line 46, characters 22-26:
- 46 | Fmt.(list ~sep:(unit "; ")
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/general_name.ml", line 47, characters 27-31:
- 47 | (pair ~sep:(unit ", ")
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/general_name.ml", line 48, characters 33-37:
- 48 | (option ~none:(unit "") string) string)) xs
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/general_name.ml", line 50, characters 48-52:
- 50 | | IP, x -> Fmt.pf ppf "ip %a" Fmt.(list ~sep:(unit ";") Cstruct.hexdump_pp) x
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/general_name.ml", line 53, characters 22-26:
- 53 | Fmt.(list ~sep:(unit ";") Asn.OID.pp) x
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -safe-string -g -I lib/.x509.objs/byte -I lib/.x509.objs/native -I lib/.x509.objs/public_cmi -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/nocrypto -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open X509__ -o lib/.x509.objs/native/x509__Distinguished_name.cmx -c -impl lib/distinguished_name.ml)
- File "lib/distinguished_name.ml", line 75, characters 18-22:
- 75 | Fmt.(list ~sep:(unit "/") pp_b) ppf (bindings dn)
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -safe-string -g -I lib/.x509.objs/byte -I lib/.x509.objs/native -I lib/.x509.objs/public_cmi -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/nocrypto -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open X509__ -o lib/.x509.objs/native/x509__General_name.cmx -c -impl lib/general_name.ml)
- File "lib/general_name.ml", line 35, characters 32-36:
- 35 | let pp_strs = Fmt.(list ~sep:(unit "; ") string) in
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/general_name.ml", line 39, characters 40-44:
- 39 | Fmt.pf ppf "dns %a" Fmt.(list ~sep:(unit "; ") string) x
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/general_name.ml", line 43, characters 22-26:
- 43 | Fmt.(list ~sep:(unit "; ") Distinguished_name.pp) x
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/general_name.ml", line 46, characters 22-26:
- 46 | Fmt.(list ~sep:(unit "; ")
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/general_name.ml", line 47, characters 27-31:
- 47 | (pair ~sep:(unit ", ")
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/general_name.ml", line 48, characters 33-37:
- 48 | (option ~none:(unit "") string) string)) xs
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/general_name.ml", line 50, characters 48-52:
- 50 | | IP, x -> Fmt.pf ppf "ip %a" Fmt.(list ~sep:(unit ";") Cstruct.hexdump_pp) x
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/general_name.ml", line 53, characters 22-26:
- 53 | Fmt.(list ~sep:(unit ";") Asn.OID.pp) x
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -safe-string -g -bin-annot -I lib/.x509.objs/byte -I lib/.x509.objs/public_cmi -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/nocrypto -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/zarith -no-alias-deps -open X509__ -o lib/.x509.objs/byte/x509__Certificate.cmo -c -impl lib/certificate.ml)
- File "lib/certificate.ml", line 180, characters 23-27:
- 180 | Fmt.(option ~none:(unit "NONE") pp_sigalg) sigalg
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -safe-string -g -bin-annot -I lib/.x509.objs/byte -I lib/.x509.objs/public_cmi -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/nocrypto -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/zarith -no-alias-deps -open X509__ -o lib/.x509.objs/byte/x509__Validation.cmo -c -impl lib/validation.ml)
- File "lib/validation.ml", line 30, characters 15-26:
- 30 | let siglen = Cstruct.len signature in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/validation.ml", line 34, characters 25-28:
- 34 | Cstruct.(sub raw lenl (len raw - (siglen + lenl + 19 + off)))
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/validation.ml", line 176, characters 25-29:
- 176 | Fmt.(option ~none:(unit "no timestamp provided") pp_pt) now
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/validation.ml", line 189, characters 25-29:
- 189 | Fmt.(option ~none:(unit "no timestamp provided") pp_pt) now
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/validation.ml", line 223, characters 25-29:
- 223 | Fmt.(option ~none:(unit "no timestamp provided") pp_pt) now
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -safe-string -g -I lib/.x509.objs/byte -I lib/.x509.objs/native -I lib/.x509.objs/public_cmi -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/nocrypto -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open X509__ -o lib/.x509.objs/native/x509__Certificate.cmx -c -impl lib/certificate.ml)
- File "lib/certificate.ml", line 180, characters 23-27:
- 180 | Fmt.(option ~none:(unit "NONE") pp_sigalg) sigalg
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -safe-string -g -I lib/.x509.objs/byte -I lib/.x509.objs/native -I lib/.x509.objs/public_cmi -I /home/opam/.opam/4.14/lib/asn1-combinators -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cstruct -I /home/opam/.opam/4.14/lib/domain-name -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/gmap -I /home/opam/.opam/4.14/lib/nocrypto -I /home/opam/.opam/4.14/lib/parsexp -I /home/opam/.opam/4.14/lib/ppx_deriving/runtime -I /home/opam/.opam/4.14/lib/ppx_sexp_conv/runtime-lib -I /home/opam/.opam/4.14/lib/ptime -I /home/opam/.opam/4.14/lib/rresult -I /home/opam/.opam/4.14/lib/sexplib -I /home/opam/.opam/4.14/lib/sexplib0 -I /home/opam/.opam/4.14/lib/zarith -intf-suffix .ml -no-alias-deps -open X509__ -o lib/.x509.objs/native/x509__Validation.cmx -c -impl lib/validation.ml)
- File "lib/validation.ml", line 30, characters 15-26:
- 30 | let siglen = Cstruct.len signature in
- ^^^^^^^^^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/validation.ml", line 34, characters 25-28:
- 34 | Cstruct.(sub raw lenl (len raw - (siglen + lenl + 19 + off)))
- ^^^
- Alert deprecated: Cstruct.len
- len is deprecated, you should use length instead.
- File "lib/validation.ml", line 176, characters 25-29:
- 176 | Fmt.(option ~none:(unit "no timestamp provided") pp_pt) now
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/validation.ml", line 189, characters 25-29:
- 189 | Fmt.(option ~none:(unit "no timestamp provided") pp_pt) now
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/validation.ml", line 223, characters 25-29:
- 223 | Fmt.(option ~none:(unit "no timestamp provided") pp_pt) now
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
Processing 2/4: [x509: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "x509" "-j" "255" (CWD=/home/opam/.opam/4.14/.opam-switch/build/x509.0.7.1)
- (cd _build/default/tests && ./tests.exe)
- Testing `X509 tests'.
- This run has ID `LO6LECBA'.
-
- [OK] Invalid CA 0 inval...
- [OK] Invalid CA 1 inval...
- [OK] Invalid CA 2 inval...
- [OK] Invalid CA 3 inval...
- [OK] Valid CA 0 valid...
- [OK] Valid CA 1 valid...
- [OK] Valid CA 2 valid...
- [OK] Valid CA 3 valid...
- [OK] Certificate 0 certi...
- [OK] Certificate 1 certi...
- [OK] Certificate 2 certi...
- [OK] Certificate 3 certi...
- [OK] Certificate 4 certi...
- [OK] Certificate 5 certi...
- [OK] Certificate 6 certi...
- [OK] CA tests with certificate 0 verif...
- [OK] CA tests with certificate 1 verif...
- [OK] CA tests with certificate 2 certi...
- [OK] CA tests with certificate 3 certi...
- [OK] CA tests with certificate 4 certi...
- [OK] CA tests with certificate 5 certi...
- [OK] CA tests with certificate 6 verif...
- [OK] CA tests with certificate 7 verif...
- [OK] CA tests with certificate 8 certi...
- [OK] CA tests with certificate 9 certi...
- [OK] CA tests with certificate 10 verif...
- [OK] CA tests with certificate 11 verif...
- [OK] CA tests with certificate 12 certi...
- [OK] CA tests with certificate 13 certi...
- [OK] CA tests with certificate 14 verif...
- [OK] CA tests with certificate 15 verif...
- [OK] CA tests with certificate 16 certi...
- [OK] CA tests with certificate 17 certi...
- [OK] CA tests with certificate 18 verif...
- [OK] CA tests with certificate 19 verif...
- [OK] CA tests with certificate 20 certi...
- [OK] CA tests with certificate 21 certi...
- [OK] CA tests with certificate 22 verif...
- [OK] CA tests with certificate 23 verif...
- [OK] CA tests with certificate 24 certi...
- [OK] CA tests with certificate 25 certi...
- [OK] CA tests with certificate 26 certi...
- [OK] CA tests with certificate 27 certi...
- [OK] CA tests with certificate 28 verif...
- [OK] CA tests with certificate 29 verif...
- [OK] CA tests with certificate 30 certi...
- [OK] CA tests with certificate 31 certi...
- [OK] CA tests with certificate 32 verif...
- [OK] CA tests with certificate 33 verif...
- [OK] CA tests with certificate 34 certi...
- [OK] CA tests with certificate 35 certi...
- [OK] CA tests with certificate 36 certi...
- [OK] CA tests with certificate 37 certi...
- [OK] CA tests with certificate 38 verif...
- [OK] CA tests with certificate 39 verif...
- [OK] CA tests with certificate 40 certi...
- [OK] CA tests with certificate 41 certi...
- [OK] CA tests with certificate 42 verif...
- [OK] CA tests with certificate 43 verif...
- [OK] CA tests with certificate 44 certi...
- [OK] CA tests with certificate 45 certi...
- [OK] CA tests with certificate 46 verif...
- [OK] CA tests with certificate 47 verif...
- [OK] CA tests with certificate 48 certi...
- [OK] CA tests with certificate 49 certi...
- [OK] CA tests with certificate 50 verif...
- [OK] CA tests with certificate 51 verif...
- [OK] CA tests with certificate 52 certi...
- [OK] CA tests with certificate 53 certi...
- [OK] CA tests with certificate 54 verif...
- [OK] CA tests with certificate 55 verif...
- [OK] CA tests with certificate 56 certi...
- [OK] CA tests with certificate 57 certi...
- [OK] CA tests with certificate 58 certi...
- [OK] CA tests with certificate 59 certi...
- [OK] CA tests with certificate 60 verif...
- [OK] CA tests with certificate 61 verif...
- [OK] CA tests with certificate 62 certi...
- [OK] CA tests with certificate 63 certi...
- [OK] CA tests with certificate 64 verif...
- [OK] CA tests with certificate 65 verif...
- [OK] CA tests with certificate 66 certi...
- [OK] CA tests with certificate 67 certi...
- [OK] CA tests with certificate 68 certi...
- [OK] CA tests with certificate 69 certi...
- [OK] CA tests with certificate 70 verif...
- [OK] CA tests with certificate 71 verif...
- [OK] CA tests with certificate 72 certi...
- [OK] CA tests with certificate 73 certi...
- [OK] CA tests with certificate 74 verif...
- [OK] CA tests with certificate 75 verif...
- [OK] CA tests with certificate 76 certi...
- [OK] CA tests with certificate 77 certi...
- [OK] CA tests with certificate 78 verif...
- [OK] CA tests with certificate 79 verif...
- [OK] CA tests with certificate 80 certi...
- [OK] CA tests with certificate 81 certi...
- [OK] CA tests with certificate 82 verif...
- [OK] CA tests with certificate 83 verif...
- [OK] CA tests with certificate 84 certi...
- [OK] CA tests with certificate 85 certi...
- [OK] CA tests with certificate 86 verif...
- [OK] CA tests with certificate 87 verif...
- [OK] CA tests with certificate 88 certi...
- [OK] CA tests with certificate 89 certi...
- [OK] CA tests with certificate 90 certi...
- [OK] CA tests with certificate 91 certi...
- [OK] CA tests with certificate 92 verif...
- [OK] CA tests with certificate 93 verif...
- [OK] CA tests with certificate 94 certi...
- [OK] CA tests with certificate 95 certi...
- [OK] CA tests with certificate 96 verif...
- [OK] CA tests with certificate 97 verif...
- [OK] CA tests with certificate 98 certi...
- [OK] CA tests with certificate 99 certi...
- [OK] CA tests with certificate 100 certi...
- [OK] CA tests with certificate 101 certi...
- [OK] CA tests with certificate 102 verif...
- [OK] CA tests with certificate 103 verif...
- [OK] CA tests with certificate 104 certi...
- [OK] CA tests with certificate 105 certi...
- [OK] CA tests with certificate 106 verif...
- [OK] CA tests with certificate 107 verif...
- [OK] CA tests with certificate 108 certi...
- [OK] CA tests with certificate 109 certi...
- [OK] CA tests with certificate 110 verif...
- [OK] CA tests with certificate 111 verif...
- [OK] CA tests with certificate 112 certi...
- [OK] CA tests with certificate 113 certi...
- [OK] CA tests with certificate 114 verif...
- [OK] CA tests with certificate 115 verif...
- [OK] CA tests with certificate 116 certi...
- [OK] CA tests with certificate 117 certi...
- [OK] CA tests with certificate 118 verif...
- [OK] CA tests with certificate 119 verif...
- [OK] CA tests with certificate 120 certi...
- [OK] CA tests with certificate 121 certi...
- [OK] CA tests with certificate 122 certi...
- [OK] CA tests with certificate 123 certi...
- [OK] CA tests with certificate 124 verif...
- [OK] CA tests with certificate 125 verif...
- [OK] CA tests with certificate 126 certi...
- [OK] CA tests with certificate 127 certi...
- [OK] CA tests with certificate 128 verif...
- [OK] CA tests with certificate 129 verif...
- [OK] CA tests with certificate 130 certi...
- [OK] CA tests with certificate 131 certi...
- [OK] CA tests with certificate 132 certi...
- [OK] CA tests with certificate 133 certi...
- [OK] CA tests with certificate 134 verif...
- [OK] CA tests with certificate 135 verif...
- [OK] CA tests with certificate 136 certi...
- [OK] CA tests with certificate 137 certi...
- [OK] CA tests with certificate 138 verif...
- [OK] CA tests with certificate 139 verif...
- [OK] CA tests with certificate 140 certi...
- [OK] CA tests with certificate 141 certi...
- [OK] CA tests with certificate 142 verif...
- [OK] CA tests with certificate 143 verif...
- [OK] CA tests with certificate 144 certi...
- [OK] CA tests with certificate 145 certi...
- [OK] CA tests with certificate 146 verif...
- [OK] CA tests with certificate 147 verif...
- [OK] CA tests with certificate 148 certi...
- [OK] CA tests with certificate 149 certi...
- [OK] CA tests with certificate 150 verif...
- [OK] CA tests with certificate 151 verif...
- [OK] CA tests with certificate 152 certi...
- [OK] CA tests with certificate 153 certi...
- [OK] CA tests with certificate 154 certi...
- [OK] CA tests with certificate 155 certi...
- [OK] CA tests with certificate 156 verif...
- [OK] CA tests with certificate 157 verif...
- [OK] CA tests with certificate 158 certi...
- [OK] CA tests with certificate 159 certi...
- [OK] Wildcard certificate 0 wildc...
- [OK] Wildcard certificate 1 wildc...
- [OK] CA tests with wildcard certificate 0 verif...
- [OK] CA tests with wildcard certificate 1 verif...
- [OK] CA tests with wildcard certificate 2 wildc...
- [OK] CA tests with wildcard certificate 3 wildc...
- [OK] CA tests with wildcard certificate 4 wildc...
- [OK] CA tests with wildcard certificate 5 wildc...
- [OK] CA tests with wildcard certificate 6 wildc...
- [OK] CA tests with wildcard certificate 7 wildc...
- [OK] CA tests with wildcard certificate 8 wildc...
- [OK] CA tests with wildcard certificate 9 wildc...
- [OK] CA tests with wildcard certificate 10 verif...
- [OK] CA tests with wildcard certificate 11 verif...
- [OK] CA tests with wildcard certificate 12 wildc...
- [OK] CA tests with wildcard certificate 13 wildc...
- [OK] CA tests with wildcard certificate 14 wildc...
- [OK] CA tests with wildcard certificate 15 wildc...
- [OK] CA tests with wildcard certificate 16 wildc...
- [OK] CA tests with wildcard certificate 17 wildc...
- [OK] CA tests with wildcard certificate 18 wildc...
- [OK] CA tests with wildcard certificate 19 wildc...
- [OK] CA tests with wildcard certificate 20 verif...
- [OK] CA tests with wildcard certificate 21 verif...
- [OK] CA tests with wildcard certificate 22 wildc...
- [OK] CA tests with wildcard certificate 23 wildc...
- [OK] CA tests with wildcard certificate 24 wildc...
- [OK] CA tests with wildcard certificate 25 wildc...
- [OK] CA tests with wildcard certificate 26 wildc...
- [OK] CA tests with wildcard certificate 27 wildc...
- [OK] CA tests with wildcard certificate 28 wildc...
- [OK] CA tests with wildcard certificate 29 wildc...
- [OK] CA tests with wildcard certificate 30 verif...
- [OK] CA tests with wildcard certificate 31 verif...
- [OK] CA tests with wildcard certificate 32 wildc...
- [OK] CA tests with wildcard certificate 33 wildc...
- [OK] CA tests with wildcard certificate 34 wildc...
- [OK] CA tests with wildcard certificate 35 wildc...
- [OK] CA tests with wildcard certificate 36 wildc...
- [OK] CA tests with wildcard certificate 37 wildc...
- [OK] CA tests with wildcard certificate 38 wildc...
- [OK] CA tests with wildcard certificate 39 wildc...
- [OK] CA tests with wildcard certificate 40 verif...
- [OK] CA tests with wildcard certificate 41 verif...
- [OK] CA tests with wildcard certificate 42 wildc...
- [OK] CA tests with wildcard certificate 43 wildc...
- [OK] CA tests with wildcard certificate 44 wildc...
- [OK] CA tests with wildcard certificate 45 wildc...
- [OK] CA tests with wildcard certificate 46 wildc...
- [OK] CA tests with wildcard certificate 47 wildc...
- [OK] CA tests with wildcard certificate 48 wildc...
- [OK] CA tests with wildcard certificate 49 wildc...
- [OK] CA tests with wildcard certificate 50 verif...
- [OK] CA tests with wildcard certificate 51 verif...
- [OK] CA tests with wildcard certificate 52 wildc...
- [OK] CA tests with wildcard certificate 53 wildc...
- [OK] CA tests with wildcard certificate 54 wildc...
- [OK] CA tests with wildcard certificate 55 wildc...
- [OK] CA tests with wildcard certificate 56 wildc...
- [OK] CA tests with wildcard certificate 57 wildc...
- [OK] CA tests with wildcard certificate 58 wildc...
- [OK] CA tests with wildcard certificate 59 wildc...
- [OK] CA tests with wildcard certificate 60 verif...
- [OK] CA tests with wildcard certificate 61 verif...
- [OK] CA tests with wildcard certificate 62 wildc...
- [OK] CA tests with wildcard certificate 63 wildc...
- [OK] CA tests with wildcard certificate 64 wildc...
- [OK] CA tests with wildcard certificate 65 wildc...
- [OK] CA tests with wildcard certificate 66 wildc...
- [OK] CA tests with wildcard certificate 67 wildc...
- [OK] CA tests with wildcard certificate 68 wildc...
- [OK] CA tests with wildcard certificate 69 wildc...
- [OK] CA tests with wildcard certificate 70 verif...
- [OK] CA tests with wildcard certificate 71 verif...
- [OK] CA tests with wildcard certificate 72 wildc...
- [OK] CA tests with wildcard certificate 73 wildc...
- [OK] CA tests with wildcard certificate 74 wildc...
- [OK] CA tests with wildcard certificate 75 wildc...
- [OK] CA tests with wildcard certificate 76 wildc...
- [OK] CA tests with wildcard certificate 77 wildc...
- [OK] CA tests with wildcard certificate 78 wildc...
- [OK] CA tests with wildcard certificate 79 wildc...
- [OK] CA tests with wildcard certificate 80 verif...
- [OK] CA tests with wildcard certificate 81 verif...
- [OK] CA tests with wildcard certificate 82 wildc...
- [OK] CA tests with wildcard certificate 83 wildc...
- [OK] CA tests with wildcard certificate 84 wildc...
- [OK] CA tests with wildcard certificate 85 wildc...
- [OK] CA tests with wildcard certificate 86 wildc...
- [OK] CA tests with wildcard certificate 87 wildc...
- [OK] CA tests with wildcard certificate 88 wildc...
- [OK] CA tests with wildcard certificate 89 wildc...
- [OK] CA tests with wildcard certificate 90 verif...
- [OK] CA tests with wildcard certificate 91 verif...
- [OK] CA tests with wildcard certificate 92 wildc...
- [OK] CA tests with wildcard certificate 93 wildc...
- [OK] CA tests with wildcard certificate 94 wildc...
- [OK] CA tests with wildcard certificate 95 wildc...
- [OK] CA tests with wildcard certificate 96 wildc...
- [OK] CA tests with wildcard certificate 97 wildc...
- [OK] CA tests with wildcard certificate 98 wildc...
- [OK] CA tests with wildcard certificate 99 wildc...
- [OK] Second certificate test 0 secon...
- [OK] Second certificate test 1 secon...
- [OK] Second certificate test 2 secon...
- [OK] Second certificate test 3 secon...
- [OK] Second certificate test 4 secon...
- [OK] Second certificate test 5 secon...
- [OK] Second certificate test 6 secon...
- [OK] Second certificate test 7 secon...
- [OK] Second certificate test 8 secon...
- [OK] Second certificate test 9 secon...
- [OK] Second certificate test 10 secon...
- [OK] Intermediate CA with second certificate 0 verif...
- [OK] Intermediate CA with second certificate 1 verif...
- [OK] Intermediate CA with second certificate 2 stric...
- [OK] Intermediate CA with second certificate 3 wildc...
- [OK] Intermediate CA with second certificate 4 verif...
- [OK] Intermediate CA with second certificate 5 verif...
- [OK] Intermediate CA with second certificate 6 stric...
- [OK] Intermediate CA with second certificate 7 wildc...
- [OK] Intermediate CA with second certificate 8 verif...
- [OK] Intermediate CA with second certificate 9 verif...
- [OK] Intermediate CA with second certificate 10 stric...
- [OK] Intermediate CA with second certificate 11 stric...
- [OK] Intermediate CA with second certificate 12 wildc...
- [OK] Intermediate CA with second certificate 13 wildc...
- [OK] Intermediate CA with second certificate 14 verif...
- [OK] Intermediate CA with second certificate 15 verif...
- [OK] Intermediate CA with second certificate 16 stric...
- [OK] Intermediate CA with second certificate 17 wildc...
- [OK] Intermediate CA with second certificate 18 verif...
- [OK] Intermediate CA with second certificate 19 verif...
- [OK] Intermediate CA with second certificate 20 stric...
- [OK] Intermediate CA with second certificate 21 wildc...
- [OK] Intermediate CA with second certificate 22 verif...
- [OK] Intermediate CA with second certificate 23 verif...
- [OK] Intermediate CA with second certificate 24 stric...
- [OK] Intermediate CA with second certificate 25 wildc...
- [OK] Intermediate CA with second certificate 26 verif...
- [OK] Intermediate CA with second certificate 27 verif...
- [OK] Intermediate CA with second certificate 28 stric...
- [OK] Intermediate CA with second certificate 29 wildc...
- [OK] Intermediate CA with second certificate 30 verif...
- [OK] Intermediate CA with second certificate 31 verif...
- [OK] Intermediate CA with second certificate 32 stric...
- [OK] Intermediate CA with second certificate 33 wildc...
- [OK] Intermediate CA with second certificate 34 verif...
- [OK] Intermediate CA with second certificate 35 verif...
- [OK] Intermediate CA with second certificate 36 stric...
- [OK] Intermediate CA with second certificate 37 wildc...
- [OK] Intermediate CA with second certificate 38 verif...
- [OK] Intermediate CA with second certificate 39 verif...
- [OK] Intermediate CA with second certificate 40 verif...
- [OK] Intermediate CA with second certificate 41 verif...
- [OK] Intermediate CA with second certificate 42 verif...
- [OK] Intermediate CA with second certificate 43 verif...
- [OK] Intermediate CA with second certificate 44 stric...
- [OK] Intermediate CA with second certificate 45 wildc...
- [OK] Intermediate CA with second certificate 46 verif...
- [OK] Intermediate CA with second certificate 47 verif...
- [OK] Intermediate CA with second certificate 48 stric...
- [OK] Intermediate CA with second certificate 49 wildc...
- [OK] Intermediate CA with second certificate 50 verif...
- [OK] Intermediate CA with second certificate 51 verif...
- [OK] Intermediate CA with second certificate 52 stric...
- [OK] Intermediate CA with second certificate 53 stric...
- [OK] Intermediate CA with second certificate 54 wildc...
- [OK] Intermediate CA with second certificate 55 wildc...
- [OK] Intermediate CA with second certificate 56 verif...
- [OK] Intermediate CA with second certificate 57 verif...
- [OK] Intermediate CA with second certificate 58 stric...
- [OK] Intermediate CA with second certificate 59 wildc...
- [OK] Intermediate CA with second certificate 60 verif...
- [OK] Intermediate CA with second certificate 61 verif...
- [OK] Intermediate CA with second certificate 62 stric...
- [OK] Intermediate CA with second certificate 63 wildc...
- [OK] Intermediate CA with second certificate 64 verif...
- [OK] Intermediate CA with second certificate 65 verif...
- [OK] Intermediate CA with second certificate 66 stric...
- [OK] Intermediate CA with second certificate 67 wildc...
- [OK] Intermediate CA with second certificate 68 verif...
- [OK] Intermediate CA with second certificate 69 verif...
- [OK] Intermediate CA with second certificate 70 stric...
- [OK] Intermediate CA with second certificate 71 wildc...
- [OK] Intermediate CA with second certificate 72 verif...
- [OK] Intermediate CA with second certificate 73 verif...
- [OK] Intermediate CA with second certificate 74 stric...
- [OK] Intermediate CA with second certificate 75 wildc...
- [OK] Intermediate CA with second certificate 76 verif...
- [OK] Intermediate CA with second certificate 77 verif...
- [OK] Intermediate CA with second certificate 78 stric...
- [OK] Intermediate CA with second certificate 79 wildc...
- [OK] Intermediate CA with second certificate 80 verif...
- [OK] Intermediate CA with second certificate 81 verif...
- [OK] Intermediate CA with second certificate 82 verif...
- [OK] Intermediate CA with second certificate 83 verif...
- [OK] Intermediate CA with second certificate 84 verif...
- [OK] Intermediate CA with second certificate 85 verif...
- [OK] Intermediate CA with second certificate 86 stric...
- [OK] Intermediate CA with second certificate 87 wildc...
- [OK] Intermediate CA with second certificate 88 verif...
- [OK] Intermediate CA with second certificate 89 verif...
- [OK] Intermediate CA with second certificate 90 stric...
- [OK] Intermediate CA with second certificate 91 wildc...
- [OK] Intermediate CA with second certificate 92 verif...
- [OK] Intermediate CA with second certificate 93 verif...
- [OK] Intermediate CA with second certificate 94 stric...
- [OK] Intermediate CA with second certificate 95 stric...
- [OK] Intermediate CA with second certificate 96 wildc...
- [OK] Intermediate CA with second certificate 97 wildc...
- [OK] Intermediate CA with second certificate 98 verif...
- [OK] Intermediate CA with second certificate 99 verif...
- [OK] Intermediate CA with second certificate 100 stric...
- [OK] Intermediate CA with second certificate 101 wildc...
- [OK] Intermediate CA with second certificate 102 verif...
- [OK] Intermediate CA with second certificate 103 verif...
- [OK] Intermediate CA with second certificate 104 stric...
- [OK] Intermediate CA with second certificate 105 wildc...
- [OK] Intermediate CA with second certificate 106 verif...
- [OK] Intermediate CA with second certificate 107 verif...
- [OK] Intermediate CA with second certificate 108 stric...
- [OK] Intermediate CA with second certificate 109 wildc...
- [OK] Intermediate CA with second certificate 110 verif...
- [OK] Intermediate CA with second certificate 111 verif...
- [OK] Intermediate CA with second certificate 112 stric...
- [OK] Intermediate CA with second certificate 113 wildc...
- [OK] Intermediate CA with second certificate 114 verif...
- [OK] Intermediate CA with second certificate 115 verif...
- [OK] Intermediate CA with second certificate 116 stric...
- [OK] Intermediate CA with second certificate 117 wildc...
- [OK] Intermediate CA with second certificate 118 verif...
- [OK] Intermediate CA with second certificate 119 verif...
- [OK] Intermediate CA with second certificate 120 stric...
- [OK] Intermediate CA with second certificate 121 wildc...
- [OK] Intermediate CA with second certificate 122 verif...
- [OK] Intermediate CA with second certificate 123 verif...
- [OK] Intermediate CA with second certificate 124 verif...
- [OK] Intermediate CA with second certificate 125 verif...
- [OK] Intermediate CA with second certificate 126 verif...
- [OK] Intermediate CA with second certificate 127 verif...
- [OK] Intermediate CA with second certificate 128 stric...
- [OK] Intermediate CA with second certificate 129 wildc...
- [OK] Intermediate CA with second certificate 130 verif...
- [OK] Intermediate CA with second certificate 131 verif...
- [OK] Intermediate CA with second certificate 132 stric...
- [OK] Intermediate CA with second certificate 133 wildc...
- [OK] Intermediate CA with second certificate 134 verif...
- [OK] Intermediate CA with second certificate 135 verif...
- [OK] Intermediate CA with second certificate 136 stric...
- [OK] Intermediate CA with second certificate 137 stric...
- [OK] Intermediate CA with second certificate 138 wildc...
- [OK] Intermediate CA with second certificate 139 wildc...
- [OK] Intermediate CA with second certificate 140 verif...
- [OK] Intermediate CA with second certificate 141 verif...
- [OK] Intermediate CA with second certificate 142 stric...
- [OK] Intermediate CA with second certificate 143 wildc...
- [OK] Intermediate CA with second certificate 144 verif...
- [OK] Intermediate CA with second certificate 145 verif...
- [OK] Intermediate CA with second certificate 146 stric...
- [OK] Intermediate CA with second certificate 147 wildc...
- [OK] Intermediate CA with second certificate 148 verif...
- [OK] Intermediate CA with second certificate 149 verif...
- [OK] Intermediate CA with second certificate 150 stric...
- [OK] Intermediate CA with second certificate 151 wildc...
- [OK] Intermediate CA with second certificate 152 verif...
- [OK] Intermediate CA with second certificate 153 verif...
- [OK] Intermediate CA with second certificate 154 stric...
- [OK] Intermediate CA with second certificate 155 wildc...
- [OK] Intermediate CA with second certificate 156 verif...
- [OK] Intermediate CA with second certificate 157 verif...
- [OK] Intermediate CA with second certificate 158 stric...
- [OK] Intermediate CA with second certificate 159 wildc...
- [OK] Intermediate CA with second certificate 160 verif...
- [OK] Intermediate CA with second certificate 161 verif...
- [OK] Intermediate CA with second certificate 162 stric...
- [OK] Intermediate CA with second certificate 163 wildc...
- [OK] Intermediate CA with second certificate 164 verif...
- [OK] Intermediate CA with second certificate 165 verif...
- [OK] Intermediate CA with second certificate 166 verif...
- [OK] Intermediate CA with second certificate 167 verif...
- [OK] Intermediate CA with second certificate 168 verif...
- [OK] Intermediate CA with second certificate 169 verif...
- [OK] Intermediate CA with second certificate 170 stric...
- [OK] Intermediate CA with second certificate 171 wildc...
- [OK] Intermediate CA with second certificate 172 verif...
- [OK] Intermediate CA with second certificate 173 verif...
- [OK] Intermediate CA with second certificate 174 stric...
- [OK] Intermediate CA with second certificate 175 wildc...
- [OK] Intermediate CA with second certificate 176 verif...
- [OK] Intermediate CA with second certificate 177 verif...
- [OK] Intermediate CA with second certificate 178 stric...
- [OK] Intermediate CA with second certificate 179 stric...
- [OK] Intermediate CA with second certificate 180 wildc...
- [OK] Intermediate CA with second certificate 181 wildc...
- [OK] Intermediate CA with second certificate 182 verif...
- [OK] Intermediate CA with second certificate 183 verif...
- [OK] Intermediate CA with second certificate 184 stric...
- [OK] Intermediate CA with second certificate 185 wildc...
- [OK] Intermediate CA with second certificate 186 verif...
- [OK] Intermediate CA with second certificate 187 verif...
- [OK] Intermediate CA with second certificate 188 stric...
- [OK] Intermediate CA with second certificate 189 wildc...
- [OK] Intermediate CA with second certificate 190 verif...
- [OK] Intermediate CA with second certificate 191 verif...
- [OK] Intermediate CA with second certificate 192 stric...
- [OK] Intermediate CA with second certificate 193 wildc...
- [OK] Intermediate CA with second certificate 194 verif...
- [OK] Intermediate CA with second certificate 195 verif...
- [OK] Intermediate CA with second certificate 196 stric...
- [OK] Intermediate CA with second certificate 197 wildc...
- [OK] Intermediate CA with second certificate 198 verif...
- [OK] Intermediate CA with second certificate 199 verif...
- [OK] Intermediate CA with second certificate 200 stric...
- [OK] Intermediate CA with second certificate 201 wildc...
- [OK] Intermediate CA with second certificate 202 verif...
- [OK] Intermediate CA with second certificate 203 verif...
- [OK] Intermediate CA with second certificate 204 stric...
- [OK] Intermediate CA with second certificate 205 wildc...
- [OK] Intermediate CA with second certificate 206 verif...
- [OK] Intermediate CA with second certificate 207 verif...
- [OK] Intermediate CA with second certificate 208 verif...
- [OK] Intermediate CA with second certificate 209 verif...
- [OK] Intermediate CA with second certificate 210 verif...
- [OK] Intermediate CA with second certificate 211 verif...
- [OK] Intermediate CA with second certificate 212 stric...
- [OK] Intermediate CA with second certificate 213 wildc...
- [OK] Intermediate CA with second certificate 214 verif...
- [OK] Intermediate CA with second certificate 215 verif...
- [OK] Intermediate CA with second certificate 216 stric...
- ...TRUNCATED BY DUNE...
- [OK] Intermediate CA with second no common name 79 certi...
- [OK] Intermediate CA with second no common name 80 certi...
- [OK] Intermediate CA with second no common name 81 certi...
- [OK] Intermediate CA with second no common name 82 certi...
- [OK] Intermediate CA with second no common name 83 certi...
- [OK] Intermediate CA with second no common name 84 verif...
- [OK] Intermediate CA with second no common name 85 verif...
- [OK] Intermediate CA with second no common name 86 certi...
- [OK] Intermediate CA with second no common name 87 certi...
- [OK] Intermediate CA with second no common name 88 certi...
- [OK] Intermediate CA with second no common name 89 certi...
- [OK] Intermediate CA with second no common name 90 certi...
- [OK] Intermediate CA with second no common name 91 certi...
- [OK] Intermediate CA with second no common name 92 certi...
- [OK] Intermediate CA with second no common name 93 certi...
- [OK] Intermediate CA with second no common name 94 certi...
- [OK] Intermediate CA with second no common name 95 certi...
- [OK] Intermediate CA with second no common name 96 verif...
- [OK] Intermediate CA with second no common name 97 verif...
- [OK] Intermediate CA with second no common name 98 certi...
- [OK] Intermediate CA with second no common name 99 certi...
- [OK] Intermediate CA with second no common name 100 certi...
- [OK] Intermediate CA with second no common name 101 certi...
- [OK] Intermediate CA with second no common name 102 certi...
- [OK] Intermediate CA with second no common name 103 certi...
- [OK] Intermediate CA with second no common name 104 certi...
- [OK] Intermediate CA with second no common name 105 certi...
- [OK] Intermediate CA with second no common name 106 certi...
- [OK] Intermediate CA with second no common name 107 certi...
- [OK] Intermediate CA with second no common name 108 verif...
- [OK] Intermediate CA with second no common name 109 verif...
- [OK] Intermediate CA with second no common name 110 certi...
- [OK] Intermediate CA with second no common name 111 certi...
- [OK] Intermediate CA with second no common name 112 certi...
- [OK] Intermediate CA with second no common name 113 certi...
- [OK] Intermediate CA with second no common name 114 certi...
- [OK] Intermediate CA with second no common name 115 certi...
- [OK] Intermediate CA with second no common name 116 certi...
- [OK] Intermediate CA with second no common name 117 certi...
- [OK] Intermediate CA with second no common name 118 certi...
- [OK] Intermediate CA with second no common name 119 certi...
- [OK] Intermediate CA with second no common name 120 verif...
- [OK] Intermediate CA with second no common name 121 verif...
- [OK] Intermediate CA with second no common name 122 certi...
- [OK] Intermediate CA with second no common name 123 certi...
- [OK] Intermediate CA with second no common name 124 certi...
- [OK] Intermediate CA with second no common name 125 certi...
- [OK] Intermediate CA with second no common name 126 certi...
- [OK] Intermediate CA with second no common name 127 certi...
- [OK] Intermediate CA with second no common name 128 certi...
- [OK] Intermediate CA with second no common name 129 certi...
- [OK] Intermediate CA with second no common name 130 certi...
- [OK] Intermediate CA with second no common name 131 certi...
- [OK] Intermediate CA with second no common name 132 verif...
- [OK] Intermediate CA with second no common name 133 verif...
- [OK] Intermediate CA with second no common name 134 certi...
- [OK] Intermediate CA with second no common name 135 certi...
- [OK] Intermediate CA with second no common name 136 certi...
- [OK] Intermediate CA with second no common name 137 certi...
- [OK] Intermediate CA with second no common name 138 certi...
- [OK] Intermediate CA with second no common name 139 certi...
- [OK] Intermediate CA with second no common name 140 certi...
- [OK] Intermediate CA with second no common name 141 certi...
- [OK] Intermediate CA with second no common name 142 certi...
- [OK] Intermediate CA with second no common name 143 certi...
- [OK] Intermediate CA with second no common name 144 verif...
- [OK] Intermediate CA with second no common name 145 verif...
- [OK] Intermediate CA with second no common name 146 certi...
- [OK] Intermediate CA with second no common name 147 certi...
- [OK] Intermediate CA with second no common name 148 certi...
- [OK] Intermediate CA with second no common name 149 certi...
- [OK] Intermediate CA with second no common name 150 certi...
- [OK] Intermediate CA with second no common name 151 certi...
- [OK] Intermediate CA with second no common name 152 certi...
- [OK] Intermediate CA with second no common name 153 certi...
- [OK] Intermediate CA with second no common name 154 certi...
- [OK] Intermediate CA with second no common name 155 certi...
- [OK] Intermediate CA with second no common name 156 verif...
- [OK] Intermediate CA with second no common name 157 verif...
- [OK] Intermediate CA with second no common name 158 certi...
- [OK] Intermediate CA with second no common name 159 certi...
- [OK] Intermediate CA with second no common name 160 certi...
- [OK] Intermediate CA with second no common name 161 certi...
- [OK] Intermediate CA with second no common name 162 certi...
- [OK] Intermediate CA with second no common name 163 certi...
- [OK] Intermediate CA with second no common name 164 certi...
- [OK] Intermediate CA with second no common name 165 certi...
- [OK] Intermediate CA with second no common name 166 certi...
- [OK] Intermediate CA with second no common name 167 certi...
- [OK] Intermediate CA with second no common name 168 verif...
- [OK] Intermediate CA with second no common name 169 verif...
- [OK] Intermediate CA with second no common name 170 certi...
- [OK] Intermediate CA with second no common name 171 certi...
- [OK] Intermediate CA with second no common name 172 certi...
- [OK] Intermediate CA with second no common name 173 certi...
- [OK] Intermediate CA with second no common name 174 certi...
- [OK] Intermediate CA with second no common name 175 certi...
- [OK] Intermediate CA with second no common name 176 certi...
- [OK] Intermediate CA with second no common name 177 certi...
- [OK] Intermediate CA with second no common name 178 certi...
- [OK] Intermediate CA with second no common name 179 certi...
- [OK] Intermediate CA with second no common name 180 verif...
- [OK] Intermediate CA with second no common name 181 verif...
- [OK] Intermediate CA with second no common name 182 certi...
- [OK] Intermediate CA with second no common name 183 certi...
- [OK] Intermediate CA with second no common name 184 certi...
- [OK] Intermediate CA with second no common name 185 certi...
- [OK] Intermediate CA with second no common name 186 certi...
- [OK] Intermediate CA with second no common name 187 certi...
- [OK] Intermediate CA with second no common name 188 certi...
- [OK] Intermediate CA with second no common name 189 certi...
- [OK] Intermediate CA with second no common name 190 certi...
- [OK] Intermediate CA with second no common name 191 certi...
- [OK] Intermediate CA with second no common name 192 verif...
- [OK] Intermediate CA with second no common name 193 verif...
- [OK] Intermediate CA with second no common name 194 certi...
- [OK] Intermediate CA with second no common name 195 certi...
- [OK] Intermediate CA with second no common name 196 certi...
- [OK] Intermediate CA with second no common name 197 certi...
- [OK] Intermediate CA with second no common name 198 certi...
- [OK] Intermediate CA with second no common name 199 certi...
- [OK] Intermediate CA with second no common name 200 certi...
- [OK] Intermediate CA with second no common name 201 certi...
- [OK] Intermediate CA with second no common name 202 certi...
- [OK] Intermediate CA with second no common name 203 certi...
- [OK] Intermediate CA with second no common name 204 verif...
- [OK] Intermediate CA with second no common name 205 verif...
- [OK] Intermediate CA with second no common name 206 certi...
- [OK] Intermediate CA with second no common name 207 certi...
- [OK] Intermediate CA with second no common name 208 certi...
- [OK] Intermediate CA with second no common name 209 certi...
- [OK] Intermediate CA with second no common name 210 certi...
- [OK] Intermediate CA with second no common name 211 certi...
- [OK] Intermediate CA with second no common name 212 certi...
- [OK] Intermediate CA with second no common name 213 certi...
- [OK] Intermediate CA with second no common name 214 certi...
- [OK] Intermediate CA with second no common name 215 certi...
- [OK] Intermediate CA with second no common name 216 verif...
- [OK] Intermediate CA with second no common name 217 verif...
- [OK] Intermediate CA with second no common name 218 certi...
- [OK] Intermediate CA with second no common name 219 certi...
- [OK] Intermediate CA with second no common name 220 certi...
- [OK] Intermediate CA with second no common name 221 certi...
- [OK] Intermediate CA with second no common name 222 certi...
- [OK] Intermediate CA with second no common name 223 certi...
- [OK] Intermediate CA with second no common name 224 certi...
- [OK] Intermediate CA with second no common name 225 certi...
- [OK] Intermediate CA with second no common name 226 certi...
- [OK] Intermediate CA with second no common name 227 certi...
- [OK] Intermediate CA with second no common name 228 verif...
- [OK] Intermediate CA with second no common name 229 verif...
- [OK] Intermediate CA with second no common name 230 certi...
- [OK] Intermediate CA with second no common name 231 certi...
- [OK] Intermediate CA with second no common name 232 certi...
- [OK] Intermediate CA with second no common name 233 certi...
- [OK] Intermediate CA with second no common name 234 certi...
- [OK] Intermediate CA with second no common name 235 certi...
- [OK] Intermediate CA with second no common name 236 certi...
- [OK] Intermediate CA with second no common name 237 certi...
- [OK] Intermediate CA with second no common name 238 certi...
- [OK] Intermediate CA with second no common name 239 certi...
- [OK] Intermediate CA with second no common name 240 verif...
- [OK] Intermediate CA with second no common name 241 verif...
- [OK] Intermediate CA with second no common name 242 certi...
- [OK] Intermediate CA with second no common name 243 certi...
- [OK] Intermediate CA with second no common name 244 certi...
- [OK] Intermediate CA with second no common name 245 certi...
- [OK] Intermediate CA with second no common name 246 certi...
- [OK] Intermediate CA with second no common name 247 certi...
- [OK] Intermediate CA with second no common name 248 certi...
- [OK] Intermediate CA with second no common name 249 certi...
- [OK] Intermediate CA with second no common name 250 certi...
- [OK] Intermediate CA with second no common name 251 certi...
- [OK] Intermediate CA with second no common name 252 verif...
- [OK] Intermediate CA with second no common name 253 verif...
- [OK] Intermediate CA with second no common name 254 certi...
- [OK] Intermediate CA with second no common name 255 certi...
- [OK] Intermediate CA with second no common name 256 certi...
- [OK] Intermediate CA with second no common name 257 certi...
- [OK] Intermediate CA with second no common name 258 certi...
- [OK] Intermediate CA with second no common name 259 certi...
- [OK] Intermediate CA with second no common name 260 certi...
- [OK] Intermediate CA with second no common name 261 certi...
- [OK] Intermediate CA with second no common name 262 certi...
- [OK] Intermediate CA with second no common name 263 certi...
- [OK] Intermediate CA with second no common name 264 verif...
- [OK] Intermediate CA with second no common name 265 verif...
- [OK] Intermediate CA with second no common name 266 certi...
- [OK] Intermediate CA with second no common name 267 certi...
- [OK] Intermediate CA with second no common name 268 certi...
- [OK] Intermediate CA with second no common name 269 certi...
- [OK] Intermediate CA with second no common name 270 certi...
- [OK] Intermediate CA with second no common name 271 certi...
- [OK] Intermediate CA with second no common name 272 certi...
- [OK] Intermediate CA with second no common name 273 certi...
- [OK] Intermediate CA with second no common name 274 certi...
- [OK] Intermediate CA with second no common name 275 certi...
- [OK] Intermediate CA with second no common name 276 verif...
- [OK] Intermediate CA with second no common name 277 verif...
- [OK] Intermediate CA with second no common name 278 certi...
- [OK] Intermediate CA with second no common name 279 certi...
- [OK] Intermediate CA with second no common name 280 certi...
- [OK] Intermediate CA with second no common name 281 certi...
- [OK] Intermediate CA with second no common name 282 certi...
- [OK] Intermediate CA with second no common name 283 certi...
- [OK] Intermediate CA with second no common name 284 certi...
- [OK] Intermediate CA with second no common name 285 certi...
- [OK] Intermediate CA with second no common name 286 certi...
- [OK] Intermediate CA with second no common name 287 certi...
- [OK] Intermediate CA with second no common name 288 verif...
- [OK] Intermediate CA with second no common name 289 verif...
- [OK] Intermediate CA with second no common name 290 certi...
- [OK] Intermediate CA with second no common name 291 certi...
- [OK] Intermediate CA with second no common name 292 certi...
- [OK] Intermediate CA with second no common name 293 certi...
- [OK] Intermediate CA with second no common name 294 certi...
- [OK] Intermediate CA with second no common name 295 certi...
- [OK] Intermediate CA with second no common name 296 certi...
- [OK] Intermediate CA with second no common name 297 certi...
- [OK] Intermediate CA with second no common name 298 certi...
- [OK] Intermediate CA with second no common name 299 certi...
- [OK] Intermediate CA with second no common name 300 verif...
- [OK] Intermediate CA with second no common name 301 verif...
- [OK] Intermediate CA with second no common name 302 certi...
- [OK] Intermediate CA with second no common name 303 certi...
- [OK] Intermediate CA with second no common name 304 certi...
- [OK] Intermediate CA with second no common name 305 certi...
- [OK] Intermediate CA with second no common name 306 certi...
- [OK] Intermediate CA with second no common name 307 certi...
- [OK] Intermediate CA with second no common name 308 certi...
- [OK] Intermediate CA with second no common name 309 certi...
- [OK] Intermediate CA with second no common name 310 certi...
- [OK] Intermediate CA with second no common name 311 certi...
- [OK] Intermediate CA with second no common name 312 verif...
- [OK] Intermediate CA with second no common name 313 verif...
- [OK] Intermediate CA with second no common name 314 certi...
- [OK] Intermediate CA with second no common name 315 certi...
- [OK] Intermediate CA with second no common name 316 certi...
- [OK] Intermediate CA with second no common name 317 certi...
- [OK] Intermediate CA with second no common name 318 certi...
- [OK] Intermediate CA with second no common name 319 certi...
- [OK] Intermediate CA with second no common name 320 certi...
- [OK] Intermediate CA with second no common name 321 certi...
- [OK] Intermediate CA with second no common name 322 certi...
- [OK] Intermediate CA with second no common name 323 certi...
- [OK] Intermediate CA with second no common name 324 verif...
- [OK] Intermediate CA with second no common name 325 verif...
- [OK] Intermediate CA with second no common name 326 certi...
- [OK] Intermediate CA with second no common name 327 certi...
- [OK] Intermediate CA with second no common name 328 certi...
- [OK] Intermediate CA with second no common name 329 certi...
- [OK] Intermediate CA with second no common name 330 certi...
- [OK] Intermediate CA with second no common name 331 certi...
- [OK] Intermediate CA with second no common name 332 certi...
- [OK] Intermediate CA with second no common name 333 certi...
- [OK] Intermediate CA with second no common name 334 certi...
- [OK] Intermediate CA with second no common name 335 certi...
- [OK] Intermediate CA with second no common name 336 verif...
- [OK] Intermediate CA with second no common name 337 verif...
- [OK] Intermediate CA with second no common name 338 certi...
- [OK] Intermediate CA with second no common name 339 certi...
- [OK] Intermediate CA with second no common name 340 certi...
- [OK] Intermediate CA with second no common name 341 certi...
- [OK] Intermediate CA with second no common name 342 certi...
- [OK] Intermediate CA with second no common name 343 certi...
- [OK] Intermediate CA with second no common name 344 certi...
- [OK] Intermediate CA with second no common name 345 certi...
- [OK] Intermediate CA with second no common name 346 certi...
- [OK] Intermediate CA with second no common name 347 certi...
- [OK] Intermediate CA with second no common name 348 verif...
- [OK] Intermediate CA with second no common name 349 verif...
- [OK] Intermediate CA with second no common name 350 certi...
- [OK] Intermediate CA with second no common name 351 certi...
- [OK] Intermediate CA with second no common name 352 certi...
- [OK] Intermediate CA with second no common name 353 certi...
- [OK] Intermediate CA with second no common name 354 certi...
- [OK] Intermediate CA with second no common name 355 certi...
- [OK] Intermediate CA with second no common name 356 certi...
- [OK] Intermediate CA with second no common name 357 certi...
- [OK] Intermediate CA with second no common name 358 certi...
- [OK] Intermediate CA with second no common name 359 certi...
- [OK] Intermediate CA with second no common name 360 verif...
- [OK] Intermediate CA with second no common name 361 verif...
- [OK] Intermediate CA with second no common name 362 certi...
- [OK] Intermediate CA with second no common name 363 certi...
- [OK] Intermediate CA with second no common name 364 certi...
- [OK] Intermediate CA with second no common name 365 certi...
- [OK] Intermediate CA with second no common name 366 certi...
- [OK] Intermediate CA with second no common name 367 certi...
- [OK] Intermediate CA with second no common name 368 certi...
- [OK] Intermediate CA with second no common name 369 certi...
- [OK] Intermediate CA with second no common name 370 certi...
- [OK] Intermediate CA with second no common name 371 certi...
- [OK] Intermediate CA with second no common name 372 verif...
- [OK] Intermediate CA with second no common name 373 verif...
- [OK] Intermediate CA with second no common name 374 certi...
- [OK] Intermediate CA with second no common name 375 certi...
- [OK] Intermediate CA with second no common name 376 certi...
- [OK] Intermediate CA with second no common name 377 certi...
- [OK] Intermediate CA with second no common name 378 certi...
- [OK] Intermediate CA with second no common name 379 certi...
- [OK] Intermediate CA with second no common name 380 certi...
- [OK] Intermediate CA with second no common name 381 certi...
- [OK] Intermediate CA with second no common name 382 certi...
- [OK] Intermediate CA with second no common name 383 certi...
- [OK] Intermediate CA with second no common name 384 verif...
- [OK] Intermediate CA with second no common name 385 verif...
- [OK] Intermediate CA with second no common name 386 certi...
- [OK] Intermediate CA with second no common name 387 certi...
- [OK] Intermediate CA with second no common name 388 certi...
- [OK] Intermediate CA with second no common name 389 certi...
- [OK] Intermediate CA with second no common name 390 certi...
- [OK] Intermediate CA with second no common name 391 certi...
- [OK] Intermediate CA with second no common name 392 certi...
- [OK] Intermediate CA with second no common name 393 certi...
- [OK] Intermediate CA with second no common name 394 certi...
- [OK] Intermediate CA with second no common name 395 certi...
- [OK] Intermediate CA with second no common name 396 verif...
- [OK] Intermediate CA with second no common name 397 verif...
- [OK] Intermediate CA with second no common name 398 certi...
- [OK] Intermediate CA with second no common name 399 certi...
- [OK] Intermediate CA with second no common name 400 certi...
- [OK] Intermediate CA with second no common name 401 certi...
- [OK] Intermediate CA with second no common name 402 certi...
- [OK] Intermediate CA with second no common name 403 certi...
- [OK] Intermediate CA with second no common name 404 certi...
- [OK] Intermediate CA with second no common name 405 certi...
- [OK] Intermediate CA with second no common name 406 certi...
- [OK] Intermediate CA with second no common name 407 certi...
- [OK] Intermediate CA with second no common name 408 verif...
- [OK] Intermediate CA with second no common name 409 verif...
- [OK] Intermediate CA with second no common name 410 certi...
- [OK] Intermediate CA with second no common name 411 certi...
- [OK] Intermediate CA with second no common name 412 certi...
- [OK] Intermediate CA with second no common name 413 certi...
- [OK] Intermediate CA with second no common name 414 certi...
- [OK] Intermediate CA with second no common name 415 certi...
- [OK] Intermediate CA with second no common name 416 certi...
- [OK] Intermediate CA with second no common name 417 certi...
- [OK] Intermediate CA with second no common name 418 certi...
- [OK] Intermediate CA with second no common name 419 certi...
- [OK] Intermediate CA with second no common name 420 verif...
- [OK] Intermediate CA with second no common name 421 verif...
- [OK] Intermediate CA with second no common name 422 certi...
- [OK] Intermediate CA with second no common name 423 certi...
- [OK] Intermediate CA with second no common name 424 certi...
- [OK] Intermediate CA with second no common name 425 certi...
- [OK] Intermediate CA with second no common name 426 certi...
- [OK] Intermediate CA with second no common name 427 certi...
- [OK] Intermediate CA with second no common name 428 certi...
- [OK] Intermediate CA with second no common name 429 certi...
- [OK] Intermediate CA with second no common name 430 certi...
- [OK] Intermediate CA with second no common name 431 certi...
- [OK] Intermediate CA with second no common name 432 verif...
- [OK] Intermediate CA with second no common name 433 verif...
- [OK] Intermediate CA with second no common name 434 certi...
- [OK] Intermediate CA with second no common name 435 certi...
- [OK] Intermediate CA with second no common name 436 certi...
- [OK] Intermediate CA with second no common name 437 certi...
- [OK] Intermediate CA with second no common name 438 certi...
- [OK] Intermediate CA with second no common name 439 certi...
- [OK] Intermediate CA with second no common name 440 certi...
- [OK] Intermediate CA with second no common name 441 certi...
- [OK] Intermediate CA with second no common name 442 certi...
- [OK] Intermediate CA with second no common name 443 certi...
- [OK] Intermediate CA with second no common name 444 verif...
- [OK] Intermediate CA with second no common name 445 verif...
- [OK] Intermediate CA with second no common name 446 certi...
- [OK] Intermediate CA with second no common name 447 certi...
- [OK] Intermediate CA with second no common name 448 certi...
- [OK] Intermediate CA with second no common name 449 certi...
- [OK] Intermediate CA with second no common name 450 certi...
- [OK] Intermediate CA with second no common name 451 certi...
- [OK] Intermediate CA with second no common name 452 certi...
- [OK] Intermediate CA with second no common name 453 certi...
- [OK] Intermediate CA with second no common name 454 certi...
- [OK] Intermediate CA with second no common name 455 certi...
- [OK] Intermediate CA with second no common name 456 verif...
- [OK] Intermediate CA with second no common name 457 verif...
- [OK] Intermediate CA with second no common name 458 certi...
- [OK] Intermediate CA with second no common name 459 certi...
- [OK] Intermediate CA with second no common name 460 certi...
- [OK] Intermediate CA with second no common name 461 certi...
- [OK] Intermediate CA with second no common name 462 certi...
- [OK] Intermediate CA with second no common name 463 certi...
- [OK] Intermediate CA with second no common name 464 certi...
- [OK] Intermediate CA with second no common name 465 certi...
- [OK] Intermediate CA with second no common name 466 certi...
- [OK] Intermediate CA with second no common name 467 certi...
- [OK] Intermediate CA with second no common name 468 verif...
- [OK] Intermediate CA with second no common name 469 verif...
- [OK] Intermediate CA with second no common name 470 certi...
- [OK] Intermediate CA with second no common name 471 certi...
- [OK] Intermediate CA with second no common name 472 certi...
- [OK] Intermediate CA with second no common name 473 certi...
- [OK] Intermediate CA with second no common name 474 certi...
- [OK] Intermediate CA with second no common name 475 certi...
- [OK] Intermediate CA with second no common name 476 certi...
- [OK] Intermediate CA with second no common name 477 certi...
- [OK] Intermediate CA with second no common name 478 certi...
- [OK] Intermediate CA with second no common name 479 certi...
- [OK] Intermediate CA with second no common name 480 verif...
- [OK] Intermediate CA with second no common name 481 verif...
- [OK] Intermediate CA with second no common name 482 certi...
- [OK] Intermediate CA with second no common name 483 certi...
- [OK] Intermediate CA with second no common name 484 certi...
- [OK] Intermediate CA with second no common name 485 certi...
- [OK] Intermediate CA with second no common name 486 certi...
- [OK] Intermediate CA with second no common name 487 certi...
- [OK] Intermediate CA with second no common name 488 certi...
- [OK] Intermediate CA with second no common name 489 certi...
- [OK] Intermediate CA with second no common name 490 certi...
- [OK] Intermediate CA with second no common name 491 certi...
- [OK] Intermediate CA with second no common name 492 verif...
- [OK] Intermediate CA with second no common name 493 verif...
- [OK] Intermediate CA with second no common name 494 certi...
- [OK] Intermediate CA with second no common name 495 certi...
- [OK] Intermediate CA with second no common name 496 certi...
- [OK] Intermediate CA with second no common name 497 certi...
- [OK] Intermediate CA with second no common name 498 certi...
- [OK] Intermediate CA with second no common name 499 certi...
- [OK] Intermediate CA with second no common name 500 certi...
- [OK] Intermediate CA with second no common name 501 certi...
- [OK] Intermediate CA with second no common name 502 certi...
- [OK] Intermediate CA with second no common name 503 certi...
- [OK] Intermediate CA with second no common name 504 verif...
- [OK] Intermediate CA with second no common name 505 verif...
- [OK] Intermediate CA with second no common name 506 certi...
- [OK] Intermediate CA with second no common name 507 certi...
- [OK] Intermediate CA with second no common name 508 certi...
- [OK] Intermediate CA with second no common name 509 certi...
- [OK] Intermediate CA with second no common name 510 certi...
- [OK] Intermediate CA with second no common name 511 certi...
- [OK] Intermediate CA with second no common name 512 certi...
- [OK] Intermediate CA with second no common name 513 certi...
- [OK] Intermediate CA with second no common name 514 certi...
- [OK] Intermediate CA with second no common name 515 certi...
- [OK] Intermediate CA with second no common name 516 verif...
- [OK] Intermediate CA with second no common name 517 verif...
- [OK] Intermediate CA with second no common name 518 certi...
- [OK] Intermediate CA with second no common name 519 certi...
- [OK] Intermediate CA with second no common name 520 certi...
- [OK] Intermediate CA with second no common name 521 certi...
- [OK] Intermediate CA with second no common name 522 certi...
- [OK] Intermediate CA with second no common name 523 certi...
- [OK] Intermediate CA with second no common name 524 certi...
- [OK] Intermediate CA with second no common name 525 certi...
- [OK] Intermediate CA with second no common name 526 certi...
- [OK] Intermediate CA with second no common name 527 certi...
- [OK] Intermediate CA with second no common name 528 verif...
- [OK] Intermediate CA with second no common name 529 verif...
- [OK] Intermediate CA with second no common name 530 certi...
- [OK] Intermediate CA with second no common name 531 certi...
- [OK] Intermediate CA with second no common name 532 certi...
- [OK] Intermediate CA with second no common name 533 certi...
- [OK] Intermediate CA with second no common name 534 certi...
- [OK] Intermediate CA with second no common name 535 certi...
- [OK] Intermediate CA with second no common name 536 certi...
- [OK] Intermediate CA with second no common name 537 certi...
- [OK] Intermediate CA with second no common name 538 certi...
- [OK] Intermediate CA with second no common name 539 certi...
- [OK] Tests with invalid data 0 inval...
- [OK] Tests with invalid data 1 broke...
- [OK] Tests with invalid data 2 no tr...
- [OK] Tests with invalid data 3 2chain.
- [OK] Tests with invalid data 4 3chain.
- [OK] Tests with invalid data 5 chain...
- [OK] Tests with invalid data 6 not a...
- [OK] Tests with invalid data 7 not a...
- [OK] Regression 0 RSA: ...
- [OK] Regression 1 jc_ca.
- [OK] Regression 2 jfd_ca.
- [OK] Regression 3 jfd_ca'.
- [OK] Regression 4 SAN d...
- [OK] Regression 5 name ...
- [OK] Revoke 0 Verif...
- [OK] Revoke 1 Verif...
- [OK] Revoke 2 Verif...
- [OK] Revoke 3 Verif...
- [OK] Revoke 4 Verif...
- [OK] Revoke 5 Verif...
- [OK] Revoke 6 Verif...
- [OK] Revoke 7 Verif...
- [OK] CRL 0 CRL 1...
- [OK] CRL 1 CRL 2...
- [OK] CRL 2 CRL 3...
- [OK] CRL 3 CRL 4...
- [OK] CRL 4 CRL 5...
- [OK] CRL 5 CRL 6...
- [OK] CRL 6 CRL 7...
- [OK] CRL 7 CRL 8...
- [OK] CRL 8 CRL 9...
- [OK] CRL 9 CRL 1...
- [OK] CRL 10 CRL 1...
- [OK] CRL 11 CRL 1...
- [OK] CRL 12 CRL 1...
- [OK] CRL 13 CRL 1...
- [OK] CRL 14 CRL 1...
- [OK] CRL 15 CRL 1...
- [OK] CRL 16 CRL 1...
- [OK] CRL 17 CRL 1...
- [OK] CRL 18 CRL 1...
- [OK] CRL 19 CRL 2...
- [OK] CRL 20 CRL 2...
-
- Full test results in `~/.opam/4.14/.opam-switch/build/x509.0.7.1/_build/default/tests/_build/_tests/X509 tests'.
- Test Successful in 0.279s. 3301 tests run.
-> compiled x509.0.7.1
-> removed x509.0.7.1
-> installed x509.0.7.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-28 01:33.53 ---> saved as "7635e49153e1385e88ad6ab0d38c1c9db54bd0d2dd07e77c94d9f506fb77e9fc"
Job succeeded
2026-01-28 01:33.56: Job succeeded