- github
- ocaml
- opam-repository
- 7d6af5
- compilers,4.14,dune.3.21.0~alpha4,revdeps,x509.0.8.1
(not at the head of any monitored branch or PR)
2025-12-15 03:24.21: New job: test x509.0.8.1 with dune.3.21.0~alpha4, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29096/head (7d6af52f05e2c06c00193b2918193b6994ece701)
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/29096/head" && git reset --hard 7d6af52f
git fetch origin master
git merge --no-edit 2625e9877b44d517ad87b5bf4ff708f3e44b78d8
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d
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 dune.3.21.0~alpha4 3.21.0~alpha4
RUN opam reinstall dune.3.21.0~alpha4; \
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" != 'dune.3.21.0~alpha4' && 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.8.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.8.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.8.1) || true
RUN opam reinstall --with-test --verbose x509.0.8.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.8.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 .
2025-12-15 03:24.21: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d-dune.3.21.0~alpha4-x509.0.8.1-7d6af52f05e2c06c00193b2918193b6994ece701"
2025-12-15 03:24.21: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d)
(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 dune.3.21.0~alpha4 3.21.0~alpha4"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.21.0~alpha4;\
\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\" != 'dune.3.21.0~alpha4' && 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.8.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.8.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.8.1) || true"))
(run (shell "opam reinstall --with-test --verbose x509.0.8.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.8.1' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2025-12-15 03:24.21: Waiting for resource in pool OCluster
2025-12-15 14:57.51: Waiting for worker…
2025-12-15 15:02.15: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at 2625e9877b Merge pull request #29094 from anmonteiro/patch-9
Updating 2625e9877b..7d6af52f05
Fast-forward
.../chrome-trace/chrome-trace.3.21.0~alpha4/opam | 41 ++++++++++++
.../dune-action-plugin.3.21.0~alpha4/opam | 54 ++++++++++++++++
.../dune-build-info.3.21.0~alpha4/opam | 47 ++++++++++++++
.../dune-configurator.3.21.0~alpha4/opam | 51 +++++++++++++++
packages/dune-glob/dune-glob.3.21.0~alpha4/opam | 44 +++++++++++++
.../dune-private-libs.3.21.0~alpha4/opam | 52 +++++++++++++++
.../dune-rpc-lwt/dune-rpc-lwt.3.21.0~alpha4/opam | 43 +++++++++++++
packages/dune-rpc/dune-rpc.3.21.0~alpha4/opam | 46 +++++++++++++
packages/dune-site/dune-site.3.21.0~alpha4/opam | 39 +++++++++++
packages/dune/dune.3.21.0~alpha4/opam | 75 ++++++++++++++++++++++
packages/dyn/dyn.3.21.0~alpha4/opam | 42 ++++++++++++
packages/fs-io/fs-io.3.21.0~alpha4/opam | 41 ++++++++++++
packages/ocamlc-loc/ocamlc-loc.3.21.0~alpha4/opam | 45 +++++++++++++
packages/ordering/ordering.3.21.0~alpha4/opam | 40 ++++++++++++
packages/stdune/stdune.3.21.0~alpha4/opam | 48 ++++++++++++++
.../top-closure/top-closure.3.21.0~alpha4/opam | 40 ++++++++++++
packages/xdg/xdg.3.21.0~alpha4/opam | 41 ++++++++++++
17 files changed, 789 insertions(+)
create mode 100644 packages/chrome-trace/chrome-trace.3.21.0~alpha4/opam
create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.21.0~alpha4/opam
create mode 100644 packages/dune-build-info/dune-build-info.3.21.0~alpha4/opam
create mode 100644 packages/dune-configurator/dune-configurator.3.21.0~alpha4/opam
create mode 100644 packages/dune-glob/dune-glob.3.21.0~alpha4/opam
create mode 100644 packages/dune-private-libs/dune-private-libs.3.21.0~alpha4/opam
create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.21.0~alpha4/opam
create mode 100644 packages/dune-rpc/dune-rpc.3.21.0~alpha4/opam
create mode 100644 packages/dune-site/dune-site.3.21.0~alpha4/opam
create mode 100644 packages/dune/dune.3.21.0~alpha4/opam
create mode 100644 packages/dyn/dyn.3.21.0~alpha4/opam
create mode 100644 packages/fs-io/fs-io.3.21.0~alpha4/opam
create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.21.0~alpha4/opam
create mode 100644 packages/ordering/ordering.3.21.0~alpha4/opam
create mode 100644 packages/stdune/stdune.3.21.0~alpha4/opam
create mode 100644 packages/top-closure/top-closure.3.21.0~alpha4/opam
create mode 100644 packages/xdg/xdg.3.21.0~alpha4/opam
(from ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d' locally
docker.io/ocaml/opam@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d: Pulling from ocaml/opam
53c88f1dfeb7: Pulling fs layer
268d44a12236: Pulling fs layer
f2f36c7402e3: Pulling fs layer
9eb2778f421b: Pulling fs layer
3ca35f1ec5ed: Pulling fs layer
b08866568793: Pulling fs layer
fb0d17ce08c9: Pulling fs layer
c8db2c4fd670: Pulling fs layer
5fa8cfe8f9cb: Pulling fs layer
e7f5f7180a56: Pulling fs layer
9f66154be4d4: Pulling fs layer
f6674de6e5d4: Pulling fs layer
3ca35f1ec5ed: Waiting
80eb63632584: Pulling fs layer
b08866568793: Waiting
66f55aa69346: Pulling fs layer
9eb2778f421b: Waiting
d121bc397a1a: Pulling fs layer
c8db2c4fd670: Waiting
0eff100405dd: Pulling fs layer
e7f5f7180a56: Waiting
7d67d217736c: Pulling fs layer
fb0d17ce08c9: Waiting
ac7107dc3d00: Pulling fs layer
f01a17be3cef: Pulling fs layer
5fa8cfe8f9cb: Waiting
30a38827b55c: Pulling fs layer
9f66154be4d4: Waiting
66f55aa69346: Waiting
d121bc397a1a: Waiting
f6674de6e5d4: Waiting
80eb63632584: Waiting
085733096c8e: Pulling fs layer
86db5d63aa02: Pulling fs layer
0eff100405dd: Waiting
ac7107dc3d00: Waiting
f01a17be3cef: Waiting
30a38827b55c: Waiting
4f4fb700ef54: Pulling fs layer
034a62edceac: Pulling fs layer
86db5d63aa02: Waiting
4f4fb700ef54: Waiting
808c1ae36c95: Pulling fs layer
7d67d217736c: Waiting
085733096c8e: Waiting
eba808bca592: Pulling fs layer
808c1ae36c95: Waiting
034a62edceac: Waiting
68b2bb6a330b: Pulling fs layer
9fee74853ab2: Pulling fs layer
eba808bca592: Waiting
00d667d2b4f9: Pulling fs layer
cde2288b7be2: Pulling fs layer
9fee74853ab2: Waiting
00d667d2b4f9: Waiting
68b2bb6a330b: Waiting
6e6039e741bd: Pulling fs layer
cde2288b7be2: Waiting
08dc627d7129: Pulling fs layer
6e6039e741bd: Waiting
fbbf04bee28a: Pulling fs layer
cf124fccb693: Pulling fs layer
08dc627d7129: Waiting
fbbf04bee28a: Waiting
16001ee30892: Pulling fs layer
a379ebcf721f: Pulling fs layer
c05951b4b1dd: Pulling fs layer
1238fc26ec9b: Pulling fs layer
a379ebcf721f: Waiting
16001ee30892: Waiting
33d5b2862e74: Pulling fs layer
6a5c5f5e740e: Pulling fs layer
f97083767ae6: Pulling fs layer
cf124fccb693: Waiting
5fbf3379e3de: Pulling fs layer
6a5c5f5e740e: Waiting
33d5b2862e74: Waiting
c05951b4b1dd: Waiting
fa7fd9ad7954: Pulling fs layer
f97083767ae6: Waiting
c0b4ac729b41: Pulling fs layer
5fbf3379e3de: Waiting
40482318cf81: Pulling fs layer
fa7fd9ad7954: Waiting
c0b4ac729b41: Waiting
40482318cf81: Waiting
1238fc26ec9b: Waiting
f2f36c7402e3: Download complete
268d44a12236: Verifying Checksum
268d44a12236: Download complete
3ca35f1ec5ed: Verifying Checksum
3ca35f1ec5ed: Download complete
9eb2778f421b: Verifying Checksum
9eb2778f421b: Download complete
53c88f1dfeb7: Verifying Checksum
53c88f1dfeb7: Download complete
fb0d17ce08c9: Verifying Checksum
fb0d17ce08c9: Download complete
c8db2c4fd670: Verifying Checksum
c8db2c4fd670: Download complete
5fa8cfe8f9cb: Verifying Checksum
5fa8cfe8f9cb: Download complete
9f66154be4d4: Verifying Checksum
9f66154be4d4: Download complete
e7f5f7180a56: Verifying Checksum
e7f5f7180a56: Download complete
f6674de6e5d4: Verifying Checksum
f6674de6e5d4: Download complete
80eb63632584: Verifying Checksum
80eb63632584: Download complete
66f55aa69346: Verifying Checksum
66f55aa69346: Download complete
0eff100405dd: Verifying Checksum
0eff100405dd: Download complete
7d67d217736c: Verifying Checksum
7d67d217736c: Download complete
53c88f1dfeb7: Pull complete
268d44a12236: Pull complete
f2f36c7402e3: Pull complete
d121bc397a1a: Download complete
ac7107dc3d00: Verifying Checksum
ac7107dc3d00: Download complete
30a38827b55c: Verifying Checksum
30a38827b55c: Download complete
9eb2778f421b: Pull complete
f01a17be3cef: Download complete
3ca35f1ec5ed: Pull complete
085733096c8e: Verifying Checksum
085733096c8e: Download complete
86db5d63aa02: Download complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
034a62edceac: Verifying Checksum
034a62edceac: Download complete
808c1ae36c95: Download complete
eba808bca592: Verifying Checksum
eba808bca592: Download complete
68b2bb6a330b: Verifying Checksum
68b2bb6a330b: Download complete
b08866568793: Verifying Checksum
b08866568793: Download complete
9fee74853ab2: Verifying Checksum
9fee74853ab2: Download complete
00d667d2b4f9: Download complete
cde2288b7be2: Verifying Checksum
6e6039e741bd: Verifying Checksum
6e6039e741bd: Download complete
08dc627d7129: Verifying Checksum
08dc627d7129: Download complete
fbbf04bee28a: Verifying Checksum
fbbf04bee28a: Download complete
16001ee30892: Verifying Checksum
16001ee30892: Download complete
cf124fccb693: Verifying Checksum
cf124fccb693: Download complete
33d5b2862e74: Verifying Checksum
33d5b2862e74: Download complete
6a5c5f5e740e: Verifying Checksum
6a5c5f5e740e: Download complete
f97083767ae6: Download complete
5fbf3379e3de: Verifying Checksum
5fbf3379e3de: Download complete
fa7fd9ad7954: Download complete
c0b4ac729b41: Verifying Checksum
c0b4ac729b41: Download complete
40482318cf81: Download complete
1238fc26ec9b: Verifying Checksum
1238fc26ec9b: Download complete
a379ebcf721f: Verifying Checksum
a379ebcf721f: Download complete
b08866568793: Pull complete
fb0d17ce08c9: Pull complete
c8db2c4fd670: Pull complete
5fa8cfe8f9cb: Pull complete
e7f5f7180a56: Pull complete
9f66154be4d4: Pull complete
f6674de6e5d4: Pull complete
80eb63632584: Pull complete
66f55aa69346: Pull complete
d121bc397a1a: Pull complete
0eff100405dd: Pull complete
7d67d217736c: Pull complete
ac7107dc3d00: Pull complete
f01a17be3cef: Pull complete
30a38827b55c: Pull complete
085733096c8e: Pull complete
86db5d63aa02: Pull complete
4f4fb700ef54: Pull complete
034a62edceac: Pull complete
808c1ae36c95: Pull complete
eba808bca592: Pull complete
68b2bb6a330b: Pull complete
9fee74853ab2: Pull complete
00d667d2b4f9: Pull complete
cde2288b7be2: Pull complete
6e6039e741bd: Pull complete
08dc627d7129: Pull complete
fbbf04bee28a: Pull complete
cf124fccb693: Pull complete
16001ee30892: Pull complete
a379ebcf721f: Pull complete
c05951b4b1dd: Pull complete
1238fc26ec9b: Pull complete
33d5b2862e74: Pull complete
6a5c5f5e740e: Pull complete
f97083767ae6: Pull complete
5fbf3379e3de: Pull complete
fa7fd9ad7954: Pull complete
c0b4ac729b41: Pull complete
40482318cf81: Pull complete
Digest: sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d
Status: Downloaded newer image for ocaml/opam@sha256:277168101f7d4ebc452a75f825628d280c76dd0be7d8bcb58c24a5e50fe3d10d
2025-12-15 15:02.28 ---> using "d81b3b20b9dbe813f4813251eb45f7f230344599357169e34b0d2f872bf65895" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-12-15 15:02.28 ---> using "4c0c738834a7be54719ab9b07c911eba51e45ad4298c42597f7d3da72b1c15d4" from cache
/home/opam: (run (network host)
(shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
- you won't be able to use mercurial repositories unless you install the hg command on your system.
- you won't be able to use darcs repositories unless you install the darcs command on your system.
Continue? [Y/n] y
This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=71 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-12-15 15:02.28 ---> using "8bb6d27bb5f7ebe9771219e3ecd730184d5e10ab877134c11c12ee3b1a6d3b96" 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
2025-12-15 15:02.28 ---> using "35019bd57e8933485bd938828fe288c3674216a4757e13b1dac8ce6b21035ac2" 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/"))
2025-12-15 15:02.28 ---> using "e09ab9992a764acab15da9cff99e3d4d978b8a77f33714cc5d19d16d3539eb49" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-12-15 15:02.29 ---> using "effd8012bb926235286407b71766f59239cdbd05eeb488dee8fd8b0266ec56c0" from cache
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-15 15:02.29 ---> using "da8e6b523210d6314ae3052775034fea74104aae3f193362b9609201bf93d1d2" 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 [84.8 kB]
- Fetched 176 kB in 0s (1672 kB/s)
- Reading package lists...
2025-12-15 15:02.29 ---> using "cd39baac0c78bb4b886710bb093d6b750f25b1cabe39d7490bff23ee544310da" from cache
/home/opam: (run (shell "opam pin add -k version -yn dune.3.21.0~alpha4 3.21.0~alpha4"))
dune is now pinned to version 3.21.0~alpha4
2025-12-15 15:02.29 ---> using "8fd4998df15e439c69223004d2b17d12aff8d62773a9501108d16f563d9d556f" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall dune.3.21.0~alpha4;\
\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\" != 'dune.3.21.0~alpha4' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
dune.3.21.0~alpha4 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
- install dune 3.21.0~alpha4 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.21.0~alpha4 (cached)
-> installed dune.3.21.0~alpha4
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-15 15:02.29 ---> using "a0dac2d55bf4693943f9c996115066b2d719701eb6952f9fddf5ed215606993b" from cache
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall x509.0.8.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.8.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.8.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 39 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 base-bytes base [required by ocplib-endian]
- 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 cppo 1.8.0 [required by ppx_deriving]
- install cpuid 0.1.2 [required by nocrypto]
- install csexp 1.5.2 [required by dune-configurator]
- install cstruct 6.0.1 [required by x509]
- install cstruct-lwt 6.0.1 [required by nocrypto]
- install domain-name 0.5.0 [required by x509]
- install dune-configurator 3.21.0~alpha4 [required by lwt, base]
- install fmt 0.11.0 [required by x509]
- install gmap 0.3.0 [required by x509]
- install lwt 5.9.2 [required by nocrypto]
- 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 ocamlbuild 0.16.1 [required by nocrypto, fmt, rresult]
- install ocamlfind 1.9.8 [required by nocrypto, fmt, rresult]
- install ocb-stubblr 0.1.1-1 [required by nocrypto]
- install ocplib-endian 1.2 [required by lwt]
- 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 topkg 1.1.1 [required by nocrypto, fmt, rresult]
- install x509 0.8.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 ... 20622 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) ...
<><> 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 cppo.1.8.0 (cached)
-> retrieved cpuid.0.1.2 (cached)
-> retrieved csexp.1.5.2 (cached)
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> retrieved cstruct.6.0.1, cstruct-lwt.6.0.1 (cached)
-> retrieved domain-name.0.5.0 (cached)
-> installed bigarray-compat.1.1.0
-> installed csexp.1.5.2
-> installed cpuid.0.1.2
-> installed domain-name.0.5.0
-> installed cstruct.6.0.1
-> retrieved dune-configurator.3.21.0~alpha4 (cached)
-> installed cppo.1.8.0
-> retrieved fmt.0.11.0 (cached)
-> retrieved gmap.0.3.0 (cached)
-> retrieved lwt.5.9.2 (cached)
-> installed mirage-no-solo5.1
-> installed mirage-no-xen.1
-> 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 ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ocb-stubblr.0.1.1-1 (cached)
-> retrieved ocplib-endian.1.2 (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
-> 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 topkg.1.1.1 (cached)
-> retrieved x509.0.8.1 (cached)
-> retrieved zarith.1.14 (cached)
-> installed stdlib-shims.0.3.0
-> installed sexplib0.v0.16.0
-> installed ocaml-compiler-libs.v0.12.4
-> installed dune-configurator.3.21.0~alpha4
-> installed num.1.6
-> installed parsexp.v0.16.0
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed sexplib.v0.16.0
-> installed ocplib-endian.1.2
-> installed ocamlbuild.0.16.1
-> installed base.v0.16.4
-> installed zarith.1.14
-> installed lwt.5.9.2
-> installed cstruct-lwt.6.0.1
-> installed topkg.1.1.1
-> installed rresult.0.7.0
-> installed fmt.0.11.0
-> installed ptime.1.2.0
-> installed astring.0.8.5
-> installed asn1-combinators.0.2.6
-> installed ocb-stubblr.0.1.1-1
-> 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.8.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)
2025-12-15 15:03.06 ---> saved as "b309ffcb37bcf280894abefc3eebde666ba9648efdf4fb21087d6f1614656649"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test x509.0.8.1) || true"))
The following actions will be performed:
=== recompile 2 packages
- recompile fmt 0.11.0 [uses cmdliner]
- recompile x509 0.8.1
=== install 6 packages
- install alcotest 1.9.1 [required by x509]
- install cmdliner 2.1.0 [required by alcotest]
- 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 cmdliner.2.1.0 (https://opam.ocaml.org/cache)
-> retrieved cstruct-unix.6.0.1 (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0 (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0 (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0 (https://opam.ocaml.org/cache)
-> installed cstruct-unix.6.0.1
-> retrieved uutf.1.0.4 (https://opam.ocaml.org/cache)
-> retrieved x509.0.8.1 (https://opam.ocaml.org/cache)
-> installed ocaml-syntax-shims.1.0.0
-> installed re.1.14.0
-> removed x509.0.8.1
-> removed fmt.0.11.0
-> installed cmdliner.2.1.0
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed alcotest.1.9.1
-> installed x509.0.8.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-15 15:03.20 ---> saved as "c419bacf3d59676b705572c9ed8e77ec66b441092c2f44c8bf9a96dea762927d"
/home/opam: (run (shell "opam reinstall --with-test --verbose x509.0.8.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.8.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.8.1
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 1/4: [x509.0.8.1: extract]
-> retrieved x509.0.8.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.8.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__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/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__Extension.cmo -c -impl lib/extension.ml)
- File "lib/extension.ml", line 58, characters 23-27:
- 58 | Fmt.(option ~none:(unit "none") Cstruct.hexdump_pp) id
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/extension.ml", line 81, characters 56-60:
- 81 | (General_name.pp_k k) base min Fmt.(option ~none:(unit "none") int) max
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/extension.ml", line 84, characters 20-24:
- 84 | Fmt.(list ~sep:(unit ", ") pp_one) permitted
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/extension.ml", line 85, characters 20-24:
- 85 | Fmt.(list ~sep:(unit ", ") pp_one) excluded
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/extension.ml", line 134, characters 23-27:
- 134 | Fmt.(option ~none:(unit "none") pp_distribution_point_name) name
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/extension.ml", line 135, characters 23-27:
- 135 | Fmt.(option ~none:(unit "none") (list ~sep:(unit ", ") pp_reason)) reasons
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/extension.ml", line 135, characters 48-52:
- 135 | Fmt.(option ~none:(unit "none") (list ~sep:(unit ", ") pp_reason)) reasons
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/extension.ml", line 136, characters 23-27:
- 136 | Fmt.(option ~none:(unit "none") General_name.pp) issuer
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/extension.ml", line 140, characters 23-27:
- 140 | Fmt.(option ~none:(unit "none") pp_distribution_point_name) name
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/extension.ml", line 142, characters 23-27:
- 142 | Fmt.(option ~none:(unit "no") (list ~sep:(unit ", ") pp_reason)) onlysome
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/extension.ml", line 142, characters 46-50:
- 142 | Fmt.(option ~none:(unit "no") (list ~sep:(unit ", ") pp_reason)) onlysome
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/extension.ml", line 185, characters 22-26:
- 185 | Fmt.(list ~sep:(unit ", ") pp_key_usage) ku
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/extension.ml", line 188, characters 22-26:
- 188 | Fmt.(list ~sep:(unit ", ") pp_extended_key_usage) eku
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/extension.ml", line 191, characters 25-29:
- 191 | Fmt.(option ~none:(unit "none") int) depth
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/extension.ml", line 203, characters 22-26:
- 203 | Fmt.(list ~sep:(unit "; ") pp_distribution_point) points
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/extension.ml", line 209, characters 22-26:
- 209 | Fmt.(list ~sep:(unit "; ") pp_distribution_point) points
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/extension.ml", line 219, characters 22-26:
- 219 | Fmt.(list ~sep:(unit "; ") pp_policy) pols
- ^^^^
- 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__Extension.cmx -c -impl lib/extension.ml)
- File "lib/extension.ml", line 58, characters 23-27:
- 58 | Fmt.(option ~none:(unit "none") Cstruct.hexdump_pp) id
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/extension.ml", line 81, characters 56-60:
- 81 | (General_name.pp_k k) base min Fmt.(option ~none:(unit "none") int) max
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/extension.ml", line 84, characters 20-24:
- 84 | Fmt.(list ~sep:(unit ", ") pp_one) permitted
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/extension.ml", line 85, characters 20-24:
- 85 | Fmt.(list ~sep:(unit ", ") pp_one) excluded
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/extension.ml", line 134, characters 23-27:
- 134 | Fmt.(option ~none:(unit "none") pp_distribution_point_name) name
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/extension.ml", line 135, characters 23-27:
- 135 | Fmt.(option ~none:(unit "none") (list ~sep:(unit ", ") pp_reason)) reasons
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/extension.ml", line 135, characters 48-52:
- 135 | Fmt.(option ~none:(unit "none") (list ~sep:(unit ", ") pp_reason)) reasons
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/extension.ml", line 136, characters 23-27:
- 136 | Fmt.(option ~none:(unit "none") General_name.pp) issuer
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/extension.ml", line 140, characters 23-27:
- 140 | Fmt.(option ~none:(unit "none") pp_distribution_point_name) name
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/extension.ml", line 142, characters 23-27:
- 142 | Fmt.(option ~none:(unit "no") (list ~sep:(unit ", ") pp_reason)) onlysome
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/extension.ml", line 142, characters 46-50:
- 142 | Fmt.(option ~none:(unit "no") (list ~sep:(unit ", ") pp_reason)) onlysome
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/extension.ml", line 185, characters 22-26:
- 185 | Fmt.(list ~sep:(unit ", ") pp_key_usage) ku
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/extension.ml", line 188, characters 22-26:
- 188 | Fmt.(list ~sep:(unit ", ") pp_extended_key_usage) eku
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/extension.ml", line 191, characters 25-29:
- 191 | Fmt.(option ~none:(unit "none") int) depth
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/extension.ml", line 203, characters 22-26:
- 203 | Fmt.(list ~sep:(unit "; ") pp_distribution_point) points
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/extension.ml", line 209, characters 22-26:
- 209 | Fmt.(list ~sep:(unit "; ") pp_distribution_point) points
- ^^^^
- Alert deprecated: Fmt.unit
- use Fmt.any instead.
- File "lib/extension.ml", line 219, characters 22-26:
- 219 | Fmt.(list ~sep:(unit "; ") pp_policy) pols
- ^^^^
- 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.8.1)
- (cd _build/default/tests && ./tests.exe)
- Testing `X509 tests'.
- This run has ID `5709I49W'.
-
- [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 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] Regression 6 compl...
- [OK] Regression 7 disti...
- [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.8.1/_build/default/tests/_build/_tests/X509 tests'.
- Test Successful in 0.302s. 3303 tests run.
-> compiled x509.0.8.1
-> removed x509.0.8.1
-> installed x509.0.8.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-15 15:03.26 ---> saved as "e092f008eb8592a9980655daf2cc8a7ae517fd8fa0eb847b500a314f99d2008a"
Job succeeded
2025-12-15 15:03.37: Job succeeded