2025-10-31 07:44.00: New job: test ocaml-multicore/picos https://github.com/ocaml-multicore/picos.git#refs/heads/adaptive-bo-mpmcq (5a58d8a2d5183430949844ac333ab6363b03d93d) (linux-x86_64:fedora-42-5.4_opam-2.4)Base: ocaml/opam:fedora-42-ocaml-5.4@sha256:5d13b29f948738fd07b3ff626fe4931a21664d7bf5d5febc791ef21437b7071fOpam project buildTo reproduce locally:git clone --recursive "https://github.com/ocaml-multicore/picos.git" -b "adaptive-bo-mpmcq" && cd "picos" && git reset --hard 5a58d8a2cat > Dockerfile <<'END-OF-DOCKERFILE'FROM ocaml/opam:fedora-42-ocaml-5.4@sha256:5d13b29f948738fd07b3ff626fe4931a21664d7bf5d5febc791ef21437b7071f# fedora-42-5.4_opam-2.4USER 1000:1000ENV CLICOLOR_FORCE="1"ENV OPAMCOLOR="always"WORKDIR /srcRUN sudo dnf install -y findutilsRUN sudo ln -f /usr/bin/opam-2.4 /usr/bin/opamRUN opam init --reinit -niRUN uname -rs && opam exec -- ocaml -version && opam --versionWORKDIR /srcRUN sudo chown opam /srcRUN cd ~/opam-repository && (git cat-file -e 7f9c784b97b368cd82ee80890d9866b8e66b7c1b || git fetch origin master) && git reset -q --hard 7f9c784b97b368cd82ee80890d9866b8e66b7c1b && git log --no-decorate -n1 --oneline && opam update -uCOPY --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.17.3 base-bigarray.base base-bytes.base base-domains.base base-effects.base base-nnp.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.0.0 cohttp.6.1.1 cohttp-lwt.6.1.1 cohttp-lwt-unix.6.1.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-npm.1 conf-pkg-config.4 containers.3.16 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.20.2 dune-configurator.3.20.2 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.1.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.9.0 lwt.5.9.2 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.1 multicore-magic-dscheck.2.3.1 ocaml.5.4.0 ocaml-base-compiler.5.4.0 ocaml-compiler.5.4.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.4.0.3 ocaml_intrinsics_kernel.v0.17.1 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.17.1 ppxlib.0.37.0 ppxlib_jane.v0.17.4 psq.0.2.1 ptime.1.2.0 qcheck-core.0.26 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.17.0 stdlib-shims.0.3.0 stringext.1.6.0 thread-local-storage.0.2 thread-table.1.0.0 topkg.1.1.0 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.4 --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 $DEPSRUN opam install $DEPSCOPY --chown=1000:1000 . /srcRUN opam exec -- dune build @install @check @runtest && rm -rf _buildEND-OF-DOCKERFILEdocker build .END-REPRO-BLOCK2025-10-31 07:44.00: Using cache hint "ocaml-multicore/picos-ocaml/opam:fedora-42-ocaml-5.4@sha256:5d13b29f948738fd07b3ff626fe4931a21664d7bf5d5febc791ef21437b7071f-fedora-42-5.4_opam-2.4-8a601727df3e4ade2c3c6fbd2899a0c9"2025-10-31 07:44.00: Using OBuilder spec:((from ocaml/opam:fedora-42-ocaml-5.4@sha256:5d13b29f948738fd07b3ff626fe4931a21664d7bf5d5febc791ef21437b7071f)(comment fedora-42-5.4_opam-2.4)(user (uid 1000) (gid 1000))(env CLICOLOR_FORCE 1)(env OPAMCOLOR always)(workdir /src)(run (network host)(shell "sudo dnf install -y findutils"))(run (shell "sudo ln -f /usr/bin/opam-2.4 /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 7f9c784b97b368cd82ee80890d9866b8e66b7c1b || git fetch origin master) && git reset -q --hard 7f9c784b97b368cd82ee80890d9866b8e66b7c1b && 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.17.3 base-bigarray.base base-bytes.base base-domains.base base-effects.base base-nnp.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.0.0 cohttp.6.1.1 cohttp-lwt.6.1.1 cohttp-lwt-unix.6.1.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-npm.1 conf-pkg-config.4 containers.3.16 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.20.2 dune-configurator.3.20.2 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.1.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.9.0 lwt.5.9.2 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.1 multicore-magic-dscheck.2.3.1 ocaml.5.4.0 ocaml-base-compiler.5.4.0 ocaml-compiler.5.4.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.4.0.3 ocaml_intrinsics_kernel.v0.17.1 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.17.1 ppxlib.0.37.0 ppxlib_jane.v0.17.4 psq.0.2.1 ptime.1.2.0 qcheck-core.0.26 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.17.0 stdlib-shims.0.3.0 stringext.1.6.0 thread-local-storage.0.2 thread-table.1.0.0 topkg.1.1.0 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.4 --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")))2025-10-31 07:44.00: Waiting for resource in pool OCluster2025-10-31 07:44.00: Waiting for worker…2025-10-31 07:44.00: Got resource from pool OClusterBuilding on toxis.caelum.ci.devAll commits already cachedHEAD is now at 5a58d8a Use adaptive backoff in mpmcq(from ocaml/opam:fedora-42-ocaml-5.4@sha256:5d13b29f948738fd07b3ff626fe4931a21664d7bf5d5febc791ef21437b7071f)2025-10-31 07:44.02 ---> using "aae9cfea062639794bebda74c20f122cbfe2b260a1ae6b51750064798a04d0df" from cache/: (comment fedora-42-5.4_opam-2.4)/: (user (uid 1000) (gid 1000))/: (env CLICOLOR_FORCE 1)/: (env OPAMCOLOR always)/: (workdir /src)/src: (run (network host)(shell "sudo dnf install -y findutils"))Updating and loading repositories:Fedora 42 - x86_64 100% | 56.2 KiB/s | 24.6 KiB | 00m00sFedora 42 openh264 (From Cisco) - x86_ 100% | 3.5 KiB/s | 986.0 B | 00m00sFedora 42 - x86_64 - Updates 100% | 107.0 KiB/s | 18.4 KiB | 00m00sRepositories loaded.Package "findutils-1:4.10.0-5.fc42.x86_64" is already installed.Nothing to do.2025-10-31 07:44.02 ---> using "02dd4d9c19ab680581c8d7cbc01b94987ce9649016e07d72dadf4d94a001d7ef" from cache/src: (run (shell "sudo ln -f /usr/bin/opam-2.4 /usr/bin/opam"))2025-10-31 07:44.02 ---> using "d446a92d02f58e29a07180b9f0cf0b9dff9d7a858fb4418ff090e91d252c3682" 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] yFormat upgrade done.<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>[default] Initialised2025-10-31 07:44.02 ---> using "5adbe08912fbd8109b2c9feb2eafe695e692d6649b33f7f39e3ab9488d96d021" from cache/src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))Linux 5.15.0-134-genericThe OCaml toplevel, version 5.4.02.4.12025-10-31 07:44.02 ---> using "a3cd804eb52feb269ae3092f6be9254aa521c472788d6d15698015b7a67d5fd3" from cache/src: (workdir /src)/src: (run (shell "sudo chown opam /src"))2025-10-31 07:44.02 ---> using "c23a7344128e0b629217f5fffed5949275c120d29d7decaef0428d60db190ca3" from cache/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))(network host)(shell "cd ~/opam-repository && (git cat-file -e 7f9c784b97b368cd82ee80890d9866b8e66b7c1b || git fetch origin master) && git reset -q --hard 7f9c784b97b368cd82ee80890d9866b8e66b7c1b && git log --no-decorate -n1 --oneline && opam update -u"))From https://github.com/ocaml/opam-repository* branch master -> FETCH_HEAD1abfcdbf14..263b2e6219 master -> origin/master7f9c784b97 Merge pull request #28787 from ocaml/mseri-patch-1<><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><>[default] synchronised from git+file:///home/opam/opam-repositoryAlready up-to-date.Nothing to do.# To update the current shell environment, run: eval $(opam env)2025-10-31 07:44.02 ---> using "a2924581f106c8e31ed14c5d835384d057f28f2710039f5532804d31fb4f182d" 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 ./))2025-10-31 07:44.02 ---> using "8e5d90574c38d95b66ddbf74c4586d84ddd8e030a03c05cb196da1bb5772317a" from cache/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)2025-10-31 07:44.02 ---> using "92ed2a5ea5e5903c2d469c173b14670c1c999c8895257cc57b51d040ad0e7b76" from cache/src: (run (network host)(shell "echo '(lang dune 3.0)' > './dune-project'"))2025-10-31 07:44.02 ---> using "df6d46a2af90be8c7164b85381a4c6a99060019aefa9ff1035450e88f69973b9" from cache/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.17.3 base-bigarray.base base-bytes.base base-domains.base base-effects.base base-nnp.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.0.0 cohttp.6.1.1 cohttp-lwt.6.1.1 cohttp-lwt-unix.6.1.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-npm.1 conf-pkg-config.4 containers.3.16 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.20.2 dune-configurator.3.20.2 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.1.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.9.0 lwt.5.9.2 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.1 multicore-magic-dscheck.2.3.1 ocaml.5.4.0 ocaml-base-compiler.5.4.0 ocaml-compiler.5.4.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.4.0.3 ocaml_intrinsics_kernel.v0.17.1 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.17.1 ppxlib.0.37.0 ppxlib_jane.v0.17.4 psq.0.2.1 ptime.1.2.0 qcheck-core.0.26 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.17.0 stdlib-shims.0.3.0 stringext.1.6.0 thread-local-storage.0.2 thread-table.1.0.0 topkg.1.1.0 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.4 --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/sbin/sudo "yum" "makecache"- Updating and loading repositories:- Repositories loaded.- Metadata cache created.<><> 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 3).[NOTE] Package ocaml-compiler is already installed (current version is 5.4.0).[NOTE] Package ocaml-base-compiler is already installed (current version is 5.4.0).[NOTE] Package ocaml is already installed (current version is 5.4.0).[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-nnp is already installed (current version is base).[NOTE] Package base-effects is already installed (current version is base).[NOTE] Package base-domains 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:gmp-devel npm<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>+ /usr/sbin/sudo "yum" "install" "-y" "gmp-devel" "npm"- Updating and loading repositories:- Repositories loaded.- Package Arch Version Repository Size- Installing:- gmp-devel x86_64 1:6.3.0-4.fc42 fedora 352.3 KiB- nodejs-npm x86_64 1:10.9.3-1.22.20.0.1.fc42 updates 9.2 MiB- Installing dependencies:- c-ares x86_64 1.34.5-1.fc42 updates 269.1 KiB- gmp-c++ x86_64 1:6.3.0-4.fc42 fedora 27.6 KiB- libuv x86_64 1:1.51.0-1.fc42 updates 570.2 KiB- nodejs x86_64 1:22.20.0-1.fc42 updates 161.0 KiB- nodejs-libs x86_64 1:22.20.0-1.fc42 updates 77.9 MiB- Installing weak dependencies:- nodejs-docs noarch 1:22.20.0-1.fc42 updates 97.1 MiB- nodejs-full-i18n x86_64 1:22.20.0-1.fc42 updates 30.4 MiB-- Transaction Summary:- Installing: 9 packages-- Total size of inbound packages is 40 MiB. Need to download 40 MiB.- After this operation, 216 MiB extra will be used (install 216 MiB, remove 0 B).- [1/9] gmp-c++-1:6.3.0-4.fc42.x86_64 100% | 402.0 KiB/s | 18.5 KiB | 00m00s- [2/9] gmp-devel-1:6.3.0-4.fc42.x86_64 100% | 3.2 MiB/s | 174.4 KiB | 00m00s- [3/9] nodejs-1:22.20.0-1.fc42.x86_64 100% | 1.6 MiB/s | 50.5 KiB | 00m00s- [4/9] c-ares-0:1.34.5-1.fc42.x86_64 100% | 2.2 MiB/s | 117.0 KiB | 00m00s- [5/9] libuv-1:1.51.0-1.fc42.x86_64 100% | 3.1 MiB/s | 266.3 KiB | 00m00s- [6/9] nodejs-npm-1:10.9.3-1.22.20.0.1.f 100% | 6.6 MiB/s | 2.3 MiB | 00m00s- [7/9] nodejs-full-i18n-1:22.20.0-1.fc42 100% | 16.8 MiB/s | 8.5 MiB | 00m01s- [8/9] nodejs-libs-1:22.20.0-1.fc42.x86_ 100% | 18.5 MiB/s | 19.6 MiB | 00m01s- [9/9] nodejs-docs-1:22.20.0-1.fc42.noar 100% | 6.8 MiB/s | 9.1 MiB | 00m01s- --------------------------------------------------------------------------------- [9/9] Total 100% | 21.8 MiB/s | 40.2 MiB | 00m02s- Running transaction- [ 1/11] Verify package files 100% | 26.0 B/s | 9.0 B | 00m00s- [ 2/11] Prepare transaction 100% | 90.0 B/s | 9.0 B | 00m00s- [ 3/11] Installing libuv-1:1.51.0-1.fc4 100% | 111.9 MiB/s | 573.0 KiB | 00m00s- [ 4/11] Installing c-ares-0:1.34.5-1.fc 100% | 88.1 MiB/s | 270.7 KiB | 00m00s- [ 5/11] Installing nodejs-libs-1:22.20. 100% | 166.5 MiB/s | 77.9 MiB | 00m00s- [ 6/11] Installing nodejs-1:22.20.0-1.f 100% | 6.9 MiB/s | 163.1 KiB | 00m00s- [ 7/11] Installing gmp-c++-1:6.3.0-4.fc 100% | 13.9 MiB/s | 28.5 KiB | 00m00s- [ 8/11] Installing gmp-devel-1:6.3.0-4. 100% | 28.8 MiB/s | 354.1 KiB | 00m00s- [ 9/11] Installing nodejs-npm-1:10.9.3- 100% | 31.5 MiB/s | 9.6 MiB | 00m00s- [10/11] Installing nodejs-full-i18n-1:2 100% | 152.1 MiB/s | 30.4 MiB | 00m00s- [11/11] Installing nodejs-docs-1:22.20. 100% | 546.3 MiB/s | 97.2 MiB | 00m00s- Complete!+ /usr/sbin/rpm "-q" "--whatprovides" "gmp-devel" "npm"- gmp-devel-6.3.0-4.fc42.x86_64- nodejs-npm-10.9.3-1.22.20.0.1.fc42.x86_642025-10-31 07:44.02 ---> using "883bd7ac52c1c3e3e326bf4f8fe9d8ed753dd0e49c3a63664e5af370311f09f9" from cache/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 3).[NOTE] Package ocaml-compiler is already installed (current version is 5.4.0).[NOTE] Package ocaml-base-compiler is already installed (current version is 5.4.0).[NOTE] Package ocaml is already installed (current version is 5.4.0).[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-nnp is already installed (current version is base).[NOTE] Package base-effects is already installed (current version is base).[NOTE] Package base-domains 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 99 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.17.3- 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.0.0- install cohttp 6.1.1- install cohttp-lwt 6.1.1- install cohttp-lwt-unix 6.1.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-npm 1- install conf-pkg-config 4- install containers 3.16- 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.20.2- install dune-configurator 3.20.2- 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.1.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.9.0- install lwt 5.9.2- 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.1- install multicore-magic-dscheck 2.3.1- install ocaml-compiler-libs v0.17.0- install ocaml-syntax-shims 1.0.0- install ocaml-version 4.0.3- install ocaml_intrinsics_kernel v0.17.1- 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.17.1- install ppxlib 0.37.0- install ppxlib_jane v0.17.4- install psq 0.2.1- install ptime 1.2.0- install qcheck-core 0.26- 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.17.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.0- 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.14The following system packages will first need to be installed:npm<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>opam believes some required external dependencies are missing. opam can:> 1. Run yum to install them (may need root/sudo access)2. Display the recommended yum 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 detectable4. Abort the installation[1/2/3/4] 1+ /usr/sbin/sudo "yum" "install" "-y" "npm"- Updating and loading repositories:- Repositories loaded.- Package "nodejs-npm-1:10.9.3-1.22.20.0.1.fc42.x86_64" is already installed.-- Nothing to do.+ /usr/sbin/rpm "-q" "--whatprovides" "npm"- nodejs-npm-10.9.3-1.22.20.0.1.fc42.x86_64<><> 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 base.v0.17.3 (cached)-> retrieved base64.3.5.2 (cached)-> retrieved bigstringaf.0.10.0 (cached)-> retrieved ca-certs.1.0.1 (cached)-> retrieved bos.0.2.1 (cached)-> retrieved camlp-streams.5.0.1 (cached)-> retrieved conduit.8.0.0, conduit-lwt.8.0.0, conduit-lwt-unix.8.0.0 (cached)-> retrieved conf-gmp.5 (cached)-> retrieved conf-gmp-powm-sec.4 (cached)-> retrieved cmdliner.2.0.0 (cached)-> retrieved cohttp.6.1.1, cohttp-lwt.6.1.1, cohttp-lwt-unix.6.1.1, http.6.1.1 (cached)-> retrieved containers.3.16 (cached)-> installed conf-gmp.5-> installed conf-npm.1-> 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.9.0 (cached)-> retrieved lwt.5.9.2 (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.20.2, dune-configurator.3.20.2 (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.1, multicore-magic-dscheck.2.3.1 (cached)-> retrieved ocaml-compiler-libs.v0.17.0 (cached)-> installed cmdliner.2.0.0-> retrieved ocaml-syntax-shims.1.0.0 (cached)-> retrieved ocaml-version.4.0.3 (cached)-> retrieved ocaml_intrinsics_kernel.v0.17.1 (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.17.1 (cached)-> retrieved ppxlib_jane.v0.17.4 (cached)-> retrieved psq.0.2.1 (cached)-> retrieved ptime.1.2.0 (cached)-> retrieved qcheck-core.0.26 (cached)-> retrieved qcheck-multicoretests-util.0.10, qcheck-stm.0.10 (cached)-> retrieved ppxlib.0.37.0 (cached)-> retrieved re.1.14.0 (cached)-> retrieved result.1.5 (cached)-> retrieved seq.base (cached)-> installed seq.base-> retrieved rresult.0.7.0 (cached)-> retrieved sedlex.3.7 (cached)-> retrieved sexplib0.v0.17.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.0 (cached)-> retrieved uutf.1.0.4 (cached)-> retrieved yojson.3.0.0 (cached)-> retrieved uri.4.4.0, uri-sexp.4.4.0 (cached)-> retrieved x509.1.0.6 (cached)-> retrieved zarith.1.14 (cached)-> installed ocamlfind.1.9.8-> installed base-bytes.base-> installed ocamlbuild.0.16.1-> installed zarith.1.14-> installed topkg.1.1.0-> installed rresult.0.7.0-> installed uutf.1.0.4-> installed mtime.2.1.0-> installed fmt.0.11.0-> installed ptime.1.2.0-> installed astring.0.8.5-> installed fpath.0.7.3-> installed dune.3.20.2-> installed backoff.0.1.1-> installed base64.3.5.2-> installed camlp-streams.5.0.1-> installed asn1-combinators.0.3.2-> installed csexp.1.5.2-> installed cppo.1.8.0-> installed domain-name.0.5.0-> installed domain_shims.0.1.0-> installed duration.0.2.1-> installed either.1.0.0-> installed eqaf.0.10-> installed gen.1.1-> installed gmap.0.3.0-> installed http.6.1.1-> installed macaddr.5.6.1-> installed magic-mime.1.3.1-> installed menhirCST.20250912-> installed menhirLib.20250912-> installed menhirSdk.20250912-> installed multicore-magic.2.3.1-> installed ocaml-compiler-libs.v0.17.0-> installed ocaml-syntax-shims.1.0.0-> installed ocaml-version.4.0.3-> installed ocaml_intrinsics_kernel.v0.17.1-> 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.26-> installed re.1.14.0-> installed result.1.5-> installed sexplib0.v0.17.0-> installed stdlib-shims.0.3.0-> installed stringext.1.6.0-> installed thread-local-storage.0.2-> installed thread-table.1.0.0-> installed tsort.2.2.0-> installed yojson.3.0.0-> installed ocplib-endian.1.2-> installed digestif.1.3.0-> installed ipaddr.5.6.1-> installed qcheck-multicoretests-util.0.10-> installed domain-local-await.1.0.1-> installed alcotest.1.9.1-> installed qcheck-stm.0.10-> installed multicore-bench.0.1.7-> installed dune-configurator.3.20.2-> installed bigstringaf.0.10.0-> installed angstrom.0.16.1-> installed containers.3.16-> installed mirage-crypto.2.0.2-> installed dscheck.0.5.0-> installed lwt.5.9.2-> installed uri.4.4.0-> installed kdf.1.0.0-> installed multicore-magic-dscheck.2.3.1-> installed base.v0.17.3-> installed menhir.20250912-> installed ppxlib.0.37.0-> installed ppxlib_jane.v0.17.4-> installed sedlex.3.7-> installed ppx_sexp_conv.v0.17.1-> installed ipaddr-sexp.5.6.1-> installed uri-sexp.4.4.0-> installed js_of_ocaml-compiler.6.2.0-> installed logs.0.9.0-> installed mirage-crypto-rng.2.0.2-> installed mirage-crypto-pk.2.0.2-> installed conduit.8.0.0-> installed cohttp.6.1.1-> installed mdx.2.5.1-> installed bos.0.2.1-> installed conduit-lwt.8.0.0-> installed cohttp-lwt.6.1.1-> 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.1.1-> installed js_of_ocaml.6.2.0Done.# To update the current shell environment, run: eval $(opam env)2025-10-31 07:44.02 ---> using "08f19b0132bfef553da01e5cc4eb2463bc99f50c0b22a7fcd3b433a489692e06" from cache/src: (copy (src .) (dst /src))2025-10-31 07:44.02 ---> saved as "0731591bd25b91b6eaa50cc8d0f16b62fe9691480106ab5278a644124c52be41"/src: (run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build"))(cd _build/default && /home/opam/.opam/5.4/bin/ocamlc.opt -w @1..3@5..28@31..39@43@46..47@49..57@61..62@67@69-40 -strict-sequence -strict-formats -short-paths -keep-locs -open Multicore_magic_dscheck -g -bin-annot -bin-annot-occurrences -I test/.test_mpmcq_dscheck.eobjs/byte -I /home/opam/.opam/5.4/lib/alcotest -I /home/opam/.opam/5.4/lib/backoff -I /home/opam/.opam/5.4/lib/dscheck -I /home/opam/.opam/5.4/lib/multicore-magic-dscheck -no-alias-deps -opaque -open Dune__exe -o test/.test_mpmcq_dscheck.eobjs/byte/dune__exe__Picos_aux_mpmcq.cmo -c -impl test/picos_aux_mpmcq.ml)File "test/picos_aux_mpmcq.ml", line 1, characters 5-31:1 | open Picos_aux_adaptive_backoff^^^^^^^^^^^^^^^^^^^^^^^^^^Error: Unbound module Picos_aux_adaptive_backoff(cd _build/default/test && ./test_server_and_client.exe)Using non-blocking sockets and fibers on OCaml 5:Recursive server runningServer listeningClient B runningServer acceptingServer accepted clientClient A runningServer acceptingServer accepted clientServer acceptingClient B connectedClient A connectedClient A wrote 100Server read 100Server wrote 50Server read 100Server wrote 50Client A read 50Client B wrote 100Client B read 50Server and Client test: OK(cd _build/default/test && ./test_picos_lwt_unix_with_cohttp.exe)Uri: //127.0.0.1:8000/hello-lwtMethod: GEThost: 127.0.0.1:8000user-agent: ocaml-cohttp/v6.1.1content-length: 0Body:(cd _build/default/example && ./guards.exe)Testing with scheduler: multififos ~quota:56 ~n_domains:72Ran guarded case statement examples.(cd _build/default/test && ./test_lwt_unix.exe)Testing `Picos_lwt'.This run has ID `B19I8FMO'.[OK] Basics 0Full test results in `/src/_build/default/test/_build/_tests/Picos_lwt'.Test Successful in 0.050s. 1 test run.(cd _build/default/test && ./test_finally.exe)Testing `Picos_finally'.This run has ID `CIDN1V92'.[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.016s. 2 tests run.(cd _build/default/test && ./test_io.exe)Testing `Picos_io'.This run has ID `ZYGQFY9N'.[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.493s. 6 tests run.(cd _build/default/test && ./test_sync.exe -- '^Mutex and Condition$' 0)Testing `Picos_sync'.This run has ID `TNWF7UY4'.[OK] Mutex and Condition 0 basics.[SKIP] Mutex and Condition 1 errors.[SKIP] Mutex and Condition 2 cancelation.[SKIP] Lock and Lock.Condition 0 basics.[SKIP] Lock and Lock.Condition 1 cancelation.[SKIP] Lock and Lock.Condition 2 poisoning.[SKIP] Lock and Lock.Condition 3 try_acquire.[SKIP] Rwlock and Rwlock.Condition 0 basics.[SKIP] Rwlock and Rwlock.Condition 1 cancelation.[SKIP] Rwlock and Rwlock.Condition 2 poisoning.[SKIP] Rwlock and Rwlock.Condition 3 freezing.[SKIP] Rwlock and Rwlock.Condition 4 try_acquire.[SKIP] Rwlock and Rwlock.Condition 5 try_acquire_shared.[SKIP] Rwlock and Rwlock.Condition 6 sharing.[SKIP] Semaphore 0 basics.[SKIP] Semaphore 1 stress.[SKIP] Sem 0 basics.[SKIP] Sem 1 stress.[SKIP] Sem 2 poisoning.[SKIP] Sem 3 try_acquire.[SKIP] Lazy 0 basics.[SKIP] Lazy 1 cancelation.[SKIP] Event 0 basics.[SKIP] Barrier 0 basics.[SKIP] Barrier 1 poisoning.[SKIP] Non-cancelable ops 0 are not canceled.Full test results in `/src/_build/default/test/_build/_tests/Picos_sync'.Test Successful in 0.007s. 1 test run.(cd _build/default/test && ./test_sync.exe -- '^Mutex and Condition$' 1)Testing `Picos_sync'.This run has ID `QNOREFO5'.[SKIP] Mutex and Condition 0 basics.[OK] Mutex and Condition 1 errors.[SKIP] Mutex and Condition 2 cancelation.[SKIP] Lock and Lock.Condition 0 basics.[SKIP] Lock and Lock.Condition 1 cancelation.[SKIP] Lock and Lock.Condition 2 poisoning.[SKIP] Lock and Lock.Condition 3 try_acquire.[SKIP] Rwlock and Rwlock.Condition 0 basics.[SKIP] Rwlock and Rwlock.Condition 1 cancelation.[SKIP] Rwlock and Rwlock.Condition 2 poisoning.[SKIP] Rwlock and Rwlock.Condition 3 freezing.[SKIP] Rwlock and Rwlock.Condition 4 try_acquire.[SKIP] Rwlock and Rwlock.Condition 5 try_acquire_shared.[SKIP] Rwlock and Rwlock.Condition 6 sharing.[SKIP] Semaphore 0 basics.[SKIP] Semaphore 1 stress.[SKIP] Sem 0 basics.[SKIP] Sem 1 stress.[SKIP] Sem 2 poisoning.[SKIP] Sem 3 try_acquire.[SKIP] Lazy 0 basics.[SKIP] Lazy 1 cancelation.[SKIP] Event 0 basics.[SKIP] Barrier 0 basics.[SKIP] Barrier 1 poisoning.[SKIP] Non-cancelable ops 0 are not canceled.Full test results in `/src/_build/default/test/_build/_tests/Picos_sync'.Test Successful in 0.047s. 1 test run.(cd _build/default/test && ./test_structured.exe)Testing `Picos_structured'.This run has ID `EU1O67M8'.[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 block raises when forbidden.[OK] Bundle 5 block raises Sys_error when fiber finishes.[OK] Bundle 6 termination nests.[OK] Bundle 7 promise cancelation does not terminate.[OK] Bundle 8 error in promise terminates.[OK] Bundle 9 can wait promises.[OK] Bundle 10 can select promises.[OK] Run 0 any and all errors.[OK] Run 1 any and all returns.[OK] Run 2 race any.Full test results in `/src/_build/default/test/_build/_tests/Picos_structured'.Test Successful in 0.838s. 14 tests run.(cd _build/default/test && ./test_picos_dscheck.exe)Testing `Picos DSCheck'.This run has ID `1L8A0J7I'.[OK] Trigger 0 basic contract.[OK] Computation 0 basic contract.[OK] Computation 1 removes triggers.Full test results in `/src/_build/default/test/_build/_tests/Picos DSCheck'.Test Successful in 0.818s. 3 tests run.(cd _build/default/test && ./test_io_cohttp.exe)Uri: //127.0.0.1:42615/hello-io-cohttpMethod: POSThost: 127.0.0.1:42615user-agent: ocaml-cohttp/v6.1.1content-length: 17Body: It's-a-Me, Picos!(cd _build/default/test && ./test_io_with_lwt.exe)Testing `Picos_io_with_lwt'.This run has ID `YBGE94D8'.[OK] Unix 0 system.Full test results in `/src/_build/default/test/_build/_tests/Picos_io_with_lwt'.Test Successful in 2.095s. 1 test run.(cd _build/default/test && ./test_select.exe)Testing `Picos_select'.This run has ID `DCIABU6P'.[OK] Intr 0Full test results in `/src/_build/default/test/_build/_tests/Picos_select'.Test Successful in 2.428s. 1 test run.(cd _build/default/test && ./test_sync.exe -- '^Mutex and Condition$' 2)Testing `Picos_sync'.This run has ID `O4GKZI5O'.[SKIP] Mutex and Condition 0 basics.[SKIP] Mutex and Condition 1 errors.[OK] Mutex and Condition 2 cancelation.[SKIP] Lock and Lock.Condition 0 basics.[SKIP] Lock and Lock.Condition 1 cancelation.[SKIP] Lock and Lock.Condition 2 poisoning.[SKIP] Lock and Lock.Condition 3 try_acquire.[SKIP] Rwlock and Rwlock.Condition 0 basics.[SKIP] Rwlock and Rwlock.Condition 1 cancelation.[SKIP] Rwlock and Rwlock.Condition 2 poisoning.[SKIP] Rwlock and Rwlock.Condition 3 freezing.[SKIP] Rwlock and Rwlock.Condition 4 try_acquire.[SKIP] Rwlock and Rwlock.Condition 5 try_acquire_shared.[SKIP] Rwlock and Rwlock.Condition 6 sharing.[SKIP] Semaphore 0 basics.[SKIP] Semaphore 1 stress.[SKIP] Sem 0 basics.[SKIP] Sem 1 stress.[SKIP] Sem 2 poisoning.[SKIP] Sem 3 try_acquire.[SKIP] Lazy 0 basics.[SKIP] Lazy 1 cancelation.[SKIP] Event 0 basics.[SKIP] Barrier 0 basics.[SKIP] Barrier 1 poisoning.[SKIP] Non-cancelable ops 0 are not canceled.Full test results in `/src/_build/default/test/_build/_tests/Picos_sync'.Test Successful in 3.087s. 1 test run.(cd _build/default/test && ./test_sync.exe -- '^Lock and Lock.Condition$' 0)Testing `Picos_sync'.This run has ID `U1GZDVZK'.[SKIP] Mutex and Condition 0 basics.[SKIP] Mutex and Condition 1 errors.[SKIP] Mutex and Condition 2 cancelation.[OK] Lock and Lock.Condition 0 basics.[SKIP] Lock and Lock.Condition 1 cancelation.[SKIP] Lock and Lock.Condition 2 poisoning.[SKIP] Lock and Lock.Condition 3 try_acquire.[SKIP] Rwlock and Rwlock.Condition 0 basics.[SKIP] Rwlock and Rwlock.Condition 1 cancelation.[SKIP] Rwlock and Rwlock.Condition 2 poisoning.[SKIP] Rwlock and Rwlock.Condition 3 freezing.[SKIP] Rwlock and Rwlock.Condition 4 try_acquire.[SKIP] Rwlock and Rwlock.Condition 5 try_acquire_shared.[SKIP] Rwlock and Rwlock.Condition 6 sharing.[SKIP] Semaphore 0 basics.[SKIP] Semaphore 1 stress.[SKIP] Sem 0 basics.[SKIP] Sem 1 stress.[SKIP] Sem 2 poisoning.[SKIP] Sem 3 try_acquire.[SKIP] Lazy 0 basics.[SKIP] Lazy 1 cancelation.[SKIP] Event 0 basics.[SKIP] Barrier 0 basics.[SKIP] Barrier 1 poisoning.[SKIP] Non-cancelable ops 0 are not canceled.Full test results in `/src/_build/default/test/_build/_tests/Picos_sync'.Test Successful in 0.007s. 1 test run.(cd _build/default/test && /usr/sbin/node test_js_of_ocaml.bc.js)Hello, from js_of_ocaml with Picos!(cd _build/default/bench && ./main.exe -brief 'Picos Computation')Picos Computation:attach detach pairs over time/1 worker:2.02 M/sattach detach pairs over time/2 workers:4.51 M/sattach detach pairs over time/4 workers:1.08 M/sattach detach pairs over time/trivial:3.03 M/stime per attach detach pair/1 worker:494.73 nstime per attach detach pair/2 workers:443.43 nstime per attach detach pair/4 workers:3686.70 nstime per attach detach pair/trivial:329.90 ns(cd _build/default/bench && ./main.exe -brief 'Picos Current')Picos Current:ops over time/1 worker:7.16 M/sops over time/2 workers:9.67 M/sops over time/4 workers:9.43 M/stime per op/1 worker:139.62 nstime per op/2 workers:206.91 nstime per op/4 workers:424.25 ns(cd _build/default/bench && ./main.exe -brief 'Picos FLS (excluding Current)')Picos FLS (excluding Current):gets over time/1 worker:76.02 M/sgets over time/2 workers:250.23 M/sgets over time/4 workers:273.43 M/ssets over time/1 worker:46.69 M/ssets over time/2 workers:86.49 M/ssets over time/4 workers:232.42 M/stime per get/1 worker:13.15 nstime per get/2 workers:7.99 nstime per get/4 workers:14.63 nstime per set/1 worker:21.42 nstime per set/2 workers:23.12 nstime per set/4 workers:17.21 ns(cd _build/default/bench && ./main.exe -brief 'Picos TLS')Picos TLS:gets over time/1 worker:82.10 M/sgets over time/2 workers:136.31 M/sgets over time/4 workers:252.23 M/ssets over time/1 worker:27.93 M/ssets over time/2 workers:75.39 M/ssets over time/4 workers:121.72 M/stime per get/1 worker:12.18 nstime per get/2 workers:14.67 nstime per get/4 workers:15.86 nstime per set/1 worker:35.80 nstime per set/2 workers:26.53 nstime per set/4 workers:32.86 ns(cd _build/default/bench && ./main.exe -brief 'Picos DLS')Picos DLS:gets over time/1 worker:75.37 M/sgets over time/2 workers:153.50 M/sgets over time/4 workers:256.27 M/ssets over time/1 worker:58.67 M/ssets over time/2 workers:111.24 M/ssets over time/4 workers:143.09 M/stime per get/1 worker:13.27 nstime per get/2 workers:13.03 nstime per get/4 workers:15.61 nstime per set/1 worker:17.04 nstime per set/2 workers:17.98 nstime per set/4 workers:27.95 ns2025-10-31 07:44.27: Cancelling: Auto-cancelling job because it is no longer neededJob cancelled