(not at the head of any monitored branch or PR)
2026-04-30 02:04.43: New job: test digestif.0.9.0 with dune.3.23.0~alpha2, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29824/head (89a6ae888498500bf7c0fc05361da936fc6acacf)
                              on debian-13-ocaml-4.14/amd64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29824/head" && git reset --hard 89a6ae88
git fetch origin master
git merge --no-edit d1c56642b8ca7e1166c90bfe0c74f38007bbad58
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:9fe84ffeeaa92507d198c7af8adb382726e06ae36c031f5ef645a3241cac0353
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn dune.3.23.0~alpha2 3.23.0~alpha2
RUN opam reinstall dune.3.23.0~alpha2; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'dune.3.23.0~alpha2' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall digestif.0.9.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'digestif.0.9.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test digestif.0.9.0) || true
RUN opam reinstall --with-test --verbose digestif.0.9.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'digestif.0.9.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

END-OF-DOCKERFILE
docker build -f ../Dockerfile .

2026-04-30 02:04.43: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:9fe84ffeeaa92507d198c7af8adb382726e06ae36c031f5ef645a3241cac0353-dune.3.23.0~alpha2-digestif.0.9.0-89a6ae888498500bf7c0fc05361da936fc6acacf"
2026-04-30 02:04.43: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:9fe84ffeeaa92507d198c7af8adb382726e06ae36c031f5ef645a3241cac0353)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -ni"))
 (run (shell "opam option solver=builtin-0install && opam config report"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMPRECISETRACKING 1)
 (env CI true)
 (env OPAM_REPO_CI true)
 (run (shell "rm -rf opam-repository/"))
 (copy (src .) (dst opam-repository/))
 (run (shell "opam repository set-url --strict default opam-repository/"))
 (run (network host)
      (shell "opam update --depexts || true"))
 (run (shell "opam pin add -k version -yn dune.3.23.0~alpha2 3.23.0~alpha2"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dune.3.23.0~alpha2;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'dune.3.23.0~alpha2' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall digestif.0.9.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'digestif.0.9.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test digestif.0.9.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose digestif.0.9.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'digestif.0.9.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-04-30 02:04.43: Waiting for resource in pool OCluster
2026-04-30 08:41.38: Waiting for worker…
2026-04-30 08:44.13: Got resource from pool OCluster
Building on eumache.caelum.ci.dev
All commits already cached
Updating files:  63% (12011/18887)
Updating files:  64% (12088/18887)
Updating files:  65% (12277/18887)
Updating files:  66% (12466/18887)
Updating files:  67% (12655/18887)
Updating files:  68% (12844/18887)
Updating files:  69% (13033/18887)
Updating files:  70% (13221/18887)
Updating files:  71% (13410/18887)
Updating files:  72% (13599/18887)
Updating files:  73% (13788/18887)
Updating files:  74% (13977/18887)
Updating files:  75% (14166/18887)
Updating files:  76% (14355/18887)
Updating files:  77% (14543/18887)
Updating files:  78% (14732/18887)
Updating files:  79% (14921/18887)
Updating files:  80% (15110/18887)
Updating files:  81% (15299/18887)
Updating files:  82% (15488/18887)
Updating files:  83% (15677/18887)
Updating files:  84% (15866/18887)
Updating files:  85% (16054/18887)
Updating files:  86% (16243/18887)
Updating files:  87% (16432/18887)
Updating files:  88% (16621/18887)
Updating files:  89% (16810/18887)
Updating files:  90% (16999/18887)
Updating files:  91% (17188/18887)
Updating files:  92% (17377/18887)
Updating files:  93% (17565/18887)
Updating files:  94% (17754/18887)
Updating files:  95% (17943/18887)
Updating files:  96% (18132/18887)
Updating files:  97% (18321/18887)
Updating files:  98% (18510/18887)
Updating files:  99% (18699/18887)
Updating files: 100% (18887/18887)
Updating files: 100% (18887/18887), done.
HEAD is now at d1c56642b8 Merge pull request #29820 from jmid/core-0.17.1-bound
Merge made by the 'ort' strategy.
 .../chrome-trace/chrome-trace.3.23.0~alpha2/opam   | 39 +++++++++++
 .../dune-action-plugin.3.23.0~alpha2/opam          | 52 ++++++++++++++
 .../dune-action-trace.3.23.0~alpha2/opam           | 39 +++++++++++
 .../dune-build-info.3.23.0~alpha2/opam             | 45 ++++++++++++
 .../dune-configurator.3.23.0~alpha2/opam           | 49 +++++++++++++
 packages/dune-glob/dune-glob.3.23.0~alpha2/opam    | 42 ++++++++++++
 .../dune-private-libs.3.23.0~alpha2/opam           | 50 ++++++++++++++
 .../dune-rpc-lwt/dune-rpc-lwt.3.23.0~alpha2/opam   | 41 +++++++++++
 packages/dune-rpc/dune-rpc.3.23.0~alpha2/opam      | 44 ++++++++++++
 packages/dune-site/dune-site.3.23.0~alpha2/opam    | 37 ++++++++++
 packages/dune/dune.3.23.0~alpha2/opam              | 80 ++++++++++++++++++++++
 packages/dyn/dyn.3.23.0~alpha2/opam                | 40 +++++++++++
 packages/fs-io/fs-io.3.23.0~alpha2/opam            | 39 +++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.23.0~alpha2/opam  | 43 ++++++++++++
 packages/ordering/ordering.3.23.0~alpha2/opam      | 38 ++++++++++
 packages/stdune/stdune.3.23.0~alpha2/opam          | 46 +++++++++++++
 .../top-closure/top-closure.3.23.0~alpha2/opam     | 38 ++++++++++
 packages/xdg/xdg.3.23.0~alpha2/opam                | 39 +++++++++++
 18 files changed, 801 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.23.0~alpha2/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.23.0~alpha2/opam
 create mode 100644 packages/dune-action-trace/dune-action-trace.3.23.0~alpha2/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.23.0~alpha2/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.23.0~alpha2/opam
 create mode 100644 packages/dune-glob/dune-glob.3.23.0~alpha2/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.23.0~alpha2/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.23.0~alpha2/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.23.0~alpha2/opam
 create mode 100644 packages/dune-site/dune-site.3.23.0~alpha2/opam
 create mode 100644 packages/dune/dune.3.23.0~alpha2/opam
 create mode 100644 packages/dyn/dyn.3.23.0~alpha2/opam
 create mode 100644 packages/fs-io/fs-io.3.23.0~alpha2/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.23.0~alpha2/opam
 create mode 100644 packages/ordering/ordering.3.23.0~alpha2/opam
 create mode 100644 packages/stdune/stdune.3.23.0~alpha2/opam
 create mode 100644 packages/top-closure/top-closure.3.23.0~alpha2/opam
 create mode 100644 packages/xdg/xdg.3.23.0~alpha2/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:9fe84ffeeaa92507d198c7af8adb382726e06ae36c031f5ef645a3241cac0353)
Unable to find image 'ocaml/opam:debian-13-ocaml-4.14@sha256:9fe84ffeeaa92507d198c7af8adb382726e06ae36c031f5ef645a3241cac0353' locally
docker.io/ocaml/opam@sha256:9fe84ffeeaa92507d198c7af8adb382726e06ae36c031f5ef645a3241cac0353: Pulling from ocaml/opam
3b32e3bb7338: Pulling fs layer
745aa02d649b: Pulling fs layer
bc737f5d3c43: Pulling fs layer
435aae15a5aa: Pulling fs layer
0c18c39f6bae: Pulling fs layer
eef74b82df23: Pulling fs layer
f7d9cf0406d8: Pulling fs layer
01a1dc37e798: Pulling fs layer
4960811e07ec: Pulling fs layer
be2894c36d5e: Pulling fs layer
b5a017ae191d: Pulling fs layer
3ba39ce4e9c9: Pulling fs layer
1db570dbe1c8: Pulling fs layer
753bb4b44994: Pulling fs layer
b5a1e811909d: Pulling fs layer
6f3d83ba47b6: Pulling fs layer
002305272cbf: Pulling fs layer
249535cd82cd: Pulling fs layer
87fe8c2a0989: Pulling fs layer
b6932f04a343: Pulling fs layer
17b274223ca8: Pulling fs layer
4f4fb700ef54: Pulling fs layer
924952a8fbf8: Pulling fs layer
0c18c39f6bae: Waiting
435aae15a5aa: Waiting
17671b650f63: Pulling fs layer
eef74b82df23: Waiting
9fe75d873195: Pulling fs layer
87fe8c2a0989: Waiting
24216535046d: Pulling fs layer
b6932f04a343: Waiting
f7d9cf0406d8: Waiting
b5a1e811909d: Waiting
ac2e1c9e90df: Pulling fs layer
01a1dc37e798: Waiting
c2126be13b26: Pulling fs layer
6f3d83ba47b6: Waiting
3ba39ce4e9c9: Waiting
01ff22a5eb70: Pulling fs layer
4960811e07ec: Waiting
be2894c36d5e: Waiting
50415235a68f: Pulling fs layer
b5a017ae191d: Waiting
1db570dbe1c8: Waiting
deb6182b549b: Pulling fs layer
753bb4b44994: Waiting
249535cd82cd: Waiting
002305272cbf: Waiting
ad728fb9a18c: Pulling fs layer
a36bcae85a3d: Pulling fs layer
17b274223ca8: Waiting
17671b650f63: Waiting
9fe75d873195: Waiting
1c746fdc6a3a: Pulling fs layer
4351b787b295: Pulling fs layer
24216535046d: Waiting
380abb093977: Pulling fs layer
ac2e1c9e90df: Waiting
0fc1b10f3fd9: Pulling fs layer
c2126be13b26: Waiting
01ff22a5eb70: Waiting
966bc35978c3: Pulling fs layer
ae53b61ccb9e: Pulling fs layer
50415235a68f: Waiting
d8ada9072f1a: Pulling fs layer
deb6182b549b: Waiting
ad728fb9a18c: Waiting
70f923473ca1: Pulling fs layer
a36bcae85a3d: Waiting
df81036acc4a: Pulling fs layer
1b9253ea29a0: Pulling fs layer
14d08e4f5c89: Pulling fs layer
4351b787b295: Waiting
380abb093977: Waiting
0fc1b10f3fd9: Waiting
966bc35978c3: Waiting
ae53b61ccb9e: Waiting
d8ada9072f1a: Waiting
70f923473ca1: Waiting
df81036acc4a: Waiting
1b9253ea29a0: Waiting
14d08e4f5c89: Waiting
924952a8fbf8: Waiting
4f4fb700ef54: Waiting
1c746fdc6a3a: Waiting
745aa02d649b: Verifying Checksum
745aa02d649b: Download complete
bc737f5d3c43: Verifying Checksum
bc737f5d3c43: Download complete
0c18c39f6bae: Verifying Checksum
0c18c39f6bae: Download complete
3b32e3bb7338: Verifying Checksum
3b32e3bb7338: Download complete
435aae15a5aa: Download complete
f7d9cf0406d8: Verifying Checksum
f7d9cf0406d8: Download complete
4960811e07ec: Verifying Checksum
4960811e07ec: Download complete
01a1dc37e798: Verifying Checksum
01a1dc37e798: Download complete
be2894c36d5e: Verifying Checksum
be2894c36d5e: Download complete
b5a017ae191d: Verifying Checksum
b5a017ae191d: Download complete
1db570dbe1c8: Verifying Checksum
1db570dbe1c8: Download complete
3ba39ce4e9c9: Verifying Checksum
3ba39ce4e9c9: Download complete
b5a1e811909d: Download complete
753bb4b44994: Verifying Checksum
753bb4b44994: Download complete
002305272cbf: Verifying Checksum
002305272cbf: Download complete
6f3d83ba47b6: Verifying Checksum
6f3d83ba47b6: Download complete
87fe8c2a0989: Download complete
249535cd82cd: Verifying Checksum
249535cd82cd: Download complete
b6932f04a343: Verifying Checksum
b6932f04a343: Download complete
3b32e3bb7338: Pull complete
745aa02d649b: Pull complete
bc737f5d3c43: Pull complete
4f4fb700ef54: Verifying Checksum
4f4fb700ef54: Download complete
17b274223ca8: Download complete
924952a8fbf8: Verifying Checksum
924952a8fbf8: Download complete
17671b650f63: Download complete
435aae15a5aa: Pull complete
0c18c39f6bae: Pull complete
9fe75d873195: Verifying Checksum
9fe75d873195: Download complete
24216535046d: Verifying Checksum
24216535046d: Download complete
eef74b82df23: Verifying Checksum
eef74b82df23: Download complete
ac2e1c9e90df: Verifying Checksum
ac2e1c9e90df: Download complete
01ff22a5eb70: Verifying Checksum
01ff22a5eb70: Download complete
c2126be13b26: Verifying Checksum
c2126be13b26: Download complete
50415235a68f: Verifying Checksum
50415235a68f: Download complete
a36bcae85a3d: Download complete
ad728fb9a18c: Verifying Checksum
ad728fb9a18c: Download complete
deb6182b549b: Verifying Checksum
deb6182b549b: Download complete
380abb093977: Verifying Checksum
380abb093977: Download complete
1c746fdc6a3a: Verifying Checksum
1c746fdc6a3a: Download complete
966bc35978c3: Download complete
ae53b61ccb9e: Download complete
0fc1b10f3fd9: Verifying Checksum
0fc1b10f3fd9: Download complete
d8ada9072f1a: Verifying Checksum
d8ada9072f1a: Download complete
df81036acc4a: Verifying Checksum
df81036acc4a: Download complete
1b9253ea29a0: Verifying Checksum
1b9253ea29a0: Download complete
4351b787b295: Verifying Checksum
4351b787b295: Download complete
14d08e4f5c89: Verifying Checksum
14d08e4f5c89: Download complete
70f923473ca1: Verifying Checksum
70f923473ca1: Download complete
eef74b82df23: Pull complete
f7d9cf0406d8: Pull complete
01a1dc37e798: Pull complete
4960811e07ec: Pull complete
be2894c36d5e: Pull complete
b5a017ae191d: Pull complete
3ba39ce4e9c9: Pull complete
1db570dbe1c8: Pull complete
753bb4b44994: Pull complete
b5a1e811909d: Pull complete
6f3d83ba47b6: Pull complete
002305272cbf: Pull complete
249535cd82cd: Pull complete
87fe8c2a0989: Pull complete
b6932f04a343: Pull complete
17b274223ca8: Pull complete
4f4fb700ef54: Pull complete
924952a8fbf8: Pull complete
17671b650f63: Pull complete
9fe75d873195: Pull complete
24216535046d: Pull complete
ac2e1c9e90df: Pull complete
c2126be13b26: Pull complete
01ff22a5eb70: Pull complete
50415235a68f: Pull complete
deb6182b549b: Pull complete
ad728fb9a18c: Pull complete
a36bcae85a3d: Pull complete
1c746fdc6a3a: Pull complete
4351b787b295: Pull complete
380abb093977: Pull complete
0fc1b10f3fd9: Pull complete
966bc35978c3: Pull complete
ae53b61ccb9e: Pull complete
d8ada9072f1a: Pull complete
70f923473ca1: Pull complete
df81036acc4a: Pull complete
1b9253ea29a0: Pull complete
14d08e4f5c89: Pull complete
Digest: sha256:9fe84ffeeaa92507d198c7af8adb382726e06ae36c031f5ef645a3241cac0353
Status: Downloaded newer image for ocaml/opam@sha256:9fe84ffeeaa92507d198c7af8adb382726e06ae36c031f5ef645a3241cac0353
2026-04-30 08:44.21 ---> using "59750879172620501422dd230c4db220684ca7fe3e97409754eb72dcd3390183" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-04-30 08:44.21 ---> using "b9ebb375f27da820f646269f579489455309b96c19083cd92f7f6ddd05a4b5f2" from cache

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

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

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

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-30 08:44.21 ---> using "a861010f9e8d58738e62217a8c0fc067b85ae67b915e1ef93e08d814bb3c914c" from cache

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.1
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=13
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.3"}]
# compiler-packages    ocaml-base-compiler.4.14.3, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.3
2026-04-30 08:44.21 ---> using "a880c606232c92d84d818c349c45696fe9be139917bfa5f7b1065b497e8df441" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2026-04-30 08:44.21 ---> using "47c085e53aa5880966ff9fc1e1e12a4661255166181f7931a397db06034201cf" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-30 08:44.23 ---> using "4f46738dfb91aa0cd6670022d574de26b7ba05050d8f85957ea4872d96399e01" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-30 08:44.23 ---> using "f445e8c26fbca2dd0e343fb9cad949aab8e50ebe8f19361a10c799b6322ab39c" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [129 kB]
- Fetched 219 kB in 0s (855 kB/s)
- Reading package lists...
- 
2026-04-30 08:44.23 ---> using "b966a5b49a15ba3eb63ca44315c18e89b0e8b1ab5327a74622eb8f27705503f7" from cache

/home/opam: (run (shell "opam pin add -k version -yn dune.3.23.0~alpha2 3.23.0~alpha2"))
dune is now pinned to version 3.23.0~alpha2
2026-04-30 08:44.23 ---> using "25765793fc7cef20054e052a9de3d7d38466f3811e35fee48d28bad9710db3b2" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dune.3.23.0~alpha2;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'dune.3.23.0~alpha2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
dune.3.23.0~alpha2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
  - install dune 3.23.0~alpha2 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.23.0~alpha2  (cached)
-> installed dune.3.23.0~alpha2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 08:44.23 ---> using "8638839e5ae5cf3f1965d4f7cf42b88935780d5bcff7e41a79deffdd572bdcbf" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall digestif.0.9.0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'digestif.0.9.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
digestif.0.9.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 6 packages
  - install base-bytes      base  [required by digestif]
  - install bigarray-compat 1.1.0 [required by digestif]
  - install digestif        0.9.0
  - install eqaf            0.10  [required by digestif]
  - install ocamlfind       1.9.8 [required by base-bytes]
  - install stdlib-shims    0.3.0 [required by digestif]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bigarray-compat.1.1.0  (cached)
-> installed bigarray-compat.1.1.0
-> retrieved digestif.0.9.0  (cached)
-> retrieved eqaf.0.10  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> installed stdlib-shims.0.3.0
-> installed eqaf.0.10
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed digestif.0.9.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 08:44.47 ---> saved as "ef8963b914958db2577962417c0e7a709883b74cebddb0859e5913648d27155d"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test digestif.0.9.0) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile digestif           0.9.0
=== install 13 packages
  - install   alcotest           1.9.1  [required by digestif]
  - install   astring            0.8.5  [required by digestif]
  - install   bos                0.2.1  [required by digestif]
  - install   cmdliner           2.1.1  [required by alcotest]
  - install   fmt                0.11.0 [required by digestif]
  - install   fpath              0.7.3  [required by digestif]
  - install   logs               0.10.0 [required by bos]
  - install   ocaml-syntax-shims 1.0.0  [required by alcotest]
  - install   ocamlbuild         0.16.1 [required by bos]
  - install   re                 1.14.0 [required by alcotest]
  - install   rresult            0.7.0  [required by digestif]
  - install   topkg              1.1.1  [required by bos]
  - install   uutf               1.0.4  [required by alcotest]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1  (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5  (https://opam.ocaml.org/cache)
-> retrieved bos.0.2.1  (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.1  (https://opam.ocaml.org/cache)
-> retrieved digestif.0.9.0  (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0  (https://opam.ocaml.org/cache)
-> retrieved fpath.0.7.3  (https://opam.ocaml.org/cache)
-> retrieved logs.0.10.0  (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0  (https://opam.ocaml.org/cache)
-> retrieved ocamlbuild.0.16.1  (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> retrieved rresult.0.7.0  (https://opam.ocaml.org/cache)
-> retrieved topkg.1.1.1  (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> installed ocaml-syntax-shims.1.0.0
-> installed re.1.14.0
-> installed cmdliner.2.1.1
-> removed   digestif.0.9.0
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed rresult.0.7.0
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed logs.0.10.0
-> installed fpath.0.7.3
-> installed alcotest.1.9.1
-> installed bos.0.2.1
-> installed digestif.0.9.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 08:45.33 ---> saved as "57443c274e0a1bee936d6d0d4041fd61c90a2940759f006ede91ea608441cb1e"

/home/opam: (run (shell  "opam reinstall --with-test --verbose digestif.0.9.0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'digestif.0.9.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
The following actions will be performed:
=== recompile 1 package
  - recompile digestif 0.9.0

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [digestif.0.9.0: extract]
-> retrieved digestif.0.9.0  (cached)
Processing  2/4: [digestif: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "digestif" "-j" "71" (CWD=/home/opam/.opam/4.14/.opam-switch/build/digestif.0.9.0)
Processing  2/4: [digestif: ./install/install.ml]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "./install/install.ml" (CWD=/home/opam/.opam/4.14/.opam-switch/build/digestif.0.9.0)
Processing  2/4: [digestif: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "digestif" "-j" "71" (CWD=/home/opam/.opam/4.14/.opam-switch/build/digestif.0.9.0)
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I test/conv/.test_conv.eobjs/byte -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -I src-c/.digestif_c.objs/public_cmi -I src-c/native/.rakia.objs/byte -no-alias-deps -o test/conv/.test_conv.eobjs/byte/dune__exe__Test_conv.cmo -c -impl test/conv/test_conv.ml)
- File "test/conv/test_conv.ml", line 9, characters 11-19:
- 9 | let strf = Fmt.strf
-                ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I test/c/.test.eobjs/byte -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -I src-c/.digestif_c.objs/public_cmi -I src-c/native/.rakia.objs/byte -no-alias-deps -o test/c/.test.eobjs/byte/dune__exe__Test.cmo -c -impl test/c/test.ml)
- File "test/test.ml", line 37, characters 2-10:
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/test.ml", line 475, characters 22-30:
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/test.ml", line 493, characters 22-30:
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I test/conv/.test_conv.eobjs/byte -I test/conv/.test_conv.eobjs/native -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -I src-c/.digestif_c.objs/native -I src-c/.digestif_c.objs/public_cmi -I src-c/native/.rakia.objs/byte -I src-c/native/.rakia.objs/native -intf-suffix .ml -no-alias-deps -o test/conv/.test_conv.eobjs/native/dune__exe__Test_conv.cmx -c -impl test/conv/test_conv.ml)
- File "test/conv/test_conv.ml", line 9, characters 11-19:
- 9 | let strf = Fmt.strf
-                ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlc.opt -w -40 -g -bin-annot -I test/ocaml/.test.eobjs/byte -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -I src-ocaml/.digestif_ocaml.objs/public_cmi -no-alias-deps -o test/ocaml/.test.eobjs/byte/dune__exe__Test.cmo -c -impl test/ocaml/test.ml)
- File "test/test.ml", line 37, characters 2-10:
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/test.ml", line 475, characters 22-30:
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/test.ml", line 493, characters 22-30:
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I test/c/.test.eobjs/byte -I test/c/.test.eobjs/native -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -I src-c/.digestif_c.objs/native -I src-c/.digestif_c.objs/public_cmi -I src-c/native/.rakia.objs/byte -I src-c/native/.rakia.objs/native -intf-suffix .ml -no-alias-deps -o test/c/.test.eobjs/native/dune__exe__Test.cmx -c -impl test/c/test.ml)
- File "test/test.ml", line 37, characters 2-10:
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/test.ml", line 475, characters 22-30:
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/test.ml", line 493, characters 22-30:
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I test/ocaml/.test.eobjs/byte -I test/ocaml/.test.eobjs/native -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/alcotest/engine -I /home/opam/.opam/4.14/lib/alcotest/stdlib_ext -I /home/opam/.opam/4.14/lib/astring -I /home/opam/.opam/4.14/lib/bigarray-compat -I /home/opam/.opam/4.14/lib/cmdliner -I /home/opam/.opam/4.14/lib/eqaf -I /home/opam/.opam/4.14/lib/fmt -I /home/opam/.opam/4.14/lib/fmt/cli -I /home/opam/.opam/4.14/lib/fmt/tty -I /home/opam/.opam/4.14/lib/re -I /home/opam/.opam/4.14/lib/stdlib-shims -I /home/opam/.opam/4.14/lib/uutf -I src-ocaml/.digestif_ocaml.objs/native -I src-ocaml/.digestif_ocaml.objs/public_cmi -intf-suffix .ml -no-alias-deps -o test/ocaml/.test.eobjs/native/dune__exe__Test.cmx -c -impl test/ocaml/test.ml)
- File "test/test.ml", line 37, characters 2-10:
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/test.ml", line 475, characters 22-30:
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "test/test.ml", line 493, characters 22-30:
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- (cd _build/default/test/conv && ./test_conv.exe --color=always)
- Testing `digestif'.
- This run has ID `TD97EEMF'.
- 
-   [OK]          of_hex 0                       0   hex:0.
-   [OK]          of_hex 0                       1   hex:1.
-   [OK]          of_hex 0                       2   hex:2.
-   [OK]          of_hex 0                       3   hex:3.
-   [OK]          of_hex 0                       4   hex:4.
-   [OK]          of_hex 0                       5   hex:5.
-   [OK]          of_hex 0                       6   hex:6.
-   [OK]          of_hex 0                       7   hex:7.
-   [OK]          of_hex 0                       8   hex:8.
-   [OK]          of_hex 0                       9   hex:9.
-   [OK]          of_hex 0                      10   hex:10.
-   [OK]          of_hex 0                      11   hex:11.
-   [OK]          of_hex 0                      12   hex:12.
-   [OK]          of_hex 0                      13   hex:13.
-   [OK]          of_hex 0                      14   hex:14.
-   [OK]          of_hex 0                      15   hex:15.
-   [OK]          of_hex 0                      16   hex:16.
-   [OK]          of_hex 0                      17   hex:17.
-   [OK]          of_hex 0                      18   hex:18.
-   [OK]          of_hex 0                      19   hex:19.
-   [OK]          of_hex 0                      20   hex:20.
-   [OK]          of_hex 0                      21   hex:21.
-   [OK]          of_hex 0                      22   hex:22.
-   [OK]          of_hex 0                      23   hex:23.
-   [OK]          of_hex 0                      24   hex:24.
-   [OK]          of_hex 0                      25   hex:25.
-   [OK]          of_hex 0                      26   hex:26.
-   [OK]          of_hex 0                      27   hex:27.
-   [OK]          of_hex 0                      28   hex:28.
-   [OK]          of_hex 0                      29   hex:29.
-   [OK]          of_hex 0                      30   hex:30.
-   [OK]          of_hex 0                      31   hex:31.
-   [OK]          consistent_of_hex 0            0   consistent hex:0.
-   [OK]          consistent_of_hex 0            1   consistent hex:1.
-   [OK]          consistent_of_hex 0            2   consistent hex:2.
-   [OK]          consistent_of_hex 0            3   consistent hex:3.
-   [OK]          consistent_of_hex 0            4   consistent hex:4.
-   [OK]          consistent_of_hex 0            5   consistent hex:5.
-   [OK]          consistent_of_hex 0            6   consistent hex:6.
-   [OK]          consistent_of_hex 0            7   consistent hex:7.
-   [OK]          consistent_of_hex 0            8   consistent hex:8.
-   [OK]          consistent_of_hex 0            9   consistent hex:9.
-   [OK]          consistent_of_hex 0           10   consistent hex:10.
-   [OK]          consistent_of_hex 0           11   consistent hex:11.
-   [OK]          consistent_of_hex 0           12   consistent hex:12.
-   [OK]          consistent_of_hex 0           13   consistent hex:13.
-   [OK]          consistent_of_hex 0           14   consistent hex:14.
-   [OK]          consistent_of_hex 0           15   consistent hex:15.
-   [OK]          consistent_of_hex 0           16   consistent hex:16.
-   [OK]          consistent_of_hex 0           17   consistent hex:17.
-   [OK]          consistent_of_hex 0           18   consistent hex:18.
-   [OK]          consistent_of_hex 0           19   consistent hex:19.
-   [OK]          consistent_of_hex 0           20   consistent hex:20.
-   [OK]          consistent_of_hex 0           21   consistent hex:21.
-   [OK]          consistent_of_hex 0           22   consistent hex:22.
-   [OK]          consistent_of_hex 0           23   consistent hex:23.
-   [OK]          consistent_of_hex 0           24   consistent hex:24.
-   [OK]          consistent_of_hex 0           25   consistent hex:25.
-   [OK]          consistent_of_hex 0           26   consistent hex:26.
-   [OK]          consistent_of_hex 0           27   consistent hex:27.
-   [OK]          consistent_of_hex 0           28   consistent hex:28.
-   [OK]          consistent_of_hex 0           29   consistent hex:29.
-   [OK]          consistent_of_hex 0           30   consistent hex:30.
-   [OK]          consistent_of_hex 0           31   consistent hex:31.
-   [OK]          of_hex 1                       0   hex:0.
-   [OK]          of_hex 1                       1   hex:1.
-   [OK]          of_hex 1                       2   hex:2.
-   [OK]          of_hex 1                       3   hex:3.
-   [OK]          of_hex 1                       4   hex:4.
-   [OK]          of_hex 1                       5   hex:5.
-   [OK]          of_hex 1                       6   hex:6.
-   [OK]          of_hex 1                       7   hex:7.
-   [OK]          of_hex 1                       8   hex:8.
-   [OK]          of_hex 1                       9   hex:9.
-   [OK]          of_hex 1                      10   hex:10.
-   [OK]          of_hex 1                      11   hex:11.
-   [OK]          of_hex 1                      12   hex:12.
-   [OK]          of_hex 1                      13   hex:13.
-   [OK]          of_hex 1                      14   hex:14.
-   [OK]          of_hex 1                      15   hex:15.
-   [OK]          of_hex 1                      16   hex:16.
-   [OK]          of_hex 1                      17   hex:17.
-   [OK]          of_hex 1                      18   hex:18.
-   [OK]          of_hex 1                      19   hex:19.
-   [OK]          of_hex 1                      20   hex:20.
-   [OK]          of_hex 1                      21   hex:21.
-   [OK]          of_hex 1                      22   hex:22.
-   [OK]          of_hex 1                      23   hex:23.
-   [OK]          of_hex 1                      24   hex:24.
-   [OK]          of_hex 1                      25   hex:25.
-   [OK]          of_hex 1                      26   hex:26.
-   [OK]          of_hex 1                      27   hex:27.
-   [OK]          of_hex 1                      28   hex:28.
-   [OK]          of_hex 1                      29   hex:29.
-   [OK]          of_hex 1                      30   hex:30.
-   [OK]          of_hex 1                      31   hex:31.
-   [OK]          consistent_of_hex 1            0   consistent hex:0.
-   [OK]          consistent_of_hex 1            1   consistent hex:1.
-   [OK]          consistent_of_hex 1            2   consistent hex:2.
-   [OK]          consistent_of_hex 1            3   consistent hex:3.
-   [OK]          consistent_of_hex 1            4   consistent hex:4.
-   [OK]          consistent_of_hex 1            5   consistent hex:5.
-   [OK]          consistent_of_hex 1            6   consistent hex:6.
-   [OK]          consistent_of_hex 1            7   consistent hex:7.
-   [OK]          consistent_of_hex 1            8   consistent hex:8.
-   [OK]          consistent_of_hex 1            9   consistent hex:9.
-   [OK]          consistent_of_hex 1           10   consistent hex:10.
-   [OK]          consistent_of_hex 1           11   consistent hex:11.
-   [OK]          consistent_of_hex 1           12   consistent hex:12.
-   [OK]          consistent_of_hex 1           13   consistent hex:13.
-   [OK]          consistent_of_hex 1           14   consistent hex:14.
-   [OK]          consistent_of_hex 1           15   consistent hex:15.
-   [OK]          consistent_of_hex 1           16   consistent hex:16.
-   [OK]          consistent_of_hex 1           17   consistent hex:17.
-   [OK]          consistent_of_hex 1           18   consistent hex:18.
-   [OK]          consistent_of_hex 1           19   consistent hex:19.
-   [OK]          consistent_of_hex 1           20   consistent hex:20.
-   [OK]          consistent_of_hex 1           21   consistent hex:21.
-   [OK]          consistent_of_hex 1           22   consistent hex:22.
-   [OK]          consistent_of_hex 1           23   consistent hex:23.
-   [OK]          consistent_of_hex 1           24   consistent hex:24.
-   [OK]          consistent_of_hex 1           25   consistent hex:25.
-   [OK]          consistent_of_hex 1           26   consistent hex:26.
-   [OK]          consistent_of_hex 1           27   consistent hex:27.
-   [OK]          consistent_of_hex 1           28   consistent hex:28.
-   [OK]          consistent_of_hex 1           29   consistent hex:29.
-   [OK]          consistent_of_hex 1           30   consistent hex:30.
-   [OK]          consistent_of_hex 1           31   consistent hex:31.
-   [OK]          of_hex 2                       0   hex:0.
-   [OK]          of_hex 2                       1   hex:1.
-   [OK]          of_hex 2                       2   hex:2.
-   [OK]          of_hex 2                       3   hex:3.
-   [OK]          of_hex 2                       4   hex:4.
-   [OK]          of_hex 2                       5   hex:5.
-   [OK]          of_hex 2                       6   hex:6.
-   [OK]          of_hex 2                       7   hex:7.
-   [OK]          of_hex 2                       8   hex:8.
-   [OK]          of_hex 2                       9   hex:9.
-   [OK]          of_hex 2                      10   hex:10.
-   [OK]          of_hex 2                      11   hex:11.
-   [OK]          of_hex 2                      12   hex:12.
-   [OK]          of_hex 2                      13   hex:13.
-   [OK]          of_hex 2                      14   hex:14.
-   [OK]          of_hex 2                      15   hex:15.
-   [OK]          of_hex 2                      16   hex:16.
-   [OK]          of_hex 2                      17   hex:17.
-   [OK]          of_hex 2                      18   hex:18.
-   [OK]          of_hex 2                      19   hex:19.
-   [OK]          of_hex 2                      20   hex:20.
-   [OK]          of_hex 2                      21   hex:21.
-   [OK]          of_hex 2                      22   hex:22.
-   [OK]          of_hex 2                      23   hex:23.
-   [OK]          of_hex 2                      24   hex:24.
-   [OK]          of_hex 2                      25   hex:25.
-   [OK]          of_hex 2                      26   hex:26.
-   [OK]          of_hex 2                      27   hex:27.
-   [OK]          of_hex 2                      28   hex:28.
-   [OK]          of_hex 2                      29   hex:29.
-   [OK]          of_hex 2                      30   hex:30.
-   [OK]          of_hex 2                      31   hex:31.
-   [OK]          consistent_of_hex 2            0   consistent hex fail:0.
-   [OK]          consistent_of_hex 2            1   consistent hex fail:1.
-   [OK]          consistent_of_hex 2            2   consistent hex fail:2.
-   [OK]          consistent_of_hex 2            3   consistent hex fail:3.
-   [OK]          consistent_of_hex 2            4   consistent hex fail:4.
-   [OK]          consistent_of_hex 2            5   consistent hex fail:5.
-   [OK]          consistent_of_hex 2            6   consistent hex fail:6.
-   [OK]          consistent_of_hex 2            7   consistent hex fail:7.
-   [OK]          consistent_of_hex 2            8   consistent hex fail:8.
-   [OK]          consistent_of_hex 2            9   consistent hex fail:9.
-   [OK]          consistent_of_hex 2           10   consistent hex fail:10.
-   [OK]          consistent_of_hex 2           11   consistent hex fail:11.
-   [OK]          consistent_of_hex 2           12   consistent hex fail:12.
-   [OK]          consistent_of_hex 2           13   consistent hex fail:13.
-   [OK]          consistent_of_hex 2           14   consistent hex fail:14.
-   [OK]          consistent_of_hex 2           15   consistent hex fail:15.
-   [OK]          consistent_of_hex 2           16   consistent hex fail:16.
-   [OK]          consistent_of_hex 2           17   consistent hex fail:17.
-   [OK]          consistent_of_hex 2           18   consistent hex fail:18.
-   [OK]          consistent_of_hex 2           19   consistent hex fail:19.
-   [OK]          consistent_of_hex 2           20   consistent hex fail:20.
-   [OK]          consistent_of_hex 2           21   consistent hex fail:21.
-   [OK]          consistent_of_hex 2           22   consistent hex fail:22.
-   [OK]          consistent_of_hex 2           23   consistent hex fail:23.
-   [OK]          consistent_of_hex 2           24   consistent hex fail:24.
-   [OK]          consistent_of_hex 2           25   consistent hex fail:25.
-   [OK]          consistent_of_hex 2           26   consistent hex fail:26.
-   [OK]          consistent_of_hex 2           27   consistent hex fail:27.
-   [OK]          consistent_of_hex 2           28   consistent hex fail:28.
-   [OK]          consistent_of_hex 2           29   consistent hex fail:29.
-   [OK]          consistent_of_hex 2           30   consistent hex fail:30.
-   [OK]          consistent_of_hex 2           31   consistent hex fail:31.
-   [OK]          iso of_hex                     0   iso:0.
-   [OK]          iso of_hex                     1   iso:1.
-   [OK]          iso of_hex                     2   iso:2.
-   [OK]          iso of_hex                     3   iso:3.
-   [OK]          iso of_hex                     4   iso:4.
-   [OK]          iso of_hex                     5   iso:5.
-   [OK]          iso of_hex                     6   iso:6.
-   [OK]          iso of_hex                     7   iso:7.
-   [OK]          iso of_hex                     8   iso:8.
-   [OK]          iso of_hex                     9   iso:9.
-   [OK]          iso of_hex                    10   iso:10.
-   [OK]          iso of_hex                    11   iso:11.
-   [OK]          iso of_hex                    12   iso:12.
-   [OK]          iso of_hex                    13   iso:13.
-   [OK]          iso of_hex                    14   iso:14.
-   [OK]          iso of_hex                    15   iso:15.
-   [OK]          iso of_hex                    16   iso:16.
-   [OK]          iso of_hex                    17   iso:17.
-   [OK]          iso of_hex                    18   iso:18.
-   [OK]          iso of_hex                    19   iso:19.
-   [OK]          iso of_hex                    20   iso:20.
-   [OK]          iso of_hex                    21   iso:21.
-   [OK]          iso of_hex                    22   iso:22.
-   [OK]          iso of_hex                    23   iso:23.
-   [OK]          iso of_hex                    24   iso:24.
-   [OK]          iso of_hex                    25   iso:25.
-   [OK]          iso of_hex                    26   iso:26.
-   [OK]          iso of_hex                    27   iso:27.
-   [OK]          iso of_hex                    28   iso:28.
-   [OK]          iso of_hex                    29   iso:29.
-   [OK]          iso of_hex                    30   iso:30.
-   [OK]          iso of_hex                    31   iso:31.
-   [OK]          iso of_hex                    32   iso:32.
-   [OK]          iso of_hex                    33   iso:33.
-   [OK]          iso of_hex                    34   iso:34.
-   [OK]          iso of_hex                    35   iso:35.
-   [OK]          iso of_hex                    36   iso:36.
-   [OK]          iso of_hex                    37   iso:37.
-   [OK]          iso of_hex                    38   iso:38.
-   [OK]          iso of_hex                    39   iso:39.
-   [OK]          iso of_hex                    40   iso:40.
-   [OK]          iso of_hex                    41   iso:41.
-   [OK]          iso of_hex                    42   iso:42.
-   [OK]          iso of_hex                    43   iso:43.
-   [OK]          iso of_hex                    44   iso:44.
-   [OK]          iso of_hex                    45   iso:45.
-   [OK]          iso of_hex                    46   iso:46.
-   [OK]          iso of_hex                    47   iso:47.
-   [OK]          iso of_hex                    48   iso:48.
-   [OK]          iso of_hex                    49   iso:49.
-   [OK]          iso of_hex                    50   iso:50.
-   [OK]          iso of_hex                    51   iso:51.
-   [OK]          iso of_hex                    52   iso:52.
-   [OK]          iso of_hex                    53   iso:53.
-   [OK]          iso of_hex                    54   iso:54.
-   [OK]          iso of_hex                    55   iso:55.
-   [OK]          iso of_hex                    56   iso:56.
-   [OK]          iso of_hex                    57   iso:57.
-   [OK]          iso of_hex                    58   iso:58.
-   [OK]          iso of_hex                    59   iso:59.
-   [OK]          iso of_hex                    60   iso:60.
-   [OK]          iso of_hex                    61   iso:61.
-   [OK]          iso of_hex                    62   iso:62.
-   [OK]          iso of_hex                    63   iso:63.
-   [OK]          iso consistent_of_hex          0   iso:0.
-   [OK]          iso consistent_of_hex          1   iso:1.
-   [OK]          iso consistent_of_hex          2   iso:2.
-   [OK]          iso consistent_of_hex          3   iso:3.
-   [OK]          iso consistent_of_hex          4   iso:4.
-   [OK]          iso consistent_of_hex          5   iso:5.
-   [OK]          iso consistent_of_hex          6   iso:6.
-   [OK]          iso consistent_of_hex          7   iso:7.
-   [OK]          iso consistent_of_hex          8   iso:8.
-   [OK]          iso consistent_of_hex          9   iso:9.
-   [OK]          iso consistent_of_hex         10   iso:10.
-   [OK]          iso consistent_of_hex         11   iso:11.
-   [OK]          iso consistent_of_hex         12   iso:12.
-   [OK]          iso consistent_of_hex         13   iso:13.
-   [OK]          iso consistent_of_hex         14   iso:14.
-   [OK]          iso consistent_of_hex         15   iso:15.
-   [OK]          iso consistent_of_hex         16   iso:16.
-   [OK]          iso consistent_of_hex         17   iso:17.
-   [OK]          iso consistent_of_hex         18   iso:18.
-   [OK]          iso consistent_of_hex         19   iso:19.
-   [OK]          iso consistent_of_hex         20   iso:20.
-   [OK]          iso consistent_of_hex         21   iso:21.
-   [OK]          iso consistent_of_hex         22   iso:22.
-   [OK]          iso consistent_of_hex         23   iso:23.
-   [OK]          iso consistent_of_hex         24   iso:24.
-   [OK]          iso consistent_of_hex         25   iso:25.
-   [OK]          iso consistent_of_hex         26   iso:26.
-   [OK]          iso consistent_of_hex         27   iso:27.
-   [OK]          iso consistent_of_hex         28   iso:28.
-   [OK]          iso consistent_of_hex         29   iso:29.
-   [OK]          iso consistent_of_hex         30   iso:30.
-   [OK]          iso consistent_of_hex         31   iso:31.
-   [OK]          iso consistent_of_hex         32   iso:32.
-   [OK]          iso consistent_of_hex         33   iso:33.
-   [OK]          iso consistent_of_hex         34   iso:34.
-   [OK]          iso consistent_of_hex         35   iso:35.
-   [OK]          iso consistent_of_hex         36   iso:36.
-   [OK]          iso consistent_of_hex         37   iso:37.
-   [OK]          iso consistent_of_hex         38   iso:38.
-   [OK]          iso consistent_of_hex         39   iso:39.
-   [OK]          iso consistent_of_hex         40   iso:40.
-   [OK]          iso consistent_of_hex         41   iso:41.
-   [OK]          iso consistent_of_hex         42   iso:42.
-   [OK]          iso consistent_of_hex         43   iso:43.
-   [OK]          iso consistent_of_hex         44   iso:44.
-   [OK]          iso consistent_of_hex         45   iso:45.
-   [OK]          iso consistent_of_hex         46   iso:46.
-   [OK]          iso consistent_of_hex         47   iso:47.
-   [OK]          iso consistent_of_hex         48   iso:48.
-   [OK]          iso consistent_of_hex         49   iso:49.
-   [OK]          iso consistent_of_hex         50   iso:50.
-   [OK]          iso consistent_of_hex         51   iso:51.
-   [OK]          iso consistent_of_hex         52   iso:52.
-   [OK]          iso consistent_of_hex         53   iso:53.
-   [OK]          iso consistent_of_hex         54   iso:54.
-   [OK]          iso consistent_of_hex         55   iso:55.
-   [OK]          iso consistent_of_hex         56   iso:56.
-   [OK]          iso consistent_of_hex         57   iso:57.
-   [OK]          iso consistent_of_hex         58   iso:58.
-   [OK]          iso consistent_of_hex         59   iso:59.
-   [OK]          iso consistent_of_hex         60   iso:60.
-   [OK]          iso consistent_of_hex         61   iso:61.
-   [OK]          iso consistent_of_hex         62   iso:62.
-   [OK]          iso consistent_of_hex         63   iso:63.
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/digestif.0.9.0/_build/default/test/conv/_build/_tests/digestif'.
- Test Successful in 0.071s. 320 tests run.
- seed: [|50; 125; 117; 187; 203; 196; 113; 117; 56; 194; 64; 195|].
- (cd _build/default/test/c && ./test.exe --color=always)
- Testing `digestif'.
- This run has ID `6YMVBVKR'.
- 
-   [OK]          md5                                  0   md5.
-   [OK]          md5                                  1   md5.
-   [OK]          md5                                  2   md5.
-   [OK]          md5                                  3   md5.
-   [OK]          md5                                  4   md5.
-   [OK]          md5 (bigstring)                      0   md5.
-   [OK]          md5 (bigstring)                      1   md5.
-   [OK]          md5 (bigstring)                      2   md5.
-   [OK]          md5 (bigstring)                      3   md5.
-   [OK]          md5 (bigstring)                      4   md5.
-   [OK]          sha1                                 0   sha1.
-   [OK]          sha1                                 1   sha1.
-   [OK]          sha1                                 2   sha1.
-   [OK]          sha1                                 3   sha1.
-   [OK]          sha1                                 4   sha1.
-   [OK]          sha1 (bigstring)                     0   sha1.
-   [OK]          sha1 (bigstring)                     1   sha1.
-   [OK]          sha1 (bigstring)                     2   sha1.
-   [OK]          sha1 (bigstring)                     3   sha1.
-   [OK]          sha1 (bigstring)                     4   sha1.
-   [OK]          sha224                               0   sha224.
-   [OK]          sha224                               1   sha224.
-   [OK]          sha224                               2   sha224.
-   [OK]          sha224                               3   sha224.
-   [OK]          sha224                               4   sha224.
-   [OK]          sha224 (bigstring)                   0   sha224.
-   [OK]          sha224 (bigstring)                   1   sha224.
-   [OK]          sha224 (bigstring)                   2   sha224.
-   [OK]          sha224 (bigstring)                   3   sha224.
-   [OK]          sha224 (bigstring)                   4   sha224.
-   [OK]          sha256                               0   sha256.
-   [OK]          sha256                               1   sha256.
-   [OK]          sha256                               2   sha256.
-   [OK]          sha256                               3   sha256.
-   [OK]          sha256                               4   sha256.
-   [OK]          sha256 (bigstring)                   0   sha256.
-   [OK]          sha256 (bigstring)                   1   sha256.
-   [OK]          sha256 (bigstring)                   2   sha256.
-   [OK]          sha256 (bigstring)                   3   sha256.
-   [OK]          sha256 (bigstring)                   4   sha256.
-   [OK]          sha384                               0   sha384.
-   [OK]          sha384                               1   sha384.
-   [OK]          sha384                               2   sha384.
-   [OK]          sha384                               3   sha384.
-   [OK]          sha384                               4   sha384.
-   [OK]          sha384 (bigstring)                   0   sha384.
-   [OK]          sha384 (bigstring)                   1   sha384.
-   [OK]          sha384 (bigstring)                   2   sha384.
-   [OK]          sha384 (bigstring)                   3   sha384.
-   [OK]          sha384 (bigstring)                   4   sha384.
-   [OK]          sha512                               0   sha512.
-   [OK]          sha512                               1   sha512.
-   [OK]          sha512                               2   sha512.
-   [OK]          sha512                               3   sha512.
-   [OK]          sha512                               4   sha512.
-   [OK]          sha512 (bigstring)                   0   sha512.
-   [OK]          sha512 (bigstring)                   1   sha512.
-   [OK]          sha512 (bigstring)                   2   sha512.
-   [OK]          sha512 (bigstring)                   3   sha512.
-   [OK]          sha512 (bigstring)                   4   sha512.
-   [OK]          sha3_224                             0   sha3_224.
-   [OK]          sha3_224                             1   sha3_224.
-   [OK]          sha3_224                             2   sha3_224.
-   [OK]          sha3_224                             3   sha3_224.
-   [OK]          sha3_224                             4   sha3_224.
-   [OK]          sha3_224 (bigstring)                 0   sha3_224.
-   [OK]          sha3_224 (bigstring)                 1   sha3_224.
-   [OK]          sha3_224 (bigstring)                 2   sha3_224.
-   [OK]          sha3_224 (bigstring)                 3   sha3_224.
-   [OK]          sha3_224 (bigstring)                 4   sha3_224.
-   [OK]          sha3_256                             0   sha3_256.
-   [OK]          sha3_256                             1   sha3_256.
-   [OK]          sha3_256                             2   sha3_256.
-   [OK]          sha3_256                             3   sha3_256.
-   [OK]          sha3_256                             4   sha3_256.
-   [OK]          sha3_256 (bigstring)                 0   sha3_256.
-   [OK]          sha3_256 (bigstring)                 1   sha3_256.
-   [OK]          sha3_256 (bigstring)                 2   sha3_256.
-   [OK]          sha3_256 (bigstring)                 3   sha3_256.
-   [OK]          sha3_256 (bigstring)                 4   sha3_256.
-   [OK]          sha3_384                             0   sha3_384.
-   [OK]          sha3_384                             1   sha3_384.
-   [OK]          sha3_384                             2   sha3_384.
-   [OK]          sha3_384                             3   sha3_384.
-   [OK]          sha3_384                             4   sha3_384.
-   [OK]          sha3_384 (bigstring)                 0   sha3_384.
-   [OK]          sha3_384 (bigstring)                 1   sha3_384.
-   [OK]          sha3_384 (bigstring)                 2   sha3_384.
-   [OK]          sha3_384 (bigstring)                 3   sha3_384.
-   [OK]          sha3_384 (bigstring)                 4   sha3_384.
-   [OK]          sha3_512                             0   sha3_512.
-   [OK]          sha3_512                             1   sha3_512.
-   [OK]          sha3_512                             2   sha3_512.
-   [OK]          sha3_512                             3   sha3_512.
-   [OK]          sha3_512                             4   sha3_512.
-   [OK]          sha3_512 (bigstring)                 0   sha3_512.
-   [OK]          sha3_512 (bigstring)                 1   sha3_512.
-   [OK]          sha3_512 (bigstring)                 2   sha3_512.
-   [OK]          sha3_512 (bigstring)                 3   sha3_512.
-   [OK]          sha3_512 (bigstring)                 4   sha3_512.
-   [OK]          whirlpool                            0   whirlpool.
-   [OK]          whirlpool                            1   whirlpool.
-   [OK]          whirlpool                            2   whirlpool.
-   [OK]          whirlpool                            3   whirlpool.
-   [OK]          whirlpool                            4   whirlpool.
-   [OK]          whirlpool (bigstring)                0   whirlpool.
-   [OK]          whirlpool (bigstring)                1   whirlpool.
-   [OK]          whirlpool (bigstring)                2   whirlpool.
-   [OK]          whirlpool (bigstring)                3   whirlpool.
-   [OK]          whirlpool (bigstring)                4   whirlpool.
-   [OK]          blake2b                              0   blake2b.
-   [OK]          blake2b                              1   blake2b.
-   [OK]          blake2b                              2   blake2b.
-   [OK]          blake2b                              3   blake2b.
-   [OK]          blake2b                              4   blake2b.
-   [OK]          blake2b (bigstring)                  0   blake2b.
-   [OK]          blake2b (bigstring)                  1   blake2b.
-   [OK]          blake2b (bigstring)                  2   blake2b.
-   [OK]          blake2b (bigstring)                  3   blake2b.
-   [OK]          blake2b (bigstring)                  4   blake2b.
-   [OK]          rmd160                               0   rmd160.
-   [OK]          rmd160                               1   rmd160.
-   [OK]          rmd160                               2   rmd160.
-   [OK]          rmd160                               3   rmd160.
-   [OK]          rmd160                               4   rmd160.
-   [OK]          rmd160 (bigstring)                   0   rmd160.
-   [OK]          rmd160 (bigstring)                   1   rmd160.
-   [OK]          rmd160 (bigstring)                   2   rmd160.
-   [OK]          rmd160 (bigstring)                   3   rmd160.
-   [OK]          rmd160 (bigstring)                   4   rmd160.
-   [OK]          blake2s                              0   blake2s.
-   [OK]          blake2s                              1   blake2s.
-   [OK]          blake2s                              2   blake2s.
-   [OK]          blake2s                              3   blake2s.
-   [OK]          blake2s                              4   blake2s.
-   [OK]          blake2s (bigstring)                  0   blake2s.
-   [OK]          blake2s (bigstring)                  1   blake2s.
-   [OK]          blake2s (bigstring)                  2   blake2s.
-   [OK]          blake2s (bigstring)                  3   blake2s.
-   [OK]          blake2s (bigstring)                  4   blake2s.
-   [OK]          blake2s (keyed, input file)          0   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)          1   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)          2   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)          3   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)          4   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)          5   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)          6   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)          7   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)          8   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)          9   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         10   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         11   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         12   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         13   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         14   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         15   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         16   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         17   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         18   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         19   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         20   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         21   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         22   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         23   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         24   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         25   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         26   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         27   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         28   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         29   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         30   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         31   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         32   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         33   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         34   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         35   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         36   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         37   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         38   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         39   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         40   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         41   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         42   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         43   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         44   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         45   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         46   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         47   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         48   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         49   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         50   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         51   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         52   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         53   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         54   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         55   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         56   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         57   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         58   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         59   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         60   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         61   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         62   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         63   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         64   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         65   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         66   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         67   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         68   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         69   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         70   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         71   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         72   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         73   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         74   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         75   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         76   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         77   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         78   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         79   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         80   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         81   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         82   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         83   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         84   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         85   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         86   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         87   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         88   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         89   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         90   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         91   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         92   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         93   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         94   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         95   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         96   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         97   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         98   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         99   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        100   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        101   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        102   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        103   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        104   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        105   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        106   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        107   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        108   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        109   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        110   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        111   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        112   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        113   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        114   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        115   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        116   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        117   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        118   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        119   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        120   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        121   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        122   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        123   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        124   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        125   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        126   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        127   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        128   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        129   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        130   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        131   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        132   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        133   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        134   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        135   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        136   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        137   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        138   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        139   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        140   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        141   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        142   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        143   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        144   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        145   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        146   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        147   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        148   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        149   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        150   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        151   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        152   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        153   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        154   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        155   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        156   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        157   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        158   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        159   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        160   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        161   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        162   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        163   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        164   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        165   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        166   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        167   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        168   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        169   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        170   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        171   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        172   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        173   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        174   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        175   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        176   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        177   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        178   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        179   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        180   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        181   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        182   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        183   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        184   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        185   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        186   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        187   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        188   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        189   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        190   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        191   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        192   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        193   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        194   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        195   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        196   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        197   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        198   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        199   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        200   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        201   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        202   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        203   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        204   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        205   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        206   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        207   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        208   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        209   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        210   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        211   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        212   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        213   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        214   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        215   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        216   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        217   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        218   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        219   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        220   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        221   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        222   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        223   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        224   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        225   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        226   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        227   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        228   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        229   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        230   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        231   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        232   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        233   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        234   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        235   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        236   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        237   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        238   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        239   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        240   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        241   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        242   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        243   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        244   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        245   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        246   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        247   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        248   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        249   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        250   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        251   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        252   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        253   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        254   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)          0   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)          1   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)          2   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)          3   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)          4   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)          5   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)          6   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)          7   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)          8   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)          9   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         10   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         11   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         12   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         13   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         14   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         15   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         16   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         17   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         18   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         19   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         20   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         21   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         22   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         23   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         24   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         25   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         26   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         27   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         28   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         29   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         30   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         31   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         32   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         33   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         34   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         35   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         36   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         37   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         38   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         39   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         40   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         41   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         42   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         43   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         44   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         45   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         46   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         47   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         48   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         49   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         50   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         51   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         52   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         53   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         54   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         55   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         56   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         57   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         58   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         59   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         60   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         61   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         62   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         63   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         64   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         65   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         66   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         67   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         68   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         69   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         70   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         71   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         72   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         73   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         74   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         75   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         76   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         77   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         78   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         79   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         80   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         81   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         82   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         83   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         84   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         85   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         86   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         87   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         88   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         89   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         90   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         91   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         92   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         93   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         94   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         95   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         96   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         97   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         98   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         99   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        100   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        101   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        102   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        103   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        104   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        105   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        106   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        107   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        108   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        109   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        110   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        111   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        112   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        113   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        114   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        115   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        116   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        117   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        118   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        119   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        120   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        121   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        122   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        123   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        124   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        125   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        126   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        127   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        128   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        129   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        130   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        131   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        132   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        133   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        134   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        135   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        136   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        137   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        138   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        139   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        140   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        141   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        142   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        143   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        144   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        145   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        146   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        147   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        148   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        149   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        150   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        151   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        152   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        153   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        154   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        155   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        156   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        157   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        158   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        159   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        160   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        161   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        162   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        163   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        164   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        165   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        166   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        167   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        168   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        169   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        170   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        171   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        172   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        173   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        174   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        175   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        176   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        177   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        178   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        179   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        180   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        181   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        182   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        183   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        184   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        185   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        186   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        187   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        188   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        189   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        190   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        191   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        192   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        193   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        194   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        195   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        196   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        197   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        198   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        199   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        200   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        201   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        202   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        203   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        204   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        205   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        206   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        207   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        208   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        209   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        210   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        211   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        212   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        213   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        214   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        215   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        216   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        217   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        218   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        219   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        220   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        221   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        222   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        223   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        224   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        225   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        226   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        227   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        228   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        229   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        230   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        231   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        232   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        233   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        234   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        235   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        236   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        237   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        238   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        239   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        240   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        241   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        242   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        243   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        244   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        245   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        246   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        247   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        248   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        249   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        250   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        251   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        252   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        253   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        254   blake2{b,s}.
-   [OK]          blake2s (specialization)             0   BLAKE2S (digest-size...
-   [OK]          blake2s (specialization)             1   BLAKE2S (digest-size...
-   [OK]          blake2s (specialization)             2   BLAKE2S (digest-size...
-   [OK]          blake2b (specialization)             0   BLAKE2B (digest-size...
-   [OK]          blake2b (specialization)             1   BLAKE2B (digest-size...
-   [OK]          blake2b (specialization)             2   BLAKE2B (digest-size...
-   [OK]          ripemd160                            0   rmd160.
-   [OK]          ripemd160                            1   rmd160.
-   [OK]          ripemd160                            2   rmd160.
-   [OK]          ripemd160                            3   rmd160.
-   [OK]          ripemd160                            4   rmd160.
-   [OK]          ripemd160                            5   rmd160.
-   [OK]          ripemd160                            6   rmd160.
-   [OK]          ripemd160                            7   rmd160.
-   [OK]          ripemd160                            8   give me a million.
-   [OK]          sha3 (vector tests)                  0   ../sha3_224_fips_202...
-   [OK]          sha3 (vector tests)                  1   ../sha3_256_fips_202...
-   [OK]          sha3 (vector tests)                  2   ../sha3_384_fips_202...
-   [OK]          sha3 (vector tests)                  3   ../sha3_512_fips_202...
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/digestif.0.9.0/_build/default/test/c/_build/_tests/digestif'.
- Test Successful in 0.605s. 669 tests run.
- (cd _build/default/test/ocaml && ./test.exe --color=always)
- Testing `digestif'.
- This run has ID `F3S69B4R'.
- 
-   [OK]          md5                                  0   md5.
-   [OK]          md5                                  1   md5.
-   [OK]          md5                                  2   md5.
-   [OK]          md5                                  3   md5.
-   [OK]          md5                                  4   md5.
-   [OK]          md5 (bigstring)                      0   md5.
-   [OK]          md5 (bigstring)                      1   md5.
-   [OK]          md5 (bigstring)                      2   md5.
-   [OK]          md5 (bigstring)                      3   md5.
-   [OK]          md5 (bigstring)                      4   md5.
-   [OK]          sha1                                 0   sha1.
-   [OK]          sha1                                 1   sha1.
-   [OK]          sha1                                 2   sha1.
-   [OK]          sha1                                 3   sha1.
-   [OK]          sha1                                 4   sha1.
-   [OK]          sha1 (bigstring)                     0   sha1.
-   [OK]          sha1 (bigstring)                     1   sha1.
-   [OK]          sha1 (bigstring)                     2   sha1.
-   [OK]          sha1 (bigstring)                     3   sha1.
-   [OK]          sha1 (bigstring)                     4   sha1.
-   [OK]          sha224                               0   sha224.
-   [OK]          sha224                               1   sha224.
-   [OK]          sha224                               2   sha224.
-   [OK]          sha224                               3   sha224.
-   [OK]          sha224                               4   sha224.
-   [OK]          sha224 (bigstring)                   0   sha224.
-   [OK]          sha224 (bigstring)                   1   sha224.
-   [OK]          sha224 (bigstring)                   2   sha224.
-   [OK]          sha224 (bigstring)                   3   sha224.
-   [OK]          sha224 (bigstring)                   4   sha224.
-   [OK]          sha256                               0   sha256.
-   [OK]          sha256                               1   sha256.
-   [OK]          sha256                               2   sha256.
-   [OK]          sha256                               3   sha256.
-   [OK]          sha256                               4   sha256.
-   [OK]          sha256 (bigstring)                   0   sha256.
-   [OK]          sha256 (bigstring)                   1   sha256.
-   [OK]          sha256 (bigstring)                   2   sha256.
-   [OK]          sha256 (bigstring)                   3   sha256.
-   [OK]          sha256 (bigstring)                   4   sha256.
-   [OK]          sha384                               0   sha384.
-   [OK]          sha384                               1   sha384.
-   [OK]          sha384                               2   sha384.
-   [OK]          sha384                               3   sha384.
-   [OK]          sha384                               4   sha384.
-   [OK]          sha384 (bigstring)                   0   sha384.
-   [OK]          sha384 (bigstring)                   1   sha384.
-   [OK]          sha384 (bigstring)                   2   sha384.
-   [OK]          sha384 (bigstring)                   3   sha384.
-   [OK]          sha384 (bigstring)                   4   sha384.
-   [OK]          sha512                               0   sha512.
-   [OK]          sha512                               1   sha512.
-   [OK]          sha512                               2   sha512.
-   [OK]          sha512                               3   sha512.
-   [OK]          sha512                               4   sha512.
-   [OK]          sha512 (bigstring)                   0   sha512.
-   [OK]          sha512 (bigstring)                   1   sha512.
-   [OK]          sha512 (bigstring)                   2   sha512.
-   [OK]          sha512 (bigstring)                   3   sha512.
-   [OK]          sha512 (bigstring)                   4   sha512.
-   [OK]          sha3_224                             0   sha3_224.
-   [OK]          sha3_224                             1   sha3_224.
-   [OK]          sha3_224                             2   sha3_224.
-   [OK]          sha3_224                             3   sha3_224.
-   [OK]          sha3_224                             4   sha3_224.
-   [OK]          sha3_224 (bigstring)                 0   sha3_224.
-   [OK]          sha3_224 (bigstring)                 1   sha3_224.
-   [OK]          sha3_224 (bigstring)                 2   sha3_224.
-   [OK]          sha3_224 (bigstring)                 3   sha3_224.
-   [OK]          sha3_224 (bigstring)                 4   sha3_224.
-   [OK]          sha3_256                             0   sha3_256.
-   [OK]          sha3_256                             1   sha3_256.
-   [OK]          sha3_256                             2   sha3_256.
-   [OK]          sha3_256                             3   sha3_256.
-   [OK]          sha3_256                             4   sha3_256.
-   [OK]          sha3_256 (bigstring)                 0   sha3_256.
-   [OK]          sha3_256 (bigstring)                 1   sha3_256.
-   [OK]          sha3_256 (bigstring)                 2   sha3_256.
-   [OK]          sha3_256 (bigstring)                 3   sha3_256.
-   [OK]          sha3_256 (bigstring)                 4   sha3_256.
-   [OK]          sha3_384                             0   sha3_384.
-   [OK]          sha3_384                             1   sha3_384.
-   [OK]          sha3_384                             2   sha3_384.
-   [OK]          sha3_384                             3   sha3_384.
-   [OK]          sha3_384                             4   sha3_384.
-   [OK]          sha3_384 (bigstring)                 0   sha3_384.
-   [OK]          sha3_384 (bigstring)                 1   sha3_384.
-   [OK]          sha3_384 (bigstring)                 2   sha3_384.
-   [OK]          sha3_384 (bigstring)                 3   sha3_384.
-   [OK]          sha3_384 (bigstring)                 4   sha3_384.
-   [OK]          sha3_512                             0   sha3_512.
-   [OK]          sha3_512                             1   sha3_512.
-   [OK]          sha3_512                             2   sha3_512.
-   [OK]          sha3_512                             3   sha3_512.
-   [OK]          sha3_512                             4   sha3_512.
-   [OK]          sha3_512 (bigstring)                 0   sha3_512.
-   [OK]          sha3_512 (bigstring)                 1   sha3_512.
-   [OK]          sha3_512 (bigstring)                 2   sha3_512.
-   [OK]          sha3_512 (bigstring)                 3   sha3_512.
-   [OK]          sha3_512 (bigstring)                 4   sha3_512.
-   [OK]          whirlpool                            0   whirlpool.
-   [OK]          whirlpool                            1   whirlpool.
-   [OK]          whirlpool                            2   whirlpool.
-   [OK]          whirlpool                            3   whirlpool.
-   [OK]          whirlpool                            4   whirlpool.
-   [OK]          whirlpool (bigstring)                0   whirlpool.
-   [OK]          whirlpool (bigstring)                1   whirlpool.
-   [OK]          whirlpool (bigstring)                2   whirlpool.
-   [OK]          whirlpool (bigstring)                3   whirlpool.
-   [OK]          whirlpool (bigstring)                4   whirlpool.
-   [OK]          blake2b                              0   blake2b.
-   [OK]          blake2b                              1   blake2b.
-   [OK]          blake2b                              2   blake2b.
-   [OK]          blake2b                              3   blake2b.
-   [OK]          blake2b                              4   blake2b.
-   [OK]          blake2b (bigstring)                  0   blake2b.
-   [OK]          blake2b (bigstring)                  1   blake2b.
-   [OK]          blake2b (bigstring)                  2   blake2b.
-   [OK]          blake2b (bigstring)                  3   blake2b.
-   [OK]          blake2b (bigstring)                  4   blake2b.
-   [OK]          rmd160                               0   rmd160.
-   [OK]          rmd160                               1   rmd160.
-   [OK]          rmd160                               2   rmd160.
-   [OK]          rmd160                               3   rmd160.
-   [OK]          rmd160                               4   rmd160.
-   [OK]          rmd160 (bigstring)                   0   rmd160.
-   [OK]          rmd160 (bigstring)                   1   rmd160.
-   [OK]          rmd160 (bigstring)                   2   rmd160.
-   [OK]          rmd160 (bigstring)                   3   rmd160.
-   [OK]          rmd160 (bigstring)                   4   rmd160.
-   [OK]          blake2s                              0   blake2s.
-   [OK]          blake2s                              1   blake2s.
-   [OK]          blake2s                              2   blake2s.
-   [OK]          blake2s                              3   blake2s.
-   [OK]          blake2s                              4   blake2s.
-   [OK]          blake2s (bigstring)                  0   blake2s.
-   [OK]          blake2s (bigstring)                  1   blake2s.
-   [OK]          blake2s (bigstring)                  2   blake2s.
-   [OK]          blake2s (bigstring)                  3   blake2s.
-   [OK]          blake2s (bigstring)                  4   blake2s.
-   [OK]          blake2s (keyed, input file)          0   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)          1   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)          2   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)          3   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)          4   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)          5   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)          6   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)          7   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)          8   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)          9   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         10   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         11   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         12   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         13   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         14   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         15   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         16   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         17   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         18   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         19   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         20   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         21   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         22   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         23   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         24   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         25   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         26   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         27   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         28   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         29   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         30   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         31   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         32   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         33   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         34   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         35   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         36   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         37   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         38   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         39   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         40   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         41   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         42   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         43   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         44   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         45   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         46   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         47   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         48   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         49   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         50   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         51   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         52   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         53   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         54   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         55   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         56   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         57   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         58   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         59   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         60   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         61   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         62   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         63   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         64   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         65   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         66   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         67   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         68   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         69   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         70   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         71   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         72   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         73   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         74   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         75   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         76   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         77   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         78   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         79   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         80   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         81   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         82   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         83   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         84   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         85   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         86   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         87   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         88   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         89   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         90   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         91   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         92   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         93   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         94   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         95   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         96   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         97   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         98   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)         99   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        100   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        101   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        102   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        103   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        104   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        105   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        106   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        107   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        108   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        109   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        110   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        111   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        112   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        113   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        114   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        115   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        116   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        117   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        118   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        119   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        120   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        121   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        122   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        123   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        124   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        125   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        126   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        127   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        128   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        129   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        130   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        131   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        132   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        133   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        134   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        135   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        136   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        137   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        138   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        139   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        140   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        141   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        142   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        143   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        144   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        145   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        146   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        147   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        148   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        149   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        150   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        151   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        152   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        153   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        154   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        155   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        156   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        157   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        158   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        159   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        160   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        161   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        162   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        163   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        164   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        165   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        166   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        167   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        168   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        169   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        170   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        171   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        172   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        173   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        174   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        175   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        176   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        177   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        178   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        179   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        180   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        181   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        182   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        183   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        184   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        185   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        186   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        187   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        188   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        189   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        190   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        191   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        192   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        193   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        194   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        195   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        196   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        197   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        198   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        199   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        200   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        201   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        202   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        203   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        204   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        205   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        206   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        207   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        208   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        209   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        210   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        211   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        212   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        213   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        214   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        215   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        216   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        217   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        218   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        219   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        220   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        221   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        222   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        223   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        224   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        225   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        226   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        227   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        228   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        229   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        230   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        231   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        232   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        233   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        234   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        235   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        236   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        237   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        238   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        239   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        240   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        241   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        242   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        243   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        244   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        245   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        246   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        247   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        248   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        249   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        250   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        251   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        252   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        253   blake2{b,s}.
-   [OK]          blake2s (keyed, input file)        254   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)          0   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)          1   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)          2   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)          3   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)          4   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)          5   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)          6   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)          7   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)          8   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)          9   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         10   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         11   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         12   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         13   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         14   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         15   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         16   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         17   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         18   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         19   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         20   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         21   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         22   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         23   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         24   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         25   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         26   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         27   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         28   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         29   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         30   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         31   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         32   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         33   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         34   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         35   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         36   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         37   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         38   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         39   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         40   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         41   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         42   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         43   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         44   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         45   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         46   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         47   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         48   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         49   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         50   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         51   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         52   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         53   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         54   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         55   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         56   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         57   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         58   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         59   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         60   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         61   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         62   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         63   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         64   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         65   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         66   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         67   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         68   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         69   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         70   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         71   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         72   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         73   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         74   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         75   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         76   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         77   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         78   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         79   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         80   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         81   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         82   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         83   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         84   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         85   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         86   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         87   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         88   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         89   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         90   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         91   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         92   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         93   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         94   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         95   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         96   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         97   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         98   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)         99   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        100   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        101   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        102   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        103   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        104   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        105   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        106   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        107   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        108   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        109   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        110   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        111   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        112   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        113   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        114   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        115   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        116   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        117   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        118   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        119   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        120   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        121   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        122   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        123   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        124   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        125   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        126   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        127   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        128   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        129   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        130   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        131   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        132   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        133   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        134   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        135   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        136   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        137   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        138   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        139   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        140   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        141   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        142   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        143   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        144   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        145   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        146   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        147   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        148   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        149   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        150   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        151   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        152   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        153   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        154   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        155   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        156   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        157   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        158   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        159   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        160   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        161   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        162   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        163   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        164   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        165   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        166   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        167   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        168   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        169   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        170   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        171   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        172   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        173   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        174   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        175   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        176   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        177   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        178   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        179   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        180   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        181   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        182   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        183   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        184   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        185   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        186   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        187   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        188   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        189   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        190   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        191   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        192   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        193   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        194   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        195   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        196   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        197   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        198   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        199   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        200   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        201   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        202   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        203   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        204   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        205   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        206   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        207   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        208   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        209   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        210   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        211   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        212   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        213   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        214   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        215   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        216   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        217   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        218   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        219   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        220   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        221   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        222   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        223   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        224   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        225   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        226   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        227   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        228   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        229   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        230   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        231   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        232   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        233   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        234   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        235   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        236   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        237   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        238   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        239   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        240   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        241   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        242   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        243   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        244   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        245   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        246   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        247   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        248   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        249   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        250   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        251   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        252   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        253   blake2{b,s}.
-   [OK]          blake2b (keyed, input file)        254   blake2{b,s}.
-   [OK]          blake2s (specialization)             0   BLAKE2S (digest-size...
-   [OK]          blake2s (specialization)             1   BLAKE2S (digest-size...
-   [OK]          blake2s (specialization)             2   BLAKE2S (digest-size...
-   [OK]          blake2b (specialization)             0   BLAKE2B (digest-size...
-   [OK]          blake2b (specialization)             1   BLAKE2B (digest-size...
-   [OK]          blake2b (specialization)             2   BLAKE2B (digest-size...
-   [OK]          ripemd160                            0   rmd160.
-   [OK]          ripemd160                            1   rmd160.
-   [OK]          ripemd160                            2   rmd160.
-   [OK]          ripemd160                            3   rmd160.
-   [OK]          ripemd160                            4   rmd160.
-   [OK]          ripemd160                            5   rmd160.
-   [OK]          ripemd160                            6   rmd160.
-   [OK]          ripemd160                            7   rmd160.
-   [OK]          ripemd160                            8   give me a million.
-   [OK]          sha3 (vector tests)                  0   ../sha3_224_fips_202...
-   [OK]          sha3 (vector tests)                  1   ../sha3_256_fips_202...
-   [OK]          sha3 (vector tests)                  2   ../sha3_384_fips_202...
-   [OK]          sha3 (vector tests)                  3   ../sha3_512_fips_202...
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/digestif.0.9.0/_build/default/test/ocaml/_build/_tests/digestif'.
- Test Successful in 1.869s. 669 tests run.
-> compiled  digestif.0.9.0
-> removed   digestif.0.9.0
Processing  4/4: [digestif: dune install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "dune" "install" "-p" "digestif" (CWD=/home/opam/.opam/4.14/.opam-switch/build/digestif.0.9.0)
Processing  4/4: [digestif: ./test/test_runes.ml]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "install" "./test/test_runes.ml" (CWD=/home/opam/.opam/4.14/.opam-switch/build/digestif.0.9.0)
- File "./test/test_runes.ml", line 109, characters 18-26:
- 109 |         let lib = Fmt.strf "lib%s.a" library in
-                         ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- File "./test/test_runes.ml", line 134, characters 15-23:
- 134 |   let format = Fmt.strf "-L%%d %%(%s_linkopts)" target in
-                      ^^^^^^^^
- Alert deprecated: Fmt.strf
- use Fmt.str instead.
- ocamlfind: Package `mirage-xen-posix' not found
- ocamlfind: Package `ocaml-freestanding' not found
-> installed digestif.0.9.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 08:45.57 ---> saved as "a84aea04a9da7ea9ac7498b5ff5d4adfdacfd31d5ae458cb7e89c37a0431a7fc"
Job succeeded
2026-04-30 08:46.35: Job succeeded