Organisationsmirleftocaml-tlsdd3d85 ()debian-12-4.10_opam-2.2

debian-12-4.10_opam-2.2

Link Copied
Code Copied

Logs

2024-08-20 07:09.13: New job: test mirleft/ocaml-tls https://github.com/mirleft/ocaml-tls.git#refs/heads/main (dd3d8566806cb8c68ae731b3af9a405281a89c33) (linux-x86_64:debian-12-4.10_opam-2.2)
Base: ocaml/opam:debian-12-ocaml-4.10@sha256:96222b95701891d00c1a99e674b3e01cc9e031b5da5f9687c9f525c5f278fbaa
Opam project build


To reproduce locally:


git clone --recursive "https://github.com/mirleft/ocaml-tls.git" -b "main" && cd "ocaml-tls" && git reset --hard dd3d8566
cat > Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.10@sha256:96222b95701891d00c1a99e674b3e01cc9e031b5da5f9687c9f525c5f278fbaa
# debian-12-4.10_opam-2.2
USER 1000:1000
ENV CLICOLOR_FORCE="1"
ENV OPAMCOLOR="always"
WORKDIR /src
RUN sudo ln -f /usr/bin/opam-2.2 /usr/bin/opam
RUN opam init --reinit -ni
RUN uname -rs && opam exec -- ocaml -version && opam --version
WORKDIR /src
RUN sudo chown opam /src
RUN cd ~/opam-repository && (git cat-file -e d7e8a9dd3d0865a60337483baffe30a60c7e7c3a || git fetch origin master) && git reset -q --hard d7e8a9dd3d0865a60337483baffe30a60c7e7c3a && git log --no-decorate -n1 --oneline && opam update -u
COPY --chown=1000:1000 tls.opam tls-mirage.opam tls-lwt.opam tls-eio.opam tls-async.opam ./
RUN opam pin add -yn tls.dev './' && \
    opam pin add -yn tls-mirage.dev './' && \
    opam pin add -yn tls-lwt.dev './' && \
    opam pin add -yn tls-eio.dev './' && \
    opam pin add -yn tls-async.dev './'
ENV DEPS="alcotest.1.8.0 asn1-combinators.0.2.6 astring.0.8.5 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.1 cmdliner.1.3.0 conf-gmp.4 conf-gmp-powm-sec.3 conf-pkg-config.3 cppo.1.6.9 csexp.1.5.2 cstruct.6.2.0 cstruct-unix.6.2.0 domain-name.0.4.0 dune.3.16.0 dune-configurator.3.16.0 duration.0.2.1 eqaf.0.9 fmt.0.9.0 gmap.0.3.0 hkdf.1.0.4 ipaddr.5.6.0 logs.0.7.0 lwt.5.7.0 macaddr.5.6.0 mirage-clock.4.2.0 mirage-crypto.0.11.3 mirage-crypto-ec.0.11.3 mirage-crypto-pk.0.11.3 mirage-crypto-rng.0.11.3 mirage-crypto-rng-lwt.0.11.3 mirage-flow.4.0.2 mirage-kv.6.1.1 mtime.2.0.0 ocaml.4.10.2 ocaml-base-compiler.4.10.2 ocaml-config.1 ocaml-syntax-shims.1.0.0 ocamlbuild.0.15.0 ocamlfind.1.9.6 ocplib-endian.1.2 optint.0.3.0 ounit2.2.2.7 pbkdf.1.2.0 ptime.1.1.0 randomconv.0.1.3 re.1.11.0 seq.base sexplib0.v0.16.0 stdlib-shims.0.3.0 topkg.1.0.7 uutf.1.0.3 x509.0.16.5 zarith.1.14"
ENV CI="true"
ENV OCAMLCI="true"
RUN opam update --depexts && opam install --cli=2.2 --depext-only -y tls.dev tls-mirage.dev tls-lwt.dev $DEPS
RUN opam install $DEPS
COPY --chown=1000:1000 . /src
RUN opam exec -- dune build --only-packages=tls,tls-mirage,tls-lwt @install @check @runtest && rm -rf _build


END-OF-DOCKERFILE
docker build .
END-REPRO-BLOCK


2024-08-20 07:09.13: Using cache hint "mirleft/ocaml-tls-ocaml/opam:debian-12-ocaml-4.10@sha256:96222b95701891d00c1a99e674b3e01cc9e031b5da5f9687c9f525c5f278fbaa-debian-12-4.10_opam-2.2-894e3156604201b0d8749606d2de9083"
2024-08-20 07:09.13: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.10@sha256:96222b95701891d00c1a99e674b3e01cc9e031b5da5f9687c9f525c5f278fbaa)
 (comment debian-12-4.10_opam-2.2)
 (user (uid 1000) (gid 1000))
 (env CLICOLOR_FORCE 1)
 (env OPAMCOLOR always)
 (workdir /src)
 (run (shell "sudo ln -f /usr/bin/opam-2.2 /usr/bin/opam"))
 (run (shell "opam init --reinit -ni"))
 (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
 (workdir /src)
 (run (shell "sudo chown opam /src"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell "cd ~/opam-repository && (git cat-file -e d7e8a9dd3d0865a60337483baffe30a60c7e7c3a || git fetch origin master) && git reset -q --hard d7e8a9dd3d0865a60337483baffe30a60c7e7c3a && git log --no-decorate -n1 --oneline && opam update -u"))
 (copy (src tls.opam tls-mirage.opam tls-lwt.opam tls-eio.opam tls-async.opam)
       (dst ./))
 (run (network host)
      (shell  "opam pin add -yn tls.dev './' && \
             \nopam pin add -yn tls-mirage.dev './' && \
             \nopam pin add -yn tls-lwt.dev './' && \
             \nopam pin add -yn tls-eio.dev './' && \
             \nopam pin add -yn tls-async.dev './'"))
 (env DEPS "alcotest.1.8.0 asn1-combinators.0.2.6 astring.0.8.5 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.1 cmdliner.1.3.0 conf-gmp.4 conf-gmp-powm-sec.3 conf-pkg-config.3 cppo.1.6.9 csexp.1.5.2 cstruct.6.2.0 cstruct-unix.6.2.0 domain-name.0.4.0 dune.3.16.0 dune-configurator.3.16.0 duration.0.2.1 eqaf.0.9 fmt.0.9.0 gmap.0.3.0 hkdf.1.0.4 ipaddr.5.6.0 logs.0.7.0 lwt.5.7.0 macaddr.5.6.0 mirage-clock.4.2.0 mirage-crypto.0.11.3 mirage-crypto-ec.0.11.3 mirage-crypto-pk.0.11.3 mirage-crypto-rng.0.11.3 mirage-crypto-rng-lwt.0.11.3 mirage-flow.4.0.2 mirage-kv.6.1.1 mtime.2.0.0 ocaml.4.10.2 ocaml-base-compiler.4.10.2 ocaml-config.1 ocaml-syntax-shims.1.0.0 ocamlbuild.0.15.0 ocamlfind.1.9.6 ocplib-endian.1.2 optint.0.3.0 ounit2.2.2.7 pbkdf.1.2.0 ptime.1.1.0 randomconv.0.1.3 re.1.11.0 seq.base sexplib0.v0.16.0 stdlib-shims.0.3.0 topkg.1.0.7 uutf.1.0.3 x509.0.16.5 zarith.1.14")
 (env CI true)
 (env OCAMLCI true)
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell "opam update --depexts && opam install --cli=2.2 --depext-only -y tls.dev tls-mirage.dev tls-lwt.dev $DEPS"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell "opam install $DEPS"))
 (copy (src .) (dst /src))
 (run (shell "opam exec -- dune build --only-packages=tls,tls-mirage,tls-lwt @install @check @runtest && rm -rf _build"))
)


2024-08-20 07:09.13: Waiting for resource in pool OCluster
2024-08-20 07:09.13: Waiting for worker…
2024-08-20 07:09.13: Got resource from pool OCluster
Building on x86-bm-c15.sw.ocaml.org
HEAD is now at 167d425 separate throughput and handshake benchmarks
HEAD is now at dd3d856 Add a benchmark for throughput and handshakes (#500)


(from ocaml/opam:debian-12-ocaml-4.10@sha256:96222b95701891d00c1a99e674b3e01cc9e031b5da5f9687c9f525c5f278fbaa)
2024-08-20 07:09.14 ---> using "99938b5eb7f8c4155b85fa24813ef301eda3e3bf8f23b5cce7c18c7d5ff1e07d" from cache


/: (comment debian-12-4.10_opam-2.2)


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


/: (env CLICOLOR_FORCE 1)


/: (env OPAMCOLOR always)


/: (workdir /src)


/src: (run (shell "sudo ln -f /usr/bin/opam-2.2 /usr/bin/opam"))
2024-08-20 07:09.14 ---> using "919e41e0f4de9006d25a52af92e6fb06e5d8d3ace84415a4c0192d78f8c44f21" from cache


/src: (run (shell "opam init --reinit -ni"))
Configuring from /home/opam/.opamrc and then 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-08-20 07:09.14 ---> using "5f1fa31dc332e87ef746abc73b32befd7b05c1fa167c6d367c496981d8308d39" from cache


/src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
Linux 5.15.0-116-generic
The OCaml toplevel, version 4.10.2
2.2.0
2024-08-20 07:09.14 ---> using "804c2c4cc3348f8c896a15260fd7ec277ce72e10e96063523789fe32453e6054" from cache


/src: (workdir /src)


/src: (run (shell "sudo chown opam /src"))
2024-08-20 07:09.14 ---> using "edb3cf8a46c01013534b60571082d0f843f1a531b112ade7f0791b56d0583a84" from cache


/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
           (network host)
           (shell "cd ~/opam-repository && (git cat-file -e d7e8a9dd3d0865a60337483baffe30a60c7e7c3a || git fetch origin master) && git reset -q --hard d7e8a9dd3d0865a60337483baffe30a60c7e7c3a && git log --no-decorate -n1 --oneline && opam update -u"))
d7e8a9dd3d Merge pull request #26284 from samoht/release-alcotest-1.8.0


<><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><>
[default] synchronised from file:///home/opam/opam-repository


Everything as up-to-date as possible (run with --verbose to show unavailable upgrades).
However, you may "opam upgrade" these packages explicitly, which will ask permission to downgrade or uninstall the conflicting packages.
Nothing to do.
# Run eval $(opam env) to update the current shell environment
2024-08-20 07:09.14 ---> using "0a73cab165cd764c8ed95ee40c5e9ea750d594d4aa3e04b8c82cbeb389765ef5" from cache


/src: (copy (src tls.opam tls-mirage.opam tls-lwt.opam tls-eio.opam tls-async.opam)
            (dst ./))
2024-08-20 07:09.14 ---> using "98c401d0aebcd1426faa28532e2d6ad2126a20fb65aad0af5fbcd903f7d9387d" from cache


/src: (run (network host)
           (shell  "opam pin add -yn tls.dev './' && \
                  \nopam pin add -yn tls-mirage.dev './' && \
                  \nopam pin add -yn tls-lwt.dev './' && \
                  \nopam pin add -yn tls-eio.dev './' && \
                  \nopam pin add -yn tls-async.dev './'"))
[tls.dev] synchronised (file:///src)
tls is now pinned to file:///src (version dev)
[tls-mirage.dev] synchronised (file:///src)
tls-mirage is now pinned to file:///src (version dev)
[tls-lwt.dev] synchronised (file:///src)
tls-lwt is now pinned to file:///src (version dev)
[tls-eio.dev] synchronised (file:///src)
tls-eio is now pinned to file:///src (version dev)
[tls-async.dev] synchronised (file:///src)
tls-async is now pinned to file:///src (version dev)
2024-08-20 07:09.14 ---> using "1711779542816de1b9712d95981e626ec470a4fb217f713bd424ba4dc44ae46a" from cache


/src: (env DEPS "alcotest.1.8.0 asn1-combinators.0.2.6 astring.0.8.5 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.1 cmdliner.1.3.0 conf-gmp.4 conf-gmp-powm-sec.3 conf-pkg-config.3 cppo.1.6.9 csexp.1.5.2 cstruct.6.2.0 cstruct-unix.6.2.0 domain-name.0.4.0 dune.3.16.0 dune-configurator.3.16.0 duration.0.2.1 eqaf.0.9 fmt.0.9.0 gmap.0.3.0 hkdf.1.0.4 ipaddr.5.6.0 logs.0.7.0 lwt.5.7.0 macaddr.5.6.0 mirage-clock.4.2.0 mirage-crypto.0.11.3 mirage-crypto-ec.0.11.3 mirage-crypto-pk.0.11.3 mirage-crypto-rng.0.11.3 mirage-crypto-rng-lwt.0.11.3 mirage-flow.4.0.2 mirage-kv.6.1.1 mtime.2.0.0 ocaml.4.10.2 ocaml-base-compiler.4.10.2 ocaml-config.1 ocaml-syntax-shims.1.0.0 ocamlbuild.0.15.0 ocamlfind.1.9.6 ocplib-endian.1.2 optint.0.3.0 ounit2.2.2.7 pbkdf.1.2.0 ptime.1.1.0 randomconv.0.1.3 re.1.11.0 seq.base sexplib0.v0.16.0 stdlib-shims.0.3.0 topkg.1.0.7 uutf.1.0.3 x509.0.16.5 zarith.1.14")


/src: (env CI true)


/src: (env OCAMLCI true)


/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
           (network host)
           (shell "opam update --depexts && opam install --cli=2.2 --depext-only -y tls.dev tls-mirage.dev tls-lwt.dev $DEPS"))
+ /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 [170 kB]
- Fetched 273 kB in 0s (729 kB/s)
- Reading package lists...
- 


<><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><>
[tls.dev] synchronised (no changes)
[tls-lwt.dev] synchronised (no changes)
[tls-mirage.dev] synchronised (no changes)


[NOTE] Package ocaml-config is already installed (current version is 1).
[NOTE] Package ocaml-base-compiler is already installed (current version is 4.10.2).
[NOTE] Package ocaml is already installed (current version is 4.10.2).
[NOTE] Package base-unix is already installed (current version is base).
[NOTE] Package base-threads is already installed (current version is base).
[NOTE] Package base-bigarray is already installed (current version is base).


The following system packages will first need to be installed:
    libgmp-dev pkg-config


<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>


+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libgmp-dev" "pkg-config"
- debconf: delaying package configuration, since apt-utils is not installed


2024-08-20 07:09.14 ---> using "b906ccf2970f978cba6d38ccbfc1ceb00bfe6c762c8bfd2286fe70b73e92cfc5" from cache


/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
           (network host)
           (shell "opam install $DEPS"))
[NOTE] Package ocaml-config is already installed (current version is 1).
[NOTE] Package ocaml-base-compiler is already installed (current version is 4.10.2).
[NOTE] Package ocaml is already installed (current version is 4.10.2).
[NOTE] Package base-unix is already installed (current version is base).
[NOTE] Package base-threads is already installed (current version is base).
[NOTE] Package base-bigarray is already installed (current version is base).
The following actions will be performed:
=== install 51 packages
  - install alcotest              1.8.0
  - install asn1-combinators      0.2.6
  - install astring               0.8.5
  - install base-bytes            base
  - install base64                3.5.1
  - install cmdliner              1.3.0
  - install conf-gmp              4
  - install conf-gmp-powm-sec     3
  - install conf-pkg-config       3
  - install cppo                  1.6.9
  - install csexp                 1.5.2
  - install cstruct               6.2.0
  - install cstruct-unix          6.2.0
  - install domain-name           0.4.0
  - install dune                  3.16.0
  - install dune-configurator     3.16.0
  - install duration              0.2.1
  - install eqaf                  0.9
  - install fmt                   0.9.0
  - install gmap                  0.3.0
  - install hkdf                  1.0.4
  - install ipaddr                5.6.0
  - install logs                  0.7.0
  - install lwt                   5.7.0
  - install macaddr               5.6.0
  - install mirage-clock          4.2.0
  - install mirage-crypto         0.11.3
  - install mirage-crypto-ec      0.11.3
  - install mirage-crypto-pk      0.11.3
  - install mirage-crypto-rng     0.11.3
  - install mirage-crypto-rng-lwt 0.11.3
  - install mirage-flow           4.0.2
  - install mirage-kv             6.1.1
  - install mtime                 2.0.0
  - install ocaml-syntax-shims    1.0.0
  - install ocamlbuild            0.15.0
  - install ocamlfind             1.9.6
  - install ocplib-endian         1.2
  - install optint                0.3.0
  - install ounit2                2.2.7
  - install pbkdf                 1.2.0
  - install ptime                 1.1.0
  - install randomconv            0.1.3
  - install re                    1.11.0
  - install seq                   base
  - install sexplib0              v0.16.0
  - install stdlib-shims          0.3.0
  - install topkg                 1.0.7
  - install uutf                  1.0.3
  - install x509                  0.16.5
  - install zarith                1.14


<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved asn1-combinators.0.2.6  (cached)
-> retrieved astring.0.8.5  (cached)
-> retrieved base64.3.5.1  (cached)
-> retrieved conf-gmp.4  (cached)
-> retrieved conf-gmp-powm-sec.3  (cached)
-> installed conf-pkg-config.3
-> retrieved cppo.1.6.9  (cached)
-> retrieved cmdliner.1.3.0  (cached)
-> retrieved alcotest.1.8.0  (cached)
-> installed conf-gmp.4
-> retrieved csexp.1.5.2  (cached)
-> retrieved cstruct.6.2.0, cstruct-unix.6.2.0  (cached)
-> retrieved domain-name.0.4.0  (cached)
-> installed conf-gmp-powm-sec.3
-> retrieved duration.0.2.1  (cached)
-> retrieved eqaf.0.9  (cached)
-> retrieved fmt.0.9.0  (cached)
-> retrieved gmap.0.3.0  (cached)
-> retrieved hkdf.1.0.4  (cached)
-> retrieved logs.0.7.0  (cached)
-> retrieved ipaddr.5.6.0, macaddr.5.6.0  (cached)
-> retrieved mirage-clock.4.2.0  (cached)
-> retrieved lwt.5.7.0  (cached)
-> retrieved mirage-flow.4.0.2  (cached)
-> retrieved mirage-kv.6.1.1  (cached)
-> retrieved mtime.2.0.0  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocamlbuild.0.15.0  (cached)
-> retrieved ocamlfind.1.9.6  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved optint.0.3.0  (cached)
-> retrieved ounit2.2.2.7  (cached)
-> retrieved dune.3.16.0, dune-configurator.3.16.0  (cached)
-> retrieved mirage-crypto.0.11.3, mirage-crypto-ec.0.11.3, mirage-crypto-pk.0.11.3, mirage-crypto-rng.0.11.3, mirage-crypto-rng-lwt.0.11.3  (cached)
-> retrieved pbkdf.1.2.0  (cached)
-> retrieved ptime.1.1.0  (cached)
-> retrieved seq.base  (cached)
-> retrieved randomconv.0.1.3  (cached)
-> retrieved re.1.11.0  (cached)
-> retrieved sexplib0.v0.16.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved uutf.1.0.3  (cached)
-> installed cmdliner.1.3.0
-> installed seq.base
-> retrieved topkg.1.0.7  (cached)
-> retrieved x509.0.16.5  (cached)
-> retrieved zarith.1.14  (cached)
-> installed ocamlbuild.0.15.0
-> installed ocamlfind.1.9.6
-> installed base-bytes.base
-> installed zarith.1.14
-> installed topkg.1.0.7
-> installed uutf.1.0.3
-> installed mtime.2.0.0
-> installed fmt.0.9.0
-> installed ptime.1.1.0
-> installed astring.0.8.5
-> installed dune.3.16.0
-> installed mirage-clock.4.2.0
-> installed duration.0.2.1
-> installed gmap.0.3.0
-> installed csexp.1.5.2
-> installed base64.3.5.1
-> installed cppo.1.6.9
-> installed cstruct.6.2.0
-> installed domain-name.0.4.0
-> installed macaddr.5.6.0
-> installed ocaml-syntax-shims.1.0.0
-> installed optint.0.3.0
-> installed re.1.11.0
-> installed sexplib0.v0.16.0
-> installed stdlib-shims.0.3.0
-> installed randomconv.0.1.3
-> installed cstruct-unix.6.2.0
-> installed ocplib-endian.1.2
-> installed eqaf.0.9
-> installed ipaddr.5.6.0
-> installed asn1-combinators.0.2.6
-> installed ounit2.2.2.7
-> installed alcotest.1.8.0
-> installed dune-configurator.3.16.0
-> installed mirage-crypto.0.11.3
-> installed hkdf.1.0.4
-> installed pbkdf.1.2.0
-> installed lwt.5.7.0
-> installed mirage-flow.4.0.2
-> installed mirage-kv.6.1.1
-> installed logs.0.7.0
-> installed mirage-crypto-rng.0.11.3
-> installed mirage-crypto-rng-lwt.0.11.3
-> installed mirage-crypto-pk.0.11.3
-> installed mirage-crypto-ec.0.11.3
-> installed x509.0.16.5
Done.
# Run eval $(opam env) to update the current shell environment
2024-08-20 07:09.14 ---> using "b46a477559dfeba2c9db4a1e4741744082a59dfd4c350c60c77f1469ea33e069" from cache


/src: (copy (src .) (dst /src))
2024-08-20 07:09.14 ---> using "ef91474cd6fbc55433515f5fcd101a8366a5f59cc60bc5dd719722b6c96add9b" from cache


/src: (run (shell "opam exec -- dune build --only-packages=tls,tls-mirage,tls-lwt @install @check @runtest && rm -rf _build"))
(cd _build/default/tests && ./feedback.exe)
Looping 10 times, 1024 bytes.
[time] 0.001502.04 s
(cd _build/default/tests && ./key_derivation.exe)
Testing `Key derivation tests'.
This run has ID `OYOKRY40'.


  [OK]          key extraction and derivation          0   initial extract.
  [OK]          key extraction and derivation          1   initial derive.
  [OK]          key extraction and derivation          2   handshake extract.
  [OK]          key extraction and derivation          3   derive c hs.
  [OK]          key extraction and derivation          4   derive s hs.
  [OK]          key extraction and derivation          5   derive finished.
  [OK]          key extraction and derivation          6   derive master.
  [OK]          key extraction and derivation          7   extract master.
  [OK]          key extraction and derivation          8   derive handshake k...
  [OK]          key extraction and derivation          9   derive traffic keys.
  [OK]          key extraction and derivation         10   application write ...
  [OK]          key extraction and derivation         11   application read k...
  [OK]          key extraction and derivation         12   hs read keys.
  [OK]          key extraction and derivation         13   resumption key.
  [OK]          key extraction and derivation         14   payload.
  [OK]          key extraction and derivation         15   processed payload.
  [OK]          key extraction and derivation         16   self signature.
  [OK]          key extraction and derivation         17   wire signature.
  [OK]          key extraction and derivation         18   res secret.
  [OK]          key extraction and derivation         19   early resumed.
  [OK]          key extraction and derivation         20   binder.
  [OK]          key extraction and derivation         21   x25519.


Full test results in `/src/_build/default/tests/_build/_tests/Key derivation tests'.
Test Successful in 0.007s. 22 tests run.
(cd _build/default/tests && ./unittestrunner.exe)
.....................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................
Ran: 597 tests in: 0.22 seconds.
OK
2024-08-20 07:09.14 ---> using "a49e590050b9e5854a99aa57f8296892311de087beedc4b3c680c5f09f1fdbdc" from cache
Job succeeded
2024-08-20 07:09.15: Job succeeded