(for PR #26864)

2024-11-13 14:04.07: New job: test x509.1.0.5 with ocamlfind.1.9.7, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/26864/head (1fe86a030d1aa680aac111c48a41dca97d43900a)
                              on debian-12-ocaml-5.2/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/26864/head" && git reset --hard 1fe86a03
git fetch origin master
git merge --no-edit d4c6a480805e2a9eafb47afe89128b65244cbdac
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-5.2@sha256:97dd257b926d59082f42100b80c9d7084f8083bb3eb4b438ade497f908676f86
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN uname -rs && opam exec -- ocaml -version && opam --version
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMSOLVERTIMEOUT="1000"
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 ocamlfind.1.9.7 1.9.7
RUN opam reinstall ocamlfind.1.9.7; \
    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-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'ocamlfind.1.9.7' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam option solver=builtin-0install
RUN opam reinstall x509.1.0.5; \
    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-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'x509.1.0.5' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam option solver=builtin-0install
RUN (opam reinstall --with-test x509.1.0.5) || true
RUN opam reinstall --with-test --verbose x509.1.0.5; \
    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-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'x509.1.0.5' && 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 .

2024-11-13 14:04.07: Using cache hint "ocaml/opam:debian-12-ocaml-5.2@sha256:97dd257b926d59082f42100b80c9d7084f8083bb3eb4b438ade497f908676f86-ocamlfind.1.9.7-x509.1.0.5-1fe86a030d1aa680aac111c48a41dca97d43900a"
2024-11-13 14:04.07: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-5.2@sha256:97dd257b926d59082f42100b80c9d7084f8083bb3eb4b438ade497f908676f86)
 (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 "uname -rs && opam exec -- ocaml -version && opam --version"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMSOLVERTIMEOUT 1000)
 (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 ocamlfind.1.9.7 1.9.7"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall ocamlfind.1.9.7;\
             \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-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'ocamlfind.1.9.7' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (shell "opam option solver=builtin-0install"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall x509.1.0.5;\
             \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-12\\\"\"; 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.1.0.5' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (shell "opam option solver=builtin-0install"))
 (run (network host)
      (shell "(opam reinstall --with-test x509.1.0.5) || true"))
 (run (shell  "opam reinstall --with-test --verbose x509.1.0.5;\
             \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-12\\\"\"; 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.1.0.5' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2024-11-13 14:04.07: Waiting for resource in pool OCluster
2024-11-13 19:11.44: Waiting for worker…
2024-11-13 19:17.42: Got resource from pool OCluster
Building on x86-bm-c15.sw.ocaml.org
All commits already cached
Updating files:  41% (13526/32662)
Updating files:  42% (13719/32662)
Updating files:  43% (14045/32662)
Updating files:  44% (14372/32662)
Updating files:  45% (14698/32662)
Updating files:  46% (15025/32662)
Updating files:  47% (15352/32662)
Updating files:  48% (15678/32662)
Updating files:  49% (16005/32662)
Updating files:  50% (16331/32662)
Updating files:  51% (16658/32662)
Updating files:  52% (16985/32662)
Updating files:  53% (17311/32662)
Updating files:  54% (17638/32662)
Updating files:  55% (17965/32662)
Updating files:  56% (18291/32662)
Updating files:  57% (18618/32662)
Updating files:  58% (18944/32662)
Updating files:  59% (19271/32662)
Updating files:  60% (19598/32662)
Updating files:  61% (19924/32662)
Updating files:  62% (20251/32662)
Updating files:  63% (20578/32662)
Updating files:  64% (20904/32662)
Updating files:  65% (21231/32662)
Updating files:  66% (21557/32662)
Updating files:  67% (21884/32662)
Updating files:  68% (22211/32662)
Updating files:  69% (22537/32662)
Updating files:  70% (22864/32662)
Updating files:  71% (23191/32662)
Updating files:  72% (23517/32662)
Updating files:  73% (23844/32662)
Updating files:  74% (24170/32662)
Updating files:  75% (24497/32662)
Updating files:  76% (24824/32662)
Updating files:  77% (25150/32662)
Updating files:  78% (25477/32662)
Updating files:  78% (25623/32662)
Updating files:  79% (25803/32662)
Updating files:  80% (26130/32662)
Updating files:  81% (26457/32662)
Updating files:  82% (26783/32662)
Updating files:  83% (27110/32662)
Updating files:  84% (27437/32662)
Updating files:  85% (27763/32662)
Updating files:  86% (28090/32662)
Updating files:  87% (28416/32662)
Updating files:  88% (28743/32662)
Updating files:  89% (29070/32662)
Updating files:  90% (29396/32662)
Updating files:  91% (29723/32662)
Updating files:  92% (30050/32662)
Updating files:  93% (30376/32662)
Updating files:  94% (30703/32662)
Updating files:  95% (31029/32662)
Updating files:  96% (31356/32662)
Updating files:  97% (31683/32662)
Updating files:  98% (32009/32662)
Updating files:  99% (32336/32662)
Updating files: 100% (32662/32662)
Updating files: 100% (32662/32662), done.
HEAD is now at d4c6a48080 Merge pull request #26854 from balat/opam-publish-ocsigen-toolkit.4.1.0
Merge made by the 'ort' strategy.
 packages/ocamlfind/ocamlfind.1.9.7/opam | 44 +++++++++++++++++++++++++++++++++
 1 file changed, 44 insertions(+)
 create mode 100644 packages/ocamlfind/ocamlfind.1.9.7/opam

(from ocaml/opam:debian-12-ocaml-5.2@sha256:97dd257b926d59082f42100b80c9d7084f8083bb3eb4b438ade497f908676f86)
Unable to find image 'ocaml/opam:debian-12-ocaml-5.2@sha256:97dd257b926d59082f42100b80c9d7084f8083bb3eb4b438ade497f908676f86' locally
docker.io/ocaml/opam@sha256:97dd257b926d59082f42100b80c9d7084f8083bb3eb4b438ade497f908676f86: Pulling from ocaml/opam
0c592cb153ab: Pulling fs layer
0c592cb153ab: Verifying Checksum
0c592cb153ab: Download complete
0c592cb153ab: Pull complete
Digest: sha256:97dd257b926d59082f42100b80c9d7084f8083bb3eb4b438ade497f908676f86
Status: Downloaded newer image for ocaml/opam@sha256:97dd257b926d59082f42100b80c9d7084f8083bb3eb4b438ade497f908676f86
2024-11-13 19:17.49 ---> using "98353706d601dd4b27d8aa833091be13566ab311784d3187c428fa6ab0467d91" from cache

/: (user (uid 1000) (gid 1000))

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2024-11-13 19:17.49 ---> using "a67aa45b00a8ea2c1599a278c3267fd59963226ccd426a0fa8429d59e0d5748d" from cache

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

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

Continue? [y/n] y
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] synchronised from file:///home/opam/opam-repository
2024-11-13 19:17.49 ---> using "f2fee08455cb92c5fb90ae595e148292c3f18882de9f353dd598a31d42f4e974" from cache

/home/opam: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
Linux 5.15.0-122-generic
The OCaml toplevel, version 5.2.0
2.4.0~alpha1~dev
2024-11-13 19:17.49 ---> using "c7e14b1055864da701579d291659f01cf0fb5bb151ed6aa56d89d23cd7a86696" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMSOLVERTIMEOUT 1000)

/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/"))
2024-11-13 19:17.49 ---> using "b1f88b1b15421ece257d4081bfded19a182ae791c30f2a3fcdcfcdda31274243" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2024-11-13 19:17.52 ---> using "02cc592c7e11e58a47f0a5af7fe30955c540cb10417eeda1ce7ff64bc6d735c4" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2024-11-13 19:17.52 ---> using "78ece563d34202536b064623e4f70440dadc32779813b5c641cc62e79a46f72b" 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 bookworm InRelease
- Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB]
- Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
- Get:4 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [204 kB]
- Fetched 307 kB in 0s (1271 kB/s)
- Reading package lists...
- 
2024-11-13 19:17.52 ---> using "3ba2e16947436fc2aaf62f52d87c33dc6bd9b3e4597925e8ef8aac0e1d2fa400" from cache

/home/opam: (run (shell "opam pin add -k version -yn ocamlfind.1.9.7 1.9.7"))
ocamlfind is now pinned to version 1.9.7
2024-11-13 19:17.52 ---> using "f5afaca18bb735b729e661ca8fe53ace7c8a84d12b5400a8b7f14ea5ef30f826" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall ocamlfind.1.9.7;\
                        \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-12\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'ocamlfind.1.9.7' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
ocamlfind.1.9.7 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 1 package
  - install ocamlfind 1.9.7 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocamlfind.1.9.7  (cached)
-> installed ocamlfind.1.9.7
Done.
# To update the current shell environment, run: eval $(opam env)
2024-11-13 19:17.52 ---> using "aea3a3f709ab7f1e0fac24c4becdaf4c4023f8fa922879dcdb9b1f867f3ab6f8" from cache

/home/opam: (run (shell "opam option solver=builtin-0install"))
Set to 'builtin-0install' the field solver in global configuration
2024-11-13 19:17.52 ---> using "e24cd59995f7c8162cacd9b6733e806d6009acb5f48a8a73e3da311f2cae20e5" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall x509.1.0.5;\
                        \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-12\\\"\"; 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.1.0.5' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
x509.1.0.5 is not installed. Install it? [y/n] y
The following actions will be performed:
=== install 28 packages
  - install asn1-combinators  0.3.2  [required by x509]
  - install base64            3.5.1  [required by x509]
  - install conf-gmp          4      [required by conf-gmp-powm-sec, zarith]
  - install conf-gmp-powm-sec 3      [required by mirage-crypto-pk]
  - install conf-pkg-config   3      [required by zarith]
  - install csexp             1.5.2  [required by dune-configurator]
  - install digestif          1.2.0  [required by mirage-crypto-ec, kdf, mirage-crypto-pk]
  - install domain-name       0.4.0  [required by x509]
  - install dune              3.16.1 [required by x509]
  - install dune-configurator 3.16.1 [required by mirage-crypto-ec]
  - install duration          0.2.1  [required by mirage-crypto-rng]
  - install eqaf              0.10   [required by mirage-crypto-ec, mirage-crypto-pk]
  - install fmt               0.9.0  [required by x509]
  - install gmap              0.3.0  [required by x509]
  - install ipaddr            5.6.0  [required by x509]
  - install kdf               1.0.0  [required by x509]
  - install logs              0.7.0  [required by x509]
  - install macaddr           5.6.0  [required by ipaddr]
  - install mirage-crypto     1.1.0  [required by x509]
  - install mirage-crypto-ec  1.1.0  [required by x509]
  - install mirage-crypto-pk  1.1.0  [required by x509]
  - install mirage-crypto-rng 1.1.0  [required by x509]
  - install ocamlbuild        0.15.0 [required by fmt, logs]
  - install ohex              0.2.0  [required by x509]
  - install ptime             1.2.0  [required by x509]
  - install topkg             1.0.7  [required by fmt, logs]
  - install x509              1.0.5
  - install zarith            1.14   [required by mirage-crypto-pk]

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"
- debconf: delaying package configuration, since apt-utils is not installed
- 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 ... 18776 files and directories currently installed.)
- Preparing to unpack .../0-libgmpxx4ldbl_2%3a6.2.1+dfsg1-1.1_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../1-libgmp-dev_2%3a6.2.1+dfsg1-1.1_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../2-libpkgconf3_1.8.1-1_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../3-pkgconf-bin_1.8.1-1_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-1) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../4-pkgconf_1.8.1-1_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-1) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../5-pkg-config_1.8.1-1_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-1) ...
- Setting up libpkgconf3:amd64 (1.8.1-1) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.2.1+dfsg1-1.1) ...
- Setting up pkgconf-bin (1.8.1-1) ...
- Setting up libgmp-dev:amd64 (2:6.2.1+dfsg1-1.1) ...
- Setting up pkgconf:amd64 (1.8.1-1) ...
- Setting up pkg-config:amd64 (1.8.1-1) ...
- Processing triggers for libc-bin (2.36-9+deb12u9) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved asn1-combinators.0.3.2  (cached)
-> retrieved base64.3.5.1  (cached)
-> retrieved conf-gmp.4  (cached)
-> retrieved conf-gmp-powm-sec.3  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed conf-pkg-config.3
-> installed conf-gmp.4
-> installed conf-gmp-powm-sec.3
-> retrieved digestif.1.2.0  (cached)
-> retrieved domain-name.0.4.0  (cached)
-> retrieved dune.3.16.1, dune-configurator.3.16.1  (cached)
-> retrieved duration.0.2.1  (cached)
-> retrieved eqaf.0.10  (cached)
-> retrieved fmt.0.9.0  (cached)
-> retrieved gmap.0.3.0  (cached)
-> retrieved ipaddr.5.6.0, macaddr.5.6.0  (cached)
-> retrieved kdf.1.0.0  (cached)
-> retrieved logs.0.7.0  (cached)
-> retrieved mirage-crypto.1.1.0, mirage-crypto-ec.1.1.0, mirage-crypto-pk.1.1.0, mirage-crypto-rng.1.1.0  (cached)
-> retrieved ocamlbuild.0.15.0  (cached)
-> retrieved ohex.0.2.0  (cached)
-> retrieved ptime.1.2.0  (cached)
-> retrieved topkg.1.0.7  (cached)
-> retrieved x509.1.0.5  (cached)
-> retrieved zarith.1.14  (cached)
-> installed zarith.1.14
-> installed ocamlbuild.0.15.0
-> installed topkg.1.0.7
-> installed fmt.0.9.0
-> installed ptime.1.2.0
-> installed logs.0.7.0
-> installed dune.3.16.1
-> installed duration.0.2.1
-> installed gmap.0.3.0
-> installed csexp.1.5.2
-> installed asn1-combinators.0.3.2
-> installed base64.3.5.1
-> installed domain-name.0.4.0
-> installed eqaf.0.10
-> installed macaddr.5.6.0
-> installed ohex.0.2.0
-> installed ipaddr.5.6.0
-> installed digestif.1.2.0
-> installed dune-configurator.3.16.1
-> installed mirage-crypto.1.1.0
-> installed kdf.1.0.0
-> installed mirage-crypto-rng.1.1.0
-> installed mirage-crypto-pk.1.1.0
-> installed mirage-crypto-ec.1.1.0
-> installed x509.1.0.5
Done.
# To update the current shell environment, run: eval $(opam env)
2024-11-13 19:18.59 ---> saved as "b14af9e0b3ca106ced31d4b160bdaaec48bb967f3a9b4bf0674da9451649c204"

/home/opam: (run (shell "opam option solver=builtin-0install"))
No modification in global configuration
2024-11-13 19:19.00 ---> saved as "0c52df722387ddcee9c80fc3a3533bc03b7bdfe807318f698bb7594b7dea8715"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test x509.1.0.5) || true"))
The following actions will be performed:
=== recompile 6 packages
  - recompile fmt                0.9.0  [uses cmdliner]
  - recompile logs               0.7.0  [uses cmdliner]
  - recompile mirage-crypto-ec   1.1.0  [uses mirage-crypto-rng]
  - recompile mirage-crypto-pk   1.1.0  [uses mirage-crypto-rng]
  - recompile mirage-crypto-rng  1.1.0  [uses logs]
  - recompile x509               1.0.5
=== install 8 packages
  - install   alcotest           1.8.0  [required by x509]
  - install   astring            0.8.5  [required by alcotest]
  - install   cmdliner           1.3.0  [required by alcotest]
  - install   ocaml-syntax-shims 1.0.0  [required by alcotest]
  - install   re                 1.12.0 [required by alcotest]
  - install   seq                base   [required by re]
  - install   stdlib-shims       0.3.0  [required by alcotest]
  - install   uutf               1.0.3  [required by alcotest]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.8.0  (https://github.com/mirage/alcotest/releases/download/1.8.0/alcotest-1.8.0.tbz)
-> retrieved astring.0.8.5  (https://erratique.ch/software/astring/releases/astring-0.8.5.tbz)
-> retrieved cmdliner.1.3.0  (https://erratique.ch/software/cmdliner/releases/cmdliner-1.3.0.tbz)
-> retrieved fmt.0.9.0  (https://erratique.ch/software/fmt/releases/fmt-0.9.0.tbz)
-> retrieved logs.0.7.0  (https://erratique.ch/software/logs/releases/logs-0.7.0.tbz)
-> retrieved mirage-crypto-ec.1.1.0, mirage-crypto-pk.1.1.0, mirage-crypto-rng.1.1.0  (https://github.com/mirage/mirage-crypto/releases/download/v1.1.0/mirage-crypto-1.1.0.tbz)
-> installed astring.0.8.5
-> retrieved ocaml-syntax-shims.1.0.0  (https://github.com/ocaml-ppx/ocaml-syntax-shims/releases/download/1.0.0/ocaml-syntax-shims-1.0.0.tbz)
-> retrieved re.1.12.0  (https://github.com/ocaml/ocaml-re/releases/download/1.12.0/re-1.12.0.tbz)
-> retrieved seq.base  (2 extra sources)
-> retrieved seq.base  (2 extra sources)
-> installed seq.base
-> retrieved stdlib-shims.0.3.0  (https://github.com/ocaml/stdlib-shims/releases/download/0.3.0/stdlib-shims-0.3.0.tbz)
-> retrieved uutf.1.0.3  (https://erratique.ch/software/uutf/releases/uutf-1.0.3.tbz)
-> installed ocaml-syntax-shims.1.0.0
-> retrieved x509.1.0.5  (https://github.com/mirleft/ocaml-x509/releases/download/v1.0.5/x509-1.0.5.tbz)
-> installed cmdliner.1.3.0
-> removed   x509.1.0.5
-> removed   mirage-crypto-ec.1.1.0
-> removed   mirage-crypto-pk.1.1.0
-> removed   mirage-crypto-rng.1.1.0
-> removed   logs.0.7.0
-> removed   fmt.0.9.0
-> installed re.1.12.0
-> installed stdlib-shims.0.3.0
-> installed uutf.1.0.3
-> installed fmt.0.9.0
-> installed alcotest.1.8.0
-> installed logs.0.7.0
-> installed mirage-crypto-rng.1.1.0
-> installed mirage-crypto-pk.1.1.0
-> installed mirage-crypto-ec.1.1.0
-> installed x509.1.0.5
Done.
# To update the current shell environment, run: eval $(opam env)
2024-11-13 19:19.39 ---> saved as "d225960d36e7cf8727fc0512ff14fed61681ab4ae6df86859f6e8153d6d9a50e"

/home/opam: (run (shell  "opam reinstall --with-test --verbose x509.1.0.5;\
                        \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-12\\\"\"; 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.1.0.5' && 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 1.0.5

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [x509.1.0.5: extract]
-> retrieved x509.1.0.5  (cached)
Processing  2/4: [x509: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "x509" "-j" "39" (CWD=/home/opam/.opam/5.2/.opam-switch/build/x509.1.0.5)
Processing  2/4: [x509: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "x509" "-j" "39" (CWD=/home/opam/.opam/5.2/.opam-switch/build/x509.1.0.5)
- (cd _build/default/tests && ./tests.exe)
- Testing `X509 tests'.
- This run has ID `593JL74Q'.
- 
-   [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   certi...
-   [OK]          CA tests with certificate                           2   certi...
-   [OK]          CA tests with certificate                           3   verif...
-   [OK]          CA tests with certificate                           4   certi...
-   [OK]          CA tests with certificate                           5   verif...
-   [OK]          CA tests with certificate                           6   certi...
-   [OK]          CA tests with certificate                           7   verif...
-   [OK]          CA tests with certificate                           8   certi...
-   [OK]          CA tests with certificate                           9   verif...
-   [OK]          CA tests with certificate                          10   certi...
-   [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   certi...
-   [OK]          CA tests with certificate                          16   verif...
-   [OK]          CA tests with certificate                          17   certi...
-   [OK]          CA tests with certificate                          18   certi...
-   [OK]          CA tests with certificate                          19   verif...
-   [OK]          CA tests with certificate                          20   certi...
-   [OK]          CA tests with certificate                          21   verif...
-   [OK]          CA tests with certificate                          22   certi...
-   [OK]          CA tests with certificate                          23   verif...
-   [OK]          CA tests with certificate                          24   certi...
-   [OK]          CA tests with certificate                          25   verif...
-   [OK]          CA tests with certificate                          26   certi...
-   [OK]          CA tests with certificate                          27   verif...
-   [OK]          CA tests with certificate                          28   certi...
-   [OK]          CA tests with certificate                          29   certi...
-   [OK]          CA tests with certificate                          30   verif...
-   [OK]          CA tests with certificate                          31   certi...
-   [OK]          CA tests with certificate                          32   verif...
-   [OK]          CA tests with certificate                          33   certi...
-   [OK]          CA tests with certificate                          34   certi...
-   [OK]          CA tests with certificate                          35   verif...
-   [OK]          CA tests with certificate                          36   certi...
-   [OK]          CA tests with certificate                          37   verif...
-   [OK]          CA tests with certificate                          38   certi...
-   [OK]          CA tests with certificate                          39   verif...
-   [OK]          CA tests with certificate                          40   certi...
-   [OK]          CA tests with certificate                          41   verif...
-   [OK]          CA tests with certificate                          42   certi...
-   [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   certi...
-   [OK]          CA tests with certificate                          48   verif...
-   [OK]          CA tests with certificate                          49   certi...
-   [OK]          CA tests with certificate                          50   certi...
-   [OK]          CA tests with certificate                          51   verif...
-   [OK]          CA tests with certificate                          52   certi...
-   [OK]          CA tests with certificate                          53   verif...
-   [OK]          CA tests with certificate                          54   certi...
-   [OK]          CA tests with certificate                          55   verif...
-   [OK]          CA tests with certificate                          56   certi...
-   [OK]          CA tests with certificate                          57   verif...
-   [OK]          CA tests with certificate                          58   certi...
-   [OK]          CA tests with certificate                          59   verif...
-   [OK]          CA tests with certificate                          60   certi...
-   [OK]          CA tests with certificate                          61   certi...
-   [OK]          CA tests with certificate                          62   verif...
-   [OK]          CA tests with certificate                          63   certi...
-   [OK]          CA tests with certificate                          64   verif...
-   [OK]          CA tests with certificate                          65   certi...
-   [OK]          CA tests with certificate                          66   certi...
-   [OK]          CA tests with certificate                          67   verif...
-   [OK]          CA tests with certificate                          68   certi...
-   [OK]          CA tests with certificate                          69   verif...
-   [OK]          CA tests with certificate                          70   certi...
-   [OK]          CA tests with certificate                          71   verif...
-   [OK]          CA tests with certificate                          72   certi...
-   [OK]          CA tests with certificate                          73   verif...
-   [OK]          CA tests with certificate                          74   certi...
-   [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   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   wildc...
-   [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   verif...
-   [OK]          CA tests with wildcard certificate                 10   wildc...
-   [OK]          CA tests with wildcard certificate                 11   wildc...
-   [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   verif...
-   [OK]          CA tests with wildcard certificate                 19   wildc...
-   [OK]          CA tests with wildcard certificate                 20   wildc...
-   [OK]          CA tests with wildcard certificate                 21   wildc...
-   [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   verif...
-   [OK]          CA tests with wildcard certificate                 28   wildc...
-   [OK]          CA tests with wildcard certificate                 29   wildc...
-   [OK]          CA tests with wildcard certificate                 30   wildc...
-   [OK]          CA tests with wildcard certificate                 31   wildc...
-   [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   verif...
-   [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   wildc...
-   [OK]          CA tests with wildcard certificate                 41   wildc...
-   [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   verif...
-   [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   wildc...
-   [OK]          CA tests with wildcard certificate                 51   wildc...
-   [OK]          CA tests with wildcard certificate                 52   wildc...
-   [OK]          CA tests with wildcard certificate                 53   wildc...
-   [OK]          CA tests with wildcard certificate                 54   verif...
-   [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   wildc...
-   [OK]          CA tests with wildcard certificate                 61   wildc...
-   [OK]          CA tests with wildcard certificate                 62   wildc...
-   [OK]          CA tests with wildcard certificate                 63   verif...
-   [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   wildc...
-   [OK]          CA tests with wildcard certificate                 71   wildc...
-   [OK]          CA tests with wildcard certificate                 72   verif...
-   [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   wildc...
-   [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]          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   stric...
-   [OK]          Intermediate CA with second certificate             2   verif...
-   [OK]          Intermediate CA with second certificate             3   stric...
-   [OK]          Intermediate CA with second certificate             4   verif...
-   [OK]          Intermediate CA with second certificate             5   stric...
-   [OK]          Intermediate CA with second certificate             6   stric...
-   [OK]          Intermediate CA with second certificate             7   verif...
-   [OK]          Intermediate CA with second certificate             8   stric...
-   [OK]          Intermediate CA with second certificate             9   verif...
-   [OK]          Intermediate CA with second certificate            10   stric...
-   [OK]          Intermediate CA with second certificate            11   verif...
-   [OK]          Intermediate CA with second certificate            12   stric...
-   [OK]          Intermediate CA with second certificate            13   verif...
-   [OK]          Intermediate CA with second certificate            14   stric...
-   [OK]          Intermediate CA with second certificate            15   verif...
-   [OK]          Intermediate CA with second certificate            16   stric...
-   [OK]          Intermediate CA with second certificate            17   verif...
-   [OK]          Intermediate CA with second certificate            18   stric...
-   [OK]          Intermediate CA with second certificate            19   verif...
-   [OK]          Intermediate CA with second certificate            20   verif...
-   [OK]          Intermediate CA with second certificate            21   verif...
-   [OK]          Intermediate CA with second certificate            22   stric...
-   [OK]          Intermediate CA with second certificate            23   verif...
-   [OK]          Intermediate CA with second certificate            24   stric...
-   [OK]          Intermediate CA with second certificate            25   verif...
-   [OK]          Intermediate CA with second certificate            26   stric...
-   [OK]          Intermediate CA with second certificate            27   stric...
-   [OK]          Intermediate CA with second certificate            28   verif...
-   [OK]          Intermediate CA with second certificate            29   stric...
-   [OK]          Intermediate CA with second certificate            30   verif...
-   [OK]          Intermediate CA with second certificate            31   stric...
-   [OK]          Intermediate CA with second certificate            32   verif...
-   [OK]          Intermediate CA with second certificate            33   stric...
-   [OK]          Intermediate CA with second certificate            34   verif...
-   [OK]          Intermediate CA with second certificate            35   stric...
-   [OK]          Intermediate CA with second certificate            36   verif...
-   [OK]          Intermediate CA with second certificate            37   stric...
-   [OK]          Intermediate CA with second certificate            38   verif...
-   [OK]          Intermediate CA with second certificate            39   stric...
-   [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   stric...
-   [OK]          Intermediate CA with second certificate            44   verif...
-   [OK]          Intermediate CA with second certificate            45   stric...
-   [OK]          Intermediate CA with second certificate            46   verif...
-   [OK]          Intermediate CA with second certificate            47   stric...
-   [OK]          Intermediate CA with second certificate            48   stric...
-   [OK]          Intermediate CA with second certificate            49   verif...
-   [OK]          Intermediate CA with second certificate            50   stric...
-   [OK]          Intermediate CA with second certificate            51   verif...
-   [OK]          Intermediate CA with second certificate            52   stric...
-   [OK]          Intermediate CA with second certificate            53   verif...
-   [OK]          Intermediate CA with second certificate            54   stric...
-   [OK]          Intermediate CA with second certificate            55   verif...
-   [OK]          Intermediate CA with second certificate            56   stric...
-   [OK]          Intermediate CA with second certificate            57   verif...
-   [OK]          Intermediate CA with second certificate            58   stric...
-   [OK]          Intermediate CA with second certificate            59   verif...
-   [OK]          Intermediate CA with second certificate            60   stric...
-   [OK]          Intermediate CA with second certificate            61   verif...
-   [OK]          Intermediate CA with second certificate            62   verif...
-   [OK]          Intermediate CA with second certificate            63   verif...
-   [OK]          Intermediate CA with second certificate            64   stric...
-   [OK]          Intermediate CA with second certificate            65   verif...
-   [OK]          Intermediate CA with second certificate            66   stric...
-   [OK]          Intermediate CA with second certificate            67   verif...
-   [OK]          Intermediate CA with second certificate            68   stric...
-   [OK]          Intermediate CA with second certificate            69   stric...
-   [OK]          Intermediate CA with second certificate            70   verif...
-   [OK]          Intermediate CA with second certificate            71   stric...
-   [OK]          Intermediate CA with second certificate            72   verif...
-   [OK]          Intermediate CA with second certificate            73   stric...
-   [OK]          Intermediate CA with second certificate            74   verif...
-   [OK]          Intermediate CA with second certificate            75   stric...
-   [OK]          Intermediate CA with second certificate            76   verif...
-   [OK]          Intermediate CA with second certificate            77   stric...
-   [OK]          Intermediate CA with second certificate            78   verif...
-   [OK]          Intermediate CA with second certificate            79   stric...
-   [OK]          Intermediate CA with second certificate            80   verif...
-   [OK]          Intermediate CA with second certificate            81   stric...
-   [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   stric...
-   [OK]          Intermediate CA with second certificate            86   verif...
-   [OK]          Intermediate CA with second certificate            87   stric...
-   [OK]          Intermediate CA with second certificate            88   verif...
-   [OK]          Intermediate CA with second certificate            89   stric...
-   [OK]          Intermediate CA with second certificate            90   stric...
-   [OK]          Intermediate CA with second certificate            91   verif...
-   [OK]          Intermediate CA with second certificate            92   stric...
-   [OK]          Intermediate CA with second certificate            93   verif...
-   [OK]          Intermediate CA with second certificate            94   stric...
-   [OK]          Intermediate CA with second certificate            95   verif...
-   [OK]          Intermediate CA with second certificate            96   stric...
-   [OK]          Intermediate CA with second certificate            97   verif...
-   [OK]          Intermediate CA with second certificate            98   stric...
-   [OK]          Intermediate CA with second certificate            99   verif...
-   [OK]          Intermediate CA with second certificate           100   stric...
-   [OK]          Intermediate CA with second certificate           101   verif...
-   [OK]          Intermediate CA with second certificate           102   stric...
-   [OK]          Intermediate CA with second certificate           103   verif...
-   [OK]          Intermediate CA with second certificate           104   verif...
-   [OK]          Intermediate CA with second certificate           105   verif...
-   [OK]          Intermediate CA with second certificate           106   stric...
-   [OK]          Intermediate CA with second certificate           107   verif...
-   [OK]          Intermediate CA with second certificate           108   stric...
-   [OK]          Intermediate CA with second certificate           109   verif...
-   [OK]          Intermediate CA with second certificate           110   stric...
-   [OK]          Intermediate CA with second certificate           111   stric...
-   [OK]          Intermediate CA with second certificate           112   verif...
-   [OK]          Intermediate CA with second certificate           113   stric...
-   [OK]          Intermediate CA with second certificate           114   verif...
-   [OK]          Intermediate CA with second certificate           115   stric...
-   [OK]          Intermediate CA with second certificate           116   verif...
-   [OK]          Intermediate CA with second certificate           117   stric...
-   [OK]          Intermediate CA with second certificate           118   verif...
-   [OK]          Intermediate CA with second certificate           119   stric...
-   [OK]          Intermediate CA with second certificate           120   verif...
-   [OK]          Intermediate CA with second certificate           121   stric...
-   [OK]          Intermediate CA with second certificate           122   verif...
-   [OK]          Intermediate CA with second certificate           123   stric...
-   [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   stric...
-   [OK]          Intermediate CA with second certificate           128   verif...
-   [OK]          Intermediate CA with second certificate           129   stric...
-   [OK]          Intermediate CA with second certificate           130   verif...
-   [OK]          Intermediate CA with second certificate           131   stric...
-   [OK]          Intermediate CA with second certificate           132   stric...
-   [OK]          Intermediate CA with second certificate           133   verif...
-   [OK]          Intermediate CA with second certificate           134   stric...
-   [OK]          Intermediate CA with second certificate           135   verif...
-   [OK]          Intermediate CA with second certificate           136   stric...
-   [OK]          Intermediate CA with second certificate           137   verif...
-   [OK]          Intermediate CA with second certificate           138   stric...
-   [OK]          Intermediate CA with second certificate           139   verif...
-   [OK]          Intermediate CA with second certificate           140   stric...
-   [OK]          Intermediate CA with second certificate           141   verif...
-   [OK]          Intermediate CA with second certificate           142   stric...
-   [OK]          Intermediate CA with second certificate           143   verif...
-   [OK]          Intermediate CA with second certificate           144   stric...
-   [OK]          Intermediate CA with second certificate           145   verif...
-   [OK]          Intermediate CA with second certificate           146   verif...
-   [OK]          Intermediate CA with second certificate           147   verif...
-   [OK]          Intermediate CA with second certificate           148   stric...
-   [OK]          Intermediate CA with second certificate           149   verif...
-   [OK]          Intermediate CA with second certificate           150   stric...
-   [OK]          Intermediate CA with second certificate           151   verif...
-   [OK]          Intermediate CA with second certificate           152   stric...
-   [OK]          Intermediate CA with second certificate           153   stric...
-   [OK]          Intermediate CA with second certificate           154   verif...
-   [OK]          Intermediate CA with second certificate           155   stric...
-   [OK]          Intermediate CA with second certificate           156   verif...
-   [OK]          Intermediate CA with second certificate           157   stric...
-   [OK]          Intermediate CA with second certificate           158   verif...
-   [OK]          Intermediate CA with second certificate           159   stric...
-   [OK]          Intermediate CA with second certificate           160   verif...
-   [OK]          Intermediate CA with second certificate           161   stric...
-   [OK]          Intermediate CA with second certificate           162   verif...
-   [OK]          Intermediate CA with second certificate           163   stric...
-   [OK]          Intermediate CA with second certificate           164   verif...
-   [OK]          Intermediate CA with second certificate           165   stric...
-   [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   stric...
-   [OK]          Intermediate CA with second certificate           170   verif...
-   [OK]          Intermediate CA with second certificate           171   stric...
-   [OK]          Intermediate CA with second certificate           172   verif...
-   [OK]          Intermediate CA with second certificate           173   stric...
-   [OK]          Intermediate CA with second certificate           174   stric...
-   [OK]          Intermediate CA with second certificate           175   verif...
-   [OK]          Intermediate CA with second certificate           176   stric...
-   [OK]          Intermediate CA with second certificate           177   verif...
-   [OK]          Intermediate CA with second certificate           178   stric...
-   [OK]          Intermediate CA with second certificate           179   verif...
-   [OK]          Intermediate CA with second certificate           180   stric...
-   [OK]          Intermediate CA with second certificate           181   verif...
-   [OK]          Intermediate CA with second certificate           182   stric...
-   [OK]          Intermediate CA with second certificate           183   verif...
-   [OK]          Intermediate CA with second certificate           184   stric...
-   [OK]          Intermediate CA with second certificate           185   verif...
-   [OK]          Intermediate CA with second certificate           186   stric...
-   [OK]          Intermediate CA with second certificate           187   verif...
-   [OK]          Intermediate CA with second certificate           188   verif...
-   [OK]          Intermediate CA with second certificate           189   verif...
-   [OK]          Intermediate CA with second certificate           190   stric...
-   [OK]          Intermediate CA with second certificate           191   verif...
-   [OK]          Intermediate CA with second certificate           192   stric...
-   [OK]          Intermediate CA with second certificate           193   verif...
-   [OK]          Intermediate CA with second certificate           194   stric...
-   [OK]          Intermediate CA with second certificate           195   stric...
-   [OK]          Intermediate CA with second certificate           196   verif...
-   [OK]          Intermediate CA with second certificate           197   stric...
-   [OK]          Intermediate CA with second certificate           198   verif...
-   [OK]          Intermediate CA with second certificate           199   stric...
-   [OK]          Intermediate CA with second certificate           200   verif...
-   [OK]          Intermediate CA with second certificate           201   stric...
-   [OK]          Intermediate CA with second certificate           202   verif...
-   [OK]          Intermediate CA with second certificate           203   stric...
-   [OK]          Intermediate CA with second certificate           204   verif...
-   [OK]          Intermediate CA with second certificate           205   stric...
-   [OK]          Intermediate CA with second certificate           206   verif...
-   [OK]          Intermediate CA with second certificate           207   stric...
-   [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   stric...
-   [OK]          Intermediate CA with second certificate           212   verif...
-   [OK]          Intermediate CA with second certificate           213   stric...
-   [OK]          Intermediate CA with second certificate           214   verif...
-   [OK]          Intermediate CA with second certificate           215   stric...
-   [OK]          Intermediate CA with second certificate           216   stric...
-   [OK]          Intermediate CA with second certificate           217   verif...
-   [OK]          Intermediate CA with second certificate           218   stric...
-   [OK]          Intermediate CA with second certificate           219   verif...
-   [OK]          Intermediate CA with second certificate           220   stric...
-   [OK]          Intermediate CA with second certificate           221   verif...
-   [OK]          Intermediate CA with second certificate           222   stric...
-   [OK]          Intermediate CA with second certificate           223   verif...
-   [OK]          Intermediate CA with second certificate           224   stric...
-   [OK]          Intermediate CA with second certificate           225   verif...
-   [OK]          Intermediate CA with second certificate           226   stric...
-   [OK]          Intermediate CA with second certificate           227   verif...
-   [OK]          Intermediate CA with second certificate           228   stric...
-   [OK]          Intermediate CA with second certificate           229   verif...
-   [OK]          Intermediate CA with second certificate           230   verif...
-   [OK]          Intermediate CA with second certificate           231   verif...
-   [OK]          Intermediate CA with second certificate           232   stric...
-   [OK]          Intermediate CA with second certificate           233   verif...
-   [OK]          Intermediate CA with second certificate           234   stric...
-   [OK]          Intermediate CA with second certificate           235   verif...
-   [OK]          Intermediate CA with second certificate           236   stric...
-   [OK]          Intermediate CA with second certificate           237   stric...
-   [OK]          Intermediate CA with second certificate           238   verif...
-   [OK]          Intermediate CA with second certificate           239   stric...
-   [OK]          Intermediate CA with second certificate           240   verif...
-   [OK]          Intermediate CA with second certificate           241   stric...
-   [OK]          Intermediate CA with second certificate           242   verif...
-   [OK]          Intermediate CA with second certificate           243   stric...
-   [OK]          Intermediate CA with second certificate           244   verif...
-   [OK]          Intermediate CA with second certificate           245   stric...
-   [OK]          Intermediate CA with second certificate           246   verif...
-   [OK]          Intermediate CA with second certificate           247   stric...
-   [OK]          Intermediate CA with second certificate           248   verif...
-   [OK]          Intermediate CA with second certificate           249   stric...
-   [OK]          Intermediate CA with second certificate           250   verif...
-   [OK]          Intermediate CA with second certificate           251   verif...
-   [OK]          Intermediate CA with second certificate           252   verif...
-   [OK]          Intermediate CA with second certificate           253   stric...
-   [OK]          Intermediate CA with second certificate           254   verif...
-   [OK]          Intermediate CA with second certificate           255   stric...
-   [OK]          Intermediate CA with second certificate           256   verif...
-   [OK]          Intermediate CA with second certificate           257   stric...
-   [OK]          Intermediate CA with second certificate           258   stric...
-   [OK]          Intermediate CA with second certificate           259   verif...
-   [OK]          Intermediate CA with second certificate           260   stric...
-   [OK]          Intermediate CA with second certificate           261   verif...
-   [OK]          Intermediate CA with second certificate           262   stric...
-   [OK]          Intermediate CA with second certificate           263   verif...
-   [OK]          Intermediate CA with second certificate           264   stric...
-   [OK]          Intermediate CA with second certificate           265   verif...
-   [OK]          Intermediate CA with second certificate           266   stric...
-   [OK]          Intermediate CA with second certificate           267   verif...
-   [OK]          Intermediate CA with second certificate           268   stric...
-   [OK]          Intermediate CA with second certificate           269   verif...
-   [OK]          Intermediate CA with second certificate           270   stric...
-   [OK]          Intermediate CA with second certificate           271   verif...
-   [OK]          Intermediate CA with second certificate           272   verif...
-   [OK]          Intermediate CA with second certificate           273   verif...
-   [OK]          Intermediate CA with second certificate           274   stric...
-   [OK]          Intermediate CA with second certificate           275   verif...
-   [OK]          Intermediate CA with second certificate           276   stric...
-   [OK]          Intermediate CA with second certificate           277   verif...
-   [OK]          Intermediate CA with second certificate           278   stric...
-   [OK]          Intermediate CA with second certificate           279   stric...
-   [OK]          Intermediate CA with second certificate           280   verif...
-   [OK]          Intermediate CA with second certificate           281   stric...
-   [OK]          Intermediate CA with second certificate           282   verif...
-   [OK]          Intermediate CA with second certificate           283   stric...
-   [OK]          Intermediate CA with second certificate           284   verif...
-   [OK]          Intermediate CA with second certificate           285   stric...
-   [OK]          Intermediate CA with second certificate           286   verif...
-   [OK]          Intermediate CA with second certificate           287   stric...
-   [OK]          Intermediate CA with second certificate           288   verif...
-   [OK]          Intermediate CA with second certificate           289   stric...
-   [OK]          Intermediate CA with second certificate           290   verif...
-   [OK]          Intermediate CA with second certificate           291   stric...
-   [OK]          Intermediate CA with second certificate           292   verif...
-   [OK]          Intermediate CA with second certificate           293   verif...
-   [OK]          Intermediate CA with second certificate           294   verif...
-   [OK]          Intermediate CA with second certificate           295   stric...
-   [OK]          Intermediate CA with second certificate           296   verif...
-   [OK]          Intermediate CA with second certificate           297   stric...
-   [OK]          Intermediate CA with second certificate           298   verif...
-   [OK]          Intermediate CA with second certificate           299   stric...
-   [OK]          Intermediate CA with second certificate           300   stric...
-   [OK]          Intermediate CA with second certificate           301   verif...
-   [OK]          Intermediate CA with second certificate           302   stric...
-   [OK]          Intermediate CA with second certificate           303   verif...
-   [OK]          Intermediate CA with second certificate           304   stric...
-   [OK]          Intermediate CA with second certificate           305   verif...
-   [OK]          Intermediate CA with second certificate           306   stric...
- ...TRUNCATED BY DUNE...
-   [OK]          Intermediate CA with second no common name         83   certi...
-   [OK]          Intermediate CA with second no common name         84   certi...
-   [OK]          Intermediate CA with second no common name         85   certi...
-   [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   verif...
-   [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   certi...
-   [OK]          Intermediate CA with second no common name         97   certi...
-   [OK]          Intermediate CA with second no common name         98   certi...
-   [OK]          Intermediate CA with second no common name         99   verif...
-   [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   certi...
-   [OK]          Intermediate CA with second no common name        109   certi...
-   [OK]          Intermediate CA with second no common name        110   verif...
-   [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   certi...
-   [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   certi...
-   [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   verif...
-   [OK]          Intermediate CA with second no common name        144   certi...
-   [OK]          Intermediate CA with second no common name        145   certi...
-   [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   verif...
-   [OK]          Intermediate CA with second no common name        155   certi...
-   [OK]          Intermediate CA with second no common name        156   certi...
-   [OK]          Intermediate CA with second no common name        157   certi...
-   [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   verif...
-   [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   certi...
-   [OK]          Intermediate CA with second no common name        169   certi...
-   [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   verif...
-   [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   certi...
-   [OK]          Intermediate CA with second no common name        181   certi...
-   [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   verif...
-   [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   certi...
-   [OK]          Intermediate CA with second no common name        193   certi...
-   [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   verif...
-   [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   certi...
-   [OK]          Intermediate CA with second no common name        205   certi...
-   [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   verif...
-   [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   certi...
-   [OK]          Intermediate CA with second no common name        217   certi...
-   [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   verif...
-   [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   certi...
-   [OK]          Intermediate CA with second no common name        229   certi...
-   [OK]          Intermediate CA with second no common name        230   certi...
-   [OK]          Intermediate CA with second no common name        231   verif...
-   [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   certi...
-   [OK]          Intermediate CA with second no common name        241   certi...
-   [OK]          Intermediate CA with second no common name        242   verif...
-   [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   certi...
-   [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   certi...
-   [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   verif...
-   [OK]          Intermediate CA with second no common name        276   certi...
-   [OK]          Intermediate CA with second no common name        277   certi...
-   [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   verif...
-   [OK]          Intermediate CA with second no common name        287   certi...
-   [OK]          Intermediate CA with second no common name        288   certi...
-   [OK]          Intermediate CA with second no common name        289   certi...
-   [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   verif...
-   [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   certi...
-   [OK]          Intermediate CA with second no common name        301   certi...
-   [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   verif...
-   [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   certi...
-   [OK]          Intermediate CA with second no common name        313   certi...
-   [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   verif...
-   [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   certi...
-   [OK]          Intermediate CA with second no common name        325   certi...
-   [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   verif...
-   [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   certi...
-   [OK]          Intermediate CA with second no common name        337   certi...
-   [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   verif...
-   [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   certi...
-   [OK]          Intermediate CA with second no common name        349   certi...
-   [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   verif...
-   [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   certi...
-   [OK]          Intermediate CA with second no common name        361   certi...
-   [OK]          Intermediate CA with second no common name        362   certi...
-   [OK]          Intermediate CA with second no common name        363   verif...
-   [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   certi...
-   [OK]          Intermediate CA with second no common name        373   certi...
-   [OK]          Intermediate CA with second no common name        374   verif...
-   [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   certi...
-   [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   certi...
-   [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   verif...
-   [OK]          Intermediate CA with second no common name        408   certi...
-   [OK]          Intermediate CA with second no common name        409   certi...
-   [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   verif...
-   [OK]          Intermediate CA with second no common name        419   certi...
-   [OK]          Intermediate CA with second no common name        420   certi...
-   [OK]          Intermediate CA with second no common name        421   certi...
-   [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   verif...
-   [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   certi...
-   [OK]          Intermediate CA with second no common name        433   certi...
-   [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   verif...
-   [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   certi...
-   [OK]          Intermediate CA with second no common name        445   certi...
-   [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   verif...
-   [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   certi...
-   [OK]          Intermediate CA with second no common name        457   certi...
-   [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   verif...
-   [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   certi...
-   [OK]          Intermediate CA with second no common name        469   certi...
-   [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   verif...
-   [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   certi...
-   [OK]          Intermediate CA with second no common name        481   certi...
-   [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   verif...
-   [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   certi...
-   [OK]          Intermediate CA with second no common name        493   certi...
-   [OK]          Intermediate CA with second no common name        494   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   2chai...
-   [OK]          Tests with invalid data                             4   2chai...
-   [OK]          Tests with invalid data                             5   3chai...
-   [OK]          Tests with invalid data                             6   3chai...
-   [OK]          Tests with invalid data                             7   chain...
-   [OK]          Tests with invalid data                             8   chain...
-   [OK]          Tests with invalid data                             9   not a...
-   [OK]          Tests with invalid data                            10   not a...
-   [OK]          Regression                                          0   RSA: ...
-   [OK]          Regression                                          1   jc_ca.
-   [OK]          Regression                                          2   jc_ca.
-   [OK]          Regression                                          3   jfd_ca.
-   [OK]          Regression                                          4   jfd_ca'.
-   [OK]          Regression                                          5   SAN d...
-   [OK]          Regression                                          6   name ...
-   [OK]          Regression                                          7   compl...
-   [OK]          Regression                                          8   disti...
-   [OK]          Regression                                          9   algor...
-   [OK]          Regression                                         10   valid...
-   [OK]          Regression                                         11   parse...
-   [OK]          Regression                                         12   parse...
-   [OK]          Regression                                         13   ed255...
-   [OK]          Regression                                         14   ed255...
-   [OK]          Regression                                         15   p384 ...
-   [OK]          Regression                                         16   ed255...
-   [OK]          Regression                                         17   p384 ...
-   [OK]          Regression                                         18   p256 ...
-   [OK]          Regression                                         19   ip_ad...
-   [OK]          Regression                                         20   alter...
-   [OK]          Regression                                         21   p256 ...
-   [OK]          Regression                                         22   rsa p...
-   [OK]          Regression                                         23   rsa p...
-   [OK]          Regression                                         24   publi...
-   [OK]          Regression                                         25   priva...
-   [OK]          Regression                                         26   publi...
-   [OK]          Regression                                         27   priva...
-   [OK]          Regression                                         28   publi...
-   [OK]          Regression                                         29   priva...
-   [OK]          Host names                                          0   cacer...
-   [OK]          Host names                                          1   izenp...
-   [OK]          Host names                                          2   jabbe...
-   [OK]          Host names                                          3   jaber...
-   [OK]          Host names                                          4   pads....
-   [OK]          Host names                                          5   first...
-   [OK]          Host names                                          6   CSR y...
-   [OK]          Host names                                          7   CSR y...
-   [OK]          Host names                                          8   CSR b...
-   [OK]          Host names                                          9   CSR f...
-   [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...
-   [OK]          PKCS12                                              0   OpenS...
-   [OK]          PKCS12                                              1   OpenS...
-   [OK]          PKCS12                                              2   OCaml...
-   [OK]          PKCS12                                              3   OCaml...
-   [OK]          OCSP                                                0   OpenS...
-   [OK]          OCSP                                                1   OpenS...
-   [OK]          OCSP                                                2   Simpl...
-   [OK]          Private Key                                         0   Gener...
-   [OK]          Private Key                                         1   ed25519.
-   [OK]          Private Key                                         2   p256.
-   [OK]          Private Key                                         3   p384.
-   [OK]          Private Key                                         4   p521.
- 
- Full test results in `~/.opam/5.2/.opam-switch/build/x509.1.0.5/_build/default/tests/_build/_tests/X509 tests'.
- Test Successful in 2.931s. 2225 tests run.
-> compiled  x509.1.0.5
-> removed   x509.1.0.5
-> installed x509.1.0.5
Done.
# To update the current shell environment, run: eval $(opam env)
2024-11-13 19:20.00 ---> saved as "17ac2f5cb07a4e73ff43f0739acc741604fbbf8d3c430495418fd5166bc88985"
Job succeeded
2024-11-13 19:20.18: Job succeeded