(not at the head of any monitored branch or PR)
2026-03-10 08:59.50: New job: test picos.0.4.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29530/head (3af7d0a25910b3d20c909e559efb484eb6a78128)
                              on opensuse-tumbleweed-ocaml-4.14/amd64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29530/head" && git reset --hard 3af7d0a2
git fetch origin master
git merge --no-edit 3c70647a78a7fd22066fca4f17f7ca4514500663
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:opensuse-tumbleweed-ocaml-4.14@sha256:f1ba2543127b2191a04ee8dd68eee0ead41304bc34d2f21386f6a89786424797
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 picos.0.4.0 0.4.0
RUN opam reinstall picos.0.4.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"opensuse-tumbleweed\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'picos.0.4.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test picos.0.4.0) || true
RUN opam reinstall --with-test --verbose picos.0.4.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"opensuse-tumbleweed\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'picos.0.4.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

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

2026-03-10 08:59.50: Using cache hint "ocaml/opam:opensuse-tumbleweed-ocaml-4.14@sha256:f1ba2543127b2191a04ee8dd68eee0ead41304bc34d2f21386f6a89786424797-picos.0.4.0-3af7d0a25910b3d20c909e559efb484eb6a78128"
2026-03-10 08:59.50: Using OBuilder spec:
((from ocaml/opam:opensuse-tumbleweed-ocaml-4.14@sha256:f1ba2543127b2191a04ee8dd68eee0ead41304bc34d2f21386f6a89786424797)
 (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 picos.0.4.0 0.4.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall picos.0.4.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"opensuse-tumbleweed\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'picos.0.4.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test picos.0.4.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose picos.0.4.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"opensuse-tumbleweed\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'picos.0.4.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-03-10 08:59.50: Waiting for resource in pool OCluster
2026-03-10 09:42.34: Waiting for worker…
2026-03-10 09:44.10: Got resource from pool OCluster
Building on laodoke.caelum.ci.dev
All commits already cached
HEAD is now at 3c70647a78 Merge pull request #29507 from NathanReb/release-ppxlib-0-38-0-5-5-preview
Updating 3c70647a78..3af7d0a259
Fast-forward
 packages/bimage-lwt/bimage-lwt.0.3.0/opam    | 6 +++++-
 packages/bimage-lwt/bimage-lwt.0.3.1/opam    | 6 +++++-
 packages/bimage-lwt/bimage-lwt.0.4.0/opam    | 6 +++++-
 packages/caqti-lwt/caqti-lwt.0.11.0/opam     | 4 +++-
 packages/caqti-lwt/caqti-lwt.1.0.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.2.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.3.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.6.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.7.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.8.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.1.9.0/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.2.0.1/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.2.1.1/opam      | 6 +++++-
 packages/caqti-lwt/caqti-lwt.2.2.4/opam      | 6 +++++-
 packages/fuseau-lwt/fuseau-lwt.0.1/opam      | 6 +++++-
 packages/lambda-term/lambda-term.1.13/opam   | 6 +++++-
 packages/lambda-term/lambda-term.2.0.1/opam  | 6 +++++-
 packages/lambda-term/lambda-term.2.0.2/opam  | 6 +++++-
 packages/lambda-term/lambda-term.2.0.3/opam  | 6 +++++-
 packages/lambda-term/lambda-term.2.0/opam    | 6 +++++-
 packages/lambda-term/lambda-term.3.0.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.0.1/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.1.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.2.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.3.0/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.3.1/opam  | 6 +++++-
 packages/lambda-term/lambda-term.3.3.2/opam  | 6 +++++-
 packages/lwt_domain/lwt_domain.0.1.0/opam    | 6 +++++-
 packages/lwt_domain/lwt_domain.0.2.0/opam    | 6 +++++-
 packages/lwt_domain/lwt_domain.0.3.0/opam    | 6 +++++-
 packages/lwt_eio/lwt_eio.0.1/opam            | 6 +++++-
 packages/lwt_eio/lwt_eio.0.2/opam            | 6 +++++-
 packages/lwt_eio/lwt_eio.0.3/opam            | 6 +++++-
 packages/lwt_eio/lwt_eio.0.4/opam            | 6 +++++-
 packages/lwt_eio/lwt_eio.0.5.1/opam          | 6 +++++-
 packages/lwt_eio/lwt_eio.0.5/opam            | 6 +++++-
 packages/lwt_glib/lwt_glib.1.0.1/opam        | 6 +++++-
 packages/lwt_glib/lwt_glib.1.1.0/opam        | 6 +++++-
 packages/lwt_glib/lwt_glib.1.1.1/opam        | 6 +++++-
 packages/lwt_log/lwt_log.1.1.0/opam          | 6 +++++-
 packages/lwt_log/lwt_log.1.1.1/opam          | 6 +++++-
 packages/lwt_log/lwt_log.1.1.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.0.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.0.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.1.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.3/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.1.2.4/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.0.3/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.2.1.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.8.0/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.8.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.9.1/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.9.2/opam          | 6 +++++-
 packages/lwt_ppx/lwt_ppx.5.9.3/opam          | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.10/opam | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.6/opam  | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.7/opam  | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.8/opam  | 6 +++++-
 packages/moonpool-lwt/moonpool-lwt.0.9/opam  | 6 +++++-
 packages/mwt/mwt.0.1.0/opam                  | 6 +++++-
 packages/nocrypto/nocrypto.0.5.4-1/opam      | 6 +++++-
 packages/nocrypto/nocrypto.0.5.4-2/opam      | 6 +++++-
 packages/ocluster/ocluster.0.1/opam          | 4 +++-
 packages/ocluster/ocluster.0.2.1/opam        | 6 +++++-
 packages/ocluster/ocluster.0.2/opam          | 4 +++-
 packages/ocluster/ocluster.0.3.0/opam        | 6 +++++-
 packages/picos/picos.0.3.0/opam              | 6 +++++-
 packages/picos/picos.0.4.0/opam              | 6 +++++-
 packages/picos_lwt/picos_lwt.0.5.0/opam      | 6 +++++-
 packages/picos_lwt/picos_lwt.0.6.0/opam      | 6 +++++-
 packages/tezt/tezt.2.0.0/opam                | 6 +++++-
 packages/tezt/tezt.3.0.0/opam                | 4 +++-
 packages/tezt/tezt.3.1.0/opam                | 4 +++-
 packages/tezt/tezt.3.1.1/opam                | 4 +++-
 packages/tezt/tezt.4.0.0/opam                | 4 +++-
 packages/tezt/tezt.4.1.0/opam                | 4 +++-
 packages/tezt/tezt.4.2.0/opam                | 4 +++-
 packages/tezt/tezt.4.3.0/opam                | 4 +++-
 84 files changed, 400 insertions(+), 84 deletions(-)

(from ocaml/opam:opensuse-tumbleweed-ocaml-4.14@sha256:f1ba2543127b2191a04ee8dd68eee0ead41304bc34d2f21386f6a89786424797)
Unable to find image 'ocaml/opam:opensuse-tumbleweed-ocaml-4.14@sha256:f1ba2543127b2191a04ee8dd68eee0ead41304bc34d2f21386f6a89786424797' locally
docker.io/ocaml/opam@sha256:f1ba2543127b2191a04ee8dd68eee0ead41304bc34d2f21386f6a89786424797: Pulling from ocaml/opam
75e735f90ade: Pulling fs layer
b0b319d03141: Pulling fs layer
ee2af61346f4: Pulling fs layer
19d259606f90: Pulling fs layer
b9ce36041236: Pulling fs layer
19d259606f90: Waiting
b9ce36041236: Waiting
ee2af61346f4: Download complete
19d259606f90: Download complete
b9ce36041236: Verifying Checksum
b9ce36041236: Download complete
b0b319d03141: Verifying Checksum
b0b319d03141: Download complete
75e735f90ade: Verifying Checksum
75e735f90ade: Download complete
75e735f90ade: Pull complete
b0b319d03141: Pull complete
ee2af61346f4: Pull complete
19d259606f90: Pull complete
b9ce36041236: Pull complete
Digest: sha256:f1ba2543127b2191a04ee8dd68eee0ead41304bc34d2f21386f6a89786424797
Status: Downloaded newer image for ocaml/opam@sha256:f1ba2543127b2191a04ee8dd68eee0ead41304bc34d2f21386f6a89786424797
2026-03-10 09:47.24 ---> saved as "05d9d3c335a7356880983d1ba4d38ecb03fb9c84905e2acbb58461287e6085cc"

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-10 09:47.24 ---> saved as "bf46669a1499f7809f8470864c51384bb6983313b6c06ed7c1a9a4cc3a516f33"

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

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

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

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-03-10 09:47.52 ---> saved as "fc2c08256e55cadaad70d4e8103bfc41923f637489bf69e1bf4491987ed4910e"

/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=opensuse-tumbleweed os-version=20260226
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.2"}]
# compiler-packages    ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.2
2026-03-10 09:47.53 ---> saved as "a280a24238b355ef9ca19e8388169212e80eb3503df60369e05e99ae61b107fd"

/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-03-10 09:48.01 ---> saved as "293c995eba2da405706892405682907f8bb09898e0ce7661209562d3980a881a"

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-10 09:48.09 ---> saved as "37843469e442b45c3d65a890331c8bb14ec5ced1a6646ab8beed223f7e507c49"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-10 09:48.28 ---> saved as "97d1ef0866893687035311e38a0b09f8868fa3c7834b4960ade04eeaad2fa98e"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "zypper" "--non-interactive" "refresh"
- Repository 'openSUSE-Tumbleweed-Update' is up to date.
- Retrieving repository 'openSUSE-Tumbleweed-Non-Oss' metadata [...
- Looking for gpg keys in repository openSUSE-Tumbleweed-Non-Oss.
-   gpgkey=http://download.opensuse.org/tumbleweed/repo/non-oss/repodata/repomd.xml.key
- ......
- ...
- ..done]
- Building repository 'openSUSE-Tumbleweed-Non-Oss' cache [....done]
- Retrieving repository 'openSUSE-Tumbleweed-Oss' metadata [...
- Looking for gpg keys in repository openSUSE-Tumbleweed-Oss.
-   gpgkey=http://download.opensuse.org/tumbleweed/repo/oss/repodata/repomd.xml.key
- ...
- ..........
- .........
- ......done]
- Building repository 'openSUSE-Tumbleweed-Oss' cache [..
- ..done]
- All repositories have been refreshed.
2026-03-10 09:48.40 ---> saved as "51b9a7ae01d34068af30864b8c087ec0b152bcb60c26441cdf6e337435b431d9"

/home/opam: (run (shell "opam pin add -k version -yn picos.0.4.0 0.4.0"))
picos is now pinned to version 0.4.0
2026-03-10 09:48.41 ---> saved as "63a73e0a9a0d54216ca678255eb4fc93b014cd41bfbdf9feae8b1f6625dbee86"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall picos.0.4.0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"opensuse-tumbleweed\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'picos.0.4.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
picos.0.4.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 17 packages
  - install backoff              0.1.1          [required by picos]
  - install base-bytes           base           [required by ocplib-endian]
  - install cppo                 1.8.0          [required by lwt]
  - install csexp                1.5.2          [required by dune-configurator]
  - install dune                 3.21.1         [required by picos]
  - install dune-configurator    3.21.1         [required by lwt]
  - install lwt                  6.1.1          [required by picos]
  - install mtime                2.1.0          [required by picos]
  - install multicore-magic      2.3.2          [required by picos]
  - install ocamlbuild           0.16.1         [required by mtime]
  - install ocamlfind            1.9.8          [required by mtime]
  - install ocplib-endian        1.2            [required by lwt]
  - install picos                0.4.0 (pinned)
  - install psq                  0.2.1          [required by picos]
  - install seq                  base           [required by psq]
  - install thread-local-storage 0.1            [required by picos]
  - install topkg                1.1.1          [required by mtime]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved backoff.0.1.1  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> retrieved dune.3.21.1, dune-configurator.3.21.1  (cached)
-> retrieved lwt.6.1.1  (cached)
-> retrieved mtime.2.1.0  (cached)
-> retrieved multicore-magic.2.3.2  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved picos.0.4.0  (cached)
-> retrieved psq.0.2.1  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> retrieved thread-local-storage.0.1  (cached)
-> retrieved topkg.1.1.1  (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed mtime.2.1.0
-> installed dune.3.21.1
-> installed csexp.1.5.2
-> installed backoff.0.1.1
-> installed cppo.1.8.0
-> installed multicore-magic.2.3.2
-> installed psq.0.2.1
-> installed thread-local-storage.0.1
-> installed ocplib-endian.1.2
-> installed dune-configurator.3.21.1
-> installed lwt.6.1.1
-> installed picos.0.4.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-10 09:49.17 ---> saved as "03afc7d9ccda32f8bd33bd6f6cd0bd3d58db2b43a6d5ad5500727e397474c006"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test picos.0.4.0) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile picos                      0.4.0 (pinned)
=== install 40 packages
  - install   alcotest                   1.9.1          [required by picos]
  - install   astring                    0.8.5          [required by alcotest, mdx]
  - install   camlp-streams              5.0.1          [required by mdx]
  - install   cmdliner                   2.1.0          [required by dscheck, alcotest, mdx]
  - install   conf-npm                   1              [required by picos]
  - install   containers                 3.18           [required by dscheck]
  - install   domain-local-await         1.0.1          [required by multicore-bench]
  - install   domain_shims               0.1.0          [required by picos]
  - install   dscheck                    0.5.0          [required by picos]
  - install   either                     1.0.0          [required by containers]
  - install   fmt                        0.11.0         [required by alcotest, mdx]
  - install   gen                        1.1            [required by sedlex]
  - install   js_of_ocaml                5.8.2          [required by picos]
  - install   js_of_ocaml-compiler       5.8.2          [required by js_of_ocaml]
  - install   logs                       0.10.0         [required by mdx]
  - install   mdx                        2.5.1          [required by picos]
  - install   menhir                     20260209       [required by js_of_ocaml-compiler]
  - install   menhirCST                  20260209       [required by menhir]
  - install   menhirGLR                  20260209       [required by menhir]
  - install   menhirLib                  20260209       [required by js_of_ocaml-compiler]
  - install   menhirSdk                  20260209       [required by js_of_ocaml-compiler]
  - install   multicore-bench            0.1.7          [required by picos]
  - install   ocaml-compiler-libs        v0.12.4        [required by ppxlib]
  - install   ocaml-syntax-shims         1.0.0          [required by alcotest]
  - install   ocaml-version              4.0.3          [required by picos]
  - install   oseq                       0.5.1          [required by dscheck]
  - install   ppx_derivers               1.2.1          [required by ppxlib]
  - install   ppxlib                     0.35.0         [required by js_of_ocaml]
  - install   qcheck-core                0.91           [required by picos]
  - install   qcheck-multicoretests-util 0.10           [required by picos]
  - install   qcheck-stm                 0.10           [required by picos]
  - install   re                         1.14.0         [required by alcotest, mdx]
  - install   result                     1.5            [required by mdx]
  - install   sedlex                     3.7            [required by js_of_ocaml-compiler]
  - install   sexplib0                   v0.17.0        [required by ppxlib]
  - install   stdlib-shims               0.3.0          [required by alcotest]
  - install   thread-table               1.0.0          [required by domain-local-await]
  - install   tsort                      2.2.0          [required by dscheck]
  - install   uutf                       1.0.4          [required by alcotest]
  - install   yojson                     3.0.0          [required by multicore-bench]

The following system packages will first need to be installed:
    npm-default

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

opam believes some required external dependencies are missing. opam can:
> 1. Run zypper to install them (may need root/sudo access)
  2. Display the recommended zypper 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 "zypper" "--non-interactive" "install" "npm-default"
- Loading repository data...
- Reading installed packages...
- Resolving package dependencies...
- 
- The following 10 NEW packages are going to be installed:
-   libalternatives1 libbrotlienc1 libcares2 libicu78 libicu78-ledata nodejs-common nodejs-default nodejs24 npm-default npm24
- 
- 10 new packages to install.
- 
- Package download size:    27.0 MiB
- 
- Package install size change:
-               |     103.6 MiB  required by packages that will be installed
-    103.6 MiB  |  -      0 B    released by packages that will be removed
- 
- Backend:  classic_rpmtrans
- Continue? [y/n/v/...? shows all options] (y): y
- Preloading Packages [..
- Preloading: libalternatives1-1.2+31.da24cd4-1.2.x86_64.rpm [done]
- .
- Preloading: nodejs-common-6.1-4.2.x86_64.rpm [done]
- .
- Preloading: libcares2-1.34.6-1.2.x86_64.rpm [done]
- .
- Preloading: libicu78-78.1-1.2.x86_64.rpm [done]
- .
- Preloading: libbrotlienc1-1.2.0-1.2.x86_64.rpm [done]
- .
- Preloading: nodejs-default-6.1-4.2.x86_64.rpm [done]
- .
- Preloading: npm-default-6.1-4.2.x86_64.rpm [done]
- .
- Preloading: npm24-24.13.0-4.1.x86_64.rpm [done]
- ..
- 
- Preloading: libicu78-ledata-78.1-1.2.noarch.rpm [done]
- ..
- Preloading: nodejs24-24.13.0-4.1.x86_64.rpm [done]
- .done]
- Retrieving: libalternatives1-1.2+31.da24cd4-1.2.x86_64 (openSUSE-Tumbleweed-Oss) (1/10),  19.4 KiB    
- Retrieving: libbrotlienc1-1.2.0-1.2.x86_64 (openSUSE-Tumbleweed-Oss) (2/10), 272.1 KiB    
- Retrieving: libcares2-1.34.6-1.2.x86_64 (openSUSE-Tumbleweed-Oss) (3/10), 125.7 KiB    
- Retrieving: libicu78-ledata-78.1-1.2.noarch (openSUSE-Tumbleweed-Oss) (4/10),   8.8 MiB    
- Retrieving: libicu78-78.1-1.2.x86_64 (openSUSE-Tumbleweed-Oss) (5/10),   2.2 MiB    
- Retrieving: nodejs-common-6.1-4.2.x86_64 (openSUSE-Tumbleweed-Oss) (6/10),  12.5 KiB    
- Retrieving: nodejs24-24.13.0-4.1.x86_64 (openSUSE-Tumbleweed-Oss) (7/10),  13.7 MiB    
- Retrieving: nodejs-default-6.1-4.2.x86_64 (openSUSE-Tumbleweed-Oss) (8/10),   7.2 KiB    
- Retrieving: npm24-24.13.0-4.1.x86_64 (openSUSE-Tumbleweed-Oss) (9/10),   1.9 MiB    
- Retrieving: npm-default-6.1-4.2.x86_64 (openSUSE-Tumbleweed-Oss) (10/10),   7.2 KiB    
- 
- Checking for file conflicts: [...done]
- ( 1/10) Installing: libalternatives1-1.2+31.da24cd4-1.2.x86_64 [..done]
- ( 2/10) Installing: libbrotlienc1-1.2.0-1.2.x86_64 [..done]
- ( 3/10) Installing: libcares2-1.34.6-1.2.x86_64 [..done]
- ( 4/10) Installing: libicu78-ledata-78.1-1.2.noarch [..
- ...done]
- ( 5/10) Installing: libicu78-78.1-1.2.x86_64 [..done]
- ( 6/10) Installing: nodejs-common-6.1-4.2.x86_64 [..done]
- ( 7/10) Installing: nodejs24-24.13.0-4.1.x86_64 [......
- done]
- ( 8/10) Installing: nodejs-default-6.1-4.2.x86_64 [..done]
- ( 9/10) Installing: npm24-24.13.0-4.1.x86_64 [.....done]
- (10/10) Installing: npm-default-6.1-4.2.x86_64 [..done]
- Running post-transaction scripts [...done]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1  (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5  (https://opam.ocaml.org/cache)
-> retrieved camlp-streams.5.0.1  (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.0  (https://opam.ocaml.org/cache)
-> installed camlp-streams.5.0.1
-> retrieved containers.3.18  (https://opam.ocaml.org/cache)
-> installed conf-npm.1
-> retrieved domain-local-await.1.0.1  (https://opam.ocaml.org/cache)
-> retrieved domain_shims.0.1.0  (https://opam.ocaml.org/cache)
-> retrieved dscheck.0.5.0  (https://opam.ocaml.org/cache)
-> installed domain_shims.0.1.0
-> retrieved either.1.0.0  (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0  (https://opam.ocaml.org/cache)
-> installed either.1.0.0
-> retrieved gen.1.1  (https://opam.ocaml.org/cache)
-> installed astring.0.8.5
-> retrieved js_of_ocaml.5.8.2, js_of_ocaml-compiler.5.8.2  (https://opam.ocaml.org/cache)
-> retrieved logs.0.10.0  (https://opam.ocaml.org/cache)
-> installed cmdliner.2.1.0
-> installed containers.3.18
-> installed gen.1.1
-> retrieved mdx.2.5.1  (https://opam.ocaml.org/cache)
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209  (https://opam.ocaml.org/cache)
-> installed fmt.0.11.0
-> installed menhirCST.20260209
-> retrieved multicore-bench.0.1.7  (https://opam.ocaml.org/cache)
-> retrieved ocaml-compiler-libs.v0.12.4  (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0  (https://opam.ocaml.org/cache)
-> installed menhirGLR.20260209
-> installed menhirLib.20260209
-> installed menhirSdk.20260209
-> retrieved ocaml-version.4.0.3  (https://opam.ocaml.org/cache)
-> retrieved oseq.0.5.1  (https://opam.ocaml.org/cache)
-> retrieved ppx_derivers.1.2.1  (https://opam.ocaml.org/cache)
-> installed ocaml-version.4.0.3
-> installed ppx_derivers.1.2.1
-> retrieved ppxlib.0.35.0  (https://opam.ocaml.org/cache)
-> installed oseq.0.5.1
-> installed ocaml-syntax-shims.1.0.0
-> installed ocaml-compiler-libs.v0.12.4
-> retrieved qcheck-core.0.91  (https://opam.ocaml.org/cache)
-> retrieved qcheck-multicoretests-util.0.10, qcheck-stm.0.10  (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> retrieved result.1.5  (https://opam.ocaml.org/cache)
-> retrieved sedlex.3.7  (https://opam.ocaml.org/cache)
-> installed result.1.5
-> retrieved sexplib0.v0.17.0  (https://opam.ocaml.org/cache)
-> retrieved stdlib-shims.0.3.0  (https://opam.ocaml.org/cache)
-> retrieved thread-table.1.0.0  (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> retrieved tsort.2.2.0  (https://opam.ocaml.org/cache)
-> installed thread-table.1.0.0
-> installed sexplib0.v0.17.0
-> installed qcheck-core.0.91
-> installed tsort.2.2.0
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> installed domain-local-await.1.0.1
-> installed re.1.14.0
-> installed dscheck.0.5.0
-> retrieved yojson.3.0.0  (https://opam.ocaml.org/cache)
-> installed qcheck-multicoretests-util.0.10
-> installed qcheck-stm.0.10
-> installed uutf.1.0.4
-> removed   picos.0.4.0
-> installed yojson.3.0.0
-> installed alcotest.1.9.1
-> installed multicore-bench.0.1.7
-> installed menhir.20260209
-> installed ppxlib.0.35.0
-> installed sedlex.3.7
-> installed js_of_ocaml-compiler.5.8.2
-> installed logs.0.10.0
-> installed mdx.2.5.1
-> installed js_of_ocaml.5.8.2
-> installed picos.0.4.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-10 09:50.35 ---> saved as "76ec1bb72d04fc019013dde35e23a5a8823edd2f185147c9241cd4408df7bef0"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [picos: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "picos" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/picos.0.4.0)
- (cd _build/default/test && ./test_mpscq.exe)
- 
random seed: 20654757
- generated error fail pass / total     time test name
- 
[ ]    0    0    0    0 / 1000     0.0s Picos_mpscq sequential
[✓] 1000    0    0 1000 / 1000     0.0s Picos_mpscq sequential
- ================================================================================
- success (ran 1 tests)
- (cd _build/default/test && ./test_server_and_client.exe)
- Using non-blocking sockets and threads on OCaml 4:
-   Looping server running
-   Server listening
-   Server accepting
-   Client A running
-   Client B running
-   Client A connected
-   Server accepted client
-   Client B connected
-   Client A wrote 100
-   Client B wrote 100
-   Server accepting
-   Server read 100
-   Server accepted client
-   Server wrote 50
-   Client A read 50
-   Server accepting
-   Server read 100
-   Server wrote 50
-   Client B read 50
- Server and Client test: OK
- (cd _build/default/test && /usr/bin/node test_js_of_ocaml.bc.js)
- Hello, from js_of_ocaml with Picos!
- (cd _build/default/test && ./test_picos.exe)
- Testing `Picos'.
- This run has ID `FI6P7Y51'.
- 
-   [OK]          Trigger basics                        0   
-   [OK]          Computation basics                    0   
-   [OK]          Fiber.FLS basics                      0   
-   [OK]          Thread cancelation                    0   
-   [OK]          Cancel after                          0   
-   [OK]          Computation signals in order          0   
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/picos.0.4.0/_build/default/test/_build/_tests/Picos'.
- Test Successful in 0.023s. 6 tests run.
- (cd _build/default/test && ./test_schedulers.exe)
- Testing `Picos schedulers'.
- This run has ID `N2FYBNUY'.
- 
-   [OK]          Returns               0   
-   [OK]          Current               0   
-   [OK]          Cancel_after          0   basic.
-   [OK]          Cancel_after          1   long timeout.
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/picos.0.4.0/_build/default/test/_build/_tests/Picos schedulers'.
- Test Successful in 0.101s. 4 tests run.
- (cd _build/default/test && ./test_stdio.exe)
- Testing `Picos_stdio'.
- This run has ID `2JIXH8Q4'.
- 
-   [OK]          Unix          0   openfile and read.
-   [OK]          Unix          1   sleepf.
-   [OK]          Unix          2   select empty timeout.
-   [OK]          Unix          3   select empty ∞.
-   [OK]          Unix          4   select.
-   [OK]          Unix          5   system.
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/picos.0.4.0/_build/default/test/_build/_tests/Picos_stdio'.
- Test Successful in 0.342s. 6 tests run.
- (cd _build/default/test && ./test_structured.exe)
- Testing `Picos_structured'.
- This run has ID `DR1JFH69'.
- 
-   [OK]          Bundle          0   fork after terminate.
-   [OK]          Bundle          1   fork after escape.
-   [OK]          Bundle          2   exception in child terminates.
-   [OK]          Bundle          3   cancelation awaits children.
-   [OK]          Bundle          4   termination nests.
-   [OK]          Bundle          5   promise cancelation does not terminate.
-   [OK]          Bundle          6   error in promise terminates.
-   [OK]          Bundle          7   can wait promises.
-   [OK]          Bundle          8   any and all errors.
-   [OK]          Bundle          9   any and all returns.
-   [OK]          Bundle         10   race any.
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/picos.0.4.0/_build/default/test/_build/_tests/Picos_structured'.
- Test Successful in 0.418s. 11 tests run.
- (cd _build/default/test && ./test_sync.exe)
- Testing `Picos_sync'.
- This run has ID `03QEENJ0'.
- 
-   [OK]          Mutex and Condition          0   basics.
-   [OK]          Mutex and Condition          1   errors.
-   [OK]          Mutex and Condition          2   cancelation.
-   [OK]          Lazy                         0   basics.
-   [OK]          Lazy                         1   cancelation.
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/picos.0.4.0/_build/default/test/_build/_tests/Picos_sync'.
- Test Successful in 0.621s. 5 tests run.
- (cd _build/default/test && ./test_select.exe)
- Testing `Picos_select'.
- This run has ID `SU1QA5JF'.
- 
-   [OK]          Intr          0   
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/picos.0.4.0/_build/default/test/_build/_tests/Picos_select'.
- Test Successful in 0.941s. 1 test run.
- (cd _build/default/test && ./test_stdio_with_lwt.exe)
- Testing `Picos_stdio_with_lwt'.
- This run has ID `98A4XXD0'.
- 
-   [OK]          Unix          0   system.
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/picos.0.4.0/_build/default/test/_build/_tests/Picos_stdio_with_lwt'.
- Test Successful in 2.018s. 1 test run.
- (cd _build/default/bench && ./main.exe -brief)
- Fib:
- Picos Cancel_after with Picos_select:
-   async round-trips over time/1 worker:
-     0.46 M/s
-   round-trips over time/1 worker:
-     0.05 M/s
-   time per async round-trip/1 worker:
-     2172.79 ns
-   time per round-trip/1 worker:
-     20671.38 ns
- Picos Computation:
-   attach detach pairs over time/1 worker:
-     8.62 M/s
-   attach detach pairs over time/2 workers:
-     6.54 M/s
-   attach detach pairs over time/4 workers:
-     7.08 M/s
-   attach detach pairs over time/trivial:
-     33.30 M/s
-   time per attach detach pair/1 worker:
-     116.03 ns
-   time per attach detach pair/2 workers:
-     307.65 ns
-   time per attach detach pair/4 workers:
-     567.14 ns
-   time per attach detach pair/trivial:
-     30.03 ns
- Picos Current:
-   ops over time/1 worker:
-     117.31 M/s
-   ops over time/2 workers:
-     115.02 M/s
-   ops over time/4 workers:
-     113.89 M/s
-   time per op/1 worker:
-     8.52 ns
-   time per op/2 workers:
-     17.39 ns
-   time per op/4 workers:
-     35.12 ns
- Picos DLS:
-   gets over time/1 worker:
-     286.93 M/s
-   sets over time/1 worker:
-     172.27 M/s
-   time per get/1 worker:
-     3.49 ns
-   time per set/1 worker:
-     5.80 ns
- Picos FLS (excluding Current):
-   gets over time/1 worker:
-     148.38 M/s
-   sets over time/1 worker:
-     99.35 M/s
-   time per get/1 worker:
-     6.74 ns
-   time per set/1 worker:
-     10.06 ns
- Picos Mutex:
-   locked yields over time/1 fiber:
-     0.09 M/s
-   locked yields over time/2 fibers:
-     0.06 M/s
-   locked yields over time/4 fibers:
-     0.05 M/s
-   locked yields over time/8 fibers:
-     0.04 M/s
-   time per locked yield/1 fiber:
-     11763.49 ns
-   time per locked yield/2 fibers:
-     18148.11 ns
-   time per locked yield/4 fibers:
-     21314.51 ns
-   time per locked yield/8 fibers:
-     23504.76 ns
- Picos Spawn:
-   spawns over time/1 at a time:
-     0.01 M/s
-   spawns over time/2 at a time:
-     0.01 M/s
-   spawns over time/4 at a time:
-     0.01 M/s
-   spawns over time/8 at a time:
-     0.01 M/s
-   time per spawn/1 at a time:
-     73302.39 ns
-   time per spawn/2 at a time:
-     67336.61 ns
-   time per spawn/4 at a time:
-     72390.20 ns
-   time per spawn/8 at a time:
-     69881.67 ns
- Picos TLS:
-   gets over time/1 worker:
-     172.55 M/s
-   sets over time/1 worker:
-     112.55 M/s
-   time per get/1 worker:
-     5.80 ns
-   time per set/1 worker:
-     8.88 ns
- Picos Yield:
-   time per yield/100 fibers:
-     10134.25 ns
-   time per yield/10 fibers:
-     8630.05 ns
-   time per yield/1 fiber:
-     15448.52 ns
-   yields over time/100 fibers:
-     0.10 M/s
-   yields over time/10 fibers:
-     0.12 M/s
-   yields over time/1 fiber:
-     0.06 M/s
- Picos binaries:
-   binary size/picos:
-     21.45 kB
-   binary size/picos_domain:
-     7.42 kB
-   binary size/picos_exn_bt:
-     11.90 kB
-   binary size/picos_fd:
-     10.00 kB
-   binary size/picos_htbl:
-     43.20 kB
-   binary size/picos_mpscq:
-     18.32 kB
-   binary size/picos_rc:
-     19.22 kB
-   binary size/picos_select:
-     54.92 kB
-   binary size/picos_stdio:
-     86.26 kB
-   binary size/picos_structured:
-     64.30 kB
-   binary size/picos_sync:
-     59.04 kB
-   binary size/picos_thread:
-     4.23 kB
-   binary size/picos_threaded:
-     25.66 kB
- Picos_htbl:
-   operations over time/1 worker, 10% reads:
-     14.30 M/s
-   operations over time/1 worker, 50% reads:
-     16.06 M/s
-   operations over time/1 worker, 90% reads:
-     19.71 M/s
-   time per operation/1 worker, 10% reads:
-     69.93 ns
-   time per operation/1 worker, 50% reads:
-     62.28 ns
-   time per operation/1 worker, 90% reads:
-     50.74 ns
- Picos_mpscq:
-   messages over time/1 nb adder, 1 nb taker:
-     61.11 M/s
-   messages over time/2 nb adders, 1 nb taker:
-     57.38 M/s
-   messages over time/4 nb adders, 1 nb taker:
-     50.63 M/s
-   messages over time/one domain:
-     28.83 M/s
-   time per message/1 nb adder, 1 nb taker:
-     32.73 ns
-   time per message/2 nb adders, 1 nb taker:
-     52.28 ns
-   time per message/4 nb adders, 1 nb taker:
-     98.76 ns
-   time per message/one domain:
-     34.68 ns
- Picos_stdio:
-   blocking reads over time/1 worker:
-     0.05 M/s
-   non-blocking reads over time/1 worker:
-     0.38 M/s
-   time per blocking read/1 worker:
-     19812.86 ns
-   time per non-blocking read/1 worker:
-     2619.72 ns
- Ref with Picos_sync.Mutex:
-   ops over time/cas int (checked):
-     22.44 M/s
-   ops over time/cas int (unchecked):
-     32.23 M/s
-   ops over time/get (checked):
-     24.20 M/s
-   ops over time/get (unchecked):
-     37.67 M/s
-   ops over time/incr (checked):
-     24.02 M/s
-   ops over time/incr (unchecked):
-     37.66 M/s
-   ops over time/push & pop (checked):
-     20.08 M/s
-   ops over time/push & pop (unchecked):
-     31.80 M/s
-   ops over time/swap (checked):
-     21.65 M/s
-   ops over time/swap (unchecked):
-     32.28 M/s
-   ops over time/xchg int (checked):
-     22.12 M/s
-   ops over time/xchg int (unchecked):
-     32.12 M/s
-   time per op/cas int (checked):
-     44.56 ns
-   time per op/cas int (unchecked):
-     31.03 ns
-   time per op/get (checked):
-     41.33 ns
-   time per op/get (unchecked):
-     26.55 ns
-   time per op/incr (checked):
-     41.63 ns
-   time per op/incr (unchecked):
-     26.55 ns
-   time per op/push & pop (checked):
-     49.79 ns
-   time per op/push & pop (unchecked):
-     31.44 ns
-   time per op/swap (checked):
-     46.20 ns
-   time per op/swap (unchecked):
-     30.98 ns
-   time per op/xchg int (checked):
-     45.21 ns
-   time per op/xchg int (unchecked):
-     31.14 ns
- (cd _build/default/test && ./test_htbl.exe)
- 
random seed: 346827095
- generated error fail pass / total     time test name
- 
[ ]    0    0    0    0 / 1000     0.0s Picos_htbl sequential
[✓] 1000    0    0 1000 / 1000     0.0s Picos_htbl sequential
- 
[ ]    0    0    0    0 / 1000     0.0s Picos_htbl concurrent
[ ]    8    0    0    8 / 1000     0.2s Picos_htbl concurrent
[ ]   21    0    0   21 / 1000     0.4s Picos_htbl concurrent
[ ]   26    0    0   26 / 1000     0.5s Picos_htbl concurrent
[ ]   37    0    0   37 / 1000     0.7s Picos_htbl concurrent
[ ]   43    0    0   43 / 1000     0.8s Picos_htbl concurrent
[ ]   51    0    0   51 / 1000     1.0s Picos_htbl concurrent
[ ]   55    0    0   55 / 1000     1.1s Picos_htbl concurrent
[ ]   73    0    0   73 / 1000     1.2s Picos_htbl concurrent
[ ]   92    0    0   92 / 1000     1.3s Picos_htbl concurrent
[ ]  105    0    0  105 / 1000     1.5s Picos_htbl concurrent
[ ]  110    0    0  110 / 1000     1.7s Picos_htbl concurrent
[ ]  115    0    0  115 / 1000     1.9s Picos_htbl concurrent
[ ]  133    0    0  133 / 1000     2.0s Picos_htbl concurrent
[ ]  153    0    0  153 / 1000     2.1s Picos_htbl concurrent
[ ]  158    0    0  158 / 1000     2.3s Picos_htbl concurrent
[ ]  177    0    0  177 / 1000     2.4s Picos_htbl concurrent
[ ]  189    0    0  189 / 1000     2.5s Picos_htbl concurrent
[ ]  201    0    0  201 / 1000     2.7s Picos_htbl concurrent
[ ]  202    0    0  202 / 1000     2.8s Picos_htbl concurrent
[ ]  203    0    0  203 / 1000     2.9s Picos_htbl concurrent
[ ]  205    0    0  205 / 1000     3.0s Picos_htbl concurrent
[ ]  218    0    0  218 / 1000     3.1s Picos_htbl concurrent
[ ]  222    0    0  222 / 1000     3.3s Picos_htbl concurrent
[ ]  233    0    0  233 / 1000     3.6s Picos_htbl concurrent
[ ]  234    0    0  234 / 1000     3.7s Picos_htbl concurrent
[ ]  244    0    0  244 / 1000     3.8s Picos_htbl concurrent
[ ]  258    0    0  258 / 1000     3.9s Picos_htbl concurrent
[ ]  265    0    0  265 / 1000     4.1s Picos_htbl concurrent
[ ]  280    0    0  280 / 1000     4.2s Picos_htbl concurrent
[ ]  288    0    0  288 / 1000     4.4s Picos_htbl concurrent
[ ]  292    0    0  292 / 1000     4.6s Picos_htbl concurrent
[ ]  295    0    0  295 / 1000     4.7s Picos_htbl concurrent
[ ]  312    0    0  312 / 1000     4.9s Picos_htbl concurrent
[ ]  318    0    0  318 / 1000     5.0s Picos_htbl concurrent
[ ]  324    0    0  324 / 1000     5.2s Picos_htbl concurrent
[ ]  342    0    0  342 / 1000     5.3s Picos_htbl concurrent
[ ]  351    0    0  351 / 1000     5.4s Picos_htbl concurrent
[ ]  358    0    0  358 / 1000     5.6s Picos_htbl concurrent
[ ]  375    0    0  375 / 1000     5.8s Picos_htbl concurrent
[ ]  395    0    0  395 / 1000     5.9s Picos_htbl concurrent
[ ]  398    0    0  398 / 1000     6.1s Picos_htbl concurrent
[ ]  403    0    0  403 / 1000     6.2s Picos_htbl concurrent
[ ]  405    0    0  405 / 1000     6.3s Picos_htbl concurrent
[ ]  419    0    0  419 / 1000     6.5s Picos_htbl concurrent
[ ]  440    0    0  440 / 1000     6.6s Picos_htbl concurrent
[ ]  446    0    0  446 / 1000     6.7s Picos_htbl concurrent
[ ]  454    0    0  454 / 1000     6.9s Picos_htbl concurrent
[ ]  459    0    0  459 / 1000     7.0s Picos_htbl concurrent
[ ]  479    0    0  479 / 1000     7.1s Picos_htbl concurrent
[ ]  485    0    0  485 / 1000     7.3s Picos_htbl concurrent
[ ]  497    0    0  497 / 1000     7.4s Picos_htbl concurrent
[ ]  504    0    0  504 / 1000     7.5s Picos_htbl concurrent
[ ]  519    0    0  519 / 1000     7.7s Picos_htbl concurrent
[ ]  524    0    0  524 / 1000     7.8s Picos_htbl concurrent
[ ]  557    0    0  557 / 1000     7.9s Picos_htbl concurrent
[ ]  577    0    0  577 / 1000     8.1s Picos_htbl concurrent
[ ]  590    0    0  590 / 1000     8.2s Picos_htbl concurrent
[ ]  598    0    0  598 / 1000     8.3s Picos_htbl concurrent
[ ]  607    0    0  607 / 1000     8.4s Picos_htbl concurrent
[ ]  608    0    0  608 / 1000     8.5s Picos_htbl concurrent
[ ]  622    0    0  622 / 1000     8.6s Picos_htbl concurrent
[ ]  634    0    0  634 / 1000     8.9s Picos_htbl concurrent
[ ]  644    0    0  644 / 1000     9.0s Picos_htbl concurrent
[ ]  674    0    0  674 / 1000     9.1s Picos_htbl concurrent
[ ]  678    0    0  678 / 1000     9.2s Picos_htbl concurrent
[ ]  681    0    0  681 / 1000     9.3s Picos_htbl concurrent
[ ]  683    0    0  683 / 1000     9.5s Picos_htbl concurrent
[ ]  695    0    0  695 / 1000     9.6s Picos_htbl concurrent
[ ]  705    0    0  705 / 1000     9.8s Picos_htbl concurrent
[ ]  720    0    0  720 / 1000     9.9s Picos_htbl concurrent
[ ]  721    0    0  721 / 1000    10.0s Picos_htbl concurrent
[ ]  732    0    0  732 / 1000    10.2s Picos_htbl concurrent
[ ]  760    0    0  760 / 1000    10.3s Picos_htbl concurrent
[ ]  762    0    0  762 / 1000    10.4s Picos_htbl concurrent
[ ]  773    0    0  773 / 1000    10.6s Picos_htbl concurrent
[ ]  790    0    0  790 / 1000    10.8s Picos_htbl concurrent
[ ]  810    0    0  810 / 1000    10.9s Picos_htbl concurrent
[ ]  827    0    0  827 / 1000    11.1s Picos_htbl concurrent
[ ]  836    0    0  836 / 1000    11.3s Picos_htbl concurrent
[ ]  845    0    0  845 / 1000    11.5s Picos_htbl concurrent
[ ]  848    0    0  848 / 1000    11.6s Picos_htbl concurrent
[ ]  857    0    0  857 / 1000    11.8s Picos_htbl concurrent
[ ]  859    0    0  859 / 1000    12.0s Picos_htbl concurrent
[ ]  863    0    0  863 / 1000    12.2s Picos_htbl concurrent
[ ]  864    0    0  864 / 1000    12.3s Picos_htbl concurrent
[ ]  874    0    0  874 / 1000    12.5s Picos_htbl concurrent
[ ]  879    0    0  879 / 1000    12.7s Picos_htbl concurrent
[ ]  900    0    0  900 / 1000    13.0s Picos_htbl concurrent
[ ]  916    0    0  916 / 1000    13.2s Picos_htbl concurrent
[ ]  932    0    0  932 / 1000    13.3s Picos_htbl concurrent
[ ]  940    0    0  940 / 1000    13.4s Picos_htbl concurrent
[ ]  950    0    0  950 / 1000    13.5s Picos_htbl concurrent
[ ]  958    0    0  958 / 1000    13.6s Picos_htbl concurrent
[ ]  989    0    0  989 / 1000    13.8s Picos_htbl concurrent
[ ]  995    0    0  995 / 1000    14.0s Picos_htbl concurrent
[✓] 1000    0    0 1000 / 1000    14.0s Picos_htbl concurrent
- ================================================================================
- success (ran 2 tests)
-> compiled  picos.0.4.0
-> removed   picos.0.4.0
-> installed picos.0.4.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-10 09:50.53 ---> saved as "992a6676f8aeca4f82ae416cb8073a3089e9d40636f8b51e3fa607f58e8ef99a"
Job succeeded
2026-03-10 09:51.09: Job succeeded