(not at the head of any monitored branch or PR)
2026-04-10 17:47.56: New job: test decompress.0.9.1 with dune.3.22.2, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29704/head (3e0c395e7b1393a792367f8edca3654dac71e6fd)
                              on debian-13-ocaml-5.4/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/29704/head" && git reset --hard 3e0c395e
git fetch origin master
git merge --no-edit 9d8ceab8e9f49f5671cf459997c8a47cf0e675ca
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-5.4@sha256:a32e708a4134e2a41db640ce8876b2475794c7cd5c0ce822b17aeaf65592bf03
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.22.2 3.22.2
RUN opam reinstall dune.3.22.2; \
    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.22.2' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall decompress.0.9.1; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'decompress.0.9.1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test decompress.0.9.1) || true
RUN opam reinstall --with-test --verbose decompress.0.9.1; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'decompress.0.9.1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

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

2026-04-10 17:47.56: Using cache hint "ocaml/opam:debian-13-ocaml-5.4@sha256:a32e708a4134e2a41db640ce8876b2475794c7cd5c0ce822b17aeaf65592bf03-dune.3.22.2-decompress.0.9.1-3e0c395e7b1393a792367f8edca3654dac71e6fd"
2026-04-10 17:47.56: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-5.4@sha256:a32e708a4134e2a41db640ce8876b2475794c7cd5c0ce822b17aeaf65592bf03)
 (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.22.2 3.22.2"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dune.3.22.2;\
             \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.22.2' && 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 decompress.0.9.1;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'decompress.0.9.1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test decompress.0.9.1) || true"))
 (run (shell  "opam reinstall --with-test --verbose decompress.0.9.1;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'decompress.0.9.1' && 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-10 17:47.56: Waiting for resource in pool OCluster
2026-04-11 01:36.54: Waiting for worker…
2026-04-11 01:39.00: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
HEAD is now at 9d8ceab8e9 Merge pull request #29697 from filipeom/opam-publish-smtml.0.25.0
Updating 9d8ceab8e9..3e0c395e7b
Fast-forward
 packages/chrome-trace/chrome-trace.3.22.2/opam     | 39 +++++++++++
 .../dune-action-plugin.3.22.2/opam                 | 52 +++++++++++++++
 .../dune-action-trace.3.22.2/opam                  | 39 +++++++++++
 .../dune-build-info/dune-build-info.3.22.2/opam    | 45 +++++++++++++
 .../dune-configurator.3.22.2/opam                  | 49 ++++++++++++++
 packages/dune-glob/dune-glob.3.22.2/opam           | 42 ++++++++++++
 .../dune-private-libs.3.22.2/opam                  | 50 +++++++++++++++
 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam     | 41 ++++++++++++
 packages/dune-rpc/dune-rpc.3.22.2/opam             | 44 +++++++++++++
 packages/dune-site/dune-site.3.22.2/opam           | 37 +++++++++++
 packages/dune/dune.3.22.2/opam                     | 75 ++++++++++++++++++++++
 packages/dyn/dyn.3.22.2/opam                       | 40 ++++++++++++
 packages/fs-io/fs-io.3.22.2/opam                   | 39 +++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam         | 43 +++++++++++++
 packages/ordering/ordering.3.22.2/opam             | 38 +++++++++++
 packages/stdune/stdune.3.22.2/opam                 | 46 +++++++++++++
 packages/top-closure/top-closure.3.22.2/opam       | 38 +++++++++++
 packages/xdg/xdg.3.22.2/opam                       | 39 +++++++++++
 18 files changed, 796 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.22.2/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.22.2/opam
 create mode 100644 packages/dune-action-trace/dune-action-trace.3.22.2/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.22.2/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.22.2/opam
 create mode 100644 packages/dune-glob/dune-glob.3.22.2/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.22.2/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.22.2/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.22.2/opam
 create mode 100644 packages/dune-site/dune-site.3.22.2/opam
 create mode 100644 packages/dune/dune.3.22.2/opam
 create mode 100644 packages/dyn/dyn.3.22.2/opam
 create mode 100644 packages/fs-io/fs-io.3.22.2/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.22.2/opam
 create mode 100644 packages/ordering/ordering.3.22.2/opam
 create mode 100644 packages/stdune/stdune.3.22.2/opam
 create mode 100644 packages/top-closure/top-closure.3.22.2/opam
 create mode 100644 packages/xdg/xdg.3.22.2/opam

(from ocaml/opam:debian-13-ocaml-5.4@sha256:a32e708a4134e2a41db640ce8876b2475794c7cd5c0ce822b17aeaf65592bf03)
2026-04-11 01:50.38 ---> using "4e852d2e6c9ac39a43c0cb8d1ef92ecff46d16da630bff560bb4811e0bb278c3" 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-11 01:50.38 ---> using "c82a131037ae9ff29ac79f02306f126bd36264ccb683d2324f553289b0d4a496" 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.

[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
Continue? [Y/n] y
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-11 01:50.38 ---> using "983e4dc58d26f7046c0fe6fbe642bc66995d2abecd6409a14b0c538d3f1a7bd2" 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       5.4
# invariant            ["ocaml-base-compiler" {= "5.4.1"}]
# compiler-packages    ocaml-base-compiler.5.4.1, ocaml-compiler.5.4.1, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.1
2026-04-11 01:50.38 ---> using "8b346866360ce3a934df95a88d3a1520ccbf589f659a7e26aa97be0b96b1083a" 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-11 01:50.38 ---> using "8be7be6786c965fdad4454d936ba98cc5fa516f8de8fee90f280618661533faa" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-11 01:50.39 ---> using "c0553ba1781e82471f38f012874b6b7341f662c325cc75285bfd7972f7a6ff87" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-11 01:50.39 ---> using "e05b19873f9cb2918bf114246a81e8bf23cb51c80d627ed2b044915e44a942dd" 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 [121 kB]
- Fetched 211 kB in 5s (39.3 kB/s)
- Reading package lists...
- 
2026-04-11 01:50.39 ---> using "dc69cd977951bdc4dffcc68622bf3ea65b4d02db568ca1f8bd5ab395f414a24f" from cache

/home/opam: (run (shell "opam pin add -k version -yn dune.3.22.2 3.22.2"))
dune is now pinned to version 3.22.2
2026-04-11 01:50.39 ---> using "d2dbab2e673d61aa25772ad855c91b371a83246b8bcc8859d8fc280f9fcf9826" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dune.3.22.2;\
                        \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.22.2' && 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.22.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
  - install dune 3.22.2 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.22.2  (cached)
-> installed dune.3.22.2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 01:50.39 ---> using "6f94ccb4a18327fa9742ec042c4183209005d455af95ec03af9e9453c8a8c9d1" from cache

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bigarray-compat.1.1.0  (cached)
-> retrieved checkseum.0.5.2  (cached)
-> retrieved cmdliner.1.3.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved decompress.0.9.1  (cached)
-> installed bigarray-compat.1.1.0
-> installed csexp.1.5.2
-> retrieved dune-configurator.3.22.2  (cached)
-> retrieved mmap.1.2.0  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved optint.0.3.0  (cached)
-> installed cmdliner.1.3.0
-> installed mmap.1.2.0
-> installed optint.0.3.0
-> installed dune-configurator.3.22.2
-> installed checkseum.0.5.2
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed decompress.0.9.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 01:50.53 ---> saved as "87f997032c8569f953b572b66152932405beec7986d70d1d38ffab143dd79710"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test decompress.0.9.1) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile decompress         0.9.1
=== install 16 packages
  - install   alcotest           1.9.1  [required by decompress]
  - install   astring            0.8.5  [required by alcotest, bos]
  - install   bos                0.2.1  [required by decompress]
  - install   camlzip            1.14   [required by decompress]
  - install   conf-pkg-config    4      [required by conf-zlib]
  - install   conf-zlib          1      [required by camlzip]
  - install   fmt                0.11.0 [required by alcotest, bos]
  - install   fpath              0.7.3  [required by bos]
  - 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 decompress]
  - install   rresult            0.7.0  [required by bos]
  - install   stdlib-shims       0.3.0  [required by alcotest]
  - install   topkg              1.1.1  [required by bos]
  - install   uutf               1.0.4  [required by alcotest]

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

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

opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
  2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
  3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
  4. Abort the installation

[1/2/3/4] 1

+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "pkg-config" "zlib1g-dev"
- Selecting previously unselected package libpkgconf3:amd64.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 20654 files and directories currently installed.)
- Preparing to unpack .../libpkgconf3_1.8.1-4_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../pkgconf-bin_1.8.1-4_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../pkgconf_1.8.1-4_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../pkg-config_1.8.1-4_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-4) ...
- Selecting previously unselected package zlib1g-dev:amd64.
- Preparing to unpack .../zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1+b1_amd64.deb ...
- Unpacking zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Setting up libpkgconf3:amd64 (1.8.1-4) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
- Setting up pkgconf:amd64 (1.8.1-4) ...
- Setting up pkg-config:amd64 (1.8.1-4) ...
- Processing triggers for libc-bin (2.41-12+deb13u2) ...

<><> 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 camlzip.1.14  (https://opam.ocaml.org/cache)
-> installed conf-pkg-config.4
-> installed conf-zlib.1
-> retrieved decompress.0.9.1  (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 stdlib-shims.0.3.0  (https://opam.ocaml.org/cache)
-> installed camlzip.1.14
-> installed ocaml-syntax-shims.1.0.0
-> retrieved topkg.1.1.1  (https://opam.ocaml.org/cache)
-> installed re.1.14.0
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> removed   decompress.0.9.1
-> 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 fpath.0.7.3
-> installed logs.0.10.0
-> installed alcotest.1.9.1
-> installed bos.0.2.1
-> installed decompress.0.9.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 02:44.05 ---> saved as "e75c2134efc55994b053c4d02dd55026d3ee5751021d87a4cc4db91e5f84752d"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [decompress.0.9.1: extract]
-> retrieved decompress.0.9.1  (cached)
Processing  2/4: [decompress: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "decompress" "-j" "255" (CWD=/home/opam/.opam/5.4/.opam-switch/build/decompress.0.9.1)
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -w +1..49 -w -4-41-44 -g -bin-annot -bin-annot-occurrences -I lib/.impl.objs/byte -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/checkseum -I /home/opam/.opam/5.4/lib/optint -no-alias-deps -open Impl -o lib/.impl.objs/byte/impl__Decompress_inflate.cmo -c -impl lib/decompress_inflate.ml)
- File "lib/decompress_inflate.ml", line 1438, characters 40-42:
- 1438 |     let expect = Optint.Infix.(a1 << 24 || a2 << 16 || b1 << 8 || b2) in
-                                                ^^
- Alert deprecated: Optint.Infix.||
- Please use ( lor ).
- 
- File "lib/decompress_inflate.ml", line 1438, characters 34-36:
- 1438 |     let expect = Optint.Infix.(a1 << 24 || a2 << 16 || b1 << 8 || b2) in
-                                          ^^
- Alert deprecated: Optint.Infix.<<
- Please use ( lsl ).
- 
- File "lib/decompress_inflate.ml", line 1438, characters 52-54:
- 1438 |     let expect = Optint.Infix.(a1 << 24 || a2 << 16 || b1 << 8 || b2) in
-                                                            ^^
- Alert deprecated: Optint.Infix.||
- Please use ( lor ).
- 
- File "lib/decompress_inflate.ml", line 1438, characters 46-48:
- 1438 |     let expect = Optint.Infix.(a1 << 24 || a2 << 16 || b1 << 8 || b2) in
-                                                      ^^
- Alert deprecated: Optint.Infix.<<
- Please use ( lsl ).
- 
- File "lib/decompress_inflate.ml", line 1438, characters 63-65:
- 1438 |     let expect = Optint.Infix.(a1 << 24 || a2 << 16 || b1 << 8 || b2) in
-                                                                       ^^
- Alert deprecated: Optint.Infix.||
- Please use ( lor ).
- 
- File "lib/decompress_inflate.ml", line 1438, characters 58-60:
- 1438 |     let expect = Optint.Infix.(a1 << 24 || a2 << 16 || b1 << 8 || b2) in
-                                                                  ^^
- Alert deprecated: Optint.Infix.<<
- Please use ( lsl ).
- 
- File "lib/decompress_inflate.ml", line 1750, characters 32-34:
- 1750 |       Optint.Infix.(size3 << 24 || size2 << 16 || size1 << 8 || size0)
-                                        ^^
- Alert deprecated: Optint.Infix.||
- Please use ( lor ).
- 
- File "lib/decompress_inflate.ml", line 1750, characters 26-28:
- 1750 |       Optint.Infix.(size3 << 24 || size2 << 16 || size1 << 8 || size0)
-                                  ^^
- Alert deprecated: Optint.Infix.<<
- Please use ( lsl ).
- 
- File "lib/decompress_inflate.ml", line 1750, characters 47-49:
- 1750 |       Optint.Infix.(size3 << 24 || size2 << 16 || size1 << 8 || size0)
-                                                       ^^
- Alert deprecated: Optint.Infix.||
- Please use ( lor ).
- 
- File "lib/decompress_inflate.ml", line 1750, characters 41-43:
- 1750 |       Optint.Infix.(size3 << 24 || size2 << 16 || size1 << 8 || size0)
-                                                 ^^
- Alert deprecated: Optint.Infix.<<
- Please use ( lsl ).
- 
- File "lib/decompress_inflate.ml", line 1750, characters 61-63:
- 1750 |       Optint.Infix.(size3 << 24 || size2 << 16 || size1 << 8 || size0)
-                                                                     ^^
- Alert deprecated: Optint.Infix.||
- Please use ( lor ).
- 
- File "lib/decompress_inflate.ml", line 1750, characters 56-58:
- 1750 |       Optint.Infix.(size3 << 24 || size2 << 16 || size1 << 8 || size0)
-                                                                ^^
- Alert deprecated: Optint.Infix.<<
- Please use ( lsl ).
- 
- File "lib/decompress_inflate.ml", line 1772, characters 31-33:
- 1772 |       Optint.Infix.(crc4 << 24 || crc3 << 16 || crc2 << 8 || crc1)
-                                       ^^
- Alert deprecated: Optint.Infix.||
- Please use ( lor ).
- 
- File "lib/decompress_inflate.ml", line 1772, characters 25-27:
- 1772 |       Optint.Infix.(crc4 << 24 || crc3 << 16 || crc2 << 8 || crc1)
-                                 ^^
- Alert deprecated: Optint.Infix.<<
- Please use ( lsl ).
- 
- File "lib/decompress_inflate.ml", line 1772, characters 45-47:
- 1772 |       Optint.Infix.(crc4 << 24 || crc3 << 16 || crc2 << 8 || crc1)
-                                                     ^^
- Alert deprecated: Optint.Infix.||
- Please use ( lor ).
- 
- File "lib/decompress_inflate.ml", line 1772, characters 39-41:
- 1772 |       Optint.Infix.(crc4 << 24 || crc3 << 16 || crc2 << 8 || crc1)
-                                               ^^
- Alert deprecated: Optint.Infix.<<
- Please use ( lsl ).
- 
- File "lib/decompress_inflate.ml", line 1772, characters 58-60:
- 1772 |       Optint.Infix.(crc4 << 24 || crc3 << 16 || crc2 << 8 || crc1)
-                                                                  ^^
- Alert deprecated: Optint.Infix.||
- Please use ( lor ).
- 
- File "lib/decompress_inflate.ml", line 1772, characters 53-55:
- 1772 |       Optint.Infix.(crc4 << 24 || crc3 << 16 || crc2 << 8 || crc1)
-                                                             ^^
- Alert deprecated: Optint.Infix.<<
- Please use ( lsl ).
- 
- File "lib/decompress_inflate.ml", line 1840, characters 40-42:
- 1840 |     let mtime = Optint.Infix.(mt3 << 24 || mt2 << 16 || mt1 << 8 || mt0) in
-                                                ^^
- Alert deprecated: Optint.Infix.||
- Please use ( lor ).
- 
- File "lib/decompress_inflate.ml", line 1840, characters 34-36:
- 1840 |     let mtime = Optint.Infix.(mt3 << 24 || mt2 << 16 || mt1 << 8 || mt0) in
-                                          ^^
- Alert deprecated: Optint.Infix.<<
- Please use ( lsl ).
- 
- File "lib/decompress_inflate.ml", line 1840, characters 53-55:
- 1840 |     let mtime = Optint.Infix.(mt3 << 24 || mt2 << 16 || mt1 << 8 || mt0) in
-                                                             ^^
- Alert deprecated: Optint.Infix.||
- Please use ( lor ).
- 
- File "lib/decompress_inflate.ml", line 1840, characters 47-49:
- 1840 |     let mtime = Optint.Infix.(mt3 << 24 || mt2 << 16 || mt1 << 8 || mt0) in
-                                                       ^^
- Alert deprecated: Optint.Infix.<<
- Please use ( lsl ).
- 
- File "lib/decompress_inflate.ml", line 1840, characters 65-67:
- 1840 |     let mtime = Optint.Infix.(mt3 << 24 || mt2 << 16 || mt1 << 8 || mt0) in
-                                                                         ^^
- Alert deprecated: Optint.Infix.||
- Please use ( lor ).
- 
- File "lib/decompress_inflate.ml", line 1840, characters 60-62:
- 1840 |     let mtime = Optint.Infix.(mt3 << 24 || mt2 << 16 || mt1 << 8 || mt0) in
-                                                                    ^^
- Alert deprecated: Optint.Infix.<<
- Please use ( lsl ).
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -w +1..49 -w -4-41-44 -g -bin-annot -bin-annot-occurrences -I lib/.impl.objs/byte -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/checkseum -I /home/opam/.opam/5.4/lib/optint -no-alias-deps -open Impl -o lib/.impl.objs/byte/impl__Decompress_deflate.cmo -c -impl lib/decompress_deflate.ml)
- File "lib/decompress_deflate.ml", line 1144, characters 43-45:
- 1144 |          Optint.(to_int Infix.(adler >> 16 && of_int32 0xFFFFl))
-                                                   ^^
- Alert deprecated: Optint.Infix.&&
- Please use ( land ).
- 
- File "lib/decompress_deflate.ml", line 1144, characters 37-39:
- 1144 |          Optint.(to_int Infix.(adler >> 16 && of_int32 0xFFFFl))
-                                             ^^
- Alert deprecated: Optint.Infix.>>
- Please use ( lsr ).
- 
- File "lib/decompress_deflate.ml", line 1146, characters 37-39:
- 1146 |          Optint.(to_int Infix.(adler && of_int32 0xFFFFl))
-                                             ^^
- Alert deprecated: Optint.Infix.&&
- Please use ( land ).
- 
- File "lib/decompress_deflate.ml", line 1398, characters 54-56:
- 1398 |     @@ KCrc32.put_short_lsb Optint.(to_int Infix.(crc && of_int32 0xFFFFl))
-                                                              ^^
- Alert deprecated: Optint.Infix.&&
- Please use ( land ).
- 
- File "lib/decompress_deflate.ml", line 1400, characters 41-43:
- 1400 |          Optint.(to_int Infix.(crc >> 16 && of_int32 0xFFFFl))
-                                                 ^^
- Alert deprecated: Optint.Infix.&&
- Please use ( land ).
- 
- File "lib/decompress_deflate.ml", line 1400, characters 35-37:
- 1400 |          Optint.(to_int Infix.(crc >> 16 && of_int32 0xFFFFl))
-                                           ^^
- Alert deprecated: Optint.Infix.>>
- Please use ( lsr ).
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w -40 -g -bin-annot -bin-annot-occurrences -I bin/.dpipe.eobjs/byte -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/checkseum/c -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/optint -I bin/bs/.bigstring_rw.objs/byte -I lib/.decompress.objs/byte -I lib/.impl.objs/byte -no-alias-deps -o bin/.dpipe.eobjs/byte/dpipe.cmo -c -impl bin/dpipe.ml)
- File "bin/dpipe.ml", line 185, characters 6-10:
- 185 |       pure do_command $ input_size $ output_size $ mode $ level $ algo $ wbits)
-             ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- 
- File "bin/dpipe.ml", line 186, characters 4-13:
- 186 |   , Term.info "dpipe" ~doc ~man )
-           ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- 
- File "bin/dpipe.ml", line 188, characters 15-24:
- 188 | let () = match Term.eval command with `Error _ -> exit 1 | _ -> exit 0
-                      ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.eval
- Use Cmd.v and one of Cmd.eval* instead.
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -w +1..49 -w -4-41-44 -g -unbox-closures -unbox-closures-factor 20 -I lib/.impl.objs/byte -I lib/.impl.objs/native -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/checkseum -I /home/opam/.opam/5.4/lib/optint -cmi-file lib/.impl.objs/byte/impl__Decompress_inflate.cmi -no-alias-deps -open Impl -o lib/.impl.objs/native/impl__Decompress_inflate.cmx -c -impl lib/decompress_inflate.ml)
- File "lib/decompress_inflate.ml", line 1438, characters 40-42:
- 1438 |     let expect = Optint.Infix.(a1 << 24 || a2 << 16 || b1 << 8 || b2) in
-                                                ^^
- Alert deprecated: Optint.Infix.||
- Please use ( lor ).
- 
- File "lib/decompress_inflate.ml", line 1438, characters 34-36:
- 1438 |     let expect = Optint.Infix.(a1 << 24 || a2 << 16 || b1 << 8 || b2) in
-                                          ^^
- Alert deprecated: Optint.Infix.<<
- Please use ( lsl ).
- 
- File "lib/decompress_inflate.ml", line 1438, characters 52-54:
- 1438 |     let expect = Optint.Infix.(a1 << 24 || a2 << 16 || b1 << 8 || b2) in
-                                                            ^^
- Alert deprecated: Optint.Infix.||
- Please use ( lor ).
- 
- File "lib/decompress_inflate.ml", line 1438, characters 46-48:
- 1438 |     let expect = Optint.Infix.(a1 << 24 || a2 << 16 || b1 << 8 || b2) in
-                                                      ^^
- Alert deprecated: Optint.Infix.<<
- Please use ( lsl ).
- 
- File "lib/decompress_inflate.ml", line 1438, characters 63-65:
- 1438 |     let expect = Optint.Infix.(a1 << 24 || a2 << 16 || b1 << 8 || b2) in
-                                                                       ^^
- Alert deprecated: Optint.Infix.||
- Please use ( lor ).
- 
- File "lib/decompress_inflate.ml", line 1438, characters 58-60:
- 1438 |     let expect = Optint.Infix.(a1 << 24 || a2 << 16 || b1 << 8 || b2) in
-                                                                  ^^
- Alert deprecated: Optint.Infix.<<
- Please use ( lsl ).
- 
- File "lib/decompress_inflate.ml", line 1750, characters 32-34:
- 1750 |       Optint.Infix.(size3 << 24 || size2 << 16 || size1 << 8 || size0)
-                                        ^^
- Alert deprecated: Optint.Infix.||
- Please use ( lor ).
- 
- File "lib/decompress_inflate.ml", line 1750, characters 26-28:
- 1750 |       Optint.Infix.(size3 << 24 || size2 << 16 || size1 << 8 || size0)
-                                  ^^
- Alert deprecated: Optint.Infix.<<
- Please use ( lsl ).
- 
- File "lib/decompress_inflate.ml", line 1750, characters 47-49:
- 1750 |       Optint.Infix.(size3 << 24 || size2 << 16 || size1 << 8 || size0)
-                                                       ^^
- Alert deprecated: Optint.Infix.||
- Please use ( lor ).
- 
- File "lib/decompress_inflate.ml", line 1750, characters 41-43:
- 1750 |       Optint.Infix.(size3 << 24 || size2 << 16 || size1 << 8 || size0)
-                                                 ^^
- Alert deprecated: Optint.Infix.<<
- Please use ( lsl ).
- 
- File "lib/decompress_inflate.ml", line 1750, characters 61-63:
- 1750 |       Optint.Infix.(size3 << 24 || size2 << 16 || size1 << 8 || size0)
-                                                                     ^^
- Alert deprecated: Optint.Infix.||
- Please use ( lor ).
- 
- File "lib/decompress_inflate.ml", line 1750, characters 56-58:
- 1750 |       Optint.Infix.(size3 << 24 || size2 << 16 || size1 << 8 || size0)
-                                                                ^^
- Alert deprecated: Optint.Infix.<<
- Please use ( lsl ).
- 
- File "lib/decompress_inflate.ml", line 1772, characters 31-33:
- 1772 |       Optint.Infix.(crc4 << 24 || crc3 << 16 || crc2 << 8 || crc1)
-                                       ^^
- Alert deprecated: Optint.Infix.||
- Please use ( lor ).
- 
- File "lib/decompress_inflate.ml", line 1772, characters 25-27:
- 1772 |       Optint.Infix.(crc4 << 24 || crc3 << 16 || crc2 << 8 || crc1)
-                                 ^^
- Alert deprecated: Optint.Infix.<<
- Please use ( lsl ).
- 
- File "lib/decompress_inflate.ml", line 1772, characters 45-47:
- 1772 |       Optint.Infix.(crc4 << 24 || crc3 << 16 || crc2 << 8 || crc1)
-                                                     ^^
- Alert deprecated: Optint.Infix.||
- Please use ( lor ).
- 
- File "lib/decompress_inflate.ml", line 1772, characters 39-41:
- 1772 |       Optint.Infix.(crc4 << 24 || crc3 << 16 || crc2 << 8 || crc1)
-                                               ^^
- Alert deprecated: Optint.Infix.<<
- Please use ( lsl ).
- 
- File "lib/decompress_inflate.ml", line 1772, characters 58-60:
- 1772 |       Optint.Infix.(crc4 << 24 || crc3 << 16 || crc2 << 8 || crc1)
-                                                                  ^^
- Alert deprecated: Optint.Infix.||
- Please use ( lor ).
- 
- File "lib/decompress_inflate.ml", line 1772, characters 53-55:
- 1772 |       Optint.Infix.(crc4 << 24 || crc3 << 16 || crc2 << 8 || crc1)
-                                                             ^^
- Alert deprecated: Optint.Infix.<<
- Please use ( lsl ).
- 
- File "lib/decompress_inflate.ml", line 1840, characters 40-42:
- 1840 |     let mtime = Optint.Infix.(mt3 << 24 || mt2 << 16 || mt1 << 8 || mt0) in
-                                                ^^
- Alert deprecated: Optint.Infix.||
- Please use ( lor ).
- 
- File "lib/decompress_inflate.ml", line 1840, characters 34-36:
- 1840 |     let mtime = Optint.Infix.(mt3 << 24 || mt2 << 16 || mt1 << 8 || mt0) in
-                                          ^^
- Alert deprecated: Optint.Infix.<<
- Please use ( lsl ).
- 
- File "lib/decompress_inflate.ml", line 1840, characters 53-55:
- 1840 |     let mtime = Optint.Infix.(mt3 << 24 || mt2 << 16 || mt1 << 8 || mt0) in
-                                                             ^^
- Alert deprecated: Optint.Infix.||
- Please use ( lor ).
- 
- File "lib/decompress_inflate.ml", line 1840, characters 47-49:
- 1840 |     let mtime = Optint.Infix.(mt3 << 24 || mt2 << 16 || mt1 << 8 || mt0) in
-                                                       ^^
- Alert deprecated: Optint.Infix.<<
- Please use ( lsl ).
- 
- File "lib/decompress_inflate.ml", line 1840, characters 65-67:
- 1840 |     let mtime = Optint.Infix.(mt3 << 24 || mt2 << 16 || mt1 << 8 || mt0) in
-                                                                         ^^
- Alert deprecated: Optint.Infix.||
- Please use ( lor ).
- 
- File "lib/decompress_inflate.ml", line 1840, characters 60-62:
- 1840 |     let mtime = Optint.Infix.(mt3 << 24 || mt2 << 16 || mt1 << 8 || mt0) in
-                                                                    ^^
- Alert deprecated: Optint.Infix.<<
- Please use ( lsl ).
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -w +1..49 -w -4-41-44 -g -unbox-closures -unbox-closures-factor 20 -I lib/.impl.objs/byte -I lib/.impl.objs/native -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/checkseum -I /home/opam/.opam/5.4/lib/optint -cmi-file lib/.impl.objs/byte/impl__Decompress_deflate.cmi -no-alias-deps -open Impl -o lib/.impl.objs/native/impl__Decompress_deflate.cmx -c -impl lib/decompress_deflate.ml)
- File "lib/decompress_deflate.ml", line 1144, characters 43-45:
- 1144 |          Optint.(to_int Infix.(adler >> 16 && of_int32 0xFFFFl))
-                                                   ^^
- Alert deprecated: Optint.Infix.&&
- Please use ( land ).
- 
- File "lib/decompress_deflate.ml", line 1144, characters 37-39:
- 1144 |          Optint.(to_int Infix.(adler >> 16 && of_int32 0xFFFFl))
-                                             ^^
- Alert deprecated: Optint.Infix.>>
- Please use ( lsr ).
- 
- File "lib/decompress_deflate.ml", line 1146, characters 37-39:
- 1146 |          Optint.(to_int Infix.(adler && of_int32 0xFFFFl))
-                                             ^^
- Alert deprecated: Optint.Infix.&&
- Please use ( land ).
- 
- File "lib/decompress_deflate.ml", line 1398, characters 54-56:
- 1398 |     @@ KCrc32.put_short_lsb Optint.(to_int Infix.(crc && of_int32 0xFFFFl))
-                                                              ^^
- Alert deprecated: Optint.Infix.&&
- Please use ( land ).
- 
- File "lib/decompress_deflate.ml", line 1400, characters 41-43:
- 1400 |          Optint.(to_int Infix.(crc >> 16 && of_int32 0xFFFFl))
-                                                 ^^
- Alert deprecated: Optint.Infix.&&
- Please use ( land ).
- 
- File "lib/decompress_deflate.ml", line 1400, characters 35-37:
- 1400 |          Optint.(to_int Infix.(crc >> 16 && of_int32 0xFFFFl))
-                                           ^^
- Alert deprecated: Optint.Infix.>>
- Please use ( lsr ).
- (cd _build/default && /home/opam/.opam/5.4/bin/ocamlopt.opt -w -40 -g -I bin/.dpipe.eobjs/byte -I bin/.dpipe.eobjs/native -I /home/opam/.opam/5.4/lib/bigarray-compat -I /home/opam/.opam/5.4/lib/checkseum/c -I /home/opam/.opam/5.4/lib/cmdliner -I /home/opam/.opam/5.4/lib/ocaml/unix -I /home/opam/.opam/5.4/lib/optint -I bin/bs/.bigstring_rw.objs/byte -I bin/bs/.bigstring_rw.objs/native -I lib/.decompress.objs/byte -I lib/.decompress.objs/native -I lib/.impl.objs/byte -I lib/.impl.objs/native -cmi-file bin/.dpipe.eobjs/byte/dpipe.cmi -no-alias-deps -o bin/.dpipe.eobjs/native/dpipe.cmx -c -impl bin/dpipe.ml)
- File "bin/dpipe.ml", line 185, characters 6-10:
- 185 |       pure do_command $ input_size $ output_size $ mode $ level $ algo $ wbits)
-             ^^^^
- Alert deprecated: Cmdliner.Term.pure
- Use Term.const instead.
- 
- File "bin/dpipe.ml", line 186, characters 4-13:
- 186 |   , Term.info "dpipe" ~doc ~man )
-           ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.info
- Use Cmd.info instead.
- 
- File "bin/dpipe.ml", line 188, characters 15-24:
- 188 | let () = match Term.eval command with `Error _ -> exit 1 | _ -> exit 0
-                      ^^^^^^^^^
- Alert deprecated: Cmdliner.Term.eval
- Use Cmd.v and one of Cmd.eval* instead.
Processing  2/4: [decompress: dune runtest]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "runtest" "-p" "decompress" "-j" "255" (CWD=/home/opam/.opam/5.4/.opam-switch/build/decompress.0.9.1)
- (cd _build/default/test && ./test_on_files.exe)
- Testing `decompress test'.
- This run has ID `RPNCVU30'.
- 
-   [OK]          files          0   zlib c2d level:1 wbits:15 /bin/which.
-   [OK]          files          1   zlib d2c level:1 wbits:15 /bin/which.
-   [OK]          files          2   zlib d2d level:1 wbits:15 /bin/which.
-   [OK]          files          3   zlib c2d level:2 wbits:15 /bin/which.
-   [OK]          files          4   zlib d2c level:2 wbits:15 /bin/which.
-   [OK]          files          5   zlib d2d level:2 wbits:15 /bin/which.
-   [OK]          files          6   zlib c2d level:3 wbits:15 /bin/which.
-   [OK]          files          7   zlib d2c level:3 wbits:15 /bin/which.
-   [OK]          files          8   zlib d2d level:3 wbits:15 /bin/which.
-   [OK]          files          9   zlib c2d level:4 wbits:15 /bin/which.
-   [OK]          files         10   zlib d2c level:4 wbits:15 /bin/which.
-   [OK]          files         11   zlib d2d level:4 wbits:15 /bin/which.
-   [OK]          files         12   zlib c2d level:5 wbits:15 /bin/which.
-   [OK]          files         13   zlib d2c level:5 wbits:15 /bin/which.
-   [OK]          files         14   zlib d2d level:5 wbits:15 /bin/which.
-   [OK]          files         15   zlib c2d level:6 wbits:15 /bin/which.
-   [OK]          files         16   zlib d2c level:6 wbits:15 /bin/which.
-   [OK]          files         17   zlib d2d level:6 wbits:15 /bin/which.
-   [OK]          files         18   zlib c2d level:7 wbits:15 /bin/which.
-   [OK]          files         19   zlib d2c level:7 wbits:15 /bin/which.
-   [OK]          files         20   zlib d2d level:7 wbits:15 /bin/which.
-   [OK]          files         21   zlib c2d level:8 wbits:15 /bin/which.
-   [OK]          files         22   zlib d2c level:8 wbits:15 /bin/which.
-   [OK]          files         23   zlib d2d level:8 wbits:15 /bin/which.
-   [OK]          files         24   zlib c2d level:9 wbits:15 /bin/which.
-   [OK]          files         25   zlib d2c level:9 wbits:15 /bin/which.
-   [OK]          files         26   zlib d2d level:9 wbits:15 /bin/which.
-   [OK]          files         27   zlib c2d level:1 wbits:15 /bin/unlzma.
-   [OK]          files         28   zlib d2c level:1 wbits:15 /bin/unlzma.
-   [OK]          files         29   zlib d2d level:1 wbits:15 /bin/unlzma.
-   [OK]          files         30   zlib c2d level:2 wbits:15 /bin/unlzma.
-   [OK]          files         31   zlib d2c level:2 wbits:15 /bin/unlzma.
-   [OK]          files         32   zlib d2d level:2 wbits:15 /bin/unlzma.
-   [OK]          files         33   zlib c2d level:3 wbits:15 /bin/unlzma.
-   [OK]          files         34   zlib d2c level:3 wbits:15 /bin/unlzma.
-   [OK]          files         35   zlib d2d level:3 wbits:15 /bin/unlzma.
-   [OK]          files         36   zlib c2d level:4 wbits:15 /bin/unlzma.
-   [OK]          files         37   zlib d2c level:4 wbits:15 /bin/unlzma.
-   [OK]          files         38   zlib d2d level:4 wbits:15 /bin/unlzma.
-   [OK]          files         39   zlib c2d level:5 wbits:15 /bin/unlzma.
-   [OK]          files         40   zlib d2c level:5 wbits:15 /bin/unlzma.
-   [OK]          files         41   zlib d2d level:5 wbits:15 /bin/unlzma.
-   [OK]          files         42   zlib c2d level:6 wbits:15 /bin/unlzma.
-   [OK]          files         43   zlib d2c level:6 wbits:15 /bin/unlzma.
-   [OK]          files         44   zlib d2d level:6 wbits:15 /bin/unlzma.
-   [OK]          files         45   zlib c2d level:7 wbits:15 /bin/unlzma.
-   [OK]          files         46   zlib d2c level:7 wbits:15 /bin/unlzma.
-   [OK]          files         47   zlib d2d level:7 wbits:15 /bin/unlzma.
-   [OK]          files         48   zlib c2d level:8 wbits:15 /bin/unlzma.
-   [OK]          files         49   zlib d2c level:8 wbits:15 /bin/unlzma.
-   [OK]          files         50   zlib d2d level:8 wbits:15 /bin/unlzma.
-   [OK]          files         51   zlib c2d level:9 wbits:15 /bin/unlzma.
-   [OK]          files         52   zlib d2c level:9 wbits:15 /bin/unlzma.
-   [OK]          files         53   zlib d2d level:9 wbits:15 /bin/unlzma.
-   [OK]          files         54   zlib c2d level:1 wbits:15 /bin/pidof.
-   [OK]          files         55   zlib d2c level:1 wbits:15 /bin/pidof.
-   [OK]          files         56   zlib d2d level:1 wbits:15 /bin/pidof.
-   [OK]          files         57   zlib c2d level:2 wbits:15 /bin/pidof.
-   [OK]          files         58   zlib d2c level:2 wbits:15 /bin/pidof.
-   [OK]          files         59   zlib d2d level:2 wbits:15 /bin/pidof.
-   [OK]          files         60   zlib c2d level:3 wbits:15 /bin/pidof.
-   [OK]          files         61   zlib d2c level:3 wbits:15 /bin/pidof.
-   [OK]          files         62   zlib d2d level:3 wbits:15 /bin/pidof.
-   [OK]          files         63   zlib c2d level:4 wbits:15 /bin/pidof.
-   [OK]          files         64   zlib d2c level:4 wbits:15 /bin/pidof.
-   [OK]          files         65   zlib d2d level:4 wbits:15 /bin/pidof.
-   [OK]          files         66   zlib c2d level:5 wbits:15 /bin/pidof.
-   [OK]          files         67   zlib d2c level:5 wbits:15 /bin/pidof.
-   [OK]          files         68   zlib d2d level:5 wbits:15 /bin/pidof.
-   [OK]          files         69   zlib c2d level:6 wbits:15 /bin/pidof.
-   [OK]          files         70   zlib d2c level:6 wbits:15 /bin/pidof.
-   [OK]          files         71   zlib d2d level:6 wbits:15 /bin/pidof.
-   [OK]          files         72   zlib c2d level:7 wbits:15 /bin/pidof.
-   [OK]          files         73   zlib d2c level:7 wbits:15 /bin/pidof.
-   [OK]          files         74   zlib d2d level:7 wbits:15 /bin/pidof.
-   [OK]          files         75   zlib c2d level:8 wbits:15 /bin/pidof.
-   [OK]          files         76   zlib d2c level:8 wbits:15 /bin/pidof.
-   [OK]          files         77   zlib d2d level:8 wbits:15 /bin/pidof.
-   [OK]          files         78   zlib c2d level:9 wbits:15 /bin/pidof.
-   [OK]          files         79   zlib d2c level:9 wbits:15 /bin/pidof.
-   [OK]          files         80   zlib d2d level:9 wbits:15 /bin/pidof.
-   [OK]          files         81   zlib c2d level:1 wbits:15 /bin/pico.
-   [OK]          files         82   zlib d2c level:1 wbits:15 /bin/pico.
-   [OK]          files         83   zlib d2d level:1 wbits:15 /bin/pico.
-   [OK]          files         84   zlib c2d level:2 wbits:15 /bin/pico.
-   [OK]          files         85   zlib d2c level:2 wbits:15 /bin/pico.
-   [OK]          files         86   zlib d2d level:2 wbits:15 /bin/pico.
-   [OK]          files         87   zlib c2d level:3 wbits:15 /bin/pico.
-   [OK]          files         88   zlib d2c level:3 wbits:15 /bin/pico.
-   [OK]          files         89   zlib d2d level:3 wbits:15 /bin/pico.
-   [OK]          files         90   zlib c2d level:4 wbits:15 /bin/pico.
-   [OK]          files         91   zlib d2c level:4 wbits:15 /bin/pico.
-   [OK]          files         92   zlib d2d level:4 wbits:15 /bin/pico.
-   [OK]          files         93   zlib c2d level:5 wbits:15 /bin/pico.
-   [OK]          files         94   zlib d2c level:5 wbits:15 /bin/pico.
-   [OK]          files         95   zlib d2d level:5 wbits:15 /bin/pico.
-   [OK]          files         96   zlib c2d level:6 wbits:15 /bin/pico.
-   [OK]          files         97   zlib d2c level:6 wbits:15 /bin/pico.
-   [OK]          files         98   zlib d2d level:6 wbits:15 /bin/pico.
-   [OK]          files         99   zlib c2d level:7 wbits:15 /bin/pico.
-   [OK]          files        100   zlib d2c level:7 wbits:15 /bin/pico.
-   [OK]          files        101   zlib d2d level:7 wbits:15 /bin/pico.
-   [OK]          files        102   zlib c2d level:8 wbits:15 /bin/pico.
-   [OK]          files        103   zlib d2c level:8 wbits:15 /bin/pico.
-   [OK]          files        104   zlib d2d level:8 wbits:15 /bin/pico.
-   [OK]          files        105   zlib c2d level:9 wbits:15 /bin/pico.
-   [OK]          files        106   zlib d2c level:9 wbits:15 /bin/pico.
-   [OK]          files        107   zlib d2d level:9 wbits:15 /bin/pico.
-   [OK]          files        108   zlib c2d level:1 wbits:15 /bin/pager.
-   [OK]          files        109   zlib d2c level:1 wbits:15 /bin/pager.
-   [OK]          files        110   zlib d2d level:1 wbits:15 /bin/pager.
-   [OK]          files        111   zlib c2d level:2 wbits:15 /bin/pager.
-   [OK]          files        112   zlib d2c level:2 wbits:15 /bin/pager.
-   [OK]          files        113   zlib d2d level:2 wbits:15 /bin/pager.
-   [OK]          files        114   zlib c2d level:3 wbits:15 /bin/pager.
-   [OK]          files        115   zlib d2c level:3 wbits:15 /bin/pager.
-   [OK]          files        116   zlib d2d level:3 wbits:15 /bin/pager.
-   [OK]          files        117   zlib c2d level:4 wbits:15 /bin/pager.
-   [OK]          files        118   zlib d2c level:4 wbits:15 /bin/pager.
-   [OK]          files        119   zlib d2d level:4 wbits:15 /bin/pager.
-   [OK]          files        120   zlib c2d level:5 wbits:15 /bin/pager.
-   [OK]          files        121   zlib d2c level:5 wbits:15 /bin/pager.
-   [OK]          files        122   zlib d2d level:5 wbits:15 /bin/pager.
-   [OK]          files        123   zlib c2d level:6 wbits:15 /bin/pager.
-   [OK]          files        124   zlib d2c level:6 wbits:15 /bin/pager.
-   [OK]          files        125   zlib d2d level:6 wbits:15 /bin/pager.
-   [OK]          files        126   zlib c2d level:7 wbits:15 /bin/pager.
-   [OK]          files        127   zlib d2c level:7 wbits:15 /bin/pager.
-   [OK]          files        128   zlib d2d level:7 wbits:15 /bin/pager.
-   [OK]          files        129   zlib c2d level:8 wbits:15 /bin/pager.
-   [OK]          files        130   zlib d2c level:8 wbits:15 /bin/pager.
-   [OK]          files        131   zlib d2d level:8 wbits:15 /bin/pager.
-   [OK]          files        132   zlib c2d level:9 wbits:15 /bin/pager.
-   [OK]          files        133   zlib d2c level:9 wbits:15 /bin/pager.
-   [OK]          files        134   zlib d2d level:9 wbits:15 /bin/pager.
-   [OK]          files        135   zlib c2d level:1 wbits:15 /bin/nawk.
-   [OK]          files        136   zlib d2c level:1 wbits:15 /bin/nawk.
-   [OK]          files        137   zlib d2d level:1 wbits:15 /bin/nawk.
-   [OK]          files        138   zlib c2d level:2 wbits:15 /bin/nawk.
-   [OK]          files        139   zlib d2c level:2 wbits:15 /bin/nawk.
-   [OK]          files        140   zlib d2d level:2 wbits:15 /bin/nawk.
-   [OK]          files        141   zlib c2d level:3 wbits:15 /bin/nawk.
-   [OK]          files        142   zlib d2c level:3 wbits:15 /bin/nawk.
-   [OK]          files        143   zlib d2d level:3 wbits:15 /bin/nawk.
-   [OK]          files        144   zlib c2d level:4 wbits:15 /bin/nawk.
-   [OK]          files        145   zlib d2c level:4 wbits:15 /bin/nawk.
-   [OK]          files        146   zlib d2d level:4 wbits:15 /bin/nawk.
-   [OK]          files        147   zlib c2d level:5 wbits:15 /bin/nawk.
-   [OK]          files        148   zlib d2c level:5 wbits:15 /bin/nawk.
-   [OK]          files        149   zlib d2d level:5 wbits:15 /bin/nawk.
-   [OK]          files        150   zlib c2d level:6 wbits:15 /bin/nawk.
-   [OK]          files        151   zlib d2c level:6 wbits:15 /bin/nawk.
-   [OK]          files        152   zlib d2d level:6 wbits:15 /bin/nawk.
-   [OK]          files        153   zlib c2d level:7 wbits:15 /bin/nawk.
-   [OK]          files        154   zlib d2c level:7 wbits:15 /bin/nawk.
-   [OK]          files        155   zlib d2d level:7 wbits:15 /bin/nawk.
-   [OK]          files        156   zlib c2d level:8 wbits:15 /bin/nawk.
-   [OK]          files        157   zlib d2c level:8 wbits:15 /bin/nawk.
-   [OK]          files        158   zlib d2d level:8 wbits:15 /bin/nawk.
-   [OK]          files        159   zlib c2d level:9 wbits:15 /bin/nawk.
-   [OK]          files        160   zlib d2c level:9 wbits:15 /bin/nawk.
-   [OK]          files        161   zlib d2d level:9 wbits:15 /bin/nawk.
-   [OK]          files        162   zlib c2d level:1 wbits:15 /bin/lzmore.
-   [OK]          files        163   zlib d2c level:1 wbits:15 /bin/lzmore.
-   [OK]          files        164   zlib d2d level:1 wbits:15 /bin/lzmore.
-   [OK]          files        165   zlib c2d level:2 wbits:15 /bin/lzmore.
-   [OK]          files        166   zlib d2c level:2 wbits:15 /bin/lzmore.
-   [OK]          files        167   zlib d2d level:2 wbits:15 /bin/lzmore.
-   [OK]          files        168   zlib c2d level:3 wbits:15 /bin/lzmore.
-   [OK]          files        169   zlib d2c level:3 wbits:15 /bin/lzmore.
-   [OK]          files        170   zlib d2d level:3 wbits:15 /bin/lzmore.
-   [OK]          files        171   zlib c2d level:4 wbits:15 /bin/lzmore.
-   [OK]          files        172   zlib d2c level:4 wbits:15 /bin/lzmore.
-   [OK]          files        173   zlib d2d level:4 wbits:15 /bin/lzmore.
-   [OK]          files        174   zlib c2d level:5 wbits:15 /bin/lzmore.
-   [OK]          files        175   zlib d2c level:5 wbits:15 /bin/lzmore.
-   [OK]          files        176   zlib d2d level:5 wbits:15 /bin/lzmore.
-   [OK]          files        177   zlib c2d level:6 wbits:15 /bin/lzmore.
-   [OK]          files        178   zlib d2c level:6 wbits:15 /bin/lzmore.
-   [OK]          files        179   zlib d2d level:6 wbits:15 /bin/lzmore.
-   [OK]          files        180   zlib c2d level:7 wbits:15 /bin/lzmore.
-   [OK]          files        181   zlib d2c level:7 wbits:15 /bin/lzmore.
-   [OK]          files        182   zlib d2d level:7 wbits:15 /bin/lzmore.
-   [OK]          files        183   zlib c2d level:8 wbits:15 /bin/lzmore.
-   [OK]          files        184   zlib d2c level:8 wbits:15 /bin/lzmore.
-   [OK]          files        185   zlib d2d level:8 wbits:15 /bin/lzmore.
-   [OK]          files        186   zlib c2d level:9 wbits:15 /bin/lzmore.
-   [OK]          files        187   zlib d2c level:9 wbits:15 /bin/lzmore.
-   [OK]          files        188   zlib d2d level:9 wbits:15 /bin/lzmore.
-   [OK]          files        189   zlib c2d level:1 wbits:15 /bin/lzma.
-   [OK]          files        190   zlib d2c level:1 wbits:15 /bin/lzma.
-   [OK]          files        191   zlib d2d level:1 wbits:15 /bin/lzma.
-   [OK]          files        192   zlib c2d level:2 wbits:15 /bin/lzma.
-   [OK]          files        193   zlib d2c level:2 wbits:15 /bin/lzma.
-   [OK]          files        194   zlib d2d level:2 wbits:15 /bin/lzma.
-   [OK]          files        195   zlib c2d level:3 wbits:15 /bin/lzma.
-   [OK]          files        196   zlib d2c level:3 wbits:15 /bin/lzma.
-   [OK]          files        197   zlib d2d level:3 wbits:15 /bin/lzma.
-   [OK]          files        198   zlib c2d level:4 wbits:15 /bin/lzma.
-   [OK]          files        199   zlib d2c level:4 wbits:15 /bin/lzma.
-   [OK]          files        200   zlib d2d level:4 wbits:15 /bin/lzma.
-   [OK]          files        201   zlib c2d level:5 wbits:15 /bin/lzma.
-   [OK]          files        202   zlib d2c level:5 wbits:15 /bin/lzma.
-   [OK]          files        203   zlib d2d level:5 wbits:15 /bin/lzma.
-   [OK]          files        204   zlib c2d level:6 wbits:15 /bin/lzma.
-   [OK]          files        205   zlib d2c level:6 wbits:15 /bin/lzma.
-   [OK]          files        206   zlib d2d level:6 wbits:15 /bin/lzma.
-   [OK]          files        207   zlib c2d level:7 wbits:15 /bin/lzma.
-   [OK]          files        208   zlib d2c level:7 wbits:15 /bin/lzma.
-   [OK]          files        209   zlib d2d level:7 wbits:15 /bin/lzma.
-   [OK]          files        210   zlib c2d level:8 wbits:15 /bin/lzma.
-   [OK]          files        211   zlib d2c level:8 wbits:15 /bin/lzma.
-   [OK]          files        212   zlib d2d level:8 wbits:15 /bin/lzma.
-   [OK]          files        213   zlib c2d level:9 wbits:15 /bin/lzma.
-   [OK]          files        214   zlib d2c level:9 wbits:15 /bin/lzma.
-   [OK]          files        215   zlib d2d level:9 wbits:15 /bin/lzma.
-   [OK]          files        216   zlib c2d level:1 wbits:15 /bin/lzless.
-   [OK]          files        217   zlib d2c level:1 wbits:15 /bin/lzless.
-   [OK]          files        218   zlib d2d level:1 wbits:15 /bin/lzless.
-   [OK]          files        219   zlib c2d level:2 wbits:15 /bin/lzless.
-   [OK]          files        220   zlib d2c level:2 wbits:15 /bin/lzless.
-   [OK]          files        221   zlib d2d level:2 wbits:15 /bin/lzless.
-   [OK]          files        222   zlib c2d level:3 wbits:15 /bin/lzless.
-   [OK]          files        223   zlib d2c level:3 wbits:15 /bin/lzless.
-   [OK]          files        224   zlib d2d level:3 wbits:15 /bin/lzless.
-   [OK]          files        225   zlib c2d level:4 wbits:15 /bin/lzless.
-   [OK]          files        226   zlib d2c level:4 wbits:15 /bin/lzless.
-   [OK]          files        227   zlib d2d level:4 wbits:15 /bin/lzless.
-   [OK]          files        228   zlib c2d level:5 wbits:15 /bin/lzless.
-   [OK]          files        229   zlib d2c level:5 wbits:15 /bin/lzless.
-   [OK]          files        230   zlib d2d level:5 wbits:15 /bin/lzless.
-   [OK]          files        231   zlib c2d level:6 wbits:15 /bin/lzless.
-   [OK]          files        232   zlib d2c level:6 wbits:15 /bin/lzless.
-   [OK]          files        233   zlib d2d level:6 wbits:15 /bin/lzless.
-   [OK]          files        234   zlib c2d level:7 wbits:15 /bin/lzless.
-   [OK]          files        235   zlib d2c level:7 wbits:15 /bin/lzless.
-   [OK]          files        236   zlib d2d level:7 wbits:15 /bin/lzless.
-   [OK]          files        237   zlib c2d level:8 wbits:15 /bin/lzless.
-   [OK]          files        238   zlib d2c level:8 wbits:15 /bin/lzless.
-   [OK]          files        239   zlib d2d level:8 wbits:15 /bin/lzless.
-   [OK]          files        240   zlib c2d level:9 wbits:15 /bin/lzless.
-   [OK]          files        241   zlib d2c level:9 wbits:15 /bin/lzless.
-   [OK]          files        242   zlib d2d level:9 wbits:15 /bin/lzless.
-   [OK]          files        243   zlib c2d level:1 wbits:15 /bin/lzgrep.
-   [OK]          files        244   zlib d2c level:1 wbits:15 /bin/lzgrep.
-   [OK]          files        245   zlib d2d level:1 wbits:15 /bin/lzgrep.
-   [OK]          files        246   zlib c2d level:2 wbits:15 /bin/lzgrep.
-   [OK]          files        247   zlib d2c level:2 wbits:15 /bin/lzgrep.
-   [OK]          files        248   zlib d2d level:2 wbits:15 /bin/lzgrep.
-   [OK]          files        249   zlib c2d level:3 wbits:15 /bin/lzgrep.
-   [OK]          files        250   zlib d2c level:3 wbits:15 /bin/lzgrep.
-   [OK]          files        251   zlib d2d level:3 wbits:15 /bin/lzgrep.
-   [OK]          files        252   zlib c2d level:4 wbits:15 /bin/lzgrep.
-   [OK]          files        253   zlib d2c level:4 wbits:15 /bin/lzgrep.
-   [OK]          files        254   zlib d2d level:4 wbits:15 /bin/lzgrep.
-   [OK]          files        255   zlib c2d level:5 wbits:15 /bin/lzgrep.
-   [OK]          files        256   zlib d2c level:5 wbits:15 /bin/lzgrep.
-   [OK]          files        257   zlib d2d level:5 wbits:15 /bin/lzgrep.
-   [OK]          files        258   zlib c2d level:6 wbits:15 /bin/lzgrep.
-   [OK]          files        259   zlib d2c level:6 wbits:15 /bin/lzgrep.
-   [OK]          files        260   zlib d2d level:6 wbits:15 /bin/lzgrep.
-   [OK]          files        261   zlib c2d level:7 wbits:15 /bin/lzgrep.
-   [OK]          files        262   zlib d2c level:7 wbits:15 /bin/lzgrep.
-   [OK]          files        263   zlib d2d level:7 wbits:15 /bin/lzgrep.
-   [OK]          files        264   zlib c2d level:8 wbits:15 /bin/lzgrep.
-   [OK]          files        265   zlib d2c level:8 wbits:15 /bin/lzgrep.
-   [OK]          files        266   zlib d2d level:8 wbits:15 /bin/lzgrep.
-   [OK]          files        267   zlib c2d level:9 wbits:15 /bin/lzgrep.
-   [OK]          files        268   zlib d2c level:9 wbits:15 /bin/lzgrep.
-   [OK]          files        269   zlib d2d level:9 wbits:15 /bin/lzgrep.
-   [OK]          files        270   zlib c2d level:1 wbits:15 /bin/lzfgrep.
-   [OK]          files        271   zlib d2c level:1 wbits:15 /bin/lzfgrep.
-   [OK]          files        272   zlib d2d level:1 wbits:15 /bin/lzfgrep.
-   [OK]          files        273   zlib c2d level:2 wbits:15 /bin/lzfgrep.
-   [OK]          files        274   zlib d2c level:2 wbits:15 /bin/lzfgrep.
-   [OK]          files        275   zlib d2d level:2 wbits:15 /bin/lzfgrep.
-   [OK]          files        276   zlib c2d level:3 wbits:15 /bin/lzfgrep.
-   [OK]          files        277   zlib d2c level:3 wbits:15 /bin/lzfgrep.
-   [OK]          files        278   zlib d2d level:3 wbits:15 /bin/lzfgrep.
-   [OK]          files        279   zlib c2d level:4 wbits:15 /bin/lzfgrep.
-   [OK]          files        280   zlib d2c level:4 wbits:15 /bin/lzfgrep.
-   [OK]          files        281   zlib d2d level:4 wbits:15 /bin/lzfgrep.
-   [OK]          files        282   zlib c2d level:5 wbits:15 /bin/lzfgrep.
-   [OK]          files        283   zlib d2c level:5 wbits:15 /bin/lzfgrep.
-   [OK]          files        284   zlib d2d level:5 wbits:15 /bin/lzfgrep.
-   [OK]          files        285   zlib c2d level:6 wbits:15 /bin/lzfgrep.
-   [OK]          files        286   zlib d2c level:6 wbits:15 /bin/lzfgrep.
-   [OK]          files        287   zlib d2d level:6 wbits:15 /bin/lzfgrep.
-   [OK]          files        288   zlib c2d level:7 wbits:15 /bin/lzfgrep.
-   [OK]          files        289   zlib d2c level:7 wbits:15 /bin/lzfgrep.
-   [OK]          files        290   zlib d2d level:7 wbits:15 /bin/lzfgrep.
-   [OK]          files        291   zlib c2d level:8 wbits:15 /bin/lzfgrep.
-   [OK]          files        292   zlib d2c level:8 wbits:15 /bin/lzfgrep.
-   [OK]          files        293   zlib d2d level:8 wbits:15 /bin/lzfgrep.
-   [OK]          files        294   zlib c2d level:9 wbits:15 /bin/lzfgrep.
-   [OK]          files        295   zlib d2c level:9 wbits:15 /bin/lzfgrep.
-   [OK]          files        296   zlib d2d level:9 wbits:15 /bin/lzfgrep.
-   [OK]          files        297   zlib c2d level:1 wbits:15 /bin/lzegrep.
-   [OK]          files        298   zlib d2c level:1 wbits:15 /bin/lzegrep.
-   [OK]          files        299   zlib d2d level:1 wbits:15 /bin/lzegrep.
-   [OK]          files        300   zlib c2d level:2 wbits:15 /bin/lzegrep.
-   [OK]          files        301   zlib d2c level:2 wbits:15 /bin/lzegrep.
-   [OK]          files        302   zlib d2d level:2 wbits:15 /bin/lzegrep.
-   [OK]          files        303   zlib c2d level:3 wbits:15 /bin/lzegrep.
-   [OK]          files        304   zlib d2c level:3 wbits:15 /bin/lzegrep.
-   [OK]          files        305   zlib d2d level:3 wbits:15 /bin/lzegrep.
-   [OK]          files        306   zlib c2d level:4 wbits:15 /bin/lzegrep.
-   [OK]          files        307   zlib d2c level:4 wbits:15 /bin/lzegrep.
-   [OK]          files        308   zlib d2d level:4 wbits:15 /bin/lzegrep.
-   [OK]          files        309   zlib c2d level:5 wbits:15 /bin/lzegrep.
-   [OK]          files        310   zlib d2c level:5 wbits:15 /bin/lzegrep.
-   [OK]          files        311   zlib d2d level:5 wbits:15 /bin/lzegrep.
-   [OK]          files        312   zlib c2d level:6 wbits:15 /bin/lzegrep.
-   [OK]          files        313   zlib d2c level:6 wbits:15 /bin/lzegrep.
-   [OK]          files        314   zlib d2d level:6 wbits:15 /bin/lzegrep.
-   [OK]          files        315   zlib c2d level:7 wbits:15 /bin/lzegrep.
-   [OK]          files        316   zlib d2c level:7 wbits:15 /bin/lzegrep.
-   [OK]          files        317   zlib d2d level:7 wbits:15 /bin/lzegrep.
-   [OK]          files        318   zlib c2d level:8 wbits:15 /bin/lzegrep.
-   [OK]          files        319   zlib d2c level:8 wbits:15 /bin/lzegrep.
-   [OK]          files        320   zlib d2d level:8 wbits:15 /bin/lzegrep.
-   [OK]          files        321   zlib c2d level:9 wbits:15 /bin/lzegrep.
-   [OK]          files        322   zlib d2c level:9 wbits:15 /bin/lzegrep.
-   [OK]          files        323   zlib d2d level:9 wbits:15 /bin/lzegrep.
-   [OK]          files        324   zlib c2d level:1 wbits:15 /bin/lzdiff.
-   [OK]          files        325   zlib d2c level:1 wbits:15 /bin/lzdiff.
-   [OK]          files        326   zlib d2d level:1 wbits:15 /bin/lzdiff.
-   [OK]          files        327   zlib c2d level:2 wbits:15 /bin/lzdiff.
-   [OK]          files        328   zlib d2c level:2 wbits:15 /bin/lzdiff.
-   [OK]          files        329   zlib d2d level:2 wbits:15 /bin/lzdiff.
-   [OK]          files        330   zlib c2d level:3 wbits:15 /bin/lzdiff.
-   [OK]          files        331   zlib d2c level:3 wbits:15 /bin/lzdiff.
-   [OK]          files        332   zlib d2d level:3 wbits:15 /bin/lzdiff.
-   [OK]          files        333   zlib c2d level:4 wbits:15 /bin/lzdiff.
-   [OK]          files        334   zlib d2c level:4 wbits:15 /bin/lzdiff.
-   [OK]          files        335   zlib d2d level:4 wbits:15 /bin/lzdiff.
-   [OK]          files        336   zlib c2d level:5 wbits:15 /bin/lzdiff.
-   [OK]          files        337   zlib d2c level:5 wbits:15 /bin/lzdiff.
-   [OK]          files        338   zlib d2d level:5 wbits:15 /bin/lzdiff.
-   [OK]          files        339   zlib c2d level:6 wbits:15 /bin/lzdiff.
-   [OK]          files        340   zlib d2c level:6 wbits:15 /bin/lzdiff.
-   [OK]          files        341   zlib d2d level:6 wbits:15 /bin/lzdiff.
-   [OK]          files        342   zlib c2d level:7 wbits:15 /bin/lzdiff.
-   [OK]          files        343   zlib d2c level:7 wbits:15 /bin/lzdiff.
-   [OK]          files        344   zlib d2d level:7 wbits:15 /bin/lzdiff.
-   [OK]          files        345   zlib c2d level:8 wbits:15 /bin/lzdiff.
-   [OK]          files        346   zlib d2c level:8 wbits:15 /bin/lzdiff.
-   [OK]          files        347   zlib d2d level:8 wbits:15 /bin/lzdiff.
-   [OK]          files        348   zlib c2d level:9 wbits:15 /bin/lzdiff.
-   [OK]          files        349   zlib d2c level:9 wbits:15 /bin/lzdiff.
-   [OK]          files        350   zlib d2d level:9 wbits:15 /bin/lzdiff.
-   [OK]          files        351   zlib c2d level:1 wbits:15 /bin/lzcmp.
-   [OK]          files        352   zlib d2c level:1 wbits:15 /bin/lzcmp.
-   [OK]          files        353   zlib d2d level:1 wbits:15 /bin/lzcmp.
-   [OK]          files        354   zlib c2d level:2 wbits:15 /bin/lzcmp.
-   [OK]          files        355   zlib d2c level:2 wbits:15 /bin/lzcmp.
-   [OK]          files        356   zlib d2d level:2 wbits:15 /bin/lzcmp.
-   [OK]          files        357   zlib c2d level:3 wbits:15 /bin/lzcmp.
-   [OK]          files        358   zlib d2c level:3 wbits:15 /bin/lzcmp.
-   [OK]          files        359   zlib d2d level:3 wbits:15 /bin/lzcmp.
-   [OK]          files        360   zlib c2d level:4 wbits:15 /bin/lzcmp.
-   [OK]          files        361   zlib d2c level:4 wbits:15 /bin/lzcmp.
-   [OK]          files        362   zlib d2d level:4 wbits:15 /bin/lzcmp.
-   [OK]          files        363   zlib c2d level:5 wbits:15 /bin/lzcmp.
-   [OK]          files        364   zlib d2c level:5 wbits:15 /bin/lzcmp.
-   [OK]          files        365   zlib d2d level:5 wbits:15 /bin/lzcmp.
-   [OK]          files        366   zlib c2d level:6 wbits:15 /bin/lzcmp.
-   [OK]          files        367   zlib d2c level:6 wbits:15 /bin/lzcmp.
-   [OK]          files        368   zlib d2d level:6 wbits:15 /bin/lzcmp.
-   [OK]          files        369   zlib c2d level:7 wbits:15 /bin/lzcmp.
-   [OK]          files        370   zlib d2c level:7 wbits:15 /bin/lzcmp.
-   [OK]          files        371   zlib d2d level:7 wbits:15 /bin/lzcmp.
-   [OK]          files        372   zlib c2d level:8 wbits:15 /bin/lzcmp.
-   [OK]          files        373   zlib d2c level:8 wbits:15 /bin/lzcmp.
-   [OK]          files        374   zlib d2d level:8 wbits:15 /bin/lzcmp.
-   [OK]          files        375   zlib c2d level:9 wbits:15 /bin/lzcmp.
-   [OK]          files        376   zlib d2c level:9 wbits:15 /bin/lzcmp.
-   [OK]          files        377   zlib d2d level:9 wbits:15 /bin/lzcmp.
-   [OK]          files        378   zlib c2d level:1 wbits:15 /bin/lzcat.
-   [OK]          files        379   zlib d2c level:1 wbits:15 /bin/lzcat.
-   [OK]          files        380   zlib d2d level:1 wbits:15 /bin/lzcat.
-   [OK]          files        381   zlib c2d level:2 wbits:15 /bin/lzcat.
-   [OK]          files        382   zlib d2c level:2 wbits:15 /bin/lzcat.
-   [OK]          files        383   zlib d2d level:2 wbits:15 /bin/lzcat.
-   [OK]          files        384   zlib c2d level:3 wbits:15 /bin/lzcat.
-   [OK]          files        385   zlib d2c level:3 wbits:15 /bin/lzcat.
-   [OK]          files        386   zlib d2d level:3 wbits:15 /bin/lzcat.
-   [OK]          files        387   zlib c2d level:4 wbits:15 /bin/lzcat.
-   [OK]          files        388   zlib d2c level:4 wbits:15 /bin/lzcat.
-   [OK]          files        389   zlib d2d level:4 wbits:15 /bin/lzcat.
-   [OK]          files        390   zlib c2d level:5 wbits:15 /bin/lzcat.
-   [OK]          files        391   zlib d2c level:5 wbits:15 /bin/lzcat.
-   [OK]          files        392   zlib d2d level:5 wbits:15 /bin/lzcat.
-   [OK]          files        393   zlib c2d level:6 wbits:15 /bin/lzcat.
-   [OK]          files        394   zlib d2c level:6 wbits:15 /bin/lzcat.
-   [OK]          files        395   zlib d2d level:6 wbits:15 /bin/lzcat.
-   [OK]          files        396   zlib c2d level:7 wbits:15 /bin/lzcat.
-   [OK]          files        397   zlib d2c level:7 wbits:15 /bin/lzcat.
-   [OK]          files        398   zlib d2d level:7 wbits:15 /bin/lzcat.
-   [OK]          files        399   zlib c2d level:8 wbits:15 /bin/lzcat.
-   [OK]          files        400   zlib d2c level:8 wbits:15 /bin/lzcat.
-   [OK]          files        401   zlib d2d level:8 wbits:15 /bin/lzcat.
-   [OK]          files        402   zlib c2d level:9 wbits:15 /bin/lzcat.
-   [OK]          files        403   zlib d2c level:9 wbits:15 /bin/lzcat.
-   [OK]          files        404   zlib d2d level:9 wbits:15 /bin/lzcat.
-   [OK]          files        405   zlib c2d level:1 wbits:15 /bin/ld.so.
-   [OK]          files        406   zlib d2c level:1 wbits:15 /bin/ld.so.
-   [OK]          files        407   zlib d2d level:1 wbits:15 /bin/ld.so.
-   [OK]          files        408   zlib c2d level:2 wbits:15 /bin/ld.so.
-   [OK]          files        409   zlib d2c level:2 wbits:15 /bin/ld.so.
-   [OK]          files        410   zlib d2d level:2 wbits:15 /bin/ld.so.
-   [OK]          files        411   zlib c2d level:3 wbits:15 /bin/ld.so.
-   [OK]          files        412   zlib d2c level:3 wbits:15 /bin/ld.so.
-   [OK]          files        413   zlib d2d level:3 wbits:15 /bin/ld.so.
-   [OK]          files        414   zlib c2d level:4 wbits:15 /bin/ld.so.
-   [OK]          files        415   zlib d2c level:4 wbits:15 /bin/ld.so.
-   [OK]          files        416   zlib d2d level:4 wbits:15 /bin/ld.so.
-   [OK]          files        417   zlib c2d level:5 wbits:15 /bin/ld.so.
-   [OK]          files        418   zlib d2c level:5 wbits:15 /bin/ld.so.
-   [OK]          files        419   zlib d2d level:5 wbits:15 /bin/ld.so.
-   [OK]          files        420   zlib c2d level:6 wbits:15 /bin/ld.so.
-   [OK]          files        421   zlib d2c level:6 wbits:15 /bin/ld.so.
-   [OK]          files        422   zlib d2d level:6 wbits:15 /bin/ld.so.
-   [OK]          files        423   zlib c2d level:7 wbits:15 /bin/ld.so.
-   [OK]          files        424   zlib d2c level:7 wbits:15 /bin/ld.so.
-   [OK]          files        425   zlib d2d level:7 wbits:15 /bin/ld.so.
-   [OK]          files        426   zlib c2d level:8 wbits:15 /bin/ld.so.
-   [OK]          files        427   zlib d2c level:8 wbits:15 /bin/ld.so.
-   [OK]          files        428   zlib d2d level:8 wbits:15 /bin/ld.so.
-   [OK]          files        429   zlib c2d level:9 wbits:15 /bin/ld.so.
-   [OK]          files        430   zlib d2c level:9 wbits:15 /bin/ld.so.
-   [OK]          files        431   zlib d2d level:9 wbits:15 /bin/ld.so.
-   [OK]          files        432   zlib c2d level:1 wbits:15 /bin/fakeroot.
-   [OK]          files        433   zlib d2c level:1 wbits:15 /bin/fakeroot.
-   [OK]          files        434   zlib d2d level:1 wbits:15 /bin/fakeroot.
-   [OK]          files        435   zlib c2d level:2 wbits:15 /bin/fakeroot.
-   [OK]          files        436   zlib d2c level:2 wbits:15 /bin/fakeroot.
-   [OK]          files        437   zlib d2d level:2 wbits:15 /bin/fakeroot.
-   [OK]          files        438   zlib c2d level:3 wbits:15 /bin/fakeroot.
-   [OK]          files        439   zlib d2c level:3 wbits:15 /bin/fakeroot.
-   [OK]          files        440   zlib d2d level:3 wbits:15 /bin/fakeroot.
-   [OK]          files        441   zlib c2d level:4 wbits:15 /bin/fakeroot.
-   [OK]          files        442   zlib d2c level:4 wbits:15 /bin/fakeroot.
-   [OK]          files        443   zlib d2d level:4 wbits:15 /bin/fakeroot.
-   [OK]          files        444   zlib c2d level:5 wbits:15 /bin/fakeroot.
-   [OK]          files        445   zlib d2c level:5 wbits:15 /bin/fakeroot.
-   [OK]          files        446   zlib d2d level:5 wbits:15 /bin/fakeroot.
-   [OK]          files        447   zlib c2d level:6 wbits:15 /bin/fakeroot.
-   [OK]          files        448   zlib d2c level:6 wbits:15 /bin/fakeroot.
-   [OK]          files        449   zlib d2d level:6 wbits:15 /bin/fakeroot.
-   [OK]          files        450   zlib c2d level:7 wbits:15 /bin/fakeroot.
-   [OK]          files        451   zlib d2c level:7 wbits:15 /bin/fakeroot.
-   [OK]          files        452   zlib d2d level:7 wbits:15 /bin/fakeroot.
-   [OK]          files        453   zlib c2d level:8 wbits:15 /bin/fakeroot.
-   [OK]          files        454   zlib d2c level:8 wbits:15 /bin/fakeroot.
-   [OK]          files        455   zlib d2d level:8 wbits:15 /bin/fakeroot.
-   [OK]          files        456   zlib c2d level:9 wbits:15 /bin/fakeroot.
-   [OK]          files        457   zlib d2c level:9 wbits:15 /bin/fakeroot.
-   [OK]          files        458   zlib d2d level:9 wbits:15 /bin/fakeroot.
-   [OK]          files        459   zlib c2d level:1 wbits:15 /bin/editor.
-   [OK]          files        460   zlib d2c level:1 wbits:15 /bin/editor.
-   [OK]          files        461   zlib d2d level:1 wbits:15 /bin/editor.
-   [OK]          files        462   zlib c2d level:2 wbits:15 /bin/editor.
-   [OK]          files        463   zlib d2c level:2 wbits:15 /bin/editor.
-   [OK]          files        464   zlib d2d level:2 wbits:15 /bin/editor.
-   [OK]          files        465   zlib c2d level:3 wbits:15 /bin/editor.
-   [OK]          files        466   zlib d2c level:3 wbits:15 /bin/editor.
-   [OK]          files        467   zlib d2d level:3 wbits:15 /bin/editor.
-   [OK]          files        468   zlib c2d level:4 wbits:15 /bin/editor.
-   [OK]          files        469   zlib d2c level:4 wbits:15 /bin/editor.
-   [OK]          files        470   zlib d2d level:4 wbits:15 /bin/editor.
-   [OK]          files        471   zlib c2d level:5 wbits:15 /bin/editor.
-   [OK]          files        472   zlib d2c level:5 wbits:15 /bin/editor.
-   [OK]          files        473   zlib d2d level:5 wbits:15 /bin/editor.
-   [OK]          files        474   zlib c2d level:6 wbits:15 /bin/editor.
-   [OK]          files        475   zlib d2c level:6 wbits:15 /bin/editor.
-   [OK]          files        476   zlib d2d level:6 wbits:15 /bin/editor.
-   [OK]          files        477   zlib c2d level:7 wbits:15 /bin/editor.
-   [OK]          files        478   zlib d2c level:7 wbits:15 /bin/editor.
-   [OK]          files        479   zlib d2d level:7 wbits:15 /bin/editor.
-   [OK]          files        480   zlib c2d level:8 wbits:15 /bin/editor.
-   [OK]          files        481   zlib d2c level:8 wbits:15 /bin/editor.
-   [OK]          files        482   zlib d2d level:8 wbits:15 /bin/editor.
-   [OK]          files        483   zlib c2d level:9 wbits:15 /bin/editor.
-   [OK]          files        484   zlib d2c level:9 wbits:15 /bin/editor.
-   [OK]          files        485   zlib d2d level:9 wbits:15 /bin/editor.
-   [OK]          files        486   zlib c2d level:1 wbits:15 /bin/cc.
-   [OK]          files        487   zlib d2c level:1 wbits:15 /bin/cc.
-   [OK]          files        488   zlib d2d level:1 wbits:15 /bin/cc.
-   [OK]          files        489   zlib c2d level:2 wbits:15 /bin/cc.
-   [OK]          files        490   zlib d2c level:2 wbits:15 /bin/cc.
-   [OK]          files        491   zlib d2d level:2 wbits:15 /bin/cc.
-   [OK]          files        492   zlib c2d level:3 wbits:15 /bin/cc.
-   [OK]          files        493   zlib d2c level:3 wbits:15 /bin/cc.
-   [OK]          files        494   zlib d2d level:3 wbits:15 /bin/cc.
-   [OK]          files        495   zlib c2d level:4 wbits:15 /bin/cc.
-   [OK]          files        496   zlib d2c level:4 wbits:15 /bin/cc.
-   [OK]          files        497   zlib d2d level:4 wbits:15 /bin/cc.
-   [OK]          files        498   zlib c2d level:5 wbits:15 /bin/cc.
-   [OK]          files        499   zlib d2c level:5 wbits:15 /bin/cc.
-   [OK]          files        500   zlib d2d level:5 wbits:15 /bin/cc.
-   [OK]          files        501   zlib c2d level:6 wbits:15 /bin/cc.
-   [OK]          files        502   zlib d2c level:6 wbits:15 /bin/cc.
-   [OK]          files        503   zlib d2d level:6 wbits:15 /bin/cc.
-   [OK]          files        504   zlib c2d level:7 wbits:15 /bin/cc.
-   [OK]          files        505   zlib d2c level:7 wbits:15 /bin/cc.
-   [OK]          files        506   zlib d2d level:7 wbits:15 /bin/cc.
-   [OK]          files        507   zlib c2d level:8 wbits:15 /bin/cc.
-   [OK]          files        508   zlib d2c level:8 wbits:15 /bin/cc.
-   [OK]          files        509   zlib d2d level:8 wbits:15 /bin/cc.
-   [OK]          files        510   zlib c2d level:9 wbits:15 /bin/cc.
-   [OK]          files        511   zlib d2c level:9 wbits:15 /bin/cc.
-   [OK]          files        512   zlib d2d level:9 wbits:15 /bin/cc.
-   [OK]          files        513   zlib c2d level:1 wbits:15 /bin/c99.
-   [OK]          files        514   zlib d2c level:1 wbits:15 /bin/c99.
-   [OK]          files        515   zlib d2d level:1 wbits:15 /bin/c99.
-   [OK]          files        516   zlib c2d level:2 wbits:15 /bin/c99.
-   [OK]          files        517   zlib d2c level:2 wbits:15 /bin/c99.
-   [OK]          files        518   zlib d2d level:2 wbits:15 /bin/c99.
-   [OK]          files        519   zlib c2d level:3 wbits:15 /bin/c99.
-   [OK]          files        520   zlib d2c level:3 wbits:15 /bin/c99.
-   [OK]          files        521   zlib d2d level:3 wbits:15 /bin/c99.
-   [OK]          files        522   zlib c2d level:4 wbits:15 /bin/c99.
-   [OK]          files        523   zlib d2c level:4 wbits:15 /bin/c99.
-   [OK]          files        524   zlib d2d level:4 wbits:15 /bin/c99.
-   [OK]          files        525   zlib c2d level:5 wbits:15 /bin/c99.
-   [OK]          files        526   zlib d2c level:5 wbits:15 /bin/c99.
-   [OK]          files        527   zlib d2d level:5 wbits:15 /bin/c99.
-   [OK]          files        528   zlib c2d level:6 wbits:15 /bin/c99.
-   [OK]          files        529   zlib d2c level:6 wbits:15 /bin/c99.
-   [OK]          files        530   zlib d2d level:6 wbits:15 /bin/c99.
-   [OK]          files        531   zlib c2d level:7 wbits:15 /bin/c99.
-   [OK]          files        532   zlib d2c level:7 wbits:15 /bin/c99.
-   [OK]          files        533   zlib d2d level:7 wbits:15 /bin/c99.
-   [OK]          files        534   zlib c2d level:8 wbits:15 /bin/c99.
-   [OK]          files        535   zlib d2c level:8 wbits:15 /bin/c99.
-   [OK]          files        536   zlib d2d level:8 wbits:15 /bin/c99.
-   [OK]          files        537   zlib c2d level:9 wbits:15 /bin/c99.
-   [OK]          files        538   zlib d2c level:9 wbits:15 /bin/c99.
-   [OK]          files        539   zlib d2d level:9 wbits:15 /bin/c99.
-   [OK]          files        540   zlib c2d level:1 wbits:15 /bin/c89.
-   [OK]          files        541   zlib d2c level:1 wbits:15 /bin/c89.
-   [OK]          files        542   zlib d2d level:1 wbits:15 /bin/c89.
-   [OK]          files        543   zlib c2d level:2 wbits:15 /bin/c89.
-   [OK]          files        544   zlib d2c level:2 wbits:15 /bin/c89.
-   [OK]          files        545   zlib d2d level:2 wbits:15 /bin/c89.
-   [OK]          files        546   zlib c2d level:3 wbits:15 /bin/c89.
-   [OK]          files        547   zlib d2c level:3 wbits:15 /bin/c89.
- ...TRUNCATED BY DUNE...
-   [OK]          files        27719   gzip d2d level:6 /bin/bashbug.
-   [OK]          files        27720   gzip c2d level:7 /bin/bashbug.
-   [OK]          files        27721   gzip d2c level:7 /bin/bashbug.
-   [OK]          files        27722   gzip d2d level:7 /bin/bashbug.
-   [OK]          files        27723   gzip c2d level:8 /bin/bashbug.
-   [OK]          files        27724   gzip d2c level:8 /bin/bashbug.
-   [OK]          files        27725   gzip d2d level:8 /bin/bashbug.
-   [OK]          files        27726   gzip c2d level:9 /bin/bashbug.
-   [OK]          files        27727   gzip d2c level:9 /bin/bashbug.
-   [OK]          files        27728   gzip d2d level:9 /bin/bashbug.
-   [OK]          files        27729   gzip c2d level:1 /bin/bash.
-   [OK]          files        27730   gzip d2c level:1 /bin/bash.
-   [OK]          files        27731   gzip d2d level:1 /bin/bash.
-   [OK]          files        27732   gzip c2d level:2 /bin/bash.
-   [OK]          files        27733   gzip d2c level:2 /bin/bash.
-   [OK]          files        27734   gzip d2d level:2 /bin/bash.
-   [OK]          files        27735   gzip c2d level:3 /bin/bash.
-   [OK]          files        27736   gzip d2c level:3 /bin/bash.
-   [OK]          files        27737   gzip d2d level:3 /bin/bash.
-   [OK]          files        27738   gzip c2d level:4 /bin/bash.
-   [OK]          files        27739   gzip d2c level:4 /bin/bash.
-   [OK]          files        27740   gzip d2d level:4 /bin/bash.
-   [OK]          files        27741   gzip c2d level:5 /bin/bash.
-   [OK]          files        27742   gzip d2c level:5 /bin/bash.
-   [OK]          files        27743   gzip d2d level:5 /bin/bash.
-   [OK]          files        27744   gzip c2d level:6 /bin/bash.
-   [OK]          files        27745   gzip d2c level:6 /bin/bash.
-   [OK]          files        27746   gzip d2d level:6 /bin/bash.
-   [OK]          files        27747   gzip c2d level:7 /bin/bash.
-   [OK]          files        27748   gzip d2c level:7 /bin/bash.
-   [OK]          files        27749   gzip d2d level:7 /bin/bash.
-   [OK]          files        27750   gzip c2d level:8 /bin/bash.
-   [OK]          files        27751   gzip d2c level:8 /bin/bash.
-   [OK]          files        27752   gzip d2d level:8 /bin/bash.
-   [OK]          files        27753   gzip c2d level:9 /bin/bash.
-   [OK]          files        27754   gzip d2c level:9 /bin/bash.
-   [OK]          files        27755   gzip d2d level:9 /bin/bash.
-   [OK]          files        27756   gzip c2d level:1 /bin/basenc.
-   [OK]          files        27757   gzip d2c level:1 /bin/basenc.
-   [OK]          files        27758   gzip d2d level:1 /bin/basenc.
-   [OK]          files        27759   gzip c2d level:2 /bin/basenc.
-   [OK]          files        27760   gzip d2c level:2 /bin/basenc.
-   [OK]          files        27761   gzip d2d level:2 /bin/basenc.
-   [OK]          files        27762   gzip c2d level:3 /bin/basenc.
-   [OK]          files        27763   gzip d2c level:3 /bin/basenc.
-   [OK]          files        27764   gzip d2d level:3 /bin/basenc.
-   [OK]          files        27765   gzip c2d level:4 /bin/basenc.
-   [OK]          files        27766   gzip d2c level:4 /bin/basenc.
-   [OK]          files        27767   gzip d2d level:4 /bin/basenc.
-   [OK]          files        27768   gzip c2d level:5 /bin/basenc.
-   [OK]          files        27769   gzip d2c level:5 /bin/basenc.
-   [OK]          files        27770   gzip d2d level:5 /bin/basenc.
-   [OK]          files        27771   gzip c2d level:6 /bin/basenc.
-   [OK]          files        27772   gzip d2c level:6 /bin/basenc.
-   [OK]          files        27773   gzip d2d level:6 /bin/basenc.
-   [OK]          files        27774   gzip c2d level:7 /bin/basenc.
-   [OK]          files        27775   gzip d2c level:7 /bin/basenc.
-   [OK]          files        27776   gzip d2d level:7 /bin/basenc.
-   [OK]          files        27777   gzip c2d level:8 /bin/basenc.
-   [OK]          files        27778   gzip d2c level:8 /bin/basenc.
-   [OK]          files        27779   gzip d2d level:8 /bin/basenc.
-   [OK]          files        27780   gzip c2d level:9 /bin/basenc.
-   [OK]          files        27781   gzip d2c level:9 /bin/basenc.
-   [OK]          files        27782   gzip d2d level:9 /bin/basenc.
-   [OK]          files        27783   gzip c2d level:1 /bin/basename.
-   [OK]          files        27784   gzip d2c level:1 /bin/basename.
-   [OK]          files        27785   gzip d2d level:1 /bin/basename.
-   [OK]          files        27786   gzip c2d level:2 /bin/basename.
-   [OK]          files        27787   gzip d2c level:2 /bin/basename.
-   [OK]          files        27788   gzip d2d level:2 /bin/basename.
-   [OK]          files        27789   gzip c2d level:3 /bin/basename.
-   [OK]          files        27790   gzip d2c level:3 /bin/basename.
-   [OK]          files        27791   gzip d2d level:3 /bin/basename.
-   [OK]          files        27792   gzip c2d level:4 /bin/basename.
-   [OK]          files        27793   gzip d2c level:4 /bin/basename.
-   [OK]          files        27794   gzip d2d level:4 /bin/basename.
-   [OK]          files        27795   gzip c2d level:5 /bin/basename.
-   [OK]          files        27796   gzip d2c level:5 /bin/basename.
-   [OK]          files        27797   gzip d2d level:5 /bin/basename.
-   [OK]          files        27798   gzip c2d level:6 /bin/basename.
-   [OK]          files        27799   gzip d2c level:6 /bin/basename.
-   [OK]          files        27800   gzip d2d level:6 /bin/basename.
-   [OK]          files        27801   gzip c2d level:7 /bin/basename.
-   [OK]          files        27802   gzip d2c level:7 /bin/basename.
-   [OK]          files        27803   gzip d2d level:7 /bin/basename.
-   [OK]          files        27804   gzip c2d level:8 /bin/basename.
-   [OK]          files        27805   gzip d2c level:8 /bin/basename.
-   [OK]          files        27806   gzip d2d level:8 /bin/basename.
-   [OK]          files        27807   gzip c2d level:9 /bin/basename.
-   [OK]          files        27808   gzip d2c level:9 /bin/basename.
-   [OK]          files        27809   gzip d2d level:9 /bin/basename.
-   [OK]          files        27810   gzip c2d level:1 /bin/base64.
-   [OK]          files        27811   gzip d2c level:1 /bin/base64.
-   [OK]          files        27812   gzip d2d level:1 /bin/base64.
-   [OK]          files        27813   gzip c2d level:2 /bin/base64.
-   [OK]          files        27814   gzip d2c level:2 /bin/base64.
-   [OK]          files        27815   gzip d2d level:2 /bin/base64.
-   [OK]          files        27816   gzip c2d level:3 /bin/base64.
-   [OK]          files        27817   gzip d2c level:3 /bin/base64.
-   [OK]          files        27818   gzip d2d level:3 /bin/base64.
-   [OK]          files        27819   gzip c2d level:4 /bin/base64.
-   [OK]          files        27820   gzip d2c level:4 /bin/base64.
-   [OK]          files        27821   gzip d2d level:4 /bin/base64.
-   [OK]          files        27822   gzip c2d level:5 /bin/base64.
-   [OK]          files        27823   gzip d2c level:5 /bin/base64.
-   [OK]          files        27824   gzip d2d level:5 /bin/base64.
-   [OK]          files        27825   gzip c2d level:6 /bin/base64.
-   [OK]          files        27826   gzip d2c level:6 /bin/base64.
-   [OK]          files        27827   gzip d2d level:6 /bin/base64.
-   [OK]          files        27828   gzip c2d level:7 /bin/base64.
-   [OK]          files        27829   gzip d2c level:7 /bin/base64.
-   [OK]          files        27830   gzip d2d level:7 /bin/base64.
-   [OK]          files        27831   gzip c2d level:8 /bin/base64.
-   [OK]          files        27832   gzip d2c level:8 /bin/base64.
-   [OK]          files        27833   gzip d2d level:8 /bin/base64.
-   [OK]          files        27834   gzip c2d level:9 /bin/base64.
-   [OK]          files        27835   gzip d2c level:9 /bin/base64.
-   [OK]          files        27836   gzip d2d level:9 /bin/base64.
-   [OK]          files        27837   gzip c2d level:1 /bin/base32.
-   [OK]          files        27838   gzip d2c level:1 /bin/base32.
-   [OK]          files        27839   gzip d2d level:1 /bin/base32.
-   [OK]          files        27840   gzip c2d level:2 /bin/base32.
-   [OK]          files        27841   gzip d2c level:2 /bin/base32.
-   [OK]          files        27842   gzip d2d level:2 /bin/base32.
-   [OK]          files        27843   gzip c2d level:3 /bin/base32.
-   [OK]          files        27844   gzip d2c level:3 /bin/base32.
-   [OK]          files        27845   gzip d2d level:3 /bin/base32.
-   [OK]          files        27846   gzip c2d level:4 /bin/base32.
-   [OK]          files        27847   gzip d2c level:4 /bin/base32.
-   [OK]          files        27848   gzip d2d level:4 /bin/base32.
-   [OK]          files        27849   gzip c2d level:5 /bin/base32.
-   [OK]          files        27850   gzip d2c level:5 /bin/base32.
-   [OK]          files        27851   gzip d2d level:5 /bin/base32.
-   [OK]          files        27852   gzip c2d level:6 /bin/base32.
-   [OK]          files        27853   gzip d2c level:6 /bin/base32.
-   [OK]          files        27854   gzip d2d level:6 /bin/base32.
-   [OK]          files        27855   gzip c2d level:7 /bin/base32.
-   [OK]          files        27856   gzip d2c level:7 /bin/base32.
-   [OK]          files        27857   gzip d2d level:7 /bin/base32.
-   [OK]          files        27858   gzip c2d level:8 /bin/base32.
-   [OK]          files        27859   gzip d2c level:8 /bin/base32.
-   [OK]          files        27860   gzip d2d level:8 /bin/base32.
-   [OK]          files        27861   gzip c2d level:9 /bin/base32.
-   [OK]          files        27862   gzip d2c level:9 /bin/base32.
-   [OK]          files        27863   gzip d2d level:9 /bin/base32.
-   [OK]          files        27864   gzip c2d level:1 /bin/b2sum.
-   [OK]          files        27865   gzip d2c level:1 /bin/b2sum.
-   [OK]          files        27866   gzip d2d level:1 /bin/b2sum.
-   [OK]          files        27867   gzip c2d level:2 /bin/b2sum.
-   [OK]          files        27868   gzip d2c level:2 /bin/b2sum.
-   [OK]          files        27869   gzip d2d level:2 /bin/b2sum.
-   [OK]          files        27870   gzip c2d level:3 /bin/b2sum.
-   [OK]          files        27871   gzip d2c level:3 /bin/b2sum.
-   [OK]          files        27872   gzip d2d level:3 /bin/b2sum.
-   [OK]          files        27873   gzip c2d level:4 /bin/b2sum.
-   [OK]          files        27874   gzip d2c level:4 /bin/b2sum.
-   [OK]          files        27875   gzip d2d level:4 /bin/b2sum.
-   [OK]          files        27876   gzip c2d level:5 /bin/b2sum.
-   [OK]          files        27877   gzip d2c level:5 /bin/b2sum.
-   [OK]          files        27878   gzip d2d level:5 /bin/b2sum.
-   [OK]          files        27879   gzip c2d level:6 /bin/b2sum.
-   [OK]          files        27880   gzip d2c level:6 /bin/b2sum.
-   [OK]          files        27881   gzip d2d level:6 /bin/b2sum.
-   [OK]          files        27882   gzip c2d level:7 /bin/b2sum.
-   [OK]          files        27883   gzip d2c level:7 /bin/b2sum.
-   [OK]          files        27884   gzip d2d level:7 /bin/b2sum.
-   [OK]          files        27885   gzip c2d level:8 /bin/b2sum.
-   [OK]          files        27886   gzip d2c level:8 /bin/b2sum.
-   [OK]          files        27887   gzip d2d level:8 /bin/b2sum.
-   [OK]          files        27888   gzip c2d level:9 /bin/b2sum.
-   [OK]          files        27889   gzip d2c level:9 /bin/b2sum.
-   [OK]          files        27890   gzip d2d level:9 /bin/b2sum.
-   [OK]          files        27891   gzip c2d level:1 /bin/as.
-   [OK]          files        27892   gzip d2c level:1 /bin/as.
-   [OK]          files        27893   gzip d2d level:1 /bin/as.
-   [OK]          files        27894   gzip c2d level:2 /bin/as.
-   [OK]          files        27895   gzip d2c level:2 /bin/as.
-   [OK]          files        27896   gzip d2d level:2 /bin/as.
-   [OK]          files        27897   gzip c2d level:3 /bin/as.
-   [OK]          files        27898   gzip d2c level:3 /bin/as.
-   [OK]          files        27899   gzip d2d level:3 /bin/as.
-   [OK]          files        27900   gzip c2d level:4 /bin/as.
-   [OK]          files        27901   gzip d2c level:4 /bin/as.
-   [OK]          files        27902   gzip d2d level:4 /bin/as.
-   [OK]          files        27903   gzip c2d level:5 /bin/as.
-   [OK]          files        27904   gzip d2c level:5 /bin/as.
-   [OK]          files        27905   gzip d2d level:5 /bin/as.
-   [OK]          files        27906   gzip c2d level:6 /bin/as.
-   [OK]          files        27907   gzip d2c level:6 /bin/as.
-   [OK]          files        27908   gzip d2d level:6 /bin/as.
-   [OK]          files        27909   gzip c2d level:7 /bin/as.
-   [OK]          files        27910   gzip d2c level:7 /bin/as.
-   [OK]          files        27911   gzip d2d level:7 /bin/as.
-   [OK]          files        27912   gzip c2d level:8 /bin/as.
-   [OK]          files        27913   gzip d2c level:8 /bin/as.
-   [OK]          files        27914   gzip d2d level:8 /bin/as.
-   [OK]          files        27915   gzip c2d level:9 /bin/as.
-   [OK]          files        27916   gzip d2c level:9 /bin/as.
-   [OK]          files        27917   gzip d2d level:9 /bin/as.
-   [OK]          files        27918   gzip c2d level:1 /bin/arch.
-   [OK]          files        27919   gzip d2c level:1 /bin/arch.
-   [OK]          files        27920   gzip d2d level:1 /bin/arch.
-   [OK]          files        27921   gzip c2d level:2 /bin/arch.
-   [OK]          files        27922   gzip d2c level:2 /bin/arch.
-   [OK]          files        27923   gzip d2d level:2 /bin/arch.
-   [OK]          files        27924   gzip c2d level:3 /bin/arch.
-   [OK]          files        27925   gzip d2c level:3 /bin/arch.
-   [OK]          files        27926   gzip d2d level:3 /bin/arch.
-   [OK]          files        27927   gzip c2d level:4 /bin/arch.
-   [OK]          files        27928   gzip d2c level:4 /bin/arch.
-   [OK]          files        27929   gzip d2d level:4 /bin/arch.
-   [OK]          files        27930   gzip c2d level:5 /bin/arch.
-   [OK]          files        27931   gzip d2c level:5 /bin/arch.
-   [OK]          files        27932   gzip d2d level:5 /bin/arch.
-   [OK]          files        27933   gzip c2d level:6 /bin/arch.
-   [OK]          files        27934   gzip d2c level:6 /bin/arch.
-   [OK]          files        27935   gzip d2d level:6 /bin/arch.
-   [OK]          files        27936   gzip c2d level:7 /bin/arch.
-   [OK]          files        27937   gzip d2c level:7 /bin/arch.
-   [OK]          files        27938   gzip d2d level:7 /bin/arch.
-   [OK]          files        27939   gzip c2d level:8 /bin/arch.
-   [OK]          files        27940   gzip d2c level:8 /bin/arch.
-   [OK]          files        27941   gzip d2d level:8 /bin/arch.
-   [OK]          files        27942   gzip c2d level:9 /bin/arch.
-   [OK]          files        27943   gzip d2c level:9 /bin/arch.
-   [OK]          files        27944   gzip d2d level:9 /bin/arch.
-   [OK]          files        27945   gzip c2d level:1 /bin/ar.
-   [OK]          files        27946   gzip d2c level:1 /bin/ar.
-   [OK]          files        27947   gzip d2d level:1 /bin/ar.
-   [OK]          files        27948   gzip c2d level:2 /bin/ar.
-   [OK]          files        27949   gzip d2c level:2 /bin/ar.
-   [OK]          files        27950   gzip d2d level:2 /bin/ar.
-   [OK]          files        27951   gzip c2d level:3 /bin/ar.
-   [OK]          files        27952   gzip d2c level:3 /bin/ar.
-   [OK]          files        27953   gzip d2d level:3 /bin/ar.
-   [OK]          files        27954   gzip c2d level:4 /bin/ar.
-   [OK]          files        27955   gzip d2c level:4 /bin/ar.
-   [OK]          files        27956   gzip d2d level:4 /bin/ar.
-   [OK]          files        27957   gzip c2d level:5 /bin/ar.
-   [OK]          files        27958   gzip d2c level:5 /bin/ar.
-   [OK]          files        27959   gzip d2d level:5 /bin/ar.
-   [OK]          files        27960   gzip c2d level:6 /bin/ar.
-   [OK]          files        27961   gzip d2c level:6 /bin/ar.
-   [OK]          files        27962   gzip d2d level:6 /bin/ar.
-   [OK]          files        27963   gzip c2d level:7 /bin/ar.
-   [OK]          files        27964   gzip d2c level:7 /bin/ar.
-   [OK]          files        27965   gzip d2d level:7 /bin/ar.
-   [OK]          files        27966   gzip c2d level:8 /bin/ar.
-   [OK]          files        27967   gzip d2c level:8 /bin/ar.
-   [OK]          files        27968   gzip d2d level:8 /bin/ar.
-   [OK]          files        27969   gzip c2d level:9 /bin/ar.
-   [OK]          files        27970   gzip d2c level:9 /bin/ar.
-   [OK]          files        27971   gzip d2d level:9 /bin/ar.
-   [OK]          files        27972   gzip c2d level:1 /bin/apt-mark.
-   [OK]          files        27973   gzip d2c level:1 /bin/apt-mark.
-   [OK]          files        27974   gzip d2d level:1 /bin/apt-mark.
-   [OK]          files        27975   gzip c2d level:2 /bin/apt-mark.
-   [OK]          files        27976   gzip d2c level:2 /bin/apt-mark.
-   [OK]          files        27977   gzip d2d level:2 /bin/apt-mark.
-   [OK]          files        27978   gzip c2d level:3 /bin/apt-mark.
-   [OK]          files        27979   gzip d2c level:3 /bin/apt-mark.
-   [OK]          files        27980   gzip d2d level:3 /bin/apt-mark.
-   [OK]          files        27981   gzip c2d level:4 /bin/apt-mark.
-   [OK]          files        27982   gzip d2c level:4 /bin/apt-mark.
-   [OK]          files        27983   gzip d2d level:4 /bin/apt-mark.
-   [OK]          files        27984   gzip c2d level:5 /bin/apt-mark.
-   [OK]          files        27985   gzip d2c level:5 /bin/apt-mark.
-   [OK]          files        27986   gzip d2d level:5 /bin/apt-mark.
-   [OK]          files        27987   gzip c2d level:6 /bin/apt-mark.
-   [OK]          files        27988   gzip d2c level:6 /bin/apt-mark.
-   [OK]          files        27989   gzip d2d level:6 /bin/apt-mark.
-   [OK]          files        27990   gzip c2d level:7 /bin/apt-mark.
-   [OK]          files        27991   gzip d2c level:7 /bin/apt-mark.
-   [OK]          files        27992   gzip d2d level:7 /bin/apt-mark.
-   [OK]          files        27993   gzip c2d level:8 /bin/apt-mark.
-   [OK]          files        27994   gzip d2c level:8 /bin/apt-mark.
-   [OK]          files        27995   gzip d2d level:8 /bin/apt-mark.
-   [OK]          files        27996   gzip c2d level:9 /bin/apt-mark.
-   [OK]          files        27997   gzip d2c level:9 /bin/apt-mark.
-   [OK]          files        27998   gzip d2d level:9 /bin/apt-mark.
-   [OK]          files        27999   gzip c2d level:1 /bin/apt-get.
-   [OK]          files        28000   gzip d2c level:1 /bin/apt-get.
-   [OK]          files        28001   gzip d2d level:1 /bin/apt-get.
-   [OK]          files        28002   gzip c2d level:2 /bin/apt-get.
-   [OK]          files        28003   gzip d2c level:2 /bin/apt-get.
-   [OK]          files        28004   gzip d2d level:2 /bin/apt-get.
-   [OK]          files        28005   gzip c2d level:3 /bin/apt-get.
-   [OK]          files        28006   gzip d2c level:3 /bin/apt-get.
-   [OK]          files        28007   gzip d2d level:3 /bin/apt-get.
-   [OK]          files        28008   gzip c2d level:4 /bin/apt-get.
-   [OK]          files        28009   gzip d2c level:4 /bin/apt-get.
-   [OK]          files        28010   gzip d2d level:4 /bin/apt-get.
-   [OK]          files        28011   gzip c2d level:5 /bin/apt-get.
-   [OK]          files        28012   gzip d2c level:5 /bin/apt-get.
-   [OK]          files        28013   gzip d2d level:5 /bin/apt-get.
-   [OK]          files        28014   gzip c2d level:6 /bin/apt-get.
-   [OK]          files        28015   gzip d2c level:6 /bin/apt-get.
-   [OK]          files        28016   gzip d2d level:6 /bin/apt-get.
-   [OK]          files        28017   gzip c2d level:7 /bin/apt-get.
-   [OK]          files        28018   gzip d2c level:7 /bin/apt-get.
-   [OK]          files        28019   gzip d2d level:7 /bin/apt-get.
-   [OK]          files        28020   gzip c2d level:8 /bin/apt-get.
-   [OK]          files        28021   gzip d2c level:8 /bin/apt-get.
-   [OK]          files        28022   gzip d2d level:8 /bin/apt-get.
-   [OK]          files        28023   gzip c2d level:9 /bin/apt-get.
-   [OK]          files        28024   gzip d2c level:9 /bin/apt-get.
-   [OK]          files        28025   gzip d2d level:9 /bin/apt-get.
-   [OK]          files        28026   gzip c2d level:1 /bin/apt-config.
-   [OK]          files        28027   gzip d2c level:1 /bin/apt-config.
-   [OK]          files        28028   gzip d2d level:1 /bin/apt-config.
-   [OK]          files        28029   gzip c2d level:2 /bin/apt-config.
-   [OK]          files        28030   gzip d2c level:2 /bin/apt-config.
-   [OK]          files        28031   gzip d2d level:2 /bin/apt-config.
-   [OK]          files        28032   gzip c2d level:3 /bin/apt-config.
-   [OK]          files        28033   gzip d2c level:3 /bin/apt-config.
-   [OK]          files        28034   gzip d2d level:3 /bin/apt-config.
-   [OK]          files        28035   gzip c2d level:4 /bin/apt-config.
-   [OK]          files        28036   gzip d2c level:4 /bin/apt-config.
-   [OK]          files        28037   gzip d2d level:4 /bin/apt-config.
-   [OK]          files        28038   gzip c2d level:5 /bin/apt-config.
-   [OK]          files        28039   gzip d2c level:5 /bin/apt-config.
-   [OK]          files        28040   gzip d2d level:5 /bin/apt-config.
-   [OK]          files        28041   gzip c2d level:6 /bin/apt-config.
-   [OK]          files        28042   gzip d2c level:6 /bin/apt-config.
-   [OK]          files        28043   gzip d2d level:6 /bin/apt-config.
-   [OK]          files        28044   gzip c2d level:7 /bin/apt-config.
-   [OK]          files        28045   gzip d2c level:7 /bin/apt-config.
-   [OK]          files        28046   gzip d2d level:7 /bin/apt-config.
-   [OK]          files        28047   gzip c2d level:8 /bin/apt-config.
-   [OK]          files        28048   gzip d2c level:8 /bin/apt-config.
-   [OK]          files        28049   gzip d2d level:8 /bin/apt-config.
-   [OK]          files        28050   gzip c2d level:9 /bin/apt-config.
-   [OK]          files        28051   gzip d2c level:9 /bin/apt-config.
-   [OK]          files        28052   gzip d2d level:9 /bin/apt-config.
-   [OK]          files        28053   gzip c2d level:1 /bin/apt-cdrom.
-   [OK]          files        28054   gzip d2c level:1 /bin/apt-cdrom.
-   [OK]          files        28055   gzip d2d level:1 /bin/apt-cdrom.
-   [OK]          files        28056   gzip c2d level:2 /bin/apt-cdrom.
-   [OK]          files        28057   gzip d2c level:2 /bin/apt-cdrom.
-   [OK]          files        28058   gzip d2d level:2 /bin/apt-cdrom.
-   [OK]          files        28059   gzip c2d level:3 /bin/apt-cdrom.
-   [OK]          files        28060   gzip d2c level:3 /bin/apt-cdrom.
-   [OK]          files        28061   gzip d2d level:3 /bin/apt-cdrom.
-   [OK]          files        28062   gzip c2d level:4 /bin/apt-cdrom.
-   [OK]          files        28063   gzip d2c level:4 /bin/apt-cdrom.
-   [OK]          files        28064   gzip d2d level:4 /bin/apt-cdrom.
-   [OK]          files        28065   gzip c2d level:5 /bin/apt-cdrom.
-   [OK]          files        28066   gzip d2c level:5 /bin/apt-cdrom.
-   [OK]          files        28067   gzip d2d level:5 /bin/apt-cdrom.
-   [OK]          files        28068   gzip c2d level:6 /bin/apt-cdrom.
-   [OK]          files        28069   gzip d2c level:6 /bin/apt-cdrom.
-   [OK]          files        28070   gzip d2d level:6 /bin/apt-cdrom.
-   [OK]          files        28071   gzip c2d level:7 /bin/apt-cdrom.
-   [OK]          files        28072   gzip d2c level:7 /bin/apt-cdrom.
-   [OK]          files        28073   gzip d2d level:7 /bin/apt-cdrom.
-   [OK]          files        28074   gzip c2d level:8 /bin/apt-cdrom.
-   [OK]          files        28075   gzip d2c level:8 /bin/apt-cdrom.
-   [OK]          files        28076   gzip d2d level:8 /bin/apt-cdrom.
-   [OK]          files        28077   gzip c2d level:9 /bin/apt-cdrom.
-   [OK]          files        28078   gzip d2c level:9 /bin/apt-cdrom.
-   [OK]          files        28079   gzip d2d level:9 /bin/apt-cdrom.
-   [OK]          files        28080   gzip c2d level:1 /bin/apt-cache.
-   [OK]          files        28081   gzip d2c level:1 /bin/apt-cache.
-   [OK]          files        28082   gzip d2d level:1 /bin/apt-cache.
-   [OK]          files        28083   gzip c2d level:2 /bin/apt-cache.
-   [OK]          files        28084   gzip d2c level:2 /bin/apt-cache.
-   [OK]          files        28085   gzip d2d level:2 /bin/apt-cache.
-   [OK]          files        28086   gzip c2d level:3 /bin/apt-cache.
-   [OK]          files        28087   gzip d2c level:3 /bin/apt-cache.
-   [OK]          files        28088   gzip d2d level:3 /bin/apt-cache.
-   [OK]          files        28089   gzip c2d level:4 /bin/apt-cache.
-   [OK]          files        28090   gzip d2c level:4 /bin/apt-cache.
-   [OK]          files        28091   gzip d2d level:4 /bin/apt-cache.
-   [OK]          files        28092   gzip c2d level:5 /bin/apt-cache.
-   [OK]          files        28093   gzip d2c level:5 /bin/apt-cache.
-   [OK]          files        28094   gzip d2d level:5 /bin/apt-cache.
-   [OK]          files        28095   gzip c2d level:6 /bin/apt-cache.
-   [OK]          files        28096   gzip d2c level:6 /bin/apt-cache.
-   [OK]          files        28097   gzip d2d level:6 /bin/apt-cache.
-   [OK]          files        28098   gzip c2d level:7 /bin/apt-cache.
-   [OK]          files        28099   gzip d2c level:7 /bin/apt-cache.
-   [OK]          files        28100   gzip d2d level:7 /bin/apt-cache.
-   [OK]          files        28101   gzip c2d level:8 /bin/apt-cache.
-   [OK]          files        28102   gzip d2c level:8 /bin/apt-cache.
-   [OK]          files        28103   gzip d2d level:8 /bin/apt-cache.
-   [OK]          files        28104   gzip c2d level:9 /bin/apt-cache.
-   [OK]          files        28105   gzip d2c level:9 /bin/apt-cache.
-   [OK]          files        28106   gzip d2d level:9 /bin/apt-cache.
-   [OK]          files        28107   gzip c2d level:1 /bin/apt.
-   [OK]          files        28108   gzip d2c level:1 /bin/apt.
-   [OK]          files        28109   gzip d2d level:1 /bin/apt.
-   [OK]          files        28110   gzip c2d level:2 /bin/apt.
-   [OK]          files        28111   gzip d2c level:2 /bin/apt.
-   [OK]          files        28112   gzip d2d level:2 /bin/apt.
-   [OK]          files        28113   gzip c2d level:3 /bin/apt.
-   [OK]          files        28114   gzip d2c level:3 /bin/apt.
-   [OK]          files        28115   gzip d2d level:3 /bin/apt.
-   [OK]          files        28116   gzip c2d level:4 /bin/apt.
-   [OK]          files        28117   gzip d2c level:4 /bin/apt.
-   [OK]          files        28118   gzip d2d level:4 /bin/apt.
-   [OK]          files        28119   gzip c2d level:5 /bin/apt.
-   [OK]          files        28120   gzip d2c level:5 /bin/apt.
-   [OK]          files        28121   gzip d2d level:5 /bin/apt.
-   [OK]          files        28122   gzip c2d level:6 /bin/apt.
-   [OK]          files        28123   gzip d2c level:6 /bin/apt.
-   [OK]          files        28124   gzip d2d level:6 /bin/apt.
-   [OK]          files        28125   gzip c2d level:7 /bin/apt.
-   [OK]          files        28126   gzip d2c level:7 /bin/apt.
-   [OK]          files        28127   gzip d2d level:7 /bin/apt.
-   [OK]          files        28128   gzip c2d level:8 /bin/apt.
-   [OK]          files        28129   gzip d2c level:8 /bin/apt.
-   [OK]          files        28130   gzip d2d level:8 /bin/apt.
-   [OK]          files        28131   gzip c2d level:9 /bin/apt.
-   [OK]          files        28132   gzip d2c level:9 /bin/apt.
-   [OK]          files        28133   gzip d2d level:9 /bin/apt.
-   [OK]          files        28134   gzip c2d level:1 /bin/addr2line.
-   [OK]          files        28135   gzip d2c level:1 /bin/addr2line.
-   [OK]          files        28136   gzip d2d level:1 /bin/addr2line.
-   [OK]          files        28137   gzip c2d level:2 /bin/addr2line.
-   [OK]          files        28138   gzip d2c level:2 /bin/addr2line.
-   [OK]          files        28139   gzip d2d level:2 /bin/addr2line.
-   [OK]          files        28140   gzip c2d level:3 /bin/addr2line.
-   [OK]          files        28141   gzip d2c level:3 /bin/addr2line.
-   [OK]          files        28142   gzip d2d level:3 /bin/addr2line.
-   [OK]          files        28143   gzip c2d level:4 /bin/addr2line.
-   [OK]          files        28144   gzip d2c level:4 /bin/addr2line.
-   [OK]          files        28145   gzip d2d level:4 /bin/addr2line.
-   [OK]          files        28146   gzip c2d level:5 /bin/addr2line.
-   [OK]          files        28147   gzip d2c level:5 /bin/addr2line.
-   [OK]          files        28148   gzip d2d level:5 /bin/addr2line.
-   [OK]          files        28149   gzip c2d level:6 /bin/addr2line.
-   [OK]          files        28150   gzip d2c level:6 /bin/addr2line.
-   [OK]          files        28151   gzip d2d level:6 /bin/addr2line.
-   [OK]          files        28152   gzip c2d level:7 /bin/addr2line.
-   [OK]          files        28153   gzip d2c level:7 /bin/addr2line.
-   [OK]          files        28154   gzip d2d level:7 /bin/addr2line.
-   [OK]          files        28155   gzip c2d level:8 /bin/addr2line.
-   [OK]          files        28156   gzip d2c level:8 /bin/addr2line.
-   [OK]          files        28157   gzip d2d level:8 /bin/addr2line.
-   [OK]          files        28158   gzip c2d level:9 /bin/addr2line.
-   [OK]          files        28159   gzip d2c level:9 /bin/addr2line.
-   [OK]          files        28160   gzip d2d level:9 /bin/addr2line.
-   [OK]          files        28161   gzip c2d level:1 /bin/[.
-   [OK]          files        28162   gzip d2c level:1 /bin/[.
-   [OK]          files        28163   gzip d2d level:1 /bin/[.
-   [OK]          files        28164   gzip c2d level:2 /bin/[.
-   [OK]          files        28165   gzip d2c level:2 /bin/[.
-   [OK]          files        28166   gzip d2d level:2 /bin/[.
-   [OK]          files        28167   gzip c2d level:3 /bin/[.
-   [OK]          files        28168   gzip d2c level:3 /bin/[.
-   [OK]          files        28169   gzip d2d level:3 /bin/[.
-   [OK]          files        28170   gzip c2d level:4 /bin/[.
-   [OK]          files        28171   gzip d2c level:4 /bin/[.
-   [OK]          files        28172   gzip d2d level:4 /bin/[.
-   [OK]          files        28173   gzip c2d level:5 /bin/[.
-   [OK]          files        28174   gzip d2c level:5 /bin/[.
-   [OK]          files        28175   gzip d2d level:5 /bin/[.
-   [OK]          files        28176   gzip c2d level:6 /bin/[.
-   [OK]          files        28177   gzip d2c level:6 /bin/[.
-   [OK]          files        28178   gzip d2d level:6 /bin/[.
-   [OK]          files        28179   gzip c2d level:7 /bin/[.
-   [OK]          files        28180   gzip d2c level:7 /bin/[.
-   [OK]          files        28181   gzip d2d level:7 /bin/[.
-   [OK]          files        28182   gzip c2d level:8 /bin/[.
-   [OK]          files        28183   gzip d2c level:8 /bin/[.
-   [OK]          files        28184   gzip d2d level:8 /bin/[.
-   [OK]          files        28185   gzip c2d level:9 /bin/[.
-   [OK]          files        28186   gzip d2c level:9 /bin/[.
-   [OK]          files        28187   gzip d2d level:9 /bin/[.
-   [OK]          files        28188   gzip c2d level:1 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28189   gzip d2c level:1 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28190   gzip d2d level:1 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28191   gzip c2d level:2 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28192   gzip d2c level:2 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28193   gzip d2d level:2 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28194   gzip c2d level:3 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28195   gzip d2c level:3 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28196   gzip d2d level:3 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28197   gzip c2d level:4 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28198   gzip d2c level:4 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28199   gzip d2d level:4 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28200   gzip c2d level:5 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28201   gzip d2c level:5 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28202   gzip d2d level:5 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28203   gzip c2d level:6 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28204   gzip d2c level:6 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28205   gzip d2d level:6 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28206   gzip c2d level:7 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28207   gzip d2c level:7 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28208   gzip d2d level:7 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28209   gzip c2d level:8 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28210   gzip d2c level:8 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28211   gzip d2d level:8 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28212   gzip c2d level:9 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28213   gzip d2c level:9 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28214   gzip d2d level:9 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28215   gzip c2d level:1 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28216   gzip d2c level:1 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28217   gzip d2d level:1 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28218   gzip c2d level:2 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28219   gzip d2c level:2 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28220   gzip d2d level:2 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28221   gzip c2d level:3 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28222   gzip d2c level:3 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28223   gzip d2d level:3 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28224   gzip c2d level:4 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28225   gzip d2c level:4 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28226   gzip d2d level:4 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28227   gzip c2d level:5 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28228   gzip d2c level:5 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28229   gzip d2d level:5 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28230   gzip c2d level:6 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28231   gzip d2c level:6 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28232   gzip d2d level:6 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28233   gzip c2d level:7 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28234   gzip d2c level:7 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28235   gzip d2d level:7 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28236   gzip c2d level:8 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28237   gzip d2c level:8 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28238   gzip d2d level:8 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28239   gzip c2d level:9 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28240   gzip d2c level:9 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28241   gzip d2d level:9 /bin/x86_64-linux-gnu-p...
-   [OK]          files        28242   gzip c2d level:1 /bin/pkg-config.
-   [OK]          files        28243   gzip d2c level:1 /bin/pkg-config.
-   [OK]          files        28244   gzip d2d level:1 /bin/pkg-config.
-   [OK]          files        28245   gzip c2d level:2 /bin/pkg-config.
-   [OK]          files        28246   gzip d2c level:2 /bin/pkg-config.
-   [OK]          files        28247   gzip d2d level:2 /bin/pkg-config.
-   [OK]          files        28248   gzip c2d level:3 /bin/pkg-config.
-   [OK]          files        28249   gzip d2c level:3 /bin/pkg-config.
-   [OK]          files        28250   gzip d2d level:3 /bin/pkg-config.
-   [OK]          files        28251   gzip c2d level:4 /bin/pkg-config.
-   [OK]          files        28252   gzip d2c level:4 /bin/pkg-config.
-   [OK]          files        28253   gzip d2d level:4 /bin/pkg-config.
-   [OK]          files        28254   gzip c2d level:5 /bin/pkg-config.
-   [OK]          files        28255   gzip d2c level:5 /bin/pkg-config.
-   [OK]          files        28256   gzip d2d level:5 /bin/pkg-config.
-   [OK]          files        28257   gzip c2d level:6 /bin/pkg-config.
-   [OK]          files        28258   gzip d2c level:6 /bin/pkg-config.
-   [OK]          files        28259   gzip d2d level:6 /bin/pkg-config.
-   [OK]          files        28260   gzip c2d level:7 /bin/pkg-config.
-   [OK]          files        28261   gzip d2c level:7 /bin/pkg-config.
-   [OK]          files        28262   gzip d2d level:7 /bin/pkg-config.
-   [OK]          files        28263   gzip c2d level:8 /bin/pkg-config.
-   [OK]          files        28264   gzip d2c level:8 /bin/pkg-config.
-   [OK]          files        28265   gzip d2d level:8 /bin/pkg-config.
-   [OK]          files        28266   gzip c2d level:9 /bin/pkg-config.
-   [OK]          files        28267   gzip d2c level:9 /bin/pkg-config.
-   [OK]          files        28268   gzip d2d level:9 /bin/pkg-config.
-   [OK]          files        28269   gzip c2d level:1 /bin/pkgconf.
-   [OK]          files        28270   gzip d2c level:1 /bin/pkgconf.
-   [OK]          files        28271   gzip d2d level:1 /bin/pkgconf.
-   [OK]          files        28272   gzip c2d level:2 /bin/pkgconf.
-   [OK]          files        28273   gzip d2c level:2 /bin/pkgconf.
-   [OK]          files        28274   gzip d2d level:2 /bin/pkgconf.
-   [OK]          files        28275   gzip c2d level:3 /bin/pkgconf.
-   [OK]          files        28276   gzip d2c level:3 /bin/pkgconf.
-   [OK]          files        28277   gzip d2d level:3 /bin/pkgconf.
-   [OK]          files        28278   gzip c2d level:4 /bin/pkgconf.
-   [OK]          files        28279   gzip d2c level:4 /bin/pkgconf.
-   [OK]          files        28280   gzip d2d level:4 /bin/pkgconf.
-   [OK]          files        28281   gzip c2d level:5 /bin/pkgconf.
-   [OK]          files        28282   gzip d2c level:5 /bin/pkgconf.
-   [OK]          files        28283   gzip d2d level:5 /bin/pkgconf.
-   [OK]          files        28284   gzip c2d level:6 /bin/pkgconf.
-   [OK]          files        28285   gzip d2c level:6 /bin/pkgconf.
-   [OK]          files        28286   gzip d2d level:6 /bin/pkgconf.
-   [OK]          files        28287   gzip c2d level:7 /bin/pkgconf.
-   [OK]          files        28288   gzip d2c level:7 /bin/pkgconf.
-   [OK]          files        28289   gzip d2d level:7 /bin/pkgconf.
-   [OK]          files        28290   gzip c2d level:8 /bin/pkgconf.
-   [OK]          files        28291   gzip d2c level:8 /bin/pkgconf.
-   [OK]          files        28292   gzip d2d level:8 /bin/pkgconf.
-   [OK]          files        28293   gzip c2d level:9 /bin/pkgconf.
-   [OK]          files        28294   gzip d2c level:9 /bin/pkgconf.
-   [OK]          files        28295   gzip d2d level:9 /bin/pkgconf.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/decompress.0.9.1/_build/default/test/_build/_tests/decompress test'.
- Test Successful in 3209.184s. 28296 tests run.
-> compiled  decompress.0.9.1
-> removed   decompress.0.9.1
-> installed decompress.0.9.1
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-11 03:37.48 ---> saved as "369329d5b4cf8f2de4b0f4bbe846f2f3a15f4ae1b978a039582d0d0dffcf8812"
Job succeeded
2026-04-11 03:37.55: Job succeeded