(not at the head of any monitored branch or PR)
2025-12-30 11:06.28: New job: test h1.1.1.0 with lwt.6.0.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29147/head (d83f510fcc6a430d62200d6223dcfcc5c92c0245)
                              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/29147/head" && git reset --hard d83f510f
git fetch origin master
git merge --no-edit c239a62d58deaede2e5dce17c2715a55397b73f2
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:036e77867422a8866af32fdb5a0ab537b7171bc6e32ad75d56b72d619d86227e
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 lwt.6.0.0 6.0.0
RUN opam reinstall lwt.6.0.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" != 'lwt.6.0.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall h1.1.1.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" != 'h1.1.1.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 h1.1.1.0) || true
RUN opam reinstall --with-test --verbose h1.1.1.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" != 'h1.1.1.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 .

2025-12-30 11:06.28: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:036e77867422a8866af32fdb5a0ab537b7171bc6e32ad75d56b72d619d86227e-lwt.6.0.0-h1.1.1.0-d83f510fcc6a430d62200d6223dcfcc5c92c0245"
2025-12-30 11:06.28: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:036e77867422a8866af32fdb5a0ab537b7171bc6e32ad75d56b72d619d86227e)
 (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 lwt.6.0.0 6.0.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall lwt.6.0.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\" != 'lwt.6.0.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall h1.1.1.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\" != 'h1.1.1.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 h1.1.1.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose h1.1.1.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\" != 'h1.1.1.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2025-12-30 11:06.28: Waiting for resource in pool OCluster
2025-12-30 11:51.46: Waiting for worker…
2025-12-30 11:56.45: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
HEAD is now at c239a62d58 Merge pull request #29143 from filipeom/opam-publish-smtml.0.18.0
Updating c239a62d58..d83f510fcc
Fast-forward
 packages/lwt/lwt.6.0.0/opam                        | 64 ++++++++++++++++++++++
 packages/lwt_direct/lwt_direct.6.0.0/opam          | 41 ++++++++++++++
 packages/lwt_ppx/lwt_ppx.6.0.0/opam                | 42 ++++++++++++++
 .../lwt_runtime_events.6.0.0/opam                  | 39 +++++++++++++
 4 files changed, 186 insertions(+)
 create mode 100644 packages/lwt/lwt.6.0.0/opam
 create mode 100644 packages/lwt_direct/lwt_direct.6.0.0/opam
 create mode 100644 packages/lwt_ppx/lwt_ppx.6.0.0/opam
 create mode 100644 packages/lwt_runtime_events/lwt_runtime_events.6.0.0/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:036e77867422a8866af32fdb5a0ab537b7171bc6e32ad75d56b72d619d86227e)
2025-12-30 11:56.47 ---> using "3693260be75be30570e295a8d96dbf271715706f1de21c754800bbb80cb23c02" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-12-30 11:56.47 ---> using "1901ce78037bddde71f95bdd22440cea4b65c64f109a6dc28a07d8f568d14fd5" from cache

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

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

Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 71 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
           opam option jobs=71 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-12-30 11:56.47 ---> using "2ffda47237486dfd42484e675442c43b64b4248da6fe38c8c6f6b73eaf77c7e4" from cache

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

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2025-12-30 11:56.47 ---> using "991dc295f290cc56c9e5a21cee5fed1bc338c5aa668e8bacd9f2f3a05c89da27" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-12-30 11:56.48 ---> using "776cff223897cb507a6cca05f13b7b38f86aeef6aa201414b9cd7be8afcc28e7" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-12-30 11:56.48 ---> using "cbf57c3803cfeec426d6e6a91cffa6d3767d6fc9d7a11ee0a315b1f0a952711e" 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]
- Fetched 90.7 kB in 0s (1354 kB/s)
- Reading package lists...
2025-12-30 11:56.48 ---> using "199b83ec8646127fc85f887dd3966b58d3c2eb87bc6ced2ec90f99a90f0fc201" from cache

/home/opam: (run (shell "opam pin add -k version -yn lwt.6.0.0 6.0.0"))
lwt is now pinned to version 6.0.0
2025-12-30 11:56.48 ---> using "02da183fa752ce780cc86f04d2afaef60d98811376d928c76962de93d61003f4" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall lwt.6.0.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\" != 'lwt.6.0.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
lwt.6.0.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 8 packages
  - install base-bytes        base           [required by ocplib-endian]
  - install cppo              1.8.0          [required by lwt]
  - install csexp             1.5.2          [required by dune-configurator]
  - install dune              3.20.2         [required by lwt]
  - install dune-configurator 3.20.2         [required by lwt]
  - install lwt               6.0.0 (pinned)
  - install ocamlfind         1.9.8          [required by base-bytes]
  - install ocplib-endian     1.2            [required by lwt]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved dune.3.20.2, dune-configurator.3.20.2  (cached)
-> retrieved lwt.6.0.0  (https://github.com/ocsigen/lwt/archive/refs/tags/6.0.0.tar.gz)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed dune.3.20.2
-> installed csexp.1.5.2
-> installed cppo.1.8.0
-> installed ocplib-endian.1.2
-> installed dune-configurator.3.20.2
-> installed lwt.6.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-30 11:56.48 ---> using "0edc687c209692261b33c408eee1f0531873c26e05d69a05585f83c7a66a7de0" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall h1.1.1.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\" != 'h1.1.1.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
h1.1.1.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 8 packages
  - install angstrom           0.16.1 [required by h1]
  - install base64             3.5.2  [required by h1]
  - install bigstringaf        0.10.0 [required by angstrom, faraday]
  - install bstr               0.0.3  [required by h1]
  - install faraday            0.8.2  [required by h1]
  - install h1                 1.1.0
  - install httpun-types       0.2.0  [required by h1]
  - install ocaml-syntax-shims 1.0.0  [required by angstrom]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1  (cached)
-> retrieved base64.3.5.2  (cached)
-> retrieved bigstringaf.0.10.0  (cached)
-> retrieved bstr.0.0.3  (cached)
-> retrieved faraday.0.8.2  (cached)
-> retrieved h1.1.1.0  (cached)
-> retrieved httpun-types.0.2.0  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> installed base64.3.5.2
-> installed bstr.0.0.3
-> installed bigstringaf.0.10.0
-> installed faraday.0.8.2
-> installed ocaml-syntax-shims.1.0.0
-> installed httpun-types.0.2.0
-> installed angstrom.0.16.1
-> installed h1.1.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-30 11:56.55 ---> saved as "70da61edcd8b36a07dbf5c79494097fa4db58cfeb220be9866300ca7b1e59ce1"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test h1.1.1.0) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile h1           1.1.0
=== install 12 packages
  - install   alcotest     1.9.1   [required by h1]
  - install   astring      0.8.5   [required by alcotest]
  - install   base         v0.16.4 [required by stdio]
  - install   cmdliner     2.1.0   [required by alcotest]
  - install   fmt          0.11.0  [required by alcotest]
  - install   ocamlbuild   0.16.1  [required by fmt, astring, uutf]
  - install   re           1.14.0  [required by alcotest]
  - install   sexplib0     v0.16.0 [required by base]
  - install   stdio        v0.16.0 [required by h1]
  - install   stdlib-shims 0.3.0   [required by alcotest]
  - install   topkg        1.1.1   [required by fmt, astring, uutf]
  - 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 base.v0.16.4  (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.0  (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0  (https://opam.ocaml.org/cache)
-> retrieved h1.1.1.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 sexplib0.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved stdio.v0.16.0  (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0  (https://opam.ocaml.org/cache)
-> retrieved topkg.1.1.1  (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> installed sexplib0.v0.16.0
-> installed re.1.14.0
-> installed cmdliner.2.1.0
-> removed   h1.1.1.0
-> installed ocamlbuild.0.16.1
-> installed base.v0.16.4
-> installed stdio.v0.16.0
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed alcotest.1.9.1
-> installed h1.1.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-30 11:57.13 ---> saved as "e86a6f53c80bed62d56fb983da94013316f8aad7a2b4c32314f3c7275d14c278"

/home/opam: (run (shell  "opam reinstall --with-test --verbose h1.1.1.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\" != 'h1.1.1.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 h1 1.1.0

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [h1.1.1.0: extract]
-> retrieved h1.1.1.0  (cached)
Processing  2/4: [h1: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "h1" "-j" "255" (CWD=/home/opam/.opam/4.14/.opam-switch/build/h1.1.1.0)
Processing  2/4: [h1: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "h1" (CWD=/home/opam/.opam/4.14/.opam-switch/build/h1.1.1.0)
- (cd _build/default/lib_test && ./test_h1.exe)
- Testing `h1 unit tests'.
- This run has ID `DV4E91Z2'.
- 
-   [OK]          websocket                  0   parsing ping frame.
-   [OK]          websocket                  1   parsing close frame.
-   [OK]          websocket                  2   parsing text frame.
-   [OK]          version                    0   compare.
-   [OK]          version                    1   to_string.
-   [OK]          method                     0   is_safe.
-   [OK]          method                     1   is_cacheable.
-   [OK]          method                     2   is_idempotent.
-   [OK]          iovec                      0   lengthv.
-   [OK]          iovec                      1   shiftv.
-   [OK]          iovec                      2   shiftv raises .
-   [OK]          headers                    0   remove.
-   [OK]          headers                    1   replace.
-   [OK]          headers                    2   CI equal.
-   [OK]          request                    0   parse valid.
-   [OK]          request                    1   parse invalid errors.
-   [OK]          request                    2   body length.
-   [OK]          response                   0   parse valid.
-   [OK]          response                   1   parse invalid error.
-   [OK]          response                   2   body length.
-   [OK]          client connection          0   GET.
-   [OK]          client connection          1   send streaming body.
-   [OK]          client connection          2   Response EOF.
-   [OK]          client connection          3   Response header order preserved.
-   [OK]          client connection          4   report_exn.
-   [OK]          client connection          5   input_shrunk.
-   [OK]          client connection          6   failed response parse.
-   [OK]          client connection          7   schedule read with data availa...
-   [OK]          server connection          0   initial reader state.
-   [OK]          server connection          1   shutdown reader closed.
-   [OK]          server connection          2   single GET.
-   [OK]          server connection          3   multiple GETs.
-   [OK]          server connection          4   asynchronous response.
-   [OK]          server connection          5   echo POST.
-   [OK]          server connection          6   streaming response.
-   [OK]          server connection          7   asynchronous streaming response.
-   [OK]          server connection          8   asynchronous streaming respons...
-   [OK]          server connection          9   empty fixed streaming response.
-   [OK]          server connection         10   empty chunked streaming response.
-   [OK]          server connection         11   connection error.
-   [OK]          server connection         12   synchronous error, synchronous...
-   [OK]          server connection         13   synchronous error, asynchronou...
-   [OK]          server connection         14   asynchronous error, synchronou...
-   [OK]          server connection         15   asynchronous error, asynchrono...
-   [OK]          server connection         16   error while parsing.
-   [OK]          server connection         17   error before read.
-   [OK]          server connection         18   error left unhandled.
-   [OK]          server connection         19   chunked encoding.
-   [OK]          server connection         20   chunked encoding for error.
-   [OK]          server connection         21   blocked write on chunked encod...
-   [OK]          server connection         22   body writing when socket closes.
-   [OK]          server connection         23   writer unexpected eof.
-   [OK]          server connection         24   input shrunk.
-   [OK]          server connection         25   failed request parse.
-   [OK]          server connection         26   bad request.
-   [OK]          server connection         27   multiple requests in single read.
-   [OK]          server connection         28   multiple async requests in sin...
-   [OK]          server connection         29   multiple requests with connect...
-   [OK]          server connection         30   multiple requests with eof.
-   [OK]          server connection         31   parse failure after checkpoint.
-   [OK]          server connection         32   parse failure at eof.
-   [OK]          server connection         33   response finished before body ...
-   [OK]          server connection         34   shutdown in request handler.
-   [OK]          server connection         35   schedule read with data availa...
-   [OK]          server connection         36   test upgrades.
-   [OK]          server connection         37   test upgrade where server does...
-   [OK]          server connection         38   test upgrades.
-   [OK]          server connection         39   test upgrade where server does...
-   [OK]          server connection         40   upgrade.
-   [OK]          server connection         41   upgrade where server does not ...
-   [OK]          server connection         42   upgrade with initial data.
-   [OK]          server connection         43   upgrade with bad body length.
-   [OK]          server connection         44   asynchronous upgrade.
-   [OK]          server connection         45   upgrade interrupted by shutdown.
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/h1.1.1.0/_build/default/lib_test/_build/_tests/h1 unit tests'.
- Test Successful in 0.233s. 74 tests run.
-> compiled  h1.1.1.0
-> removed   h1.1.1.0
-> installed h1.1.1.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-12-30 11:57.20 ---> saved as "4ec5cdb64bb801d58a1ee68a637dbeac175de0543aa20092aeb91918e91b1629"
Job succeeded
2025-12-30 11:57.27: Job succeeded