Organisationsocaml-multicorepicosdc5341 ()debian-13-4.14_riscv64_opam-2.5

debian-13-4.14_riscv64_opam-2.5

Logs

Show full logs
2026-01-22 13:28.11: New job: test ocaml-multicore/picos https://github.com/ocaml-multicore/picos.git#refs/heads/experimental-htbl (dc534186caa14707111f695014396041557a4ad0) (linux-riscv64:debian-13-4.14_riscv64_opam-2.5)
Base: ocaml/opam:debian-13-ocaml-4.14@sha256:4e913c9f11762beddd6d0f2fba298f49fdc83a3885157d727a3154ae02b65a38
Opam project build

To reproduce locally:

git clone --recursive "https://github.com/ocaml-multicore/picos.git" -b "experimental-htbl" && cd "picos" && git reset --hard dc534186
cat > Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:4e913c9f11762beddd6d0f2fba298f49fdc83a3885157d727a3154ae02b65a38
# debian-13-4.14_riscv64_opam-2.5
USER 1000:1000
ENV CLICOLOR_FORCE="1"
ENV OPAMCOLOR="always"
WORKDIR /src
RUN sudo ln -f /usr/bin/opam-2.5 /usr/bin/opam
RUN opam init --reinit -ni
RUN uname -rs && opam exec -- ocaml -version && opam --version
WORKDIR /src
RUN sudo chown opam /src
RUN cd ~/opam-repository && (git cat-file -e 1c997ec9e6ebc6ea699547000cb8dfa44e52efaa || git fetch origin master) && git reset -q --hard 1c997ec9e6ebc6ea699547000cb8dfa44e52efaa && git log --no-decorate -n1 --oneline && opam update -u
COPY --chown=1000:1000 picos_std.opam picos_mux.opam picos_meta.opam picos_lwt.opam picos_io_cohttp.opam picos_io.opam picos_aux.opam picos.opam ./
RUN opam pin add -yn picos_std.dev './' && \
    opam pin add -yn picos_mux.dev './' && \
    opam pin add -yn picos_meta.dev './' && \
    opam pin add -yn picos_lwt.dev './' && \
    opam pin add -yn picos_io_cohttp.dev './' && \
    opam pin add -yn picos_io.dev './' && \
    opam pin add -yn picos_aux.dev './' && \
    opam pin add -yn picos.dev './'
RUN echo '(lang dune 3.0)' > './dune-project'
ENV DEPS="alcotest.1.9.1 angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 backoff.0.1.1 base.v0.16.4 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0 bos.0.2.1 ca-certs.1.0.1 camlp-streams.5.0.1 cmdliner.2.1.0 cohttp.6.2.1 cohttp-lwt.6.2.1 cohttp-lwt-unix.6.2.1 conduit.8.0.0 conduit-lwt.8.0.0 conduit-lwt-unix.8.0.0 conf-gmp.5 conf-gmp-powm-sec.4 conf-pkg-config.4 containers.3.17 cppo.1.8.0 csexp.1.5.2 digestif.1.3.0 domain-local-await.1.0.1 domain-name.0.5.0 domain_shims.0.1.0 dscheck.0.5.0 dune.3.21.0 dune-configurator.3.21.0 duration.0.2.1 either.1.0.0 eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gen.1.1 gmap.0.3.0 http.6.2.1 ipaddr.5.6.1 ipaddr-sexp.5.6.1 js_of_ocaml.6.2.0 js_of_ocaml-compiler.6.2.0 kdf.1.0.0 logs.0.10.0 lwt.6.0.0 macaddr.5.6.1 magic-mime.1.3.1 mdx.2.5.1 menhir.20250912 menhirCST.20250912 menhirLib.20250912 menhirSdk.20250912 mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2 mirage-crypto-rng.2.0.2 mtime.2.1.0 multicore-bench.0.1.7 multicore-magic.2.3.2 multicore-magic-dscheck.2.3.2 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.4.0.3 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 ohex.0.2.0 oseq.0.5.1 ppx_derivers.1.2.1 ppx_sexp_conv.v0.16.0 ppxlib.0.35.0 psq.0.2.1 ptime.1.2.0 qcheck-core.0.91 qcheck-multicoretests-util.0.10 qcheck-stm.0.10 re.1.14.0 result.1.5 rresult.0.7.0 sedlex.3.7 seq.base sexplib0.v0.16.0 stdlib-shims.0.3.0 stringext.1.6.0 thread-local-storage.0.2 thread-table.1.0.0 topkg.1.1.1 tsort.2.2.0 uri.4.4.0 uri-sexp.4.4.0 uutf.1.0.4 x509.1.0.6 yojson.3.0.0 zarith.1.14"
ENV CI="true"
ENV OCAMLCI="true"
RUN opam update --depexts && opam install --cli=2.5 --depext-only -y picos_std.dev picos_mux.dev picos_meta.dev picos_lwt.dev picos_io_cohttp.dev picos_io.dev picos_aux.dev picos.dev $DEPS
RUN opam install $DEPS
COPY --chown=1000:1000 . /src
RUN opam exec -- dune build @install @check @runtest && rm -rf _build

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

2026-01-22 13:28.11: Using cache hint "ocaml-multicore/picos-ocaml/opam:debian-13-ocaml-4.14@sha256:4e913c9f11762beddd6d0f2fba298f49fdc83a3885157d727a3154ae02b65a38-debian-13-4.14_riscv64_opam-2.5-37af0ae996f4b7202de4e35f957fcbd8"
2026-01-22 13:28.11: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:4e913c9f11762beddd6d0f2fba298f49fdc83a3885157d727a3154ae02b65a38)
 (comment debian-13-4.14_riscv64_opam-2.5)
 (user (uid 1000) (gid 1000))
 (env CLICOLOR_FORCE 1)
 (env OPAMCOLOR always)
 (workdir /src)
 (run (shell "sudo ln -f /usr/bin/opam-2.5 /usr/bin/opam"))
 (run (shell "opam init --reinit -ni"))
 (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
 (workdir /src)
 (run (shell "sudo chown opam /src"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell "cd ~/opam-repository && (git cat-file -e 1c997ec9e6ebc6ea699547000cb8dfa44e52efaa || git fetch origin master) && git reset -q --hard 1c997ec9e6ebc6ea699547000cb8dfa44e52efaa && git log --no-decorate -n1 --oneline && opam update -u"))
 (copy (src picos_std.opam picos_mux.opam picos_meta.opam picos_lwt.opam picos_io_cohttp.opam picos_io.opam picos_aux.opam picos.opam)
       (dst ./))
 (run (network host)
      (shell  "opam pin add -yn picos_std.dev './' && \
             \nopam pin add -yn picos_mux.dev './' && \
             \nopam pin add -yn picos_meta.dev './' && \
             \nopam pin add -yn picos_lwt.dev './' && \
             \nopam pin add -yn picos_io_cohttp.dev './' && \
             \nopam pin add -yn picos_io.dev './' && \
             \nopam pin add -yn picos_aux.dev './' && \
             \nopam pin add -yn picos.dev './'"))
 (run (network host)
      (shell "echo '(lang dune 3.0)' > './dune-project'"))
 (env DEPS "alcotest.1.9.1 angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 backoff.0.1.1 base.v0.16.4 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0 bos.0.2.1 ca-certs.1.0.1 camlp-streams.5.0.1 cmdliner.2.1.0 cohttp.6.2.1 cohttp-lwt.6.2.1 cohttp-lwt-unix.6.2.1 conduit.8.0.0 conduit-lwt.8.0.0 conduit-lwt-unix.8.0.0 conf-gmp.5 conf-gmp-powm-sec.4 conf-pkg-config.4 containers.3.17 cppo.1.8.0 csexp.1.5.2 digestif.1.3.0 domain-local-await.1.0.1 domain-name.0.5.0 domain_shims.0.1.0 dscheck.0.5.0 dune.3.21.0 dune-configurator.3.21.0 duration.0.2.1 either.1.0.0 eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gen.1.1 gmap.0.3.0 http.6.2.1 ipaddr.5.6.1 ipaddr-sexp.5.6.1 js_of_ocaml.6.2.0 js_of_ocaml-compiler.6.2.0 kdf.1.0.0 logs.0.10.0 lwt.6.0.0 macaddr.5.6.1 magic-mime.1.3.1 mdx.2.5.1 menhir.20250912 menhirCST.20250912 menhirLib.20250912 menhirSdk.20250912 mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2 mirage-crypto-rng.2.0.2 mtime.2.1.0 multicore-bench.0.1.7 multicore-magic.2.3.2 multicore-magic-dscheck.2.3.2 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.4.0.3 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 ohex.0.2.0 oseq.0.5.1 ppx_derivers.1.2.1 ppx_sexp_conv.v0.16.0 ppxlib.0.35.0 psq.0.2.1 ptime.1.2.0 qcheck-core.0.91 qcheck-multicoretests-util.0.10 qcheck-stm.0.10 re.1.14.0 result.1.5 rresult.0.7.0 sedlex.3.7 seq.base sexplib0.v0.16.0 stdlib-shims.0.3.0 stringext.1.6.0 thread-local-storage.0.2 thread-table.1.0.0 topkg.1.1.1 tsort.2.2.0 uri.4.4.0 uri-sexp.4.4.0 uutf.1.0.4 x509.1.0.6 yojson.3.0.0 zarith.1.14")
 (env CI true)
 (env OCAMLCI true)
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell "opam update --depexts && opam install --cli=2.5 --depext-only -y picos_std.dev picos_mux.dev picos_meta.dev picos_lwt.dev picos_io_cohttp.dev picos_io.dev picos_aux.dev picos.dev $DEPS"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell "opam install $DEPS"))
 (copy (src .) (dst /src))
 (run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build"))
)

2026-01-22 13:28.11: Waiting for resource in pool OCluster
2026-01-22 13:28.11: Waiting for worker…
2026-01-22 13:43.14: Got resource from pool OCluster
Building on riscv-bm-02.sw.ci.dev
HEAD is now at dc3f7cc Upgrade to `multicore-magic` 2.3.2
HEAD is now at dc53418 Experimental more incremental resize approach

(from ocaml/opam:debian-13-ocaml-4.14@sha256:4e913c9f11762beddd6d0f2fba298f49fdc83a3885157d727a3154ae02b65a38)
2026-01-22 13:43.16 ---> using "f1a00875660a94745f9138aa43f7660587c0e6aaae220b636433064dbda2332d" from cache

/: (comment debian-13-4.14_riscv64_opam-2.5)

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

/: (env CLICOLOR_FORCE 1)

/: (env OPAMCOLOR always)

/: (workdir /src)

/src: (run (shell "sudo ln -f /usr/bin/opam-2.5 /usr/bin/opam"))
2026-01-22 13:43.16 ---> using "25bdb2d61a9b2af2ac1a18220313e901131257e552bd23940b1fd4b151ae1011" from cache

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

This 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-01-22 13:43.16 ---> using "97ca85866698c8f3fd2797f2aff991e0dd9be607bf2a65dc42755bb4cd4a78c1" from cache

/src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
Linux 5.10.113-scw1
The OCaml toplevel, version 4.14.2
2.5.0
2026-01-22 13:43.16 ---> using "09ffd6711c0396e96988415eabfab38e156be4082324d52d6afca1094d258014" from cache

/src: (workdir /src)

/src: (run (shell "sudo chown opam /src"))
2026-01-22 13:43.16 ---> using "b9ef6b1b47c669a34389b9339cd59c9857f6e0962588b76f2699af2568d1f660" from cache

/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
           (network host)
           (shell "cd ~/opam-repository && (git cat-file -e 1c997ec9e6ebc6ea699547000cb8dfa44e52efaa || git fetch origin master) && git reset -q --hard 1c997ec9e6ebc6ea699547000cb8dfa44e52efaa && git log --no-decorate -n1 --oneline && opam update -u"))
From https://github.com/ocaml/opam-repository
 * branch                  master     -> FETCH_HEAD
   16d9c0eb87..5bcf75c1ac  master     -> origin/master
1c997ec9e6 Merge pull request #29241 from polytypic/release-multicore-magic-2.3.2

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

Everything as up-to-date as possible (run with --verbose to show unavailable upgrades).
However, you may "opam upgrade" these packages explicitly at these versions (e.g. "opam upgrade ocaml.5.4.0"), which will ask permission to downgrade or uninstall the conflicting packages.
Nothing to do.
# To update the current shell environment, run: eval $(opam env)
2026-01-22 13:43.16 ---> using "39c184245d139b766f12335645c4749dba3994ec5b9d88809173ac4031f79b6d" from cache

/src: (copy (src picos_std.opam picos_mux.opam picos_meta.opam picos_lwt.opam picos_io_cohttp.opam picos_io.opam picos_aux.opam picos.opam)
            (dst ./))
2026-01-22 13:43.16 ---> saved as "0caf5a499eb22f7f1b64b8a2f35d3eea889babf697a21c494b4d5a458638bcf0"

/src: (run (network host)
           (shell  "opam pin add -yn picos_std.dev './' && \
                  \nopam pin add -yn picos_mux.dev './' && \
                  \nopam pin add -yn picos_meta.dev './' && \
                  \nopam pin add -yn picos_lwt.dev './' && \
                  \nopam pin add -yn picos_io_cohttp.dev './' && \
                  \nopam pin add -yn picos_io.dev './' && \
                  \nopam pin add -yn picos_aux.dev './' && \
                  \nopam pin add -yn picos.dev './'"))
[picos_std.dev] synchronised (file:///src)
picos_std is now pinned to file:///src (version dev)
[picos_mux.dev] synchronised (file:///src)
picos_mux is now pinned to file:///src (version dev)
[picos_meta.dev] synchronised (file:///src)
picos_meta is now pinned to file:///src (version dev)
[picos_lwt.dev] synchronised (file:///src)
picos_lwt is now pinned to file:///src (version dev)
[picos_io_cohttp.dev] synchronised (file:///src)
picos_io_cohttp is now pinned to file:///src (version dev)
[picos_io.dev] synchronised (file:///src)
picos_io is now pinned to file:///src (version dev)
[picos_aux.dev] synchronised (file:///src)
picos_aux is now pinned to file:///src (version dev)
[picos.dev] synchronised (file:///src)
picos is now pinned to file:///src (version dev)
2026-01-22 13:44.11 ---> saved as "111aafd749bae899a2ac8971812f7a0d848b72b034f32a06e29c82cb07058ef8"

/src: (run (network host)
           (shell "echo '(lang dune 3.0)' > './dune-project'"))
2026-01-22 13:44.11 ---> saved as "2748397e30248d40128d2148b44c8f93ea2c96a4ccc87643b6f3bd39c1fd77d4"

/src: (env DEPS "alcotest.1.9.1 angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 backoff.0.1.1 base.v0.16.4 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.2 bigstringaf.0.10.0 bos.0.2.1 ca-certs.1.0.1 camlp-streams.5.0.1 cmdliner.2.1.0 cohttp.6.2.1 cohttp-lwt.6.2.1 cohttp-lwt-unix.6.2.1 conduit.8.0.0 conduit-lwt.8.0.0 conduit-lwt-unix.8.0.0 conf-gmp.5 conf-gmp-powm-sec.4 conf-pkg-config.4 containers.3.17 cppo.1.8.0 csexp.1.5.2 digestif.1.3.0 domain-local-await.1.0.1 domain-name.0.5.0 domain_shims.0.1.0 dscheck.0.5.0 dune.3.21.0 dune-configurator.3.21.0 duration.0.2.1 either.1.0.0 eqaf.0.10 fmt.0.11.0 fpath.0.7.3 gen.1.1 gmap.0.3.0 http.6.2.1 ipaddr.5.6.1 ipaddr-sexp.5.6.1 js_of_ocaml.6.2.0 js_of_ocaml-compiler.6.2.0 kdf.1.0.0 logs.0.10.0 lwt.6.0.0 macaddr.5.6.1 magic-mime.1.3.1 mdx.2.5.1 menhir.20250912 menhirCST.20250912 menhirLib.20250912 menhirSdk.20250912 mirage-crypto.2.0.2 mirage-crypto-ec.2.0.2 mirage-crypto-pk.2.0.2 mirage-crypto-rng.2.0.2 mtime.2.1.0 multicore-bench.0.1.7 multicore-magic.2.3.2 multicore-magic-dscheck.2.3.2 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.4.0.3 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 ohex.0.2.0 oseq.0.5.1 ppx_derivers.1.2.1 ppx_sexp_conv.v0.16.0 ppxlib.0.35.0 psq.0.2.1 ptime.1.2.0 qcheck-core.0.91 qcheck-multicoretests-util.0.10 qcheck-stm.0.10 re.1.14.0 result.1.5 rresult.0.7.0 sedlex.3.7 seq.base sexplib0.v0.16.0 stdlib-shims.0.3.0 stringext.1.6.0 thread-local-storage.0.2 thread-table.1.0.0 topkg.1.1.1 tsort.2.2.0 uri.4.4.0 uri-sexp.4.4.0 uutf.1.0.4 x509.1.0.6 yojson.3.0.0 zarith.1.14")

/src: (env CI true)

/src: (env OCAMLCI true)

/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
           (network host)
           (shell "opam update --depexts && opam install --cli=2.5 --depext-only -y picos_std.dev picos_mux.dev picos_meta.dev picos_lwt.dev picos_io_cohttp.dev picos_io.dev picos_aux.dev picos.dev $DEPS"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
- 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 trixie/main riscv64 Packages [9379 kB]
- Get:5 http://deb.debian.org/debian-security trixie-security/main riscv64 Packages [90.4 kB]
- Fetched 9700 kB in 5s (1893 kB/s)
- Reading package lists...
- 

<><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><>
[picos.dev] synchronised (file:///src)
[picos_aux.dev] synchronised (file:///src)
[picos_io.dev] synchronised (file:///src)
[picos_io_cohttp.dev] synchronised (file:///src)
[picos_lwt.dev] synchronised (file:///src)
[picos_meta.dev] synchronised (file:///src)
[picos_mux.dev] synchronised (file:///src)
[picos_std.dev] synchronised (file:///src)

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

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

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

+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libgmp-dev" "pkg-config"
- Selecting previously unselected package libgmpxx4ldbl:riscv64.
- (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 ... 20700 files and directories currently installed.)
- Preparing to unpack .../0-libgmpxx4ldbl_2%3a6.3.0+dfsg-3_riscv64.deb ...
- Unpacking libgmpxx4ldbl:riscv64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libgmp-dev:riscv64.
- Preparing to unpack .../1-libgmp-dev_2%3a6.3.0+dfsg-3_riscv64.deb ...
- Unpacking libgmp-dev:riscv64 (2:6.3.0+dfsg-3) ...
- Selecting previously unselected package libpkgconf3:riscv64.
- Preparing to unpack .../2-libpkgconf3_1.8.1-4_riscv64.deb ...
- Unpacking libpkgconf3:riscv64 (1.8.1-4) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../3-pkgconf-bin_1.8.1-4_riscv64.deb ...
- Unpacking pkgconf-bin (1.8.1-4) ...
- Selecting previously unselected package pkgconf:riscv64.
- Preparing to unpack .../4-pkgconf_1.8.1-4_riscv64.deb ...
- Unpacking pkgconf:riscv64 (1.8.1-4) ...
- Selecting previously unselected package pkg-config:riscv64.
- Preparing to unpack .../5-pkg-config_1.8.1-4_riscv64.deb ...
- Unpacking pkg-config:riscv64 (1.8.1-4) ...
- Setting up libpkgconf3:riscv64 (1.8.1-4) ...
- Setting up libgmpxx4ldbl:riscv64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf-bin (1.8.1-4) ...
- Setting up libgmp-dev:riscv64 (2:6.3.0+dfsg-3) ...
- Setting up pkgconf:riscv64 (1.8.1-4) ...
- Setting up pkg-config:riscv64 (1.8.1-4) ...
- Processing triggers for libc-bin (2.41-12) ...
# To update the current shell environment, run: eval $(opam env)
2026-01-22 13:45.18 ---> saved as "8428ac74413b8bcc066c7e8b2fc7382ff8b696ed29b883c404fe92c32a879150"

/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
           (network host)
           (shell "opam install $DEPS"))
[NOTE] Package ocaml-options-vanilla is already installed (current version is 1).
[NOTE] Package ocaml-config is already installed (current version is 2).
[NOTE] Package ocaml-base-compiler is already installed (current version is 4.14.2).
[NOTE] Package ocaml is already installed (current version is 4.14.2).
[NOTE] Package base-unix is already installed (current version is base).
[NOTE] Package base-threads is already installed (current version is base).
[NOTE] Package base-bigarray is already installed (current version is base).
The following actions will be performed:
=== install 96 packages
  - install alcotest                   1.9.1
  - install angstrom                   0.16.1
  - install asn1-combinators           0.3.2
  - install astring                    0.8.5
  - install backoff                    0.1.1
  - install base                       v0.16.4
  - install base-bytes                 base
  - install base64                     3.5.2
  - install bigstringaf                0.10.0
  - install bos                        0.2.1
  - install ca-certs                   1.0.1
  - install camlp-streams              5.0.1
  - install cmdliner                   2.1.0
  - install cohttp                     6.2.1
  - install cohttp-lwt                 6.2.1
  - install cohttp-lwt-unix            6.2.1
  - install conduit                    8.0.0
  - install conduit-lwt                8.0.0
  - install conduit-lwt-unix           8.0.0
  - install conf-gmp                   5
  - install conf-gmp-powm-sec          4
  - install conf-pkg-config            4
  - install containers                 3.17
  - install cppo                       1.8.0
  - install csexp                      1.5.2
  - install digestif                   1.3.0
  - install domain-local-await         1.0.1
  - install domain-name                0.5.0
  - install domain_shims               0.1.0
  - install dscheck                    0.5.0
  - install dune                       3.21.0
  - install dune-configurator          3.21.0
  - install duration                   0.2.1
  - install either                     1.0.0
  - install eqaf                       0.10
  - install fmt                        0.11.0
  - install fpath                      0.7.3
  - install gen                        1.1
  - install gmap                       0.3.0
  - install http                       6.2.1
  - install ipaddr                     5.6.1
  - install ipaddr-sexp                5.6.1
  - install js_of_ocaml                6.2.0
  - install js_of_ocaml-compiler       6.2.0
  - install kdf                        1.0.0
  - install logs                       0.10.0
  - install lwt                        6.0.0
  - install macaddr                    5.6.1
  - install magic-mime                 1.3.1
  - install mdx                        2.5.1
  - install menhir                     20250912
  - install menhirCST                  20250912
  - install menhirLib                  20250912
  - install menhirSdk                  20250912
  - install mirage-crypto              2.0.2
  - install mirage-crypto-ec           2.0.2
  - install mirage-crypto-pk           2.0.2
  - install mirage-crypto-rng          2.0.2
  - install mtime                      2.1.0
  - install multicore-bench            0.1.7
  - install multicore-magic            2.3.2
  - install multicore-magic-dscheck    2.3.2
  - install ocaml-compiler-libs        v0.12.4
  - install ocaml-syntax-shims         1.0.0
  - install ocaml-version              4.0.3
  - install ocamlbuild                 0.16.1
  - install ocamlfind                  1.9.8
  - install ocplib-endian              1.2
  - install ohex                       0.2.0
  - install oseq                       0.5.1
  - install ppx_derivers               1.2.1
  - install ppx_sexp_conv              v0.16.0
  - install ppxlib                     0.35.0
  - install psq                        0.2.1
  - install ptime                      1.2.0
  - install qcheck-core                0.91
  - install qcheck-multicoretests-util 0.10
  - install qcheck-stm                 0.10
  - install re                         1.14.0
  - install result                     1.5
  - install rresult                    0.7.0
  - install sedlex                     3.7
  - install seq                        base
  - install sexplib0                   v0.16.0
  - install stdlib-shims               0.3.0
  - install stringext                  1.6.0
  - install thread-local-storage       0.2
  - install thread-table               1.0.0
  - install topkg                      1.1.1
  - install tsort                      2.2.0
  - install uri                        4.4.0
  - install uri-sexp                   4.4.0
  - install uutf                       1.0.4
  - install x509                       1.0.6
  - install yojson                     3.0.0
  - install zarith                     1.14

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1  (cached)
-> retrieved angstrom.0.16.1  (cached)
-> retrieved asn1-combinators.0.3.2  (cached)
-> retrieved astring.0.8.5  (cached)
-> retrieved backoff.0.1.1  (cached)
-> retrieved base64.3.5.2  (cached)
-> retrieved bigstringaf.0.10.0  (cached)
-> retrieved base.v0.16.4  (cached)
-> retrieved bos.0.2.1  (cached)
-> retrieved ca-certs.1.0.1  (cached)
-> retrieved camlp-streams.5.0.1  (cached)
-> retrieved cmdliner.2.1.0  (cached)
-> retrieved conf-gmp.5  (cached)
-> retrieved conf-gmp-powm-sec.4  (cached)
-> retrieved cohttp.6.2.1, cohttp-lwt.6.2.1, cohttp-lwt-unix.6.2.1, http.6.2.1  (cached)
-> retrieved conduit.8.0.0, conduit-lwt.8.0.0, conduit-lwt-unix.8.0.0  (cached)
-> retrieved containers.3.17  (cached)
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed conf-gmp-powm-sec.4
-> retrieved domain-local-await.1.0.1  (cached)
-> retrieved domain-name.0.5.0  (cached)
-> retrieved domain_shims.0.1.0  (cached)
-> retrieved dscheck.0.5.0  (cached)
-> retrieved duration.0.2.1  (cached)
-> retrieved either.1.0.0  (cached)
-> retrieved eqaf.0.10  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved fpath.0.7.3  (cached)
-> retrieved gen.1.1  (cached)
-> retrieved gmap.0.3.0  (cached)
-> retrieved ipaddr.5.6.1, ipaddr-sexp.5.6.1, macaddr.5.6.1  (cached)
-> retrieved digestif.1.3.0  (cached)
-> retrieved kdf.1.0.0  (cached)
-> retrieved logs.0.10.0  (cached)
-> retrieved lwt.6.0.0  (cached)
-> retrieved magic-mime.1.3.1  (cached)
-> retrieved mdx.2.5.1  (cached)
-> retrieved menhir.20250912, menhirCST.20250912, menhirLib.20250912, menhirSdk.20250912  (cached)
-> retrieved dune.3.21.0, dune-configurator.3.21.0  (cached)
-> retrieved js_of_ocaml.6.2.0, js_of_ocaml-compiler.6.2.0  (cached)
-> retrieved mirage-crypto.2.0.2, mirage-crypto-ec.2.0.2, mirage-crypto-pk.2.0.2, mirage-crypto-rng.2.0.2  (cached)
-> retrieved mtime.2.1.0  (cached)
-> retrieved multicore-bench.0.1.7  (cached)
-> retrieved multicore-magic.2.3.2, multicore-magic-dscheck.2.3.2  (cached)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> installed cmdliner.2.1.0
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocaml-version.4.0.3  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved ohex.0.2.0  (cached)
-> retrieved oseq.0.5.1  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_sexp_conv.v0.16.0  (cached)
-> retrieved psq.0.2.1  (cached)
-> retrieved ptime.1.2.0  (cached)
-> retrieved qcheck-core.0.91  (cached)
-> retrieved qcheck-multicoretests-util.0.10, qcheck-stm.0.10  (cached)
-> retrieved ppxlib.0.35.0  (cached)
-> retrieved re.1.14.0  (cached)
-> retrieved result.1.5  (cached)
-> retrieved seq.base  (cached)
-> retrieved rresult.0.7.0  (cached)
-> retrieved sedlex.3.7  (cached)
-> retrieved sexplib0.v0.16.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved stringext.1.6.0  (cached)
-> retrieved thread-local-storage.0.2  (cached)
-> retrieved thread-table.1.0.0  (cached)
-> retrieved tsort.2.2.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved uri.4.4.0, uri-sexp.4.4.0  (cached)
-> retrieved uutf.1.0.4  (cached)
-> retrieved x509.1.0.6  (cached)
-> retrieved yojson.3.0.0  (cached)
-> retrieved zarith.1.14  (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed seq.base
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed topkg.1.1.1
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed mtime.2.1.0
-> installed ptime.1.2.0
-> installed fpath.0.7.3
-> installed rresult.0.7.0
-> installed uutf.1.0.4
-> installed dune.3.21.0
-> installed base64.3.5.2
-> installed backoff.0.1.1
-> installed camlp-streams.5.0.1
-> installed asn1-combinators.0.3.2
-> installed csexp.1.5.2
-> installed domain-name.0.5.0
-> installed cppo.1.8.0
-> installed domain_shims.0.1.0
-> installed duration.0.2.1
-> installed either.1.0.0
-> installed eqaf.0.10
-> installed gmap.0.3.0
-> installed gen.1.1
-> installed dune-configurator.3.21.0
-> installed http.6.2.1
-> installed macaddr.5.6.1
-> installed bigstringaf.0.10.0
-> installed ipaddr.5.6.1
-> installed digestif.1.3.0
-> installed menhirCST.20250912
-> installed magic-mime.1.3.1
-> installed menhirSdk.20250912
-> installed menhirLib.20250912
-> installed multicore-magic.2.3.2
-> installed containers.3.17
-> installed ocaml-compiler-libs.v0.12.4
-> installed mirage-crypto.2.0.2
-> installed ocaml-syntax-shims.1.0.0
-> installed ocaml-version.4.0.3
-> installed kdf.1.0.0
-> installed angstrom.0.16.1
-> installed ocplib-endian.1.2
-> installed ohex.0.2.0
-> installed oseq.0.5.1
-> installed ppx_derivers.1.2.1
-> installed psq.0.2.1
-> installed qcheck-core.0.91
-> installed re.1.14.0
-> installed qcheck-multicoretests-util.0.10
-> installed result.1.5
-> installed qcheck-stm.0.10
-> installed lwt.6.0.0
-> installed sexplib0.v0.16.0
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed alcotest.1.9.1
-> installed menhir.20250912
-> installed thread-local-storage.0.2
-> installed thread-table.1.0.0
-> installed tsort.2.2.0
-> installed domain-local-await.1.0.1
-> installed dscheck.0.5.0
-> installed base.v0.16.4
-> installed uri.4.4.0
-> installed multicore-magic-dscheck.2.3.2
-> installed yojson.3.0.0
-> installed multicore-bench.0.1.7
-> installed ppxlib.0.35.0
-> installed ppx_sexp_conv.v0.16.0
-> installed sedlex.3.7
-> installed uri-sexp.4.4.0
-> installed ipaddr-sexp.5.6.1
-> installed js_of_ocaml-compiler.6.2.0
-> installed logs.0.10.0
-> installed bos.0.2.1
-> installed cohttp.6.2.1
-> installed conduit.8.0.0
-> installed mdx.2.5.1
-> installed cohttp-lwt.6.2.1
-> installed mirage-crypto-rng.2.0.2
-> installed conduit-lwt.8.0.0
-> installed mirage-crypto-pk.2.0.2
-> installed mirage-crypto-ec.2.0.2
-> installed x509.1.0.6
-> installed ca-certs.1.0.1
-> installed conduit-lwt-unix.8.0.0
-> installed cohttp-lwt-unix.6.2.1
-> installed js_of_ocaml.6.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-01-22 14:02.17 ---> saved as "efe1e76881ec256713e9e2e975b381f418b13464bea4981e29761a21bb3b2531"

/src: (copy (src .) (dst /src))
2026-01-22 14:02.18 ---> saved as "904cf3ccb33c7f30b6a4844f3b0718e9bc236608f1443a59241ad138fcf4af29"

/src: (run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build"))
(cd _build/default/test && ./test_mpscq.exe)
random seed: 729727121561141807
generated error fail pass / total     time test name

[ ]    0    0    0    0 /   32     0.0s Mpscq sequential
[]   32    0    0   32 /   32     0.0s Mpscq sequential
================================================================================
success (ran 1 tests)
random seed: 1983355468386459513
generated error fail pass / total     time test name

[ ]    0    0    0    0 /   64     0.0s Mpscq sequential
[]   64    0    0   64 /   64     0.0s Mpscq sequential
================================================================================
success (ran 1 tests)
random seed: 1923524997347518273
generated error fail pass / total     time test name

[ ]    0    0    0    0 /  128     0.0s Mpscq sequential
[]  128    0    0  128 /  128     0.0s Mpscq sequential
================================================================================
success (ran 1 tests)
random seed: 2755634249632872736
generated error fail pass / total     time test name

[ ]    0    0    0    0 /  256     0.0s Mpscq sequential
[]  256    0    0  256 /  256     0.0s Mpscq sequential
================================================================================
success (ran 1 tests)
random seed: 1906361602680699241
generated error fail pass / total     time test name

[ ]    0    0    0    0 /  512     0.0s Mpscq sequential
[]  512    0    0  512 /  512     0.0s Mpscq sequential
================================================================================
success (ran 1 tests)
random seed: 2987865664692105488
generated error fail pass / total     time test name

[ ]    0    0    0    0 /   32     0.0s Mpscq sequential
[]   32    0    0   32 /   32     0.0s Mpscq sequential
================================================================================
success (ran 1 tests)
(cd _build/default/test && ./test_ihtbl.exe)
random seed: 449115106466951264
generated error fail pass / total     time test name

[ ]    0    0    0    0 /   32     0.0s Ihtbl sequential
[]   32    0    0   32 /   32     0.0s Ihtbl sequential

[ ]    0    0    0    0 /   32     0.0s Ihtbl concurrent
[ ]    4    0    0    4 /   32     0.1s Ihtbl concurrent
[ ]    9    0    0    9 /   32     0.2s Ihtbl concurrent
[ ]   14    0    0   14 /   32     0.9s Ihtbl concurrent
[ ]   17    0    0   17 /   32     1.5s Ihtbl concurrent
[ ]   22    0    0   22 /   32     2.4s Ihtbl concurrent
[ ]   26    0    0   26 /   32     2.7s Ihtbl concurrent
[]   32    0    0   32 /   32     2.8s Ihtbl concurrent
================================================================================
success (ran 2 tests)
random seed: 1824820922293885799
generated error fail pass / total     time test name

[ ]    0    0    0    0 /   64     0.0s Ihtbl sequential
[]   64    0    0   64 /   64     0.0s Ihtbl sequential

[ ]    0    0    0    0 /   64     0.0s Ihtbl concurrent
[ ]   10    0    0   10 /   64     0.4s Ihtbl concurrent
[ ]   12    0    0   12 /   64     0.6s Ihtbl concurrent
[ ]   15    0    0   15 /   64     0.9s Ihtbl concurrent
[ ]   26    0    0   26 /   64     1.1s Ihtbl concurrent
[ ]   32    0    0   32 /   64     1.4s Ihtbl concurrent
[ ]   35    0    0   35 /   64     1.5s Ihtbl concurrent
[ ]   37    0    0   37 /   64     1.6s Ihtbl concurrent
[ ]   43    0    0   43 /   64     1.7s Ihtbl concurrent
[ ]   44    0    0   44 /   64     1.9s Ihtbl concurrent
[ ]   48    0    0   48 /   64     2.1s Ihtbl concurrent
[ ]   51    0    0   51 /   64     2.3s Ihtbl concurrent
[ ]   53    0    0   53 /   64     3.2s Ihtbl concurrent
[ ]   55    0    0   55 /   64     3.3s Ihtbl concurrent
[ ]   57    0    0   57 /   64     3.4s Ihtbl concurrent
[ ]   58    0    0   58 /   64     3.8s Ihtbl concurrent
[ ]   60    0    0   60 /   64     4.0s Ihtbl concurrent
[ ]   61    0    0   61 /   64     4.2s Ihtbl concurrent
[ ]   63    0    0   63 /   64     4.4s Ihtbl concurrent
[]   64    0    0   64 /   64     4.5s Ihtbl concurrent
================================================================================
success (ran 2 tests)
random seed: 2719700777367826137
generated error fail pass / total     time test name

[ ]    0    0    0    0 /  128     0.0s Ihtbl sequential
[]  128    0    0  128 /  128     0.0s Ihtbl sequential

[ ]    0    0    0    0 /  128     0.0s Ihtbl concurrent
[ ]    2    0    0    2 /  128     0.4s Ihtbl concurrent
[ ]    5    0    0    5 /  128     0.7s Ihtbl concurrent
[ ]    7    0    0    7 /  128     0.8s Ihtbl concurrent
[ ]   11    0    0   11 /  128     0.9s Ihtbl concurrent
[ ]   15    0    0   15 /  128     1.1s Ihtbl concurrent
[ ]   18    0    0   18 /  128     1.2s Ihtbl concurrent
[ ]   19    0    0   19 /  128     2.0s Ihtbl concurrent
[ ]   30    0    0   30 /  128     2.2s Ihtbl concurrent
[ ]   35    0    0   35 /  128     2.7s Ihtbl concurrent
[ ]   36    0    0   36 /  128     3.0s Ihtbl concurrent
[ ]   40    0    0   40 /  128     3.2s Ihtbl concurrent
[ ]   41    0    0   41 /  128     3.5s Ihtbl concurrent
[ ]   44    0    0   44 /  128     3.6s Ihtbl concurrent
[ ]   49    0    0   49 /  128     3.7s Ihtbl concurrent
[ ]   65    0    0   65 /  128     4.0s Ihtbl concurrent
[ ]   66    0    0   66 /  128     4.5s Ihtbl concurrent
[ ]   67    0    0   67 /  128     5.0s Ihtbl concurrent
[ ]   74    0    0   74 /  128     5.1s Ihtbl concurrent
[ ]   75    0    0   75 /  128     5.2s Ihtbl concurrent
[ ]   78    0    0   78 /  128     5.3s Ihtbl concurrent
[ ]   91    0    0   91 /  128     5.4s Ihtbl concurrent
[ ]   93    0    0   93 /  128     5.7s Ihtbl concurrent
[ ]   95    0    0   95 /  128     5.8s Ihtbl concurrent
[ ]   97    0    0   97 /  128     5.9s Ihtbl concurrent
[ ]  102    0    0  102 /  128     6.6s Ihtbl concurrent
[ ]  105    0    0  105 /  128     6.7s Ihtbl concurrent
[ ]  108    0    0  108 /  128     6.8s Ihtbl concurrent
[ ]  110    0    0  110 /  128     7.1s Ihtbl concurrent
[ ]  115    0    0  115 /  128     7.5s Ihtbl concurrent
[ ]  125    0    0  125 /  128     8.0s Ihtbl concurrent
[]  128    0    0  128 /  128     8.1s Ihtbl concurrent
================================================================================
success (ran 2 tests)
random seed: 3153439565309147792
generated error fail pass / total     time test name

[ ]    0    0    0    0 /  256     0.0s Ihtbl sequential
[]  256    0    0  256 /  256     0.0s Ihtbl sequential

[ ]    0    0    0    0 /  256     0.0s Ihtbl concurrent
[ ]    2    0    0    2 /  256     0.2s Ihtbl concurrent
[ ]    7    0    0    7 /  256     0.3s Ihtbl concurrent
[ ]   11    0    0   11 /  256     0.5s Ihtbl concurrent
[ ]   15    0    0   15 /  256     0.6s Ihtbl concurrent
[ ]   23    0    0   23 /  256     0.8s Ihtbl concurrent
[ ]   24    0    0   24 /  256     1.7s Ihtbl concurrent
[ ]   29    0    0   29 /  256     1.9s Ihtbl concurrent
[ ]   33    0    0   33 /  256     2.0s Ihtbl concurrent
[ ]   39    0    0   39 /  256     2.2s Ihtbl concurrent
[ ]   41    0    0   41 /  256     2.3s Ihtbl concurrent
[ ]   44    0    0   44 /  256     2.4s Ihtbl concurrent
[ ]   48    0    0   48 /  256     2.6s Ihtbl concurrent
[ ]   49    0    0   49 /  256     2.8s Ihtbl concurrent
[ ]   62    0    0   62 /  256     3.1s Ihtbl concurrent
[ ]   65    0    0   65 /  256     3.4s Ihtbl concurrent
[ ]   75    0    0   75 /  256     3.9s Ihtbl concurrent
[ ]   79    0    0   79 /  256     4.6s Ihtbl concurrent
[ ]   83    0    0   83 /  256     4.7s Ihtbl concurrent
[ ]   85    0    0   85 /  256     4.9s Ihtbl concurrent
[ ]   87    0    0   87 /  256     5.2s Ihtbl concurrent
[ ]   92    0    0   92 /  256     5.7s Ihtbl concurrent
[ ]   96    0    0   96 /  256     5.8s Ihtbl concurrent
[ ]   98    0    0   98 /  256     5.9s Ihtbl concurrent
[ ]  105    0    0  105 /  256     6.0s Ihtbl concurrent
[ ]  109    0    0  109 /  256     6.1s Ihtbl concurrent
[ ]  112    0    0  112 /  256     6.5s Ihtbl concurrent
[ ]  113    0    0  113 /  256     6.6s Ihtbl concurrent
[ ]  118    0    0  118 /  256     6.8s Ihtbl concurrent
[ ]  119    0    0  119 /  256     7.5s Ihtbl concurrent
[ ]  123    0    0  123 /  256     7.9s Ihtbl concurrent
[ ]  127    0    0  127 /  256     8.0s Ihtbl concurrent
[ ]  130    0    0  130 /  256     8.1s Ihtbl concurrent
[ ]  134    0    0  134 /  256     8.2s Ihtbl concurrent
[ ]  143    0    0  143 /  256     8.3s Ihtbl concurrent
[ ]  149    0    0  149 /  256     8.5s Ihtbl concurrent
[ ]  153    0    0  153 /  256     8.6s Ihtbl concurrent
[ ]  159    0    0  159 /  256     8.7s Ihtbl concurrent
[ ]  164    0    0  164 /  256     9.4s Ihtbl concurrent
[ ]  173    0    0  173 /  256     9.5s Ihtbl concurrent
[ ]  183    0    0  183 /  256    10.1s Ihtbl concurrent
[ ]  185    0    0  185 /  256    10.4s Ihtbl concurrent
[ ]  188    0    0  188 /  256    11.1s Ihtbl concurrent
[ ]  195    0    0  195 /  256    11.2s Ihtbl concurrent
[ ]  201    0    0  201 /  256    11.3s Ihtbl concurrent
[ ]  202    0    0  202 /  256    11.7s Ihtbl concurrent
[ ]  205    0    0  205 /  256    13.2s Ihtbl concurrent
[ ]  209    0    0  209 /  256    14.2s Ihtbl concurrent
[ ]  216    0    0  216 /  256    14.6s Ihtbl concurrent
[ ]  220    0    0  220 /  256    14.7s Ihtbl concurrent
[ ]  228    0    0  228 /  256    14.8s Ihtbl concurrent
[ ]  230    0    0  230 /  256    15.0s Ihtbl concurrent
[ ]  231    0    0  231 /  256    15.2s Ihtbl concurrent
[ ]  239    0    0  239 /  256    15.3s Ihtbl concurrent
[ ]  245    0    0  245 /  256    15.5s Ihtbl concurrent
[ ]  252    0    0  252 /  256    15.7s Ihtbl concurrent
[ ]  254    0    0  254 /  256    16.3s Ihtbl concurrent
[]  256    0    0  256 /  256    16.3s Ihtbl concurrent
================================================================================
success (ran 2 tests)
random seed: 2521088968302057645
generated error fail pass / total     time test name

[ ]    0    0    0    0 /  429     0.0s Ihtbl sequential
[]  429    0    0  429 /  429     0.0s Ihtbl sequential

[ ]    0    0    0    0 /  429     0.0s Ihtbl concurrent
[ ]    4    0    0    4 /  429     0.2s Ihtbl concurrent
[ ]    5    0    0    5 /  429     0.5s Ihtbl concurrent
[ ]    8    0    0    8 /  429     0.6s Ihtbl concurrent
[ ]   14    0    0   14 /  429     0.9s Ihtbl concurrent
[ ]   20    0    0   20 /  429     1.0s Ihtbl concurrent
[ ]   27    0    0   27 /  429     1.7s Ihtbl concurrent
[ ]   32    0    0   32 /  429     1.8s Ihtbl concurrent
[ ]   37    0    0   37 /  429     2.0s Ihtbl concurrent
[ ]   39    0    0   39 /  429     2.1s Ihtbl concurrent
[ ]   41    0    0   41 /  429     2.7s Ihtbl concurrent
[ ]   46    0    0   46 /  429     2.8s Ihtbl concurrent
[ ]   47    0    0   47 /  429     3.0s Ihtbl concurrent
[ ]   50    0    0   50 /  429     3.2s Ihtbl concurrent
[ ]   54    0    0   54 /  429     3.4s Ihtbl concurrent
[ ]   57    0    0   57 /  429     3.8s Ihtbl concurrent
[ ]   58    0    0   58 /  429     4.0s Ihtbl concurrent
[ ]   62    0    0   62 /  429     4.2s Ihtbl concurrent
[ ]   63    0    0   63 /  429     4.4s Ihtbl concurrent
[ ]   67    0    0   67 /  429     4.5s Ihtbl concurrent
[ ]   71    0    0   71 /  429     5.6s Ihtbl concurrent
[ ]   76    0    0   76 /  429     6.0s Ihtbl concurrent
[ ]   79    0    0   79 /  429     6.3s Ihtbl concurrent
[ ]   82    0    0   82 /  429     6.4s Ihtbl concurrent
[ ]   89    0    0   89 /  429     7.1s Ihtbl concurrent
[ ]   90    0    0   90 /  429     7.2s Ihtbl concurrent (collecting)
[ ]   97    0    0   97 /  429     7.4s Ihtbl concurrent
[ ]  101    0    0  101 /  429     7.6s Ihtbl concurrent
[ ]  102    0    0  102 /  429     8.2s Ihtbl concurrent
[ ]  109    0    0  109 /  429     8.4s Ihtbl concurrent
[ ]  111    0    0  111 /  429     8.6s Ihtbl concurrent
[ ]  114    0    0  114 /  429     8.7s Ihtbl concurrent
[ ]  119    0    0  119 /  429     9.0s Ihtbl concurrent
[ ]  122    0    0  122 /  429     9.7s Ihtbl concurrent
[ ]  125    0    0  125 /  429     9.8s Ihtbl concurrent
[ ]  127    0    0  127 /  429    10.2s Ihtbl concurrent
[ ]  129    0    0  129 /  429    10.4s Ihtbl concurrent
[ ]  131    0    0  131 /  429    10.6s Ihtbl concurrent
[ ]  137    0    0  137 /  429    10.9s Ihtbl concurrent
[ ]  144    0    0  144 /  429    11.1s Ihtbl concurrent
[ ]  145    0    0  145 /  429    11.2s Ihtbl concurrent
[ ]  146    0    0  146 /  429    11.6s Ihtbl concurrent
[ ]  151    0    0  151 /  429    11.8s Ihtbl concurrent
[ ]  155    0    0  155 /  429    11.9s Ihtbl concurrent
[ ]  159    0    0  159 /  429    12.0s Ihtbl concurrent
[ ]  160    0    0  160 /  429    12.8s Ihtbl concurrent
[ ]  167    0    0  167 /  429    12.9s Ihtbl concurrent
[ ]  168    0    0  168 /  429    13.0s Ihtbl concurrent
[ ]  169    0    0  169 /  429    13.6s Ihtbl concurrent
[ ]  173    0    0  173 /  429    13.7s Ihtbl concurrent
[ ]  175    0    0  175 /  429    13.9s Ihtbl concurrent
[ ]  180    0    0  180 /  429    14.0s Ihtbl concurrent
[ ]  182    0    0  182 /  429    14.5s Ihtbl concurrent
[ ]  188    0    0  188 /  429    15.0s Ihtbl concurrent
[ ]  191    0    0  191 /  429    15.2s Ihtbl concurrent
[ ]  197    0    0  197 /  429    15.3s Ihtbl concurrent
[ ]  209    0    0  209 /  429    15.4s Ihtbl concurrent
[ ]  214    0    0  214 /  429    15.7s Ihtbl concurrent
[ ]  216    0    0  216 /  429    15.8s Ihtbl concurrent
[ ]  217    0    0  217 /  429    16.3s Ihtbl concurrent
[ ]  219    0    0  219 /  429    16.9s Ihtbl concurrent
[ ]  222    0    0  222 /  429    17.2s Ihtbl concurrent
[ ]  226    0    0  226 /  429    17.3s Ihtbl concurrent
[ ]  231    0    0  231 /  429    18.0s Ihtbl concurrent
[ ]  233    0    0  233 /  429    18.7s Ihtbl concurrent
[ ]  237    0    0  237 /  429    18.8s Ihtbl concurrent
[ ]  242    0    0  242 /  429    18.9s Ihtbl concurrent
[ ]  244    0    0  244 /  429    19.0s Ihtbl concurrent
[ ]  248    0    0  248 /  429    19.2s Ihtbl concurrent
[ ]  253    0    0  253 /  429    19.7s Ihtbl concurrent
[ ]  256    0    0  256 /  429    20.0s Ihtbl concurrent
[ ]  260    0    0  260 /  429    20.1s Ihtbl concurrent
[ ]  267    0    0  267 /  429    20.3s Ihtbl concurrent
[ ]  268    0    0  268 /  429    20.5s Ihtbl concurrent
[ ]  271    0    0  271 /  429    20.7s Ihtbl concurrent
[ ]  274    0    0  274 /  429    21.0s Ihtbl concurrent
[ ]  282    0    0  282 /  429    21.8s Ihtbl concurrent
[ ]  287    0    0  287 /  429    21.9s Ihtbl concurrent
[ ]  288    0    0  288 /  429    22.0s Ihtbl concurrent
[ ]  295    0    0  295 /  429    22.1s Ihtbl concurrent
[ ]  299    0    0  299 /  429    22.7s Ihtbl concurrent
[ ]  302    0    0  302 /  429    23.0s Ihtbl concurrent
[ ]  306    0    0  306 /  429    23.1s Ihtbl concurrent
[ ]  309    0    0  309 /  429    23.7s Ihtbl concurrent
[ ]  310    0    0  310 /  429    24.0s Ihtbl concurrent
[ ]  313    0    0  313 /  429    24.6s Ihtbl concurrent
[ ]  316    0    0  316 /  429    24.7s Ihtbl concurrent
[ ]  332    0    0  332 /  429    25.0s Ihtbl concurrent
[ ]  335    0    0  335 /  429    25.6s Ihtbl concurrent
[ ]  336    0    0  336 /  429    25.7s Ihtbl concurrent
[ ]  338    0    0  338 /  429    26.7s Ihtbl concurrent
[ ]  340    0    0  340 /  429    27.3s Ihtbl concurrent
[ ]  343    0    0  343 /  429    28.1s Ihtbl concurrent
[ ]  345    0    0  345 /  429    28.3s Ihtbl concurrent
[ ]  347    0    0  347 /  429    28.8s Ihtbl concurrent
[ ]  349    0    0  349 /  429    29.0s Ihtbl concurrent
[ ]  352    0    0  352 /  429    29.1s Ihtbl concurrent
[ ]  356    0    0  356 /  429    29.7s Ihtbl concurrent
[ ]  359    0    0  359 /  429    29.8s Ihtbl concurrent
[ ]  360    0    0  360 /  429    30.0s Ihtbl concurrent
[ ]  361    0    0  361 /  429    30.3s Ihtbl concurrent
[ ]  364    0    0  364 /  429    30.5s Ihtbl concurrent
[ ]  366    0    0  366 /  429    30.6s Ihtbl concurrent
[ ]  369    0    0  369 /  429    31.1s Ihtbl concurrent
[ ]  371    0    0  371 /  429    31.4s Ihtbl concurrent
[ ]  379    0    0  379 /  429    31.8s Ihtbl concurrent
[ ]  383    0    0  383 /  429    31.9s Ihtbl concurrent
[ ]  386    0    0  386 /  429    32.6s Ihtbl concurrent
[ ]  389    0    0  389 /  429    32.9s Ihtbl concurrent
[ ]  392    0    0  392 /  429    33.0s Ihtbl concurrent
[ ]  396    0    0  396 /  429    33.1s Ihtbl concurrent
[ ]  401    0    0  401 /  429    33.3s Ihtbl concurrent
[ ]  404    0    0  404 /  429    33.5s Ihtbl concurrent
[ ]  411    0    0  411 /  429    33.8s Ihtbl concurrent
[ ]  414    0    0  414 /  429    34.7s Ihtbl concurrent
[ ]  419    0    0  419 /  429    35.1s Ihtbl concurrent
[ ]  420    0    0  420 /  429    35.2s Ihtbl concurrent
[ ]  424    0    0  424 /  429    36.3s Ihtbl concurrent
[ ]  427    0    0  427 /  429    36.7s Ihtbl concurrent
[ ]  428    0    0  428 /  429    36.9s Ihtbl concurrent
[]  429    0    0  429 /  429    36.9s Ihtbl concurrent
================================================================================
success (ran 2 tests)
(cd _build/default/test && ./test_htbl.exe)
random seed: 4452685547837312659
generated error fail pass / total     time test name

[ ]    0    0    0    0 /   32     0.0s Htbl sequential
[]   32    0    0   32 /   32     0.0s Htbl sequential

[ ]    0    0    0    0 /   32     0.0s Htbl concurrent
[ ]    1    0    0    1 /   32     0.4s Htbl concurrent
[ ]    8    0    0    8 /   32     0.6s Htbl concurrent
[ ]    9    0    0    9 /   32     0.8s Htbl concurrent
[ ]   17    0    0   17 /   32     0.9s Htbl concurrent
[ ]   18    0    0   18 /   32     1.1s Htbl concurrent
[ ]   25    0    0   25 /   32     1.3s Htbl concurrent
[]   32    0    0   32 /   32     1.3s Htbl concurrent
================================================================================
success (ran 2 tests)
random seed: 155360449917045357
generated error fail pass / total     time test name

[ ]    0    0    0    0 /   64     0.0s Htbl sequential
[]   64    0    0   64 /   64     0.0s Htbl sequential

[ ]    0    0    0    0 /   64     0.0s Htbl concurrent
[ ]    1    0    0    1 /   64     0.3s Htbl concurrent
[ ]    2    0    0    2 /   64     0.4s Htbl concurrent
[ ]   13    0    0   13 /   64     0.5s Htbl concurrent
[ ]   15    0    0   15 /   64     1.0s Htbl concurrent
[ ]   16    0    0   16 /   64     1.1s Htbl concurrent
[ ]   18    0    0   18 /   64     1.3s Htbl concurrent
[ ]   22    0    0   22 /   64     1.9s Htbl concurrent
[ ]   23    0    0   23 /   64     2.5s Htbl concurrent
[ ]   25    0    0   25 /   64     2.7s Htbl concurrent
[ ]   27    0    0   27 /   64     2.9s Htbl concurrent
[ ]   28    0    0   28 /   64     3.0s Htbl concurrent
[ ]   32    0    0   32 /   64     3.1s Htbl concurrent
[ ]   43    0    0   43 /   64     3.3s Htbl concurrent
[ ]   44    0    0   44 /   64     3.7s Htbl concurrent
[ ]   45    0    0   45 /   64     4.0s Htbl concurrent
[ ]   55    0    0   55 /   64     4.2s Htbl concurrent
[ ]   58    0    0   58 /   64     4.9s Htbl concurrent
[]   64    0    0   64 /   64     4.9s Htbl concurrent
================================================================================
success (ran 2 tests)
random seed: 2691730779320714095
generated error fail pass / total     time test name

[ ]    0    0    0    0 /  128     0.0s Htbl sequential
[]  128    0    0  128 /  128     0.0s Htbl sequential

[ ]    0    0    0    0 /  128     0.0s Htbl concurrent
[ ]    4    0    0    4 /  128     0.8s Htbl concurrent
[ ]    6    0    0    6 /  128     1.0s Htbl concurrent
[ ]   18    0    0   18 /  128     1.1s Htbl concurrent
[ ]   33    0    0   33 /  128     1.3s Htbl concurrent
[ ]   34    0    0   34 /  128     1.5s Htbl concurrent
[ ]   35    0    0   35 /  128     1.6s Htbl concurrent
[ ]   40    0    0   40 /  128     1.7s Htbl concurrent
[ ]   44    0    0   44 /  128     1.9s Htbl concurrent
[ ]   48    0    0   48 /  128     2.0s Htbl concurrent
[ ]   61    0    0   61 /  128     2.3s Htbl concurrent
[ ]   66    0    0   66 /  128     2.8s Htbl concurrent
[ ]   69    0    0   69 /  128     3.1s Htbl concurrent
[ ]   71    0    0   71 /  128     3.2s Htbl concurrent
[ ]   78    0    0   78 /  128     3.6s Htbl concurrent
[ ]   82    0    0   82 /  128     3.7s Htbl concurrent
[ ]   99    0    0   99 /  128     3.8s Htbl concurrent
[ ]  115    0    0  115 /  128     4.1s Htbl concurrent
[ ]  119    0    0  119 /  128     4.2s Htbl concurrent
[ ]  121    0    0  121 /  128     4.3s Htbl concurrent
[ ]  124    0    0  124 /  128     4.4s Htbl concurrent
[ ]  126    0    0  126 /  128     5.1s Htbl concurrent
[]  128    0    0  128 /  128     5.1s Htbl concurrent
================================================================================
success (ran 2 tests)
random seed: 3984134841545194216
generated error fail pass / total     time test name

[ ]    0    0    0    0 /  256     0.0s Htbl sequential
[]  256    0    0  256 /  256     0.0s Htbl sequential

[ ]    0    0    0    0 /  256     0.0s Htbl concurrent
[ ]    3    0    0    3 /  256     0.3s Htbl concurrent
[ ]    8    0    0    8 /  256     0.6s Htbl concurrent
[ ]   11    0    0   11 /  256     0.8s Htbl concurrent
[ ]   16    0    0   16 /  256     1.0s Htbl concurrent
[ ]   22    0    0   22 /  256     1.1s Htbl concurrent
[ ]   25    0    0   25 /  256     1.3s Htbl concurrent
[ ]   29    0    0   29 /  256     1.9s Htbl concurrent
[ ]   31    0    0   31 /  256     2.0s Htbl concurrent
[ ]   33    0    0   33 /  256     2.1s Htbl concurrent
[ ]   35    0    0   35 /  256     2.9s Htbl concurrent
[ ]   40    0    0   40 /  256     3.2s Htbl concurrent
[ ]   42    0    0   42 /  256     3.3s Htbl concurrent
[ ]   43    0    0   43 /  256     3.7s Htbl concurrent
[ ]   47    0    0   47 /  256     4.5s Htbl concurrent
[ ]   49    0    0   49 /  256     5.0s Htbl concurrent
[ ]   65    0    0   65 /  256     5.4s Htbl concurrent
[ ]   69    0    0   69 /  256     5.6s Htbl concurrent
[ ]   72    0    0   72 /  256     5.8s Htbl concurrent
[ ]   76    0    0   76 /  256     5.9s Htbl concurrent
[ ]   84    0    0   84 /  256     6.0s Htbl concurrent
[ ]   88    0    0   88 /  256     6.5s Htbl concurrent
[ ]   91    0    0   91 /  256     6.9s Htbl concurrent
[ ]   96    0    0   96 /  256     7.0s Htbl concurrent
[ ]   97    0    0   97 /  256     7.3s Htbl concurrent
[ ]  100    0    0  100 /  256     7.9s Htbl concurrent
[ ]  103    0    0  103 /  256     8.2s Htbl concurrent
[ ]  104    0    0  104 /  256     8.7s Htbl concurrent
[ ]  108    0    0  108 /  256     8.8s Htbl concurrent
[ ]  115    0    0  115 /  256     9.1s Htbl concurrent
[ ]  119    0    0  119 /  256     9.2s Htbl concurrent
[ ]  120    0    0  120 /  256     9.6s Htbl concurrent
[ ]  122    0    0  122 /  256    10.0s Htbl concurrent
[ ]  123    0    0  123 /  256    10.3s Htbl concurrent
[ ]  128    0    0  128 /  256    10.4s Htbl concurrent
[ ]  139    0    0  139 /  256    10.5s Htbl concurrent
[ ]  147    0    0  147 /  256    10.7s Htbl concurrent
[ ]  148    0    0  148 /  256    11.0s Htbl concurrent
[ ]  149    0    0  149 /  256    11.3s Htbl concurrent
[ ]  150    0    0  150 /  256    11.6s Htbl concurrent
[ ]  154    0    0  154 /  256    11.8s Htbl concurrent
[ ]  156    0    0  156 /  256    11.9s Htbl concurrent
[ ]  158    0    0  158 /  256    12.5s Htbl concurrent
[ ]  164    0    0  164 /  256    12.6s Htbl concurrent
[ ]  165    0    0  165 /  256    12.8s Htbl concurrent
[ ]  166    0    0  166 /  256    13.1s Htbl concurrent
[ ]  171    0    0  171 /  256    13.2s Htbl concurrent
[ ]  176    0    0  176 /  256    13.3s Htbl concurrent
[ ]  178    0    0  178 /  256    13.5s Htbl concurrent
[ ]  180    0    0  180 /  256    13.8s Htbl concurrent
[ ]  184    0    0  184 /  256    14.0s Htbl concurrent
[ ]  190    0    0  190 /  256    14.2s Htbl concurrent
[ ]  192    0    0  192 /  256    14.5s Htbl concurrent
[ ]  195    0    0  195 /  256    14.7s Htbl concurrent
[ ]  199    0    0  199 /  256    15.2s Htbl concurrent
[ ]  204    0    0  204 /  256    15.3s Htbl concurrent
[ ]  208    0    0  208 /  256    15.4s Htbl concurrent
[ ]  213    0    0  213 /  256    15.5s Htbl concurrent
[ ]  216    0    0  216 /  256    15.8s Htbl concurrent
[ ]  219    0    0  219 /  256    16.4s Htbl concurrent
[ ]  228    0    0  228 /  256    16.5s Htbl concurrent
[ ]  237    0    0  237 /  256    16.6s Htbl concurrent
[ ]  240    0    0  240 /  256    16.8s Htbl concurrent
[ ]  244    0    0  244 /  256    16.9s Htbl concurrent
[ ]  247    0    0  247 /  256    17.1s Htbl concurrent
[ ]  254    0    0  254 /  256    17.8s Htbl concurrent
[]  256    0    0  256 /  256    17.8s Htbl concurrent
================================================================================
success (ran 2 tests)
random seed: 4329440494037126584
generated error fail pass / total     time test name

[ ]    0    0    0    0 /  506     0.0s Htbl sequential
[]  506    0    0  506 /  506     0.0s Htbl sequential

[ ]    0    0    0    0 /  506     0.0s Htbl concurrent
[ ]    1    0    0    1 /  506     0.3s Htbl concurrent
[ ]    3    0    0    3 /  506     0.4s Htbl concurrent
[ ]    7    0    0    7 /  506     0.9s Htbl concurrent
[ ]   12    0    0   12 /  506     1.2s Htbl concurrent
[ ]   13    0    0   13 /  506     1.5s Htbl concurrent
[ ]   14    0    0   14 /  506     2.2s Htbl concurrent
[ ]   19    0    0   19 /  506     2.3s Htbl concurrent
[ ]   27    0    0   27 /  506     2.5s Htbl concurrent
[ ]   31    0    0   31 /  506     2.7s Htbl concurrent
[ ]   32    0    0   32 /  506     3.2s Htbl concurrent
[ ]   44    0    0   44 /  506     3.3s Htbl concurrent
[ ]   45    0    0   45 /  506     3.8s Htbl concurrent
[ ]   51    0    0   51 /  506     3.9s Htbl concurrent
[ ]   52    0    0   52 /  506     4.5s Htbl concurrent
[ ]   54    0    0   54 /  506     4.8s Htbl concurrent
[ ]   58    0    0   58 /  506     4.9s Htbl concurrent
[ ]   59    0    0   59 /  506     5.2s Htbl concurrent
[ ]   64    0    0   64 /  506     5.5s Htbl concurrent
[ ]   66    0    0   66 /  506     6.2s Htbl concurrent
[ ]   73    0    0   73 /  506     6.3s Htbl concurrent
[ ]   77    0    0   77 /  506     6.4s Htbl concurrent
[ ]   80    0    0   80 /  506     6.6s Htbl concurrent
[ ]   82    0    0   82 /  506     7.1s Htbl concurrent
[ ]   83    0    0   83 /  506     7.8s Htbl concurrent
[ ]   87    0    0   87 /  506     7.9s Htbl concurrent
[ ]   99    0    0   99 /  506     8.1s Htbl concurrent
[ ]  101    0    0  101 /  506     8.4s Htbl concurrent
[ ]  102    0    0  102 /  506     8.7s Htbl concurrent
[ ]  109    0    0  109 /  506     8.9s Htbl concurrent
[ ]  116    0    0  116 /  506     9.8s Htbl concurrent
[ ]  121    0    0  121 /  506     9.9s Htbl concurrent
[ ]  127    0    0  127 /  506    10.0s Htbl concurrent
[ ]  131    0    0  131 /  506    10.1s Htbl concurrent
[ ]  136    0    0  136 /  506    10.8s Htbl concurrent
[ ]  142    0    0  142 /  506    11.0s Htbl concurrent
[ ]  151    0    0  151 /  506    11.4s Htbl concurrent
[ ]  153    0    0  153 /  506    12.0s Htbl concurrent
[ ]  155    0    0  155 /  506    12.1s Htbl concurrent
[ ]  157    0    0  157 /  506    13.2s Htbl concurrent
[ ]  158    0    0  158 /  506    13.3s Htbl concurrent
[ ]  163    0    0  163 /  506    13.4s Htbl concurrent
[ ]  166    0    0  166 /  506    14.0s Htbl concurrent
[ ]  169    0    0  169 /  506    14.2s Htbl concurrent
[ ]  170    0    0  170 /  506    14.3s Htbl concurrent
[ ]  172    0    0  172 /  506    14.4s Htbl concurrent
[ ]  175    0    0  175 /  506    14.6s Htbl concurrent
[ ]  176    0    0  176 /  506    14.8s Htbl concurrent
[ ]  177    0    0  177 /  506    15.3s Htbl concurrent
[ ]  181    0    0  181 /  506    15.6s Htbl concurrent
[ ]  193    0    0  193 /  506    15.7s Htbl concurrent
[ ]  197    0    0  197 /  506    15.8s Htbl concurrent
[ ]  198    0    0  198 /  506    16.0s Htbl concurrent
[ ]  202    0    0  202 /  506    16.1s Htbl concurrent
[ ]  206    0    0  206 /  506    16.2s Htbl concurrent
[ ]  207    0    0  207 /  506    16.4s Htbl concurrent
[ ]  213    0    0  213 /  506    16.5s Htbl concurrent
[ ]  215    0    0  215 /  506    16.8s Htbl concurrent
[ ]  218    0    0  218 /  506    17.0s Htbl concurrent
[ ]  230    0    0  230 /  506    17.1s Htbl concurrent
[ ]  236    0    0  236 /  506    19.0s Htbl concurrent
[ ]  239    0    0  239 /  506    19.1s Htbl concurrent
[ ]  242    0    0  242 /  506    19.4s Htbl concurrent
[ ]  253    0    0  253 /  506    19.7s Htbl concurrent
[ ]  265    0    0  265 /  506    19.8s Htbl concurrent
[ ]  270    0    0  270 /  506    20.3s Htbl concurrent
[ ]  271    0    0  271 /  506    21.2s Htbl concurrent
[ ]  276    0    0  276 /  506    21.8s Htbl concurrent
[ ]  278    0    0  278 /  506    22.2s Htbl concurrent
[ ]  283    0    0  283 /  506    22.3s Htbl concurrent
[ ]  285    0    0  285 /  506    22.9s Htbl concurrent
[ ]  294    0    0  294 /  506    23.3s Htbl concurrent
[ ]  302    0    0  302 /  506    23.7s Htbl concurrent
[ ]  304    0    0  304 /  506    23.8s Htbl concurrent
[ ]  311    0    0  311 /  506    24.6s Htbl concurrent
[ ]  313    0    0  313 /  506    24.9s Htbl concurrent
[ ]  315    0    0  315 /  506    25.0s Htbl concurrent
[ ]  317    0    0  317 /  506    25.2s Htbl concurrent
[ ]  319    0    0  319 /  506    25.3s Htbl concurrent
[ ]  323    0    0  323 /  506    25.4s Htbl concurrent
[ ]  325    0    0  325 /  506    25.9s Htbl concurrent
[ ]  327    0    0  327 /  506    26.1s Htbl concurrent
[ ]  334    0    0  334 /  506    26.6s Htbl concurrent
[ ]  345    0    0  345 /  506    27.7s Htbl concurrent
[ ]  346    0    0  346 /  506    28.0s Htbl concurrent
[ ]  350    0    0  350 /  506    28.1s Htbl concurrent
[ ]  357    0    0  357 /  506    28.2s Htbl concurrent
[ ]  361    0    0  361 /  506    28.3s Htbl concurrent
[ ]  365    0    0  365 /  506    29.6s Htbl concurrent
[ ]  367    0    0  367 /  506    30.2s Htbl concurrent
[ ]  374    0    0  374 /  506    30.3s Htbl concurrent
[ ]  377    0    0  377 /  506    30.4s Htbl concurrent
[ ]  381    0    0  381 /  506    31.0s Htbl concurrent
[ ]  384    0    0  384 /  506    31.1s Htbl concurrent
[ ]  389    0    0  389 /  506    31.7s Htbl concurrent
[ ]  393    0    0  393 /  506    32.0s Htbl concurrent
[ ]  397    0    0  397 /  506    32.1s Htbl concurrent
[ ]  401    0    0  401 /  506    32.3s Htbl concurrent
[ ]  402    0    0  402 /  506    32.4s Htbl concurrent
[ ]  403    0    0  403 /  506    32.6s Htbl concurrent
[ ]  405    0    0  405 /  506    32.8s Htbl concurrent
[ ]  409    0    0  409 /  506    32.9s Htbl concurrent
[ ]  414    0    0  414 /  506    33.1s Htbl concurrent
[ ]  416    0    0  416 /  506    34.1s Htbl concurrent
[ ]  419    0    0  419 /  506    34.3s Htbl concurrent
[ ]  420    0    0  420 /  506    34.9s Htbl concurrent
[ ]  423    0    0  423 /  506    35.0s Htbl concurrent
[ ]  426    0    0  426 /  506    35.1s Htbl concurrent
[ ]  428    0    0  428 /  506    35.3s Htbl concurrent
[ ]  433    0    0  433 /  506    35.9s Htbl concurrent
[ ]  435    0    0  435 /  506    36.7s Htbl concurrent
[ ]  437    0    0  437 /  506    37.1s Htbl concurrent
[ ]  443    0    0  443 /  506    37.2s Htbl concurrent
[ ]  444    0    0  444 /  506    37.7s Htbl concurrent
[ ]  453    0    0  453 /  506    37.9s Htbl concurrent
[ ]  456    0    0  456 /  506    38.2s Htbl concurrent
[ ]  459    0    0  459 /  506    39.2s Htbl concurrent
[ ]  464    0    0  464 /  506    39.3s Htbl concurrent
[ ]  466    0    0  466 /  506    39.8s Htbl concurrent
[ ]  469    0    0  469 /  506    39.9s Htbl concurrent
[ ]  475    0    0  475 /  506    40.4s Htbl concurrent
[ ]  476    0    0  476 /  506    40.6s Htbl concurrent
[ ]  478    0    0  478 /  506    41.2s Htbl concurrent
[ ]  480    0    0  480 /  506    41.5s Htbl concurrent
[ ]  484    0    0  484 /  506    41.7s Htbl concurrent
[ ]  486    0    0  486 /  506    42.4s Htbl concurrent
[ ]  488    0    0  488 /  506    42.5s Htbl concurrent
[ ]  491    0    0  491 /  506    42.8s Htbl concurrent
[ ]  496    0    0  496 /  506    43.0s Htbl concurrent
[ ]  503    0    0  503 /  506    43.7s Htbl concurrent
[ ]  504    0    0  504 /  506    44.0s Htbl concurrent
[ ]  506    0    0  506 /  506    45.1s Htbl concurrent
[]  506    0    0  506 /  506    45.1s Htbl concurrent
================================================================================
success (ran 2 tests)
(cd _build/default/test && ./test_mpmcq.exe)
random seed: 3406958527039365827
generated error fail pass / total     time test name

[ ]    0    0    0    0 /   32     0.0s Mpmcq sequential
[]   32    0    0   32 /   32     0.0s Mpmcq sequential

[ ]    0    0    0    0 /   32     0.0s Mpmcq concurrent
[ ]    2    0    0    2 /   32     0.2s Mpmcq concurrent
[ ]    5    0    0    5 /   32     0.6s Mpmcq concurrent
[ ]   13    0    0   13 /   32     1.2s Mpmcq concurrent
[ ]   18    0    0   18 /   32     1.3s Mpmcq concurrent
[ ]   21    0    0   21 /   32     1.4s Mpmcq concurrent
[ ]   23    0    0   23 /   32     2.2s Mpmcq concurrent
[ ]   30    0    0   30 /   32     2.4s Mpmcq concurrent
[]   32    0    0   32 /   32     2.5s Mpmcq concurrent
================================================================================
success (ran 2 tests)
random seed: 2296092969019799873
generated error fail pass / total     time test name

[ ]    0    0    0    0 /   64     0.0s Mpmcq sequential
[]   64    0    0   64 /   64     0.0s Mpmcq sequential

[ ]    0    0    0    0 /   64     0.0s Mpmcq concurrent
[ ]    4    0    0    4 /   64     0.4s Mpmcq concurrent
[ ]    7    0    0    7 /   64     0.5s Mpmcq concurrent
[ ]    9    0    0    9 /   64     0.7s Mpmcq concurrent
[ ]   12    0    0   12 /   64     0.9s Mpmcq concurrent
[ ]   15    0    0   15 /   64     1.7s Mpmcq concurrent
[ ]   18    0    0   18 /   64     2.3s Mpmcq concurrent
[ ]   24    0    0   24 /   64     2.4s Mpmcq concurrent
[ ]   31    0    0   31 /   64     3.0s Mpmcq concurrent
[ ]   32    0    0   32 /   64     3.6s Mpmcq concurrent
[ ]   35    0    0   35 /   64     3.8s Mpmcq concurrent
[ ]   39    0    0   39 /   64     3.9s Mpmcq concurrent
[ ]   46    0    0   46 /   64     4.0s Mpmcq concurrent
[ ]   48    0    0   48 /   64     4.5s Mpmcq concurrent
[ ]   51    0    0   51 /   64     4.8s Mpmcq concurrent
[ ]   54    0    0   54 /   64     4.9s Mpmcq concurrent
[ ]   56    0    0   56 /   64     5.0s Mpmcq concurrent
[]   64    0    0   64 /   64     5.1s Mpmcq concurrent
================================================================================
success (ran 2 tests)
random seed: 2430303721225791413
generated error fail pass / total     time test name

[ ]    0    0    0    0 /  128     0.0s Mpmcq sequential
[]  128    0    0  128 /  128     0.0s Mpmcq sequential

[ ]    0    0    0    0 /  128     0.0s Mpmcq concurrent
[ ]    3    0    0    3 /  128     0.6s Mpmcq concurrent
[ ]   15    0    0   15 /  128     0.8s Mpmcq concurrent
[ ]   16    0    0   16 /  128     1.5s Mpmcq concurrent
[ ]   20    0    0   20 /  128     1.7s Mpmcq concurrent
[ ]   22    0    0   22 /  128     1.8s Mpmcq concurrent
[ ]   25    0    0   25 /  128     2.0s Mpmcq concurrent
[ ]   30    0    0   30 /  128     2.3s Mpmcq concurrent
[ ]   31    0    0   31 /  128     2.8s Mpmcq concurrent
[ ]   33    0    0   33 /  128     2.9s Mpmcq concurrent
[ ]   45    0    0   45 /  128     3.0s Mpmcq concurrent
[ ]   47    0    0   47 /  128     3.2s Mpmcq concurrent
[ ]   52    0    0   52 /  128     3.3s Mpmcq concurrent
[ ]   57    0    0   57 /  128     4.3s Mpmcq concurrent
[ ]   61    0    0   61 /  128     4.5s Mpmcq concurrent
[ ]   65    0    0   65 /  128     5.1s Mpmcq concurrent
[ ]   68    0    0   68 /  128     5.2s Mpmcq concurrent
[ ]   69    0    0   69 /  128     5.6s Mpmcq concurrent
[ ]   73    0    0   73 /  128     6.7s Mpmcq concurrent
[ ]   74    0    0   74 /  128     7.1s Mpmcq concurrent
[ ]   78    0    0   78 /  128     7.3s Mpmcq concurrent
[ ]   83    0    0   83 /  128     7.8s Mpmcq concurrent
[ ]   84    0    0   84 /  128     8.8s Mpmcq concurrent
[ ]   86    0    0   86 /  128     9.4s Mpmcq concurrent
[ ]   89    0    0   89 /  128     9.7s Mpmcq concurrent
[ ]   94    0    0   94 /  128    10.2s Mpmcq concurrent
[ ]  100    0    0  100 /  128    10.3s Mpmcq concurrent
[ ]  102    0    0  102 /  128    11.3s Mpmcq concurrent
[ ]  113    0    0  113 /  128    11.6s Mpmcq concurrent
[ ]  121    0    0  121 /  128    12.0s Mpmcq concurrent
[ ]  125    0    0  125 /  128    12.1s Mpmcq concurrent
[ ]  126    0    0  126 /  128    12.2s Mpmcq concurrent
[]  128    0    0  128 /  128    12.3s Mpmcq concurrent
================================================================================
success (ran 2 tests)
random seed: 2271533686815147927
generated error fail pass / total     time test name

[ ]    0    0    0    0 /  256     0.0s Mpmcq sequential
[]  256    0    0  256 /  256     0.0s Mpmcq sequential

[ ]    0    0    0    0 /  256     0.0s Mpmcq concurrent
[ ]    3    0    0    3 /  256     0.3s Mpmcq concurrent
[ ]    8    0    0    8 /  256     0.5s Mpmcq concurrent
[ ]   16    0    0   16 /  256     0.6s Mpmcq concurrent
[ ]   21    0    0   21 /  256     1.1s Mpmcq concurrent
[ ]   24    0    0   24 /  256     1.6s Mpmcq concurrent
[ ]   26    0    0   26 /  256     2.5s Mpmcq concurrent
[ ]   29    0    0   29 /  256     2.6s Mpmcq concurrent
[ ]   30    0    0   30 /  256     2.9s Mpmcq concurrent
[ ]   39    0    0   39 /  256     3.0s Mpmcq concurrent
[ ]   43    0    0   43 /  256     3.1s Mpmcq concurrent
[ ]   48    0    0   48 /  256     3.2s Mpmcq concurrent
[ ]   52    0    0   52 /  256     3.7s Mpmcq concurrent
[ ]   66    0    0   66 /  256     3.8s Mpmcq concurrent
[ ]   68    0    0   68 /  256     4.7s Mpmcq concurrent
[ ]   73    0    0   73 /  256     5.0s Mpmcq concurrent
[ ]   76    0    0   76 /  256     5.1s Mpmcq concurrent
[ ]   78    0    0   78 /  256     5.4s Mpmcq concurrent
[ ]   82    0    0   82 /  256     5.5s Mpmcq concurrent
[ ]   87    0    0   87 /  256     5.7s Mpmcq concurrent
[ ]   89    0    0   89 /  256     6.0s Mpmcq concurrent
[ ]   94    0    0   94 /  256     6.8s Mpmcq concurrent
[ ]   98    0    0   98 /  256     7.2s Mpmcq concurrent
[ ]  102    0    0  102 /  256     7.3s Mpmcq concurrent
[ ]  104    0    0  104 /  256     7.4s Mpmcq concurrent
[ ]  107    0    0  107 /  256     8.4s Mpmcq concurrent
[ ]  109    0    0  109 /  256     9.3s Mpmcq concurrent
[ ]  112    0    0  112 /  256     9.4s Mpmcq concurrent
[ ]  113    0    0  113 /  256    10.3s Mpmcq concurrent
[ ]  120    0    0  120 /  256    11.2s Mpmcq concurrent
[ ]  122    0    0  122 /  256    11.5s Mpmcq concurrent
[ ]  127    0    0  127 /  256    11.6s Mpmcq concurrent
[ ]  130    0    0  130 /  256    11.7s Mpmcq concurrent
[ ]  132    0    0  132 /  256    12.7s Mpmcq concurrent
[ ]  134    0    0  134 /  256    12.8s Mpmcq concurrent
[ ]  136    0    0  136 /  256    13.9s Mpmcq concurrent
[ ]  148    0    0  148 /  256    14.0s Mpmcq concurrent
[ ]  150    0    0  150 /  256    14.2s Mpmcq concurrent
[ ]  158    0    0  158 /  256    14.3s Mpmcq concurrent
[ ]  161    0    0  161 /  256    14.6s Mpmcq concurrent
[ ]  162    0    0  162 /  256    14.8s Mpmcq concurrent
[ ]  167    0    0  167 /  256    15.1s Mpmcq concurrent
[ ]  175    0    0  175 /  256    16.1s Mpmcq concurrent
[ ]  177    0    0  177 /  256    16.5s Mpmcq concurrent
[ ]  186    0    0  186 /  256    16.7s Mpmcq concurrent
[ ]  190    0    0  190 /  256    16.9s Mpmcq concurrent
[ ]  193    0    0  193 /  256    17.0s Mpmcq concurrent
[ ]  198    0    0  198 /  256    17.1s Mpmcq concurrent
[ ]  202    0    0  202 /  256    17.2s Mpmcq concurrent
[ ]  205    0    0  205 /  256    17.7s Mpmcq concurrent
[ ]  209    0    0  209 /  256    17.9s Mpmcq concurrent
[ ]  212    0    0  212 /  256    18.1s Mpmcq concurrent
[ ]  217    0    0  217 /  256    18.6s Mpmcq concurrent
[ ]  220    0    0  220 /  256    18.8s Mpmcq concurrent
[ ]  225    0    0  225 /  256    19.0s Mpmcq concurrent
[ ]  235    0    0  235 /  256    19.1s Mpmcq concurrent
[ ]  245    0    0  245 /  256    19.2s Mpmcq concurrent
[ ]  248    0    0  248 /  256    19.4s Mpmcq concurrent
[ ]  250    0    0  250 /  256    19.6s Mpmcq concurrent
[ ]  251    0    0  251 /  256    19.8s Mpmcq concurrent
[]  256    0    0  256 /  256    19.9s Mpmcq concurrent
================================================================================
success (ran 2 tests)
random seed: 291662560024672284
generated error fail pass / total     time test name

[ ]    0    0    0    0 /  244     0.0s Mpmcq sequential
[]  244    0    0  244 /  244     0.0s Mpmcq sequential

[ ]    0    0    0    0 /  244     0.0s Mpmcq concurrent
[ ]    5    0    0    5 /  244     0.1s Mpmcq concurrent
[ ]    8    0    0    8 /  244     0.2s Mpmcq concurrent
[ ]   11    0    0   11 /  244     1.1s Mpmcq concurrent
[ ]   13    0    0   13 /  244     1.4s Mpmcq concurrent
[ ]   22    0    0   22 /  244     1.7s Mpmcq concurrent
[ ]   23    0    0   23 /  244     1.9s Mpmcq concurrent
[ ]   31    0    0   31 /  244     2.5s Mpmcq concurrent
[ ]   41    0    0   41 /  244     2.6s Mpmcq concurrent
[ ]   43    0    0   43 /  244     3.1s Mpmcq concurrent
[ ]   44    0    0   44 /  244     3.4s Mpmcq concurrent
[ ]   49    0    0   49 /  244     3.6s Mpmcq concurrent
[ ]   53    0    0   53 /  244     4.6s Mpmcq concurrent
[ ]   55    0    0   55 /  244     4.7s Mpmcq concurrent
[ ]   57    0    0   57 /  244     4.9s Mpmcq concurrent
[ ]   59    0    0   59 /  244     6.2s Mpmcq concurrent
[ ]   60    0    0   60 /  244     7.2s Mpmcq concurrent
[ ]   65    0    0   65 /  244     7.3s Mpmcq concurrent
[ ]   67    0    0   67 /  244     7.7s Mpmcq concurrent
[ ]   71    0    0   71 /  244     8.3s Mpmcq concurrent
[ ]   73    0    0   73 /  244     8.4s Mpmcq concurrent
[ ]   75    0    0   75 /  244     8.6s Mpmcq concurrent
[ ]   79    0    0   79 /  244     8.8s Mpmcq concurrent
[ ]   86    0    0   86 /  244     9.7s Mpmcq concurrent
[ ]   87    0    0   87 /  244    10.0s Mpmcq concurrent
[ ]   94    0    0   94 /  244    10.1s Mpmcq concurrent
[ ]   98    0    0   98 /  244    10.3s Mpmcq concurrent
[ ]  105    0    0  105 /  244    10.4s Mpmcq concurrent
[ ]  107    0    0  107 /  244    11.2s Mpmcq concurrent
[ ]  112    0    0  112 /  244    11.3s Mpmcq concurrent
[ ]  114    0    0  114 /  244    11.9s Mpmcq concurrent
[ ]  117    0    0  117 /  244    12.0s Mpmcq concurrent
[ ]  122    0    0  122 /  244    12.2s Mpmcq concurrent
[ ]  124    0    0  124 /  244    12.4s Mpmcq concurrent
[ ]  126    0    0  126 /  244    12.5s Mpmcq concurrent
[ ]  134    0    0  134 /  244    13.2s Mpmcq concurrent
[ ]  143    0    0  143 /  244    14.0s Mpmcq concurrent
[ ]  150    0    0  150 /  244    14.2s Mpmcq concurrent
[ ]  153    0    0  153 /  244    14.3s Mpmcq concurrent
[ ]  154    0    0  154 /  244    14.4s Mpmcq concurrent
[ ]  157    0    0  157 /  244    15.0s Mpmcq concurrent
[ ]  163    0    0  163 /  244    15.1s Mpmcq concurrent
[ ]  164    0    0  164 /  244    15.2s Mpmcq concurrent
[ ]  167    0    0  167 /  244    15.6s Mpmcq concurrent
[ ]  169    0    0  169 /  244    16.2s Mpmcq concurrent
[ ]  172    0    0  172 /  244    16.3s Mpmcq concurrent
[ ]  177    0    0  177 /  244    16.8s Mpmcq concurrent
[ ]  187    0    0  187 /  244    16.9s Mpmcq concurrent
[ ]  195    0    0  195 /  244    18.1s Mpmcq concurrent
[ ]  197    0    0  197 /  244    18.3s Mpmcq concurrent
[ ]  210    0    0  210 /  244    18.5s Mpmcq concurrent
[ ]  211    0    0  211 /  244    19.0s Mpmcq concurrent
[ ]  214    0    0  214 /  244    19.1s Mpmcq concurrent
[ ]  220    0    0  220 /  244    19.3s Mpmcq concurrent
[ ]  224    0    0  224 /  244    19.8s Mpmcq concurrent
[ ]  227    0    0  227 /  244    20.1s Mpmcq concurrent
[ ]  230    0    0  230 /  244    20.3s Mpmcq concurrent
[ ]  233    0    0  233 /  244    21.0s Mpmcq concurrent
[ ]  239    0    0  239 /  244    21.1s Mpmcq concurrent
[ ]  241    0    0  241 /  244    22.3s Mpmcq concurrent
[]  244    0    0  244 /  244    22.3s Mpmcq concurrent
================================================================================
success (ran 2 tests)
(cd _build/default/test && ./test_finally.exe)
Testing `Picos_finally'.
This run has ID `BNFHOKWT'.

  [OK]          move            0   is lazy.
  [OK]          borrow          0   returns resource.

Full test results in `/src/_build/default/test/_build/_tests/Picos_finally'.
Test Successful in 0.001s. 2 tests run.
(cd _build/default/test && ./test_picos.exe)
Testing `Picos'.
This run has ID `QS4KLSK8'.

  [OK]          Trigger               0   basics.
  [OK]          Computation           0   basics.
  [OK]          Computation           1   tx.
  [OK]          Computation           2   signals in order.
  [OK]          Fiber.FLS             0   basics.
  [OK]          Cancel                0   
  [OK]          Cancel after          0   

Full test results in `/src/_build/default/test/_build/_tests/Picos'.
Test Successful in 0.626s. 7 tests run.
(cd _build/default/test && ./test_io_with_lwt.exe)
Testing `Picos_io_with_lwt'.
This run has ID `3F1FWZ78'.

  [OK]          Unix          0   system.

Full test results in `/src/_build/default/test/_build/_tests/Picos_io_with_lwt'.
Test Successful in 2.099s. 1 test run.
(cd _build/default/test && ./test_io.exe)
Testing `Picos_io'.
This run has ID `HGSIWV0S'.

  [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 `/src/_build/default/test/_build/_tests/Picos_io'.
Test Successful in 0.481s. 6 tests run.
(cd _build/default/test && ./test_server_and_client.exe)
Using non-blocking sockets and threads on OCaml 4:
  Recursive server running
  Server listening
  Client B running
  Client B connected
  Client B wrote 100
  Client A running
  Server accepting
  Server accepted client
  Client A connected
  Server read 100
  Client A wrote 100
  Server wrote 50
  Client B read 50
  Server accepting
  Server accepted client
  Server read 100
  Client A read 50
  Server accepting
  Server wrote 50
Server and Client test: OK
2026-01-22 14:04.12: Cancelling: Auto-cancelling job because it is no longer needed
Job cancelled