2025-06-13 16:28.22: New job: test ocaml-multicore/picos https://github.com/ocaml-multicore/picos.git#refs/heads/counter-based-condition-variable (989972b203fba4092be4f49a5a62d0c30ea4360e) (linux-x86_64:opensuse-15.6-5.3_opam-2.3) Base: ocaml/opam:opensuse-15.6-ocaml-5.3@sha256:fe87e7b78be5c8e97c48a0be0c3ee3d1ee82e306326f94f27b243b67b5f4df65 Opam project build To reproduce locally: git clone --recursive "https://github.com/ocaml-multicore/picos.git" -b "counter-based-condition-variable" && cd "picos" && git reset --hard 989972b2 cat > Dockerfile <<'END-OF-DOCKERFILE' FROM ocaml/opam:opensuse-15.6-ocaml-5.3@sha256:fe87e7b78be5c8e97c48a0be0c3ee3d1ee82e306326f94f27b243b67b5f4df65 # opensuse-15.6-5.3_opam-2.3 USER 1000:1000 ENV CLICOLOR_FORCE="1" ENV OPAMCOLOR="always" WORKDIR /src RUN sudo ln -f /usr/bin/opam-2.3 /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 59e7a58f9d7d6cc1f4da2e23f40e7e0ac1426f77 || git fetch origin master) && git reset -q --hard 59e7a58f9d7d6cc1f4da2e23f40e7e0ac1426f77 && 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.0 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.1 bigstringaf.0.10.0 bos.0.2.1 ca-certs.1.0.1 camlp-streams.5.0.1 cmdliner.1.3.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.4.1 domain_shims.0.1.0 dscheck.0.5.0 dune.3.19.1 dune-configurator.3.19.1 duration.0.2.1 either.1.0.0 eqaf.0.10 fmt.0.10.0 fpath.0.7.3 gen.1.1 gmap.0.3.0 http.6.1.1 ipaddr.5.6.0 ipaddr-sexp.5.6.0 js_of_ocaml.6.0.1 js_of_ocaml-compiler.6.0.1 kdf.1.0.0 logs.0.8.0 lwt.5.9.1 macaddr.5.6.0 magic-mime.1.3.1 mdx.2.5.0 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 mirage-crypto.2.0.1 mirage-crypto-ec.2.0.1 mirage-crypto-pk.2.0.1 mirage-crypto-rng.2.0.1 mtime.2.1.0 multicore-bench.0.1.7 multicore-magic.2.3.1 multicore-magic-dscheck.2.3.1 ocaml.5.3.0 ocaml-base-compiler.5.3.0 ocaml-compiler.5.3.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.4.0.1 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.0 ppxlib.0.35.0 ppxlib_jane.v0.17.2 psq.0.2.1 ptime.1.2.0 qcheck-core.0.25 qcheck-multicoretests-util.0.8 qcheck-stm.0.8 re.1.12.0 result.1.5 rresult.0.7.0 sedlex.3.6 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.0.8 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.3 --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 2025-06-13 16:28.22: Using cache hint "ocaml-multicore/picos-ocaml/opam:opensuse-15.6-ocaml-5.3@sha256:fe87e7b78be5c8e97c48a0be0c3ee3d1ee82e306326f94f27b243b67b5f4df65-opensuse-15.6-5.3_opam-2.3-4e1841dd3f4157d1ea3bf252a3a19a17" 2025-06-13 16:28.22: Using OBuilder spec: ((from ocaml/opam:opensuse-15.6-ocaml-5.3@sha256:fe87e7b78be5c8e97c48a0be0c3ee3d1ee82e306326f94f27b243b67b5f4df65) (comment opensuse-15.6-5.3_opam-2.3) (user (uid 1000) (gid 1000)) (env CLICOLOR_FORCE 1) (env OPAMCOLOR always) (workdir /src) (run (shell "sudo ln -f /usr/bin/opam-2.3 /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 59e7a58f9d7d6cc1f4da2e23f40e7e0ac1426f77 || git fetch origin master) && git reset -q --hard 59e7a58f9d7d6cc1f4da2e23f40e7e0ac1426f77 && 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.0 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.1 bigstringaf.0.10.0 bos.0.2.1 ca-certs.1.0.1 camlp-streams.5.0.1 cmdliner.1.3.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.4.1 domain_shims.0.1.0 dscheck.0.5.0 dune.3.19.1 dune-configurator.3.19.1 duration.0.2.1 either.1.0.0 eqaf.0.10 fmt.0.10.0 fpath.0.7.3 gen.1.1 gmap.0.3.0 http.6.1.1 ipaddr.5.6.0 ipaddr-sexp.5.6.0 js_of_ocaml.6.0.1 js_of_ocaml-compiler.6.0.1 kdf.1.0.0 logs.0.8.0 lwt.5.9.1 macaddr.5.6.0 magic-mime.1.3.1 mdx.2.5.0 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 mirage-crypto.2.0.1 mirage-crypto-ec.2.0.1 mirage-crypto-pk.2.0.1 mirage-crypto-rng.2.0.1 mtime.2.1.0 multicore-bench.0.1.7 multicore-magic.2.3.1 multicore-magic-dscheck.2.3.1 ocaml.5.3.0 ocaml-base-compiler.5.3.0 ocaml-compiler.5.3.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.4.0.1 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.0 ppxlib.0.35.0 ppxlib_jane.v0.17.2 psq.0.2.1 ptime.1.2.0 qcheck-core.0.25 qcheck-multicoretests-util.0.8 qcheck-stm.0.8 re.1.12.0 result.1.5 rresult.0.7.0 sedlex.3.6 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.0.8 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.3 --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-06-13 16:28.22: Waiting for resource in pool OCluster 2025-06-13 16:28.23: Waiting for worker… 2025-06-13 16:28.23: Got resource from pool OCluster Building on toxis.caelum.ci.dev HEAD is now at 46ff091 Use a counter based condition variable implementation HEAD is now at 989972b More complex counter logic (from ocaml/opam:opensuse-15.6-ocaml-5.3@sha256:fe87e7b78be5c8e97c48a0be0c3ee3d1ee82e306326f94f27b243b67b5f4df65) 2025-06-13 16:28.24 ---> using "b3dfaa0594143e837fba1348b2517eca512741ffcf31ce9f6e228188eb65abf1" from cache /: (comment opensuse-15.6-5.3_opam-2.3) /: (user (uid 1000) (gid 1000)) /: (env CLICOLOR_FORCE 1) /: (env OPAMCOLOR always) /: (workdir /src) /src: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam")) 2025-06-13 16:28.24 ---> using "d4c2327987b183fc31f02b10d1d8864609c3f6cdb4a0d925eaf13c14e6503c5f" 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 development 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 2025-06-13 16:28.24 ---> using "5dbce14f50cafb6886eea9e4609ad491a4b2925d110486c5ecde6cc11ae41b52" from cache /src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version")) Linux 5.15.0-134-generic The OCaml toplevel, version 5.3.0 2.3.0 2025-06-13 16:28.24 ---> using "821badb3ec4aac8d37773aedde6b8c113709a0e55ce5cc9a732831822fd43deb" from cache /src: (workdir /src) /src: (run (shell "sudo chown opam /src")) 2025-06-13 16:28.24 ---> using "e3368b08ba63060888aa8db457050d52709e053d9d180971ac21b5bd6a862609" from cache /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "cd ~/opam-repository && (git cat-file -e 59e7a58f9d7d6cc1f4da2e23f40e7e0ac1426f77 || git fetch origin master) && git reset -q --hard 59e7a58f9d7d6cc1f4da2e23f40e7e0ac1426f77 && git log --no-decorate -n1 --oneline && opam update -u")) From https://github.com/ocaml/opam-repository * branch master -> FETCH_HEAD bc726805e3..59e7a58f9d master -> origin/master 59e7a58f9d Merge pull request #28012 from dkalinichenko-js/opam-publish-base.v0.17.3 <><> 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, which will ask permission to downgrade or uninstall the conflicting packages. Nothing to do. # To update the current shell environment, run: eval $(opam env) 2025-06-13 16:28.24 ---> using "a7551d2bba86184c691eeb8b13e9e0024acf5c03dbe788d972a00b298821e71e" 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-06-13 16:28.24 ---> using "bc153e0e83fcc8491f2da989b0e33f9586493b576a5057dbb516c0213a76fb41" 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-06-13 16:28.24 ---> using "ced57ca93fa26065e4a42787da14071442760ed0353a69abe27e0dfe8110a85c" from cache /src: (run (network host) (shell "echo '(lang dune 3.0)' > './dune-project'")) 2025-06-13 16:28.24 ---> using "77c2a62578acc7a2eb4e828836fefa077f94e2388e6c1214c7c25c5619c65c16" from cache /src: (env DEPS "alcotest.1.9.0 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.1 bigstringaf.0.10.0 bos.0.2.1 ca-certs.1.0.1 camlp-streams.5.0.1 cmdliner.1.3.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.4.1 domain_shims.0.1.0 dscheck.0.5.0 dune.3.19.1 dune-configurator.3.19.1 duration.0.2.1 either.1.0.0 eqaf.0.10 fmt.0.10.0 fpath.0.7.3 gen.1.1 gmap.0.3.0 http.6.1.1 ipaddr.5.6.0 ipaddr-sexp.5.6.0 js_of_ocaml.6.0.1 js_of_ocaml-compiler.6.0.1 kdf.1.0.0 logs.0.8.0 lwt.5.9.1 macaddr.5.6.0 magic-mime.1.3.1 mdx.2.5.0 menhir.20240715 menhirCST.20240715 menhirLib.20240715 menhirSdk.20240715 mirage-crypto.2.0.1 mirage-crypto-ec.2.0.1 mirage-crypto-pk.2.0.1 mirage-crypto-rng.2.0.1 mtime.2.1.0 multicore-bench.0.1.7 multicore-magic.2.3.1 multicore-magic-dscheck.2.3.1 ocaml.5.3.0 ocaml-base-compiler.5.3.0 ocaml-compiler.5.3.0 ocaml-compiler-libs.v0.17.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.4.0.1 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.0 ppxlib.0.35.0 ppxlib_jane.v0.17.2 psq.0.2.1 ptime.1.2.0 qcheck-core.0.25 qcheck-multicoretests-util.0.8 qcheck-stm.0.8 re.1.12.0 result.1.5 rresult.0.7.0 sedlex.3.6 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.0.8 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.3 --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 "zypper" "--non-interactive" "refresh" - Retrieving repository 'Update repository of openSUSE Backports' metadata [... - .....done] - Building repository 'Update repository of openSUSE Backports' cache [.. - ..done] - Retrieving repository 'Update repository with updates from SUSE Linux Enterprise 15' metadata [..... - .......... - .......... - ....... - ...done] - Building repository 'Update repository with updates from SUSE Linux Enterprise 15' cache [.. - ..done] - Repository 'Main Update Repository' is up to date. - Repository 'Update Repository (Non-Oss)' is up to date. - Repository 'Non-OSS Repository' is up to date. - Repository 'Main Repository' is up to date. - All repositories have been refreshed. <><> 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.3.0). [NOTE] Package ocaml-base-compiler is already installed (current version is 5.3.0). [NOTE] Package ocaml is already installed (current version is 5.3.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-default <><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><> + /usr/bin/sudo "zypper" "--non-interactive" "install" "gmp-devel" "npm-default" - Loading repository data... - Reading installed packages... - Resolving package dependencies... - - The following 10 NEW packages are going to be installed: - gmp-devel libcares2 libgmpxx4 libicu73_2 libicu73_2-ledata nodejs-common nodejs-default nodejs20 npm-default npm20 - - 10 new packages to install. - - Package download size: 23.3 MiB - - Package install size change: - | 93.0 MiB required by packages that will be installed - 93.0 MiB | - 0 B released by packages that will be removed - - Backend: classic_rpmtrans - Continue? [y/n/v/...? shows all options] (y): y - Retrieving: libcares2-1.19.1-150000.3.26.1.x86_64 (Main Repository) (1/10), 61.2 KiB - Retrieving: libcares2-1.19.1-150000.3.26.1.x86_64.rpm [.done] - Retrieving: libgmpxx4-6.1.2-4.9.1.x86_64 (Main Repository) (2/10), 17.1 KiB - Retrieving: libgmpxx4-6.1.2-4.9.1.x86_64.rpm [.done] - Retrieving: libicu73_2-ledata-73.2-150000.1.7.1.noarch (Main Repository) (3/10), 7.3 MiB - Retrieving: libicu73_2-ledata-73.2-150000.1.7.1.noarch.rpm [.....done (18.8 MiB/s)] - Retrieving: gmp-devel-6.1.2-4.9.1.x86_64 (Main Repository) (4/10), 2.2 MiB - Retrieving: gmp-devel-6.1.2-4.9.1.x86_64.rpm [..done (9.4 MiB/s)] - Retrieving: libicu73_2-73.2-150000.1.7.1.x86_64 (Main Repository) (5/10), 1.8 MiB - Retrieving: libicu73_2-73.2-150000.1.7.1.x86_64.rpm [. - ..done (10.8 MiB/s)] - Retrieving: nodejs-common-6.0-150600.1.5.x86_64 (Main Repository) (6/10), 14.5 KiB - Retrieving: nodejs-common-6.0-150600.1.5.x86_64.rpm [.done] - Retrieving: nodejs20-20.18.2-150600.3.9.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (7/10), 10.1 MiB - Retrieving: nodejs20-20.18.2-150600.3.9.1.x86_64.rpm [......done (21.8 MiB/s)] - Retrieving: nodejs-default-6.0-150600.1.5.x86_64 (Main Repository) (8/10), 9.8 KiB - Retrieving: nodejs-default-6.0-150600.1.5.x86_64.rpm [.done] - Retrieving: npm20-20.18.2-150600.3.9.1.x86_64 (Update repository with updates from SUSE Linux Enterprise 15) (9/10), 1.8 MiB - Retrieving: npm20-20.18.2-150600.3.9.1.x86_64.rpm [...done (8.5 MiB/s)] - Retrieving: npm-default-6.0-150600.1.5.x86_64 (Main Repository) (10/10), 9.8 KiB - Retrieving: npm-default-6.0-150600.1.5.x86_64.rpm [.done] - - Checking for file conflicts: [....done] - ( 1/10) Installing: libcares2-1.19.1-150000.3.26.1.x86_64 [..done] - ( 2/10) Installing: libgmpxx4-6.1.2-4.9.1.x86_64 [..done] - ( 3/10) Installing: libicu73_2-ledata-73.2-150000.1.7.1.noarch [... - .......... - ....done] - ( 4/10) Installing: gmp-devel-6.1.2-4.9.1.x86_64 [......done] - ( 5/10) Installing: libicu73_2-73.2-150000.1.7.1.x86_64 [. - ....done] - ( 6/10) Installing: nodejs-common-6.0-150600.1.5.x86_64 [..done] - ( 7/10) Installing: nodejs20-20.18.2-150600.3.9.1.x86_64 [...... - .......... - ....... - update-alternatives: using /usr/bin/node20 to provide /usr/bin/node-default (node-default) in auto mode - done] - ( 8/10) Installing: nodejs-default-6.0-150600.1.5.x86_64 [..done] - ( 9/10) Installing: npm20-20.18.2-150600.3.9.1.x86_64 [... - ...... - update-alternatives: using /usr/bin/npm20 to provide /usr/bin/npm-default (npm-default) in auto mode - update-alternatives: using /usr/bin/npx20 to provide /usr/bin/npx-default (npx-default) in auto mode - done] - (10/10) Installing: npm-default-6.0-150600.1.5.x86_64 [..done] 2025-06-13 16:28.24 ---> using "f6dbd48afbfa7bff05baf05b6b0f3809d36b681de2883c193d2b310439e3e4a9" 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.3.0). [NOTE] Package ocaml-base-compiler is already installed (current version is 5.3.0). [NOTE] Package ocaml is already installed (current version is 5.3.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.0 - 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.1 - install bigstringaf 0.10.0 - install bos 0.2.1 - install ca-certs 1.0.1 - install camlp-streams 5.0.1 - install cmdliner 1.3.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.4.1 - install domain_shims 0.1.0 - install dscheck 0.5.0 - install dune 3.19.1 - install dune-configurator 3.19.1 - install duration 0.2.1 - install either 1.0.0 - install eqaf 0.10 - install fmt 0.10.0 - install fpath 0.7.3 - install gen 1.1 - install gmap 0.3.0 - install http 6.1.1 - install ipaddr 5.6.0 - install ipaddr-sexp 5.6.0 - install js_of_ocaml 6.0.1 - install js_of_ocaml-compiler 6.0.1 - install kdf 1.0.0 - install logs 0.8.0 - install lwt 5.9.1 - install macaddr 5.6.0 - install magic-mime 1.3.1 - install mdx 2.5.0 - install menhir 20240715 - install menhirCST 20240715 - install menhirLib 20240715 - install menhirSdk 20240715 - install mirage-crypto 2.0.1 - install mirage-crypto-ec 2.0.1 - install mirage-crypto-pk 2.0.1 - install mirage-crypto-rng 2.0.1 - 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.1 - 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.0 - install ppxlib 0.35.0 - install ppxlib_jane v0.17.2 - install psq 0.2.1 - install ptime 1.2.0 - install qcheck-core 0.25 - install qcheck-multicoretests-util 0.8 - install qcheck-stm 0.8 - install re 1.12.0 - install result 1.5 - install rresult 0.7.0 - install sedlex 3.6 - 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.0.8 - 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 asn1-combinators.0.3.2 (cached) -> retrieved angstrom.0.16.1 (cached) -> retrieved astring.0.8.5 (cached) -> retrieved backoff.0.1.1 (cached) -> retrieved alcotest.1.9.0 (cached) -> retrieved base.v0.17.3 (cached) -> retrieved base64.3.5.1 (cached) -> retrieved bigstringaf.0.10.0 (cached) -> retrieved bos.0.2.1 (cached) -> retrieved ca-certs.1.0.1 (cached) -> retrieved camlp-streams.5.0.1 (cached) -> retrieved cmdliner.1.3.0 (cached) -> retrieved conf-gmp.5 (cached) -> retrieved conf-gmp-powm-sec.4 (cached) -> retrieved cohttp.6.1.1, cohttp-lwt.6.1.1, cohttp-lwt-unix.6.1.1, http.6.1.1 (cached) -> retrieved conduit.8.0.0, conduit-lwt.8.0.0, conduit-lwt-unix.8.0.0 (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) -> retrieved domain-local-await.1.0.1 (cached) -> installed conf-gmp-powm-sec.4 -> retrieved domain-name.0.4.1 (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.10.0 (cached) -> retrieved fpath.0.7.3 (cached) -> retrieved gen.1.1 (cached) -> retrieved gmap.0.3.0 (cached) -> retrieved ipaddr.5.6.0, ipaddr-sexp.5.6.0, macaddr.5.6.0 (cached) -> retrieved digestif.1.3.0 (cached) -> retrieved kdf.1.0.0 (cached) -> retrieved logs.0.8.0 (cached) -> retrieved lwt.5.9.1 (cached) -> retrieved magic-mime.1.3.1 (cached) -> retrieved mdx.2.5.0 (cached) -> retrieved dune.3.19.1, dune-configurator.3.19.1 (cached) -> retrieved js_of_ocaml.6.0.1, js_of_ocaml-compiler.6.0.1 (cached) -> retrieved menhir.20240715, menhirCST.20240715, menhirLib.20240715, menhirSdk.20240715 (cached) -> retrieved mirage-crypto.2.0.1, mirage-crypto-ec.2.0.1, mirage-crypto-pk.2.0.1, mirage-crypto-rng.2.0.1 (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) -> installed cmdliner.1.3.0 -> retrieved ocaml-compiler-libs.v0.17.0 (cached) -> retrieved ocaml-syntax-shims.1.0.0 (cached) -> retrieved ocaml-version.4.0.1 (cached) -> retrieved ocaml_intrinsics_kernel.v0.17.1 (cached) -> retrieved ocamlfind.1.9.8 (cached) -> retrieved ocamlbuild.0.16.1 (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.0 (cached) -> retrieved ppxlib_jane.v0.17.2 (cached) -> retrieved psq.0.2.1 (cached) -> retrieved ptime.1.2.0 (cached) -> retrieved qcheck-core.0.25 (cached) -> retrieved qcheck-multicoretests-util.0.8, qcheck-stm.0.8 (cached) -> retrieved ppxlib.0.35.0 (cached) -> retrieved re.1.12.0 (cached) -> retrieved result.1.5 (cached) -> retrieved seq.base (cached) -> installed seq.base -> retrieved rresult.0.7.0 (cached) -> retrieved sedlex.3.6 (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 uutf.1.0.4 (cached) -> retrieved topkg.1.0.8 (cached) -> retrieved uri.4.4.0, uri-sexp.4.4.0 (cached) -> retrieved yojson.3.0.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.0.8 -> installed rresult.0.7.0 -> installed uutf.1.0.4 -> installed mtime.2.1.0 -> installed fmt.0.10.0 -> installed ptime.1.2.0 -> installed astring.0.8.5 -> installed fpath.0.7.3 -> installed dune.3.19.1 -> installed backoff.0.1.1 -> installed csexp.1.5.2 -> installed asn1-combinators.0.3.2 -> installed base64.3.5.1 -> installed camlp-streams.5.0.1 -> installed domain-name.0.4.1 -> 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.0 -> installed magic-mime.1.3.1 -> installed menhirCST.20240715 -> installed menhirLib.20240715 -> installed menhirSdk.20240715 -> installed multicore-magic.2.3.1 -> installed ocaml-version.4.0.1 -> 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 result.1.5 -> installed ocaml-syntax-shims.1.0.0 -> 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 cppo.1.8.0 -> installed ocaml-compiler-libs.v0.17.0 -> installed re.1.12.0 -> installed ipaddr.5.6.0 -> installed domain-local-await.1.0.1 -> installed qcheck-core.0.25 -> installed ocplib-endian.1.2 -> installed yojson.3.0.0 -> installed digestif.1.3.0 -> installed qcheck-multicoretests-util.0.8 -> installed alcotest.1.9.0 -> installed dune-configurator.3.19.1 -> installed multicore-bench.0.1.7 -> installed qcheck-stm.0.8 -> installed bigstringaf.0.10.0 -> installed angstrom.0.16.1 -> installed mirage-crypto.2.0.1 -> installed kdf.1.0.0 -> installed containers.3.16 -> installed uri.4.4.0 -> installed dscheck.0.5.0 -> installed multicore-magic-dscheck.2.3.1 -> installed lwt.5.9.1 -> installed base.v0.17.3 -> installed menhir.20240715 -> installed ppxlib.0.35.0 -> installed ppxlib_jane.v0.17.2 -> installed sedlex.3.6 -> installed ppx_sexp_conv.v0.17.0 -> installed ipaddr-sexp.5.6.0 -> installed uri-sexp.4.4.0 -> installed js_of_ocaml-compiler.6.0.1 -> installed logs.0.8.0 -> installed mirage-crypto-rng.2.0.1 -> installed mirage-crypto-pk.2.0.1 -> installed conduit.8.0.0 -> installed cohttp.6.1.1 -> installed mdx.2.5.0 -> installed bos.0.2.1 -> installed conduit-lwt.8.0.0 -> installed cohttp-lwt.6.1.1 -> installed mirage-crypto-ec.2.0.1 -> 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.0.1 Done. # To update the current shell environment, run: eval $(opam env) 2025-06-13 16:28.24 ---> using "f63245a741ad327fe8886c2773663c94b0fb79dccbdc8ad10e0099171baa4e01" from cache /src: (copy (src .) (dst /src)) 2025-06-13 16:28.24 ---> saved as "1e14b7a2c0a4b277b3ba513af4c6017f6168f20205442f411ab35b18541af98e" /src: (run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build")) (cd _build/default/example && ./guards.exe) Testing with scheduler: fifos ~quota:21 Ran guarded case statement examples. (cd _build/default/test && ./test_server_and_client.exe) Using blocking sockets and fibers on OCaml 5: Recursive server running Server listening Server accepting Client B running Server accepted client Client B connected Server accepting Client A running Client B wrote 100 Server read 100 Server wrote 50 Client B read 50 Server accepted client Client A connected Client A wrote 100 Server read 100 Client A read 50 Server wrote 50 Server accepting Server and Client test: OK (cd _build/default/test && ./test_picos_lwt_unix_with_cohttp.exe) Uri: //127.0.0.1:8000/hello-lwt Method: GET host: 127.0.0.1:8000 user-agent: ocaml-cohttp/v6.1.1 content-length: 0 Body: (cd _build/default/test && ./test_lwt_unix.exe) Testing `Picos_lwt'. This run has ID `3KB1T6Z4'. [OK] Basics 0 Full test results in `/src/_build/default/test/_build/_tests/Picos_lwt'. Test Successful in 0.051s. 1 test run. (cd _build/default/test && ./test_finally.exe) Testing `Picos_finally'. This run has ID `HVZKVLYR'. [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.002s. 2 tests run. (cd _build/default/test && ./test_sync.exe -- '^Mutex and Condition$' 0) Testing `Picos_sync'. This run has ID `5EZY7R4P'. [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.049s. 1 test run. (cd _build/default/test && ./test_sync.exe -- '^Mutex and Condition$' 1) Testing `Picos_sync'. This run has ID `EFV74GF6'. [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.004s. 1 test run. (cd _build/default/test && ./test_io.exe) Testing `Picos_io'. This run has ID `BTS5HGQ7'. [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.534s. 6 tests run. (cd _build/default/test && ./test_structured.exe) Testing `Picos_structured'. This run has ID `2YAMJJZC'. [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 1.191s. 14 tests run. (cd _build/default/test && ./test_io_cohttp.exe) Uri: //127.0.0.1:50915/hello-io-cohttp Method: POST host: 127.0.0.1:50915 user-agent: ocaml-cohttp/v6.1.1 content-length: 17 Body: It's-a-Me, Picos! (cd _build/default/test && ./test_sync.exe -- '^Mutex and Condition$' 2) Testing `Picos_sync'. This run has ID `COBLHJZV'. [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 1.400s. 1 test run. (cd _build/default/test && ./test_sync.exe -- '^Lock and Lock.Condition$' 0) Testing `Picos_sync'. This run has ID `15U0F1XN'. [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.070s. 1 test run. (cd _build/default/test && ./test_picos_dscheck.exe) Testing `Picos DSCheck'. This run has ID `EONSY3HS'. [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 1.544s. 3 tests run. (cd _build/default/test && ./test_io_with_lwt.exe) Testing `Picos_io_with_lwt'. This run has ID `2TSAKRYF'. [OK] Unix 0 system. Full test results in `/src/_build/default/test/_build/_tests/Picos_io_with_lwt'. Test Successful in 2.069s. 1 test run. (cd _build/default/test && ./test_select.exe) Testing `Picos_select'. This run has ID `T841NORY'. [OK] Intr 0 Full test results in `/src/_build/default/test/_build/_tests/Picos_select'. Test Successful in 2.530s. 1 test run. (cd _build/default/test && ./test_mpmcq_dscheck.exe) Testing `Picos_mpmcq DSCheck'. This run has ID `IOR1IQGK'. [OK] Multiple pushes and pops 0 Full test results in `/src/_build/default/test/_build/_tests/Picos_mpmcq DSCheck'. Test Successful in 4.665s. 1 test run. (cd _build/default/test && /usr/bin/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: 1.38 M/s attach detach pairs over time/2 workers: 1.23 M/s attach detach pairs over time/4 workers: 1.06 M/s attach detach pairs over time/trivial: 1.77 M/s time per attach detach pair/1 worker: 724.47 ns time per attach detach pair/2 workers: 1619.89 ns time per attach detach pair/4 workers: 3783.56 ns time per attach detach pair/trivial: 564.34 ns (cd _build/default/bench && ./main.exe -brief 'Picos Current') Picos Current: ops over time/1 worker: 9.50 M/s ops over time/2 workers: 14.78 M/s ops over time/4 workers: 10.39 M/s time per op/1 worker: 105.23 ns time per op/2 workers: 135.33 ns time per op/4 workers: 384.96 ns (cd _build/default/bench && ./main.exe -brief 'Picos FLS (excluding Current)') Picos FLS (excluding Current): gets over time/1 worker: 126.49 M/s gets over time/2 workers: 244.24 M/s gets over time/4 workers: 384.50 M/s sets over time/1 worker: 67.88 M/s sets over time/2 workers: 72.80 M/s sets over time/4 workers: 216.56 M/s time per get/1 worker: 7.91 ns time per get/2 workers: 8.19 ns time per get/4 workers: 10.40 ns time per set/1 worker: 14.73 ns time per set/2 workers: 27.47 ns time per set/4 workers: 18.47 ns (cd _build/default/bench && ./main.exe -brief 'Picos TLS') Picos TLS: gets over time/1 worker: 42.74 M/s gets over time/2 workers: 75.31 M/s gets over time/4 workers: 161.03 M/s sets over time/1 worker: 28.94 M/s sets over time/2 workers: 67.95 M/s sets over time/4 workers: 115.01 M/s time per get/1 worker: 23.40 ns time per get/2 workers: 26.56 ns time per get/4 workers: 24.84 ns time per set/1 worker: 34.55 ns time per set/2 workers: 29.43 ns time per set/4 workers: 34.78 ns (cd _build/default/bench && ./main.exe -brief 'Picos DLS') Picos DLS: gets over time/1 worker: 61.49 M/s gets over time/2 workers: 102.13 M/s gets over time/4 workers: 255.75 M/s sets over time/1 worker: 56.38 M/s sets over time/2 workers: 101.31 M/s sets over time/4 workers: 131.15 M/s time per get/1 worker: 16.26 ns time per get/2 workers: 19.58 ns time per get/4 workers: 15.64 ns time per set/1 worker: 17.74 ns time per set/2 workers: 19.74 ns time per set/4 workers: 30.50 ns (cd _build/default/test && ./test_schedulers.exe) Testing with scheduler: thread Fairness of 100 fibers performing at least 10000 yields: sd: 0.001243 -- ideally 0 mean: 1.008549 -- ideally 1 median: 1.008800 -- ideally 1 Testing `Picos schedulers'. This run has ID `8YTO1O0K'. [OK] Trivial main returns 0 [OK] Scheduler completes main computation 0 [OK] Current 0 [OK] Cancel_after 0 basic. [OK] Cancel_after 1 long timeout. [OK] Operation on canceled fiber raises 0 [OK] Cross scheduler wakeup 0 [OK] Fatal exception terminates scheduler 0 Full test results in `/src/_build/default/test/_build/_tests/Picos schedulers'. Test Successful in 18.014s. 8 tests run. (cd _build/default/test && ./test_picos.exe) Testing `Picos'. This run has ID `H79D4NE3'. [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 29.134s. 7 tests run. (cd _build/default/test && ./test_sync.exe -- '^Lock and Lock.Condition$' 1) Testing `Picos_sync'. This run has ID `QJJKX7ER'. [SKIP] Mutex and Condition 0 basics. [SKIP] Mutex and Condition 1 errors. [SKIP] Mutex and Condition 2 cancelation. [SKIP] Lock and Lock.Condition 0 basics. [OK] 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 31.492s. 1 test run. (cd _build/default/test && ./test_sync.exe -- '^Lock and Lock.Condition$' 2) Testing `Picos_sync'. This run has ID `Q2QG5N7K'. [SKIP] 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. [OK] 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.001s. 1 test run. (cd _build/default/test && ./test_sync.exe -- '^Lock and Lock.Condition$' 3) Testing `Picos_sync'. This run has ID `XMJVWTBH'. [SKIP] 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. [OK] 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.001s. 1 test run. (cd _build/default/test && ./test_sync.exe -- '^Rwlock and Rwlock.Condition$' 0) Testing `Picos_sync'. This run has ID `OO4BA52B'. [SKIP] 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. [OK] 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.003s. 1 test run. (cd _build/default/test && ./test_sync.exe -- '^Rwlock and Rwlock.Condition$' 1) Testing `Picos_sync'. This run has ID `1UBB869T'. [SKIP] 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. [OK] 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.911s. 1 test run. (cd _build/default/test && ./test_sync.exe -- '^Rwlock and Rwlock.Condition$' 2) Testing `Picos_sync'. This run has ID `QQCPS5UX'. [SKIP] 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. [OK] 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.001s. 1 test run. (cd _build/default/test && ./test_sync.exe -- '^Rwlock and Rwlock.Condition$' 3) Testing `Picos_sync'. This run has ID `J6TTGK54'. [SKIP] 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. [OK] 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.001s. 1 test run. (cd _build/default/test && ./test_sync.exe -- '^Rwlock and Rwlock.Condition$' 4) Testing `Picos_sync'. This run has ID `BVW9FGAY'. [SKIP] 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. [OK] 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.001s. 1 test run. (cd _build/default/test && ./test_sync.exe -- '^Rwlock and Rwlock.Condition$' 5) Testing `Picos_sync'. This run has ID `WZJJ4O27'. [SKIP] 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. [OK] 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.001s. 1 test run. (cd _build/default/test && ./test_sync.exe -- '^Rwlock and Rwlock.Condition$' 6) Testing `Picos_sync'. This run has ID `P8U40X5E'. [SKIP] 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. [OK] 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.001s. 1 test run. (cd _build/default/test && ./test_sync.exe -- ^Semaphore$ 0) Testing `Picos_sync'. This run has ID `IZBTAHXW'. [SKIP] 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. [OK] 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.001s. 1 test run. (cd _build/default/test && ./test_sync.exe -- ^Semaphore$ 1) Testing `Picos_sync'. This run has ID `S7MAV06Y'. [SKIP] 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. [OK] 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.206s. 1 test run. (cd _build/default/test && ./test_sync.exe -- ^Sem$ 0) Testing `Picos_sync'. This run has ID `6BX7SEJE'. [SKIP] 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. [OK] 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.001s. 1 test run. (cd _build/default/test && ./test_sync.exe -- ^Sem$ 1) Testing `Picos_sync'. This run has ID `18NCX8RW'. [SKIP] 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. [OK] 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.206s. 1 test run. (cd _build/default/test && ./test_sync.exe -- ^Sem$ 2) Testing `Picos_sync'. This run has ID `A7S1O6F5'. [SKIP] 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. [OK] 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.001s. 1 test run. (cd _build/default/test && ./test_sync.exe -- ^Sem$ 3) Testing `Picos_sync'. This run has ID `GAZPY4IA'. [SKIP] 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. [OK] 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.002s. 1 test run. (cd _build/default/test && ./test_sync.exe -- ^Lazy$ 0) Testing `Picos_sync'. This run has ID `C8VZQ4HJ'. [SKIP] 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. [OK] 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.001s. 1 test run. (cd _build/default/test && ./test_sync.exe -- ^Lazy$ 1) Testing `Picos_sync'. This run has ID `Z5UG6ATB'. [SKIP] 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. [OK] 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.003s. 1 test run. (cd _build/default/test && ./test_sync.exe -- ^Event$ 0) Testing `Picos_sync'. This run has ID `OBREQR64'. [SKIP] 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. [OK] 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.101s. 1 test run. (cd _build/default/test && ./test_sync.exe -- ^Barrier$ 0) Testing `Picos_sync'. This run has ID `9LMC2VBX'. [SKIP] 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. [OK] 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 -- ^Barrier$ 1) Testing `Picos_sync'. This run has ID `54JD4X95'. [SKIP] 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. [OK] 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.129s. 1 test run. (cd _build/default/test && ./test_sync.exe -- '^Non-cancelable ops$' 0) Testing `Picos_sync'. This run has ID `0LD7M1Q2'. [SKIP] 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. [OK] Non-cancelable ops 0 are not canceled. Full test results in `/src/_build/default/test/_build/_tests/Picos_sync'. Test Successful in 0.001s. 1 test run. (cd _build/default/bench && ./main.exe -brief 'Yield with Picos_std_sync') Yield with Picos_std_sync: locked yields over time/1024 fibers with Lock: 0.38 M/s locked yields over time/1024 fibers with Rwlock: 0.58 M/s locked yields over time/1024 fibers with Sem: 0.56 M/s locked yields over time/1024 fibers with Sem 2: 0.31 M/s locked yields over time/1024 fibers with Sem 3: 0.62 M/s locked yields over time/1024 fibers with Sem 4: 0.35 M/s locked yields over time/1 fiber with Lock: 1.56 M/s locked yields over time/1 fiber with Rwlock: 3.37 M/s locked yields over time/1 fiber with Sem: 3.74 M/s locked yields over time/1 fiber with Sem 2: 1.80 M/s locked yields over time/1 fiber with Sem 3: 4.43 M/s locked yields over time/1 fiber with Sem 4: 3.24 M/s locked yields over time/256 fibers with Lock: 0.45 M/s locked yields over time/256 fibers with Rwlock: 0.32 M/s locked yields over time/256 fibers with Sem: 0.28 M/s locked yields over time/256 fibers with Sem 2: 1.12 M/s locked yields over time/256 fibers with Sem 3: 1.32 M/s locked yields over time/256 fibers with Sem 4: 1.33 M/s locked yields over time/2 domains with Lock: 0.36 M/s locked yields over time/2 domains with Rwlock: 0.41 M/s locked yields over time/2 domains with Sem: 0.32 M/s locked yields over time/2 domains with Sem 2: 3.77 M/s locked yields over time/2 domains with Sem 3: 3.70 M/s locked yields over time/2 domains with Sem 4: 3.40 M/s locked yields over time/2 fibers with Lock: 0.35 M/s locked yields over time/2 fibers with Rwlock: 0.61 M/s locked yields over time/2 fibers with Sem: 0.29 M/s locked yields over time/2 fibers with Sem 2: 3.27 M/s locked yields over time/2 fibers with Sem 3: 3.93 M/s locked yields over time/2 fibers with Sem 4: 3.22 M/s locked yields over time/3 domains with Lock: 0.89 M/s locked yields over time/3 domains with Rwlock: 0.49 M/s locked yields over time/3 domains with Sem: 1.25 M/s locked yields over time/3 domains with Sem 2: 2.41 M/s locked yields over time/3 domains with Sem 3: 4.41 M/s locked yields over time/3 domains with Sem 4: 5.47 M/s locked yields over time/3 fibers with Lock: 0.49 M/s locked yields over time/3 fibers with Rwlock: 0.45 M/s locked yields over time/3 fibers with Sem: 0.71 M/s locked yields over time/3 fibers with Sem 2: 1.20 M/s locked yields over time/3 fibers with Sem 3: 4.75 M/s locked yields over time/3 fibers with Sem 4: 3.02 M/s locked yields over time/4 domains with Lock: 0.45 M/s locked yields over time/4 domains with Rwlock: 0.74 M/s locked yields over time/4 domains with Sem: 0.65 M/s locked yields over time/4 domains with Sem 2: 0.82 M/s locked yields over time/4 domains with Sem 3: 3.60 M/s locked yields over time/4 domains with Sem 4: 5.83 M/s locked yields over time/4 fibers with Lock: 0.23 M/s locked yields over time/4 fibers with Rwlock: 0.59 M/s locked yields over time/4 fibers with Sem: 0.37 M/s locked yields over time/4 fibers with Sem 2: 0.75 M/s locked yields over time/4 fibers with Sem 3: 1.57 M/s locked yields over time/4 fibers with Sem 4: 3.54 M/s locked yields over time/512 fibers with Lock: 0.27 M/s locked yields over time/512 fibers with Rwlock: 0.39 M/s locked yields over time/512 fibers with Sem: 0.23 M/s locked yields over time/512 fibers with Sem 2: 0.86 M/s locked yields over time/512 fibers with Sem 3: 0.96 M/s locked yields over time/512 fibers with Sem 4: 1.25 M/s locked yields over time/8 domains with Lock: 0.23 M/s locked yields over time/8 domains with Rwlock: 0.75 M/s locked yields over time/8 domains with Sem: 0.85 M/s locked yields over time/8 domains with Sem 2: 1.19 M/s locked yields over time/8 domains with Sem 3: 2.44 M/s locked yields over time/8 domains with Sem 4: 3.08 M/s locked yields over time/8 fibers with Lock: 0.29 M/s locked yields over time/8 fibers with Rwlock: 0.39 M/s locked yields over time/8 fibers with Sem: 0.59 M/s locked yields over time/8 fibers with Sem 2: 1.13 M/s locked yields over time/8 fibers with Sem 3: 1.10 M/s locked yields over time/8 fibers with Sem 4: 2.18 M/s time per locked yield/1024 fibers with Lock: 2606.66 ns time per locked yield/1024 fibers with Rwlock: 1711.98 ns time per locked yield/1024 fibers with Sem: 1781.08 ns time per locked yield/1024 fibers with Sem 2: 3216.19 ns time per locked yield/1024 fibers with Sem 3: 1605.22 ns time per locked yield/1024 fibers with Sem 4: 2866.26 ns time per locked yield/1 fiber with Lock: 641.48 ns time per locked yield/1 fiber with Rwlock: 296.95 ns time per locked yield/1 fiber with Sem: 267.13 ns time per locked yield/1 fiber with Sem 2: 555.90 ns time per locked yield/1 fiber with Sem 3: 225.70 ns time per locked yield/1 fiber with Sem 4: 308.82 ns time per locked yield/256 fibers with Lock: 2217.04 ns time per locked yield/256 fibers with Rwlock: 3159.32 ns time per locked yield/256 fibers with Sem: 3581.43 ns time per locked yield/256 fibers with Sem 2: 889.55 ns time per locked yield/256 fibers with Sem 3: 757.18 ns time per locked yield/256 fibers with Sem 4: 749.39 ns time per locked yield/2 domains with Lock: 5539.35 ns time per locked yield/2 domains with Rwlock: 4865.86 ns time per locked yield/2 domains with Sem: 6234.19 ns time per locked yield/2 domains with Sem 2: 530.92 ns time per locked yield/2 domains with Sem 3: 540.50 ns time per locked yield/2 domains with Sem 4: 588.01 ns time per locked yield/2 fibers with Lock: 2882.31 ns time per locked yield/2 fibers with Rwlock: 1646.98 ns time per locked yield/2 fibers with Sem: 3505.87 ns time per locked yield/2 fibers with Sem 2: 305.69 ns time per locked yield/2 fibers with Sem 3: 254.42 ns time per locked yield/2 fibers with Sem 4: 310.11 ns time per locked yield/3 domains with Lock: 3377.45 ns time per locked yield/3 domains with Rwlock: 6135.77 ns time per locked yield/3 domains with Sem: 2409.37 ns time per locked yield/3 domains with Sem 2: 1245.94 ns time per locked yield/3 domains with Sem 3: 679.70 ns time per locked yield/3 domains with Sem 4: 548.16 ns time per locked yield/3 fibers with Lock: 2047.59 ns time per locked yield/3 fibers with Rwlock: 2209.42 ns time per locked yield/3 fibers with Sem: 1415.78 ns time per locked yield/3 fibers with Sem 2: 830.23 ns time per locked yield/3 fibers with Sem 3: 210.75 ns time per locked yield/3 fibers with Sem 4: 330.96 ns time per locked yield/4 domains with Lock: 8814.99 ns time per locked yield/4 domains with Rwlock: 5375.19 ns time per locked yield/4 domains with Sem: 6117.29 ns time per locked yield/4 domains with Sem 2: 4861.33 ns time per locked yield/4 domains with Sem 3: 1110.03 ns time per locked yield/4 domains with Sem 4: 685.93 ns time per locked yield/4 fibers with Lock: 4413.71 ns time per locked yield/4 fibers with Rwlock: 1694.51 ns time per locked yield/4 fibers with Sem: 2715.66 ns time per locked yield/4 fibers with Sem 2: 1334.28 ns time per locked yield/4 fibers with Sem 3: 636.99 ns time per locked yield/4 fibers with Sem 4: 282.76 ns time per locked yield/512 fibers with Lock: 3693.34 ns time per locked yield/512 fibers with Rwlock: 2578.35 ns time per locked yield/512 fibers with Sem: 4419.12 ns time per locked yield/512 fibers with Sem 2: 1161.24 ns time per locked yield/512 fibers with Sem 3: 1039.57 ns time per locked yield/512 fibers with Sem 4: 799.18 ns time per locked yield/8 domains with Lock: 34497.10 ns time per locked yield/8 domains with Rwlock: 10675.20 ns time per locked yield/8 domains with Sem: 9402.85 ns time per locked yield/8 domains with Sem 2: 6711.50 ns time per locked yield/8 domains with Sem 3: 3273.48 ns time per locked yield/8 domains with Sem 4: 2594.80 ns time per locked yield/8 fibers with Lock: 3476.87 ns time per locked yield/8 fibers with Rwlock: 2540.27 ns time per locked yield/8 fibers with Sem: 1681.58 ns time per locked yield/8 fibers with Sem 2: 884.40 ns time per locked yield/8 fibers with Sem 3: 910.71 ns time per locked yield/8 fibers with Sem 4: 458.08 ns (cd _build/default/bench && ./main.exe -brief 'Picos Spawn') Picos Spawn: spawns over time/with packed computation: 2.59 M/s time per spawn/with packed computation: 386.09 ns (cd _build/default/bench && ./main.exe -brief 'Picos Yield') Picos Yield: time per yield/10000 fibers: 570.46 ns time per yield/1000 fibers: 388.38 ns time per yield/100 fibers: 190.15 ns time per yield/10 fibers: 196.14 ns time per yield/1 fiber: 179.81 ns yields over time/10000 fibers: 1.75 M/s yields over time/1000 fibers: 2.57 M/s yields over time/100 fibers: 5.26 M/s yields over time/10 fibers: 5.10 M/s yields over time/1 fiber: 5.56 M/s (cd _build/default/bench && ./main.exe -brief 'Picos Cancel_after with Picos_select') Picos Cancel_after with Picos_select: async round-trips over time/1 worker: 0.18 M/s async round-trips over time/2 workers: 0.28 M/s async round-trips over time/4 workers: 0.25 M/s round-trips over time/1 worker: 0.06 M/s round-trips over time/2 workers: 0.10 M/s round-trips over time/4 workers: 0.20 M/s time per async round-trip/1 worker: 5684.22 ns time per async round-trip/2 workers: 7183.78 ns time per async round-trip/4 workers: 15818.46 ns time per round-trip/1 worker: 18061.69 ns time per round-trip/2 workers: 19455.16 ns time per round-trip/4 workers: 19892.52 ns (cd _build/default/bench && ./main.exe -brief 'Ref with Picos_std_sync') Ref with Picos_std_sync: ops over time/cas int with Lock: 20.41 M/s ops over time/cas int with Rwlock: 25.08 M/s ops over time/cas int with Sem: 22.98 M/s ops over time/get with Lock: 26.05 M/s ops over time/get with Rwlock: 27.52 M/s ops over time/get with Sem: 25.98 M/s ops over time/incr with Lock: 26.72 M/s ops over time/incr with Rwlock: 22.93 M/s ops over time/incr with Sem: 26.05 M/s ops over time/push & pop with Lock: 20.24 M/s ops over time/push & pop with Rwlock: 18.60 M/s ops over time/push & pop with Sem: 20.36 M/s ops over time/swap with Lock: 22.67 M/s ops over time/swap with Rwlock: 20.88 M/s ops over time/swap with Sem: 22.64 M/s ops over time/xchg int with Lock: 23.38 M/s ops over time/xchg int with Rwlock: 19.66 M/s ops over time/xchg int with Sem: 22.71 M/s time per op/cas int with Lock: 48.99 ns time per op/cas int with Rwlock: 39.87 ns time per op/cas int with Sem: 43.52 ns time per op/get with Lock: 38.38 ns time per op/get with Rwlock: 36.34 ns time per op/get with Sem: 38.50 ns time per op/incr with Lock: 37.42 ns time per op/incr with Rwlock: 43.61 ns time per op/incr with Sem: 38.39 ns time per op/push & pop with Lock: 49.41 ns time per op/push & pop with Rwlock: 53.77 ns time per op/push & pop with Sem: 49.12 ns time per op/swap with Lock: 44.11 ns time per op/swap with Rwlock: 47.89 ns time per op/swap with Sem: 44.17 ns time per op/xchg int with Lock: 42.78 ns time per op/xchg int with Rwlock: 50.87 ns time per op/xchg int with Sem: 44.03 ns (cd _build/default/bench && ./main.exe -brief Picos_mpmcq) Picos_mpmcq: messages over time/1 nb adder, 1 nb taker: 13.18 M/s messages over time/1 nb adder, 2 nb takers: 8.28 M/s messages over time/1 nb adder, 4 nb takers: 9.59 M/s messages over time/2 nb adders, 1 nb taker: 14.86 M/s messages over time/2 nb adders, 2 nb takers: 15.42 M/s messages over time/2 nb adders, 4 nb takers: 9.16 M/s messages over time/4 nb adders, 1 nb taker: 10.49 M/s messages over time/4 nb adders, 2 nb takers: 9.99 M/s messages over time/4 nb adders, 4 nb takers: 13.36 M/s messages over time/one domain: 15.68 M/s time per message/1 nb adder, 1 nb taker: 151.77 ns time per message/1 nb adder, 2 nb takers: 362.24 ns time per message/1 nb adder, 4 nb takers: 521.46 ns time per message/2 nb adders, 1 nb taker: 201.84 ns time per message/2 nb adders, 2 nb takers: 259.38 ns time per message/2 nb adders, 4 nb takers: 655.24 ns time per message/4 nb adders, 1 nb taker: 476.72 ns time per message/4 nb adders, 2 nb takers: 600.43 ns time per message/4 nb adders, 4 nb takers: 598.80 ns time per message/one domain: 63.78 ns (cd _build/default/bench && ./main.exe -brief Picos_mpscq) Picos_mpscq: messages over time/1 nb adder, 1 nb taker: 10.53 M/s messages over time/2 nb adders, 1 nb taker: 10.13 M/s messages over time/4 nb adders, 1 nb taker: 12.81 M/s messages over time/one domain: 14.35 M/s time per message/1 nb adder, 1 nb taker: 189.87 ns time per message/2 nb adders, 1 nb taker: 296.18 ns time per message/4 nb adders, 1 nb taker: 390.18 ns time per message/one domain: 69.69 ns (cd _build/default/test && ./test_rwlock.exe) random seed: 3685139932907586000 generated error fail pass / total time test name [ ] 0 0 0 0 / 32 0.0s Rwlock sequential [ ] 0 0 0 0 / 32 0.0s Rwlock sequential (generating) [✓] 32 0 0 32 / 32 0.0s Rwlock sequential [ ] 0 0 0 0 / 32 0.0s Rwlock parallel [ ] 1 0 0 1 / 32 0.2s Rwlock parallel [ ] 2 0 0 2 / 32 0.7s Rwlock parallel [ ] 3 0 0 3 / 32 1.3s Rwlock parallel [ ] 4 0 0 4 / 32 1.6s Rwlock parallel [ ] 5 0 0 5 / 32 2.4s Rwlock parallel [ ] 6 0 0 6 / 32 3.0s Rwlock parallel [ ] 7 0 0 7 / 32 4.0s Rwlock parallel [ ] 8 0 0 8 / 32 5.1s Rwlock parallel [ ] 9 0 0 9 / 32 6.2s Rwlock parallel [ ] 10 0 0 10 / 32 6.8s Rwlock parallel [ ] 11 0 0 11 / 32 8.2s Rwlock parallel [ ] 12 0 0 12 / 32 8.9s Rwlock parallel [ ] 13 0 0 13 / 32 9.6s Rwlock parallel [ ] 14 0 0 14 / 32 10.2s Rwlock parallel [ ] 15 0 0 15 / 32 10.8s Rwlock parallel [ ] 16 0 0 16 / 32 11.6s Rwlock parallel [ ] 17 0 0 17 / 32 12.7s Rwlock parallel [ ] 18 0 0 18 / 32 13.2s Rwlock parallel [ ] 19 0 0 19 / 32 13.7s Rwlock parallel [ ] 20 0 0 20 / 32 14.2s Rwlock parallel [ ] 21 0 0 21 / 32 14.8s Rwlock parallel [ ] 22 0 0 22 / 32 15.2s Rwlock parallel [ ] 23 0 0 23 / 32 15.5s Rwlock parallel [ ] 24 0 0 24 / 32 15.8s Rwlock parallel [ ] 25 0 0 25 / 32 16.1s Rwlock parallel [ ] 26 0 0 26 / 32 16.4s Rwlock parallel [ ] 27 0 0 27 / 32 16.6s Rwlock parallel [ ] 28 0 0 28 / 32 16.8s Rwlock parallel [ ] 29 0 0 29 / 32 17.0s Rwlock parallel [ ] 30 0 0 30 / 32 17.4s Rwlock parallel [ ] 31 0 0 31 / 32 18.0s Rwlock parallel [ ] 32 0 0 32 / 32 18.6s Rwlock parallel [✓] 32 0 0 32 / 32 18.6s Rwlock parallel ================================================================================ success (ran 2 tests) random seed: 1121151567248168129 generated error fail pass / total time test name [ ] 0 0 0 0 / 64 0.0s Rwlock sequential [✓] 64 0 0 64 / 64 0.0s Rwlock sequential [ ] 0 0 0 0 / 64 0.0s Rwlock parallel [ ] 1 0 0 1 / 64 0.2s Rwlock parallel [ ] 2 0 0 2 / 64 0.4s Rwlock parallel [ ] 3 0 0 3 / 64 0.6s Rwlock parallel [ ] 4 0 0 4 / 64 0.7s Rwlock parallel [ ] 5 0 0 5 / 64 1.3s Rwlock parallel [ ] 6 0 0 6 / 64 1.5s Rwlock parallel [ ] 7 0 0 7 / 64 2.0s Rwlock parallel [ ] 9 0 0 9 / 64 2.2s Rwlock parallel [ ] 10 0 0 10 / 64 2.5s Rwlock parallel [ ] 11 0 0 11 / 64 2.7s Rwlock parallel [ ] 13 0 0 13 / 64 3.0s Rwlock parallel [ ] 15 0 0 15 / 64 3.1s Rwlock parallel [ ] 17 0 0 17 / 64 3.6s Rwlock parallel [ ] 18 0 0 18 / 64 3.7s Rwlock parallel [ ] 20 0 0 20 / 64 4.0s Rwlock parallel [ ] 21 0 0 21 / 64 4.1s Rwlock parallel [ ] 22 0 0 22 / 64 4.2s Rwlock parallel [ ] 23 0 0 23 / 64 4.3s Rwlock parallel [ ] 25 0 0 25 / 64 4.6s Rwlock parallel [ ] 26 0 0 26 / 64 4.7s Rwlock parallel [ ] 28 0 0 28 / 64 4.9s Rwlock parallel [ ] 29 0 0 29 / 64 5.0s Rwlock parallel [ ] 30 0 0 30 / 64 5.2s Rwlock parallel [ ] 31 0 0 31 / 64 5.3s Rwlock parallel [ ] 32 0 0 32 / 64 5.4s Rwlock parallel [ ] 34 0 0 34 / 64 5.6s Rwlock parallel [ ] 35 0 0 35 / 64 5.8s Rwlock parallel [ ] 36 0 0 36 / 64 5.9s Rwlock parallel [ ] 37 0 0 37 / 64 6.1s Rwlock parallel [ ] 38 0 0 38 / 64 6.2s Rwlock parallel [ ] 40 0 0 40 / 64 6.3s Rwlock parallel [ ] 41 0 0 41 / 64 6.4s Rwlock parallel [ ] 43 0 0 43 / 64 6.6s Rwlock parallel [ ] 44 0 0 44 / 64 6.8s Rwlock parallel [ ] 45 0 0 45 / 64 6.9s Rwlock parallel [ ] 46 0 0 46 / 64 7.0s Rwlock parallel [ ] 48 0 0 48 / 64 7.2s Rwlock parallel [ ] 50 0 0 50 / 64 7.4s Rwlock parallel [ ] 52 0 0 52 / 64 7.6s Rwlock parallel [ ] 54 0 0 54 / 64 7.7s Rwlock parallel [ ] 57 0 0 57 / 64 7.9s Rwlock parallel [ ] 59 0 0 59 / 64 8.1s Rwlock parallel [ ] 60 0 0 60 / 64 8.2s Rwlock parallel [ ] 62 0 0 62 / 64 8.3s Rwlock parallel [ ] 63 0 0 63 / 64 8.4s Rwlock parallel [ ] 64 0 0 64 / 64 8.5s Rwlock parallel [✓] 64 0 0 64 / 64 8.5s Rwlock parallel ================================================================================ success (ran 2 tests) random seed: 385258124731280057 generated error fail pass / total time test name [ ] 0 0 0 0 / 116 0.0s Rwlock sequential [✓] 116 0 0 116 / 116 0.0s Rwlock sequential [ ] 0 0 0 0 / 116 0.0s Rwlock parallel [ ] 1 0 0 1 / 116 0.1s Rwlock parallel [ ] 3 0 0 3 / 116 0.2s Rwlock parallel [ ] 4 0 0 4 / 116 0.4s Rwlock parallel [ ] 6 0 0 6 / 116 0.6s Rwlock parallel [ ] 9 0 0 9 / 116 0.7s Rwlock parallel [ ] 11 0 0 11 / 116 0.8s Rwlock parallel [ ] 14 0 0 14 / 116 0.9s Rwlock parallel [ ] 17 0 0 17 / 116 1.1s Rwlock parallel [ ] 20 0 0 20 / 116 1.2s Rwlock parallel [ ] 22 0 0 22 / 116 1.3s Rwlock parallel [ ] 24 0 0 24 / 116 1.5s Rwlock parallel [ ] 27 0 0 27 / 116 1.6s Rwlock parallel [ ] 29 0 0 29 / 116 1.7s Rwlock parallel [ ] 32 0 0 32 / 116 1.8s Rwlock parallel [ ] 34 0 0 34 / 116 2.0s Rwlock parallel [ ] 36 0 0 36 / 116 2.2s Rwlock parallel [ ] 38 0 0 38 / 116 2.4s Rwlock parallel [ ] 40 0 0 40 / 116 2.5s Rwlock parallel [ ] 42 0 0 42 / 116 2.7s Rwlock parallel [ ] 44 0 0 44 / 116 2.8s Rwlock parallel [ ] 46 0 0 46 / 116 2.9s Rwlock parallel [ ] 48 0 0 48 / 116 3.1s Rwlock parallel [ ] 49 0 0 49 / 116 3.2s Rwlock parallel [ ] 53 0 0 53 / 116 3.7s Rwlock parallel [ ] 54 0 0 54 / 116 3.8s Rwlock parallel [ ] 55 0 0 55 / 116 4.2s Rwlock parallel [ ] 57 0 0 57 / 116 4.3s Rwlock parallel [ ] 59 0 0 59 / 116 4.5s Rwlock parallel [ ] 61 0 0 61 / 116 4.6s Rwlock parallel [ ] 65 0 0 65 / 116 4.8s Rwlock parallel [ ] 69 0 0 69 / 116 4.9s Rwlock parallel [ ] 71 0 0 71 / 116 5.1s Rwlock parallel [ ] 73 0 0 73 / 116 5.2s Rwlock parallel [ ] 75 0 0 75 / 116 5.3s Rwlock parallel [ ] 77 0 0 77 / 116 5.6s Rwlock parallel [ ] 80 0 0 80 / 116 5.7s Rwlock parallel [ ] 82 0 0 82 / 116 5.8s Rwlock parallel [ ] 83 0 0 83 / 116 5.9s Rwlock parallel [ ] 85 0 0 85 / 116 6.0s Rwlock parallel [ ] 87 0 0 87 / 116 6.2s Rwlock parallel [ ] 88 0 0 88 / 116 6.6s Rwlock parallel [ ] 90 0 0 90 / 116 6.8s Rwlock parallel [ ] 92 0 0 92 / 116 6.9s Rwlock parallel [ ] 96 0 0 96 / 116 7.1s Rwlock parallel [ ] 98 0 0 98 / 116 7.2s Rwlock parallel [ ] 100 0 0 100 / 116 7.3s Rwlock parallel [ ] 102 0 0 102 / 116 7.4s Rwlock parallel [ ] 105 0 0 105 / 116 7.6s Rwlock parallel [ ] 108 0 0 108 / 116 7.7s Rwlock parallel [ ] 112 0 0 112 / 116 7.8s Rwlock parallel [ ] 116 0 0 116 / 116 8.0s Rwlock parallel [✓] 116 0 0 116 / 116 8.0s Rwlock parallel ================================================================================ success (ran 2 tests) random seed: 2523504703813261790 generated error fail pass / total time test name [ ] 0 0 0 0 / 150 0.0s Rwlock sequential [✓] 150 0 0 150 / 150 0.0s Rwlock sequential [ ] 0 0 0 0 / 150 0.0s Rwlock parallel [ ] 1 0 0 1 / 150 0.1s Rwlock parallel [ ] 3 0 0 3 / 150 0.2s Rwlock parallel [ ] 4 0 0 4 / 150 0.4s Rwlock parallel [ ] 6 0 0 6 / 150 0.6s Rwlock parallel [ ] 8 0 0 8 / 150 0.8s Rwlock parallel [ ] 11 0 0 11 / 150 1.0s Rwlock parallel [ ] 13 0 0 13 / 150 1.4s Rwlock parallel [ ] 15 0 0 15 / 150 1.5s Rwlock parallel [ ] 19 0 0 19 / 150 1.6s Rwlock parallel [ ] 21 0 0 21 / 150 2.0s Rwlock parallel [ ] 22 0 0 22 / 150 2.3s Rwlock parallel [ ] 26 0 0 26 / 150 2.4s Rwlock parallel [ ] 27 0 0 27 / 150 2.6s Rwlock parallel [ ] 30 0 0 30 / 150 2.8s Rwlock parallel [ ] 35 0 0 35 / 150 2.9s Rwlock parallel [ ] 39 0 0 39 / 150 3.1s Rwlock parallel [ ] 41 0 0 41 / 150 3.2s Rwlock parallel [ ] 43 0 0 43 / 150 3.7s Rwlock parallel [ ] 49 0 0 49 / 150 3.9s Rwlock parallel [ ] 51 0 0 51 / 150 4.1s Rwlock parallel [ ] 54 0 0 54 / 150 4.2s Rwlock parallel [ ] 58 0 0 58 / 150 4.4s Rwlock parallel [ ] 61 0 0 61 / 150 4.5s Rwlock parallel [ ] 64 0 0 64 / 150 4.6s Rwlock parallel [ ] 68 0 0 68 / 150 4.7s Rwlock parallel [ ] 69 0 0 69 / 150 4.9s Rwlock parallel [ ] 71 0 0 71 / 150 5.1s Rwlock parallel [ ] 73 0 0 73 / 150 5.3s Rwlock parallel [ ] 74 0 0 74 / 150 5.4s Rwlock parallel [ ] 78 0 0 78 / 150 5.5s Rwlock parallel [ ] 80 0 0 80 / 150 5.6s Rwlock parallel [ ] 84 0 0 84 / 150 5.7s Rwlock parallel [ ] 87 0 0 87 / 150 5.8s Rwlock parallel [ ] 91 0 0 91 / 150 6.0s Rwlock parallel [ ] 94 0 0 94 / 150 6.1s Rwlock parallel [ ] 98 0 0 98 / 150 6.3s Rwlock parallel [ ] 102 0 0 102 / 150 6.4s Rwlock parallel [ ] 105 0 0 105 / 150 6.5s Rwlock parallel [ ] 110 0 0 110 / 150 6.7s Rwlock parallel [ ] 114 0 0 114 / 150 6.8s Rwlock parallel [ ] 116 0 0 116 / 150 7.0s Rwlock parallel [ ] 119 0 0 119 / 150 7.1s Rwlock parallel [ ] 121 0 0 121 / 150 7.2s Rwlock parallel [ ] 124 0 0 124 / 150 7.4s Rwlock parallel [ ] 128 0 0 128 / 150 7.6s Rwlock parallel [ ] 130 0 0 130 / 150 7.7s Rwlock parallel [ ] 132 0 0 132 / 150 8.1s Rwlock parallel [ ] 134 0 0 134 / 150 8.2s Rwlock parallel [ ] 137 0 0 137 / 150 8.3s Rwlock parallel [ ] 140 0 0 140 / 150 8.5s Rwlock parallel [ ] 145 0 0 145 / 150 8.7s Rwlock parallel [ ] 148 0 0 148 / 150 8.8s Rwlock parallel [✓] 150 0 0 150 / 150 8.9s Rwlock parallel ================================================================================ success (ran 2 tests) random seed: 1326584410675631088 generated error fail pass / total time test name [ ] 0 0 0 0 / 131 0.0s Rwlock sequential [✓] 131 0 0 131 / 131 0.0s Rwlock sequential [ ] 0 0 0 0 / 131 0.0s Rwlock parallel [ ] 2 0 0 2 / 131 0.0s Rwlock parallel [ ] 3 0 0 3 / 131 0.4s Rwlock parallel [ ] 6 0 0 6 / 131 0.5s Rwlock parallel [ ] 9 0 0 9 / 131 0.6s Rwlock parallel [ ] 14 0 0 14 / 131 0.7s Rwlock parallel [ ] 21 0 0 21 / 131 0.9s Rwlock parallel [ ] 25 0 0 25 / 131 1.0s Rwlock parallel [ ] 27 0 0 27 / 131 1.1s Rwlock parallel [ ] 33 0 0 33 / 131 1.2s Rwlock parallel [ ] 37 0 0 37 / 131 1.3s Rwlock parallel [ ] 42 0 0 42 / 131 1.5s Rwlock parallel [ ] 44 0 0 44 / 131 1.6s Rwlock parallel [ ] 45 0 0 45 / 131 1.8s Rwlock parallel [ ] 48 0 0 48 / 131 1.9s Rwlock parallel [ ] 49 0 0 49 / 131 2.3s Rwlock parallel [ ] 54 0 0 54 / 131 2.4s Rwlock parallel [ ] 58 0 0 58 / 131 2.6s Rwlock parallel [ ] 59 0 0 59 / 131 2.7s Rwlock parallel [ ] 60 0 0 60 / 131 2.8s Rwlock parallel [ ] 63 0 0 63 / 131 3.0s Rwlock parallel [ ] 65 0 0 65 / 131 3.2s Rwlock parallel [ ] 68 0 0 68 / 131 3.3s Rwlock parallel [ ] 70 0 0 70 / 131 3.4s Rwlock parallel [ ] 74 0 0 74 / 131 3.8s Rwlock parallel [ ] 78 0 0 78 / 131 3.9s Rwlock parallel [ ] 80 0 0 80 / 131 4.1s Rwlock parallel [ ] 81 0 0 81 / 131 4.2s Rwlock parallel [ ] 83 0 0 83 / 131 4.4s Rwlock parallel [ ] 89 0 0 89 / 131 4.6s Rwlock parallel [ ] 93 0 0 93 / 131 4.7s Rwlock parallel [ ] 95 0 0 95 / 131 4.8s Rwlock parallel [ ] 101 0 0 101 / 131 5.0s Rwlock parallel [ ] 104 0 0 104 / 131 5.1s Rwlock parallel [ ] 109 0 0 109 / 131 5.2s Rwlock parallel [ ] 113 0 0 113 / 131 5.3s Rwlock parallel [ ] 118 0 0 118 / 131 5.5s Rwlock parallel [ ] 123 0 0 123 / 131 5.6s Rwlock parallel [ ] 128 0 0 128 / 131 5.7s Rwlock parallel [✓] 131 0 0 131 / 131 5.8s Rwlock parallel ================================================================================ success (ran 2 tests) random seed: 2228048094322362127 generated error fail pass / total time test name [ ] 0 0 0 0 / 101 0.0s Rwlock sequential [✓] 101 0 0 101 / 101 0.0s Rwlock sequential [ ] 0 0 0 0 / 101 0.0s Rwlock parallel [ ] 2 0 0 2 / 101 0.0s Rwlock parallel [ ] 4 0 0 4 / 101 0.1s Rwlock parallel [ ] 6 0 0 6 / 101 0.5s Rwlock parallel [ ] 8 0 0 8 / 101 0.6s Rwlock parallel [ ] 11 0 0 11 / 101 0.7s Rwlock parallel [ ] 13 0 0 13 / 101 0.8s Rwlock parallel [ ] 16 0 0 16 / 101 1.0s Rwlock parallel [ ] 21 0 0 21 / 101 1.1s Rwlock parallel [ ] 25 0 0 25 / 101 1.3s Rwlock parallel [ ] 31 0 0 31 / 101 1.4s Rwlock parallel [ ] 37 0 0 37 / 101 1.5s Rwlock parallel [ ] 42 0 0 42 / 101 1.6s Rwlock parallel [ ] 46 0 0 46 / 101 1.7s Rwlock parallel [ ] 49 0 0 49 / 101 1.9s Rwlock parallel [ ] 50 0 0 50 / 101 2.0s Rwlock parallel [ ] 52 0 0 52 / 101 2.4s Rwlock parallel [ ] 56 0 0 56 / 101 2.6s Rwlock parallel [ ] 60 0 0 60 / 101 2.7s Rwlock parallel [ ] 65 0 0 65 / 101 3.0s Rwlock parallel [ ] 70 0 0 70 / 101 3.1s Rwlock parallel [ ] 74 0 0 74 / 101 3.3s Rwlock parallel [ ] 81 0 0 81 / 101 3.4s Rwlock parallel [ ] 83 0 0 83 / 101 3.8s Rwlock parallel [ ] 92 0 0 92 / 101 4.0s Rwlock parallel [ ] 93 0 0 93 / 101 4.3s Rwlock parallel [ ] 94 0 0 94 / 101 4.6s Rwlock parallel [ ] 96 0 0 96 / 101 4.8s Rwlock parallel [ ] 99 0 0 99 / 101 4.9s Rwlock parallel [✓] 101 0 0 101 / 101 4.9s Rwlock parallel ================================================================================ success (ran 2 tests) random seed: 3693885276600836739 generated error fail pass / total time test name [ ] 0 0 0 0 / 57 0.0s Rwlock sequential [✓] 57 0 0 57 / 57 0.0s Rwlock sequential [ ] 0 0 0 0 / 57 0.0s Rwlock parallel [ ] 3 0 0 3 / 57 0.1s Rwlock parallel [ ] 8 0 0 8 / 57 0.2s Rwlock parallel [ ] 11 0 0 11 / 57 0.4s Rwlock parallel [ ] 17 0 0 17 / 57 0.6s Rwlock parallel [ ] 18 0 0 18 / 57 0.7s Rwlock parallel [ ] 24 0 0 24 / 57 0.8s Rwlock parallel [ ] 27 0 0 27 / 57 1.0s Rwlock parallel [ ] 32 0 0 32 / 57 1.1s Rwlock parallel [ ] 34 0 0 34 / 57 1.3s Rwlock parallel [ ] 41 0 0 41 / 57 1.4s Rwlock parallel [ ] 47 0 0 47 / 57 1.5s Rwlock parallel [ ] 50 0 0 50 / 57 1.9s Rwlock parallel [ ] 54 0 0 54 / 57 2.0s Rwlock parallel [✓] 57 0 0 57 / 57 2.1s Rwlock parallel ================================================================================ success (ran 2 tests) random seed: 4239341431658706129 generated error fail pass / total time test name [ ] 0 0 0 0 / 37 0.0s Rwlock sequential [✓] 37 0 0 37 / 37 0.0s Rwlock sequential [ ] 0 0 0 0 / 37 0.0s Rwlock parallel [ ] 1 0 0 1 / 37 0.2s Rwlock parallel [ ] 3 0 0 3 / 37 0.3s Rwlock parallel [ ] 9 0 0 9 / 37 0.5s Rwlock parallel [ ] 17 0 0 17 / 37 0.6s Rwlock parallel [ ] 19 0 0 19 / 37 0.8s Rwlock parallel [ ] 23 0 0 23 / 37 0.9s Rwlock parallel [ ] 24 0 0 24 / 37 1.2s Rwlock parallel [ ] 25 0 0 25 / 37 1.6s Rwlock parallel [ ] 26 0 0 26 / 37 1.7s Rwlock parallel [ ] 28 0 0 28 / 37 1.8s Rwlock parallel [ ] 30 0 0 30 / 37 2.1s Rwlock parallel [ ] 36 0 0 36 / 37 2.2s Rwlock parallel [✓] 37 0 0 37 / 37 2.2s Rwlock parallel ================================================================================ success (ran 2 tests) random seed: 2948389370233855000 generated error fail pass / total time test name [ ] 0 0 0 0 / 32 0.0s Rwlock sequential [✓] 32 0 0 32 / 32 0.0s Rwlock sequential [ ] 0 0 0 0 / 32 0.0s Rwlock parallel [ ] 3 0 0 3 / 32 0.1s Rwlock parallel [ ] 9 0 0 9 / 32 0.2s Rwlock parallel [ ] 14 0 0 14 / 32 0.3s Rwlock parallel [ ] 20 0 0 20 / 32 0.4s Rwlock parallel [ ] 24 0 0 24 / 32 0.6s Rwlock parallel [ ] 28 0 0 28 / 32 0.7s Rwlock parallel [ ] 30 0 0 30 / 32 1.0s Rwlock parallel [✓] 32 0 0 32 / 32 1.1s Rwlock parallel ================================================================================ success (ran 2 tests) (cd _build/default/test && ./test_mutex.exe) random seed: 3754453641878970665 generated error fail pass / total time test name [ ] 0 0 0 0 / 32 0.0s Mutex sequential [ ] 0 0 0 0 / 32 0.0s Mutex sequential (generating) [✓] 32 0 0 32 / 32 0.0s Mutex sequential [ ] 0 0 0 0 / 32 0.0s Mutex parallel [ ] 1 0 0 1 / 32 0.3s Mutex parallel [ ] 2 0 0 2 / 32 1.0s Mutex parallel [ ] 3 0 0 3 / 32 2.2s Mutex parallel [ ] 4 0 0 4 / 32 3.1s Mutex parallel [ ] 5 0 0 5 / 32 3.8s Mutex parallel [ ] 6 0 0 6 / 32 4.6s Mutex parallel [ ] 7 0 0 7 / 32 5.3s Mutex parallel [ ] 8 0 0 8 / 32 6.3s Mutex parallel [ ] 9 0 0 9 / 32 7.0s Mutex parallel [ ] 10 0 0 10 / 32 7.8s Mutex parallel [ ] 11 0 0 11 / 32 8.6s Mutex parallel [ ] 12 0 0 12 / 32 9.2s Mutex parallel [ ] 13 0 0 13 / 32 10.1s Mutex parallel [ ] 14 0 0 14 / 32 10.9s Mutex parallel [ ] 15 0 0 15 / 32 11.5s Mutex parallel [ ] 16 0 0 16 / 32 12.2s Mutex parallel [ ] 17 0 0 17 / 32 13.1s Mutex parallel [ ] 18 0 0 18 / 32 13.7s Mutex parallel [ ] 19 0 0 19 / 32 14.4s Mutex parallel [ ] 20 0 0 20 / 32 15.1s Mutex parallel [ ] 21 0 0 21 / 32 15.7s Mutex parallel [ ] 22 0 0 22 / 32 16.3s Mutex parallel [ ] 23 0 0 23 / 32 16.7s Mutex parallel [ ] 24 0 0 24 / 32 17.2s Mutex parallel [ ] 25 0 0 25 / 32 17.7s Mutex parallel [ ] 26 0 0 26 / 32 18.2s Mutex parallel [ ] 27 0 0 27 / 32 18.5s Mutex parallel [ ] 28 0 0 28 / 32 19.0s Mutex parallel [ ] 29 0 0 29 / 32 19.5s Mutex parallel [ ] 30 0 0 30 / 32 19.8s Mutex parallel [ ] 31 0 0 31 / 32 20.2s Mutex parallel [ ] 32 0 0 32 / 32 20.6s Mutex parallel [✓] 32 0 0 32 / 32 20.6s Mutex parallel ================================================================================ success (ran 2 tests) random seed: 251670329332641962 generated error fail pass / total time test name [ ] 0 0 0 0 / 61 0.0s Mutex sequential [✓] 61 0 0 61 / 61 0.0s Mutex sequential [ ] 0 0 0 0 / 61 0.0s Mutex parallel [ ] 1 0 0 1 / 61 0.4s Mutex parallel [ ] 2 0 0 2 / 61 1.0s Mutex parallel [ ] 3 0 0 3 / 61 1.2s Mutex parallel [ ] 4 0 0 4 / 61 1.4s Mutex parallel [ ] 5 0 0 5 / 61 1.7s Mutex parallel [ ] 6 0 0 6 / 61 1.8s Mutex parallel [ ] 8 0 0 8 / 61 2.0s Mutex parallel [ ] 9 0 0 9 / 61 2.2s Mutex parallel [ ] 12 0 0 12 / 61 2.4s Mutex parallel [ ] 14 0 0 14 / 61 2.6s Mutex parallel [ ] 15 0 0 15 / 61 2.9s Mutex parallel [ ] 16 0 0 16 / 61 3.1s Mutex parallel [ ] 17 0 0 17 / 61 3.3s Mutex parallel [ ] 18 0 0 18 / 61 3.6s Mutex parallel [ ] 19 0 0 19 / 61 4.0s Mutex parallel [ ] 20 0 0 20 / 61 4.2s Mutex parallel [ ] 22 0 0 22 / 61 4.5s Mutex parallel [ ] 24 0 0 24 / 61 4.6s Mutex parallel [ ] 25 0 0 25 / 61 4.9s Mutex parallel [ ] 28 0 0 28 / 61 5.0s Mutex parallel [ ] 31 0 0 31 / 61 5.1s Mutex parallel [ ] 33 0 0 33 / 61 5.2s Mutex parallel [ ] 35 0 0 35 / 61 5.3s Mutex parallel [ ] 37 0 0 37 / 61 5.6s Mutex parallel [ ] 38 0 0 38 / 61 5.8s Mutex parallel [ ] 40 0 0 40 / 61 6.2s Mutex parallel [ ] 42 0 0 42 / 61 6.4s Mutex parallel [ ] 44 0 0 44 / 61 6.6s Mutex parallel [ ] 45 0 0 45 / 61 6.7s Mutex parallel [ ] 48 0 0 48 / 61 6.9s Mutex parallel [ ] 50 0 0 50 / 61 7.0s Mutex parallel [ ] 54 0 0 54 / 61 7.1s Mutex parallel [ ] 55 0 0 55 / 61 7.3s Mutex parallel [ ] 57 0 0 57 / 61 7.4s Mutex parallel [ ] 60 0 0 60 / 61 7.6s Mutex parallel [ ] 61 0 0 61 / 61 7.7s Mutex parallel [✓] 61 0 0 61 / 61 7.7s Mutex parallel ================================================================================ success (ran 2 tests) random seed: 667434908394953770 generated error fail pass / total time test name [ ] 0 0 0 0 / 104 0.0s Mutex sequential [✓] 104 0 0 104 / 104 0.0s Mutex sequential [ ] 0 0 0 0 / 104 0.0s Mutex parallel [ ] 3 0 0 3 / 104 0.1s Mutex parallel [ ] 5 0 0 5 / 104 0.3s Mutex parallel [ ] 7 0 0 7 / 104 0.4s Mutex parallel [ ] 8 0 0 8 / 104 0.6s Mutex parallel [ ] 11 0 0 11 / 104 1.1s Mutex parallel [ ] 15 0 0 15 / 104 1.2s Mutex parallel [ ] 20 0 0 20 / 104 1.3s Mutex parallel [ ] 23 0 0 23 / 104 1.6s Mutex parallel [ ] 24 0 0 24 / 104 1.7s Mutex parallel [ ] 27 0 0 27 / 104 2.0s Mutex parallel [ ] 30 0 0 30 / 104 2.2s Mutex parallel [ ] 31 0 0 31 / 104 2.4s Mutex parallel [ ] 33 0 0 33 / 104 2.5s Mutex parallel [ ] 35 0 0 35 / 104 2.7s Mutex parallel [ ] 37 0 0 37 / 104 2.8s Mutex parallel [ ] 39 0 0 39 / 104 2.9s Mutex parallel [ ] 41 0 0 41 / 104 3.1s Mutex parallel [ ] 43 0 0 43 / 104 3.2s Mutex parallel [ ] 45 0 0 45 / 104 3.3s Mutex parallel [ ] 47 0 0 47 / 104 3.4s Mutex parallel [ ] 49 0 0 49 / 104 3.8s Mutex parallel [ ] 51 0 0 51 / 104 3.9s Mutex parallel [ ] 53 0 0 53 / 104 4.1s Mutex parallel [ ] 54 0 0 54 / 104 4.6s Mutex parallel [ ] 55 0 0 55 / 104 4.7s Mutex parallel [ ] 56 0 0 56 / 104 4.8s Mutex parallel [ ] 57 0 0 57 / 104 5.2s Mutex parallel [ ] 59 0 0 59 / 104 5.4s Mutex parallel [ ] 62 0 0 62 / 104 5.5s Mutex parallel [ ] 64 0 0 64 / 104 5.6s Mutex parallel [ ] 66 0 0 66 / 104 5.8s Mutex parallel [ ] 68 0 0 68 / 104 5.9s Mutex parallel [ ] 72 0 0 72 / 104 6.0s Mutex parallel [ ] 76 0 0 76 / 104 6.2s Mutex parallel [ ] 79 0 0 79 / 104 6.3s Mutex parallel [ ] 81 0 0 81 / 104 6.4s Mutex parallel [ ] 83 0 0 83 / 104 6.5s Mutex parallel [ ] 89 0 0 89 / 104 6.6s Mutex parallel [ ] 92 0 0 92 / 104 6.9s Mutex parallel [ ] 93 0 0 93 / 104 7.0s Mutex parallel [ ] 97 0 0 97 / 104 7.2s Mutex parallel [ ] 98 0 0 98 / 104 7.3s Mutex parallel [ ] 102 0 0 102 / 104 7.4s Mutex parallel [✓] 104 0 0 104 / 104 7.5s Mutex parallel ================================================================================ success (ran 2 tests) random seed: 1718472932420274610 generated error fail pass / total time test name [ ] 0 0 0 0 / 132 0.0s Mutex sequential [✓] 132 0 0 132 / 132 0.0s Mutex sequential [ ] 0 0 0 0 / 132 0.0s Mutex parallel [ ] 1 0 0 1 / 132 0.0s Mutex parallel [ ] 3 0 0 3 / 132 0.2s Mutex parallel [ ] 6 0 0 6 / 132 0.3s Mutex parallel [ ] 9 0 0 9 / 132 0.5s Mutex parallel [ ] 12 0 0 12 / 132 0.7s Mutex parallel [ ] 16 0 0 16 / 132 0.8s Mutex parallel [ ] 17 0 0 17 / 132 0.9s Mutex parallel [ ] 18 0 0 18 / 132 1.0s Mutex parallel [ ] 19 0 0 19 / 132 1.3s Mutex parallel [ ] 24 0 0 24 / 132 1.6s Mutex parallel [ ] 26 0 0 26 / 132 1.7s Mutex parallel [ ] 29 0 0 29 / 132 1.8s Mutex parallel [ ] 33 0 0 33 / 132 2.0s Mutex parallel [ ] 35 0 0 35 / 132 2.1s Mutex parallel [ ] 37 0 0 37 / 132 2.5s Mutex parallel [ ] 40 0 0 40 / 132 2.6s Mutex parallel [ ] 41 0 0 41 / 132 2.9s Mutex parallel [ ] 42 0 0 42 / 132 3.0s Mutex parallel [ ] 45 0 0 45 / 132 3.1s Mutex parallel [ ] 49 0 0 49 / 132 3.3s Mutex parallel [ ] 53 0 0 53 / 132 3.4s Mutex parallel [ ] 57 0 0 57 / 132 3.6s Mutex parallel [ ] 60 0 0 60 / 132 3.8s Mutex parallel [ ] 62 0 0 62 / 132 3.9s Mutex parallel [ ] 66 0 0 66 / 132 4.1s Mutex parallel [ ] 68 0 0 68 / 132 4.2s Mutex parallel [ ] 69 0 0 69 / 132 4.4s Mutex parallel [ ] 73 0 0 73 / 132 4.5s Mutex parallel [ ] 78 0 0 78 / 132 4.6s Mutex parallel [ ] 81 0 0 81 / 132 4.8s Mutex parallel [ ] 86 0 0 86 / 132 5.0s Mutex parallel [ ] 89 0 0 89 / 132 5.1s Mutex parallel [ ] 92 0 0 92 / 132 5.3s Mutex parallel [ ] 93 0 0 93 / 132 5.4s Mutex parallel [ ] 95 0 0 95 / 132 5.6s Mutex parallel [ ] 98 0 0 98 / 132 5.7s Mutex parallel [ ] 101 0 0 101 / 132 5.8s Mutex parallel [ ] 102 0 0 102 / 132 6.0s Mutex parallel [ ] 104 0 0 104 / 132 6.1s Mutex parallel [ ] 106 0 0 106 / 132 6.2s Mutex parallel [ ] 107 0 0 107 / 132 6.4s Mutex parallel [ ] 110 0 0 110 / 132 6.5s Mutex parallel [ ] 112 0 0 112 / 132 6.6s Mutex parallel [ ] 117 0 0 117 / 132 7.1s Mutex parallel [ ] 120 0 0 120 / 132 7.2s Mutex parallel [ ] 124 0 0 124 / 132 7.5s Mutex parallel [ ] 125 0 0 125 / 132 7.7s Mutex parallel [ ] 128 0 0 128 / 132 7.8s Mutex parallel [✓] 132 0 0 132 / 132 7.9s Mutex parallel ================================================================================ success (ran 2 tests) random seed: 1383469921524135505 generated error fail pass / total time test name [ ] 0 0 0 0 / 122 0.0s Mutex sequential [✓] 122 0 0 122 / 122 0.0s Mutex sequential [ ] 0 0 0 0 / 122 0.0s Mutex parallel [ ] 1 0 0 1 / 122 0.1s Mutex parallel [ ] 4 0 0 4 / 122 0.2s Mutex parallel [ ] 8 0 0 8 / 122 0.3s Mutex parallel [ ] 11 0 0 11 / 122 0.4s Mutex parallel [ ] 13 0 0 13 / 122 0.7s Mutex parallel [ ] 16 0 0 16 / 122 0.8s Mutex parallel [ ] 20 0 0 20 / 122 0.9s Mutex parallel [ ] 23 0 0 23 / 122 1.1s Mutex parallel [ ] 27 0 0 27 / 122 1.2s Mutex parallel [ ] 29 0 0 29 / 122 1.4s Mutex parallel [ ] 32 0 0 32 / 122 1.6s Mutex parallel [ ] 36 0 0 36 / 122 1.7s Mutex parallel [ ] 39 0 0 39 / 122 1.8s Mutex parallel [ ] 40 0 0 40 / 122 2.2s Mutex parallel [ ] 43 0 0 43 / 122 2.3s Mutex parallel [ ] 47 0 0 47 / 122 2.4s Mutex parallel [ ] 52 0 0 52 / 122 2.5s Mutex parallel [ ] 56 0 0 56 / 122 2.6s Mutex parallel [ ] 62 0 0 62 / 122 2.7s Mutex parallel [ ] 67 0 0 67 / 122 2.8s Mutex parallel [ ] 70 0 0 70 / 122 3.1s Mutex parallel [ ] 74 0 0 74 / 122 3.2s Mutex parallel [ ] 77 0 0 77 / 122 3.4s Mutex parallel [ ] 80 0 0 80 / 122 3.5s Mutex parallel [ ] 83 0 0 83 / 122 3.7s Mutex parallel [ ] 85 0 0 85 / 122 3.8s Mutex parallel [ ] 92 0 0 92 / 122 3.9s Mutex parallel [ ] 97 0 0 97 / 122 4.0s Mutex parallel [ ] 100 0 0 100 / 122 4.3s Mutex parallel [ ] 102 0 0 102 / 122 4.4s Mutex parallel [ ] 103 0 0 103 / 122 4.6s Mutex parallel [ ] 106 0 0 106 / 122 4.7s Mutex parallel [ ] 111 0 0 111 / 122 5.0s Mutex parallel [ ] 116 0 0 116 / 122 5.1s Mutex parallel [ ] 120 0 0 120 / 122 5.3s Mutex parallel [✓] 122 0 0 122 / 122 5.3s Mutex parallel ================================================================================ success (ran 2 tests) random seed: 4006946550737582605 generated error fail pass / total time test name [ ] 0 0 0 0 / 100 0.0s Mutex sequential [✓] 100 0 0 100 / 100 0.0s Mutex sequential [ ] 0 0 0 0 / 100 0.0s Mutex parallel [ ] 2 0 0 2 / 100 0.0s Mutex parallel [ ] 4 0 0 4 / 100 0.2s Mutex parallel [ ] 8 0 0 8 / 100 0.3s Mutex parallel [ ] 11 0 0 11 / 100 0.6s Mutex parallel [ ] 15 0 0 15 / 100 0.7s Mutex parallel [ ] 17 0 0 17 / 100 0.8s Mutex parallel [ ] 19 0 0 19 / 100 1.0s Mutex parallel [ ] 22 0 0 22 / 100 1.1s Mutex parallel [ ] 24 0 0 24 / 100 1.3s Mutex parallel [ ] 27 0 0 27 / 100 1.5s Mutex parallel [ ] 28 0 0 28 / 100 1.6s Mutex parallel [ ] 32 0 0 32 / 100 1.8s Mutex parallel [ ] 35 0 0 35 / 100 1.9s Mutex parallel [ ] 39 0 0 39 / 100 2.0s Mutex parallel [ ] 45 0 0 45 / 100 2.1s Mutex parallel [ ] 49 0 0 49 / 100 2.2s Mutex parallel [ ] 54 0 0 54 / 100 2.3s Mutex parallel [ ] 58 0 0 58 / 100 2.4s Mutex parallel [ ] 64 0 0 64 / 100 2.5s Mutex parallel [ ] 69 0 0 69 / 100 2.7s Mutex parallel [ ] 73 0 0 73 / 100 2.8s Mutex parallel [ ] 74 0 0 74 / 100 3.1s Mutex parallel [ ] 78 0 0 78 / 100 3.3s Mutex parallel [ ] 79 0 0 79 / 100 3.6s Mutex parallel [ ] 83 0 0 83 / 100 3.8s Mutex parallel [ ] 90 0 0 90 / 100 3.9s Mutex parallel [ ] 96 0 0 96 / 100 4.1s Mutex parallel [ ] 99 0 0 99 / 100 4.3s Mutex parallel [✓] 100 0 0 100 / 100 4.3s Mutex parallel ================================================================================ success (ran 2 tests) random seed: 3317652583138951363 generated error fail pass / total time test name [ ] 0 0 0 0 / 68 0.0s Mutex sequential [✓] 68 0 0 68 / 68 0.0s Mutex sequential [ ] 0 0 0 0 / 68 0.0s Mutex parallel [ ] 3 0 0 3 / 68 0.1s Mutex parallel [ ] 6 0 0 6 / 68 0.4s Mutex parallel [ ] 9 0 0 9 / 68 0.5s Mutex parallel [ ] 14 0 0 14 / 68 0.6s Mutex parallel [ ] 16 0 0 16 / 68 0.7s Mutex parallel [ ] 20 0 0 20 / 68 0.9s Mutex parallel [ ] 27 0 0 27 / 68 1.0s Mutex parallel [ ] 29 0 0 29 / 68 1.2s Mutex parallel [ ] 34 0 0 34 / 68 1.3s Mutex parallel [ ] 35 0 0 35 / 68 1.5s Mutex parallel [ ] 41 0 0 41 / 68 1.6s Mutex parallel [ ] 43 0 0 43 / 68 1.7s Mutex parallel [ ] 50 0 0 50 / 68 2.1s Mutex parallel [ ] 52 0 0 52 / 68 2.2s Mutex parallel [ ] 54 0 0 54 / 68 2.5s Mutex parallel [ ] 59 0 0 59 / 68 2.7s Mutex parallel [ ] 64 0 0 64 / 68 2.8s Mutex parallel [ ] 66 0 0 66 / 68 3.0s Mutex parallel [✓] 68 0 0 68 / 68 3.0s Mutex parallel ================================================================================ success (ran 2 tests) random seed: 3034972145697569873 generated error fail pass / total time test name [ ] 0 0 0 0 / 39 0.0s Mutex sequential [✓] 39 0 0 39 / 39 0.0s Mutex sequential [ ] 0 0 0 0 / 39 0.0s Mutex parallel [ ] 6 0 0 6 / 39 0.2s Mutex parallel [ ] 13 0 0 13 / 39 0.3s Mutex parallel [ ] 18 0 0 18 / 39 0.5s Mutex parallel [ ] 25 0 0 25 / 39 0.6s Mutex parallel [ ] 31 0 0 31 / 39 0.7s Mutex parallel [ ] 37 0 0 37 / 39 0.9s Mutex parallel [ ] 38 0 0 38 / 39 1.0s Mutex parallel [✓] 39 0 0 39 / 39 1.0s Mutex parallel ================================================================================ success (ran 2 tests) random seed: 4123505858463515701 generated error fail pass / total time test name [ ] 0 0 0 0 / 32 0.0s Mutex sequential [✓] 32 0 0 32 / 32 0.0s Mutex sequential [ ] 0 0 0 0 / 32 0.0s Mutex parallel [ ] 1 0 0 1 / 32 0.3s Mutex parallel [ ] 6 0 0 6 / 32 0.4s Mutex parallel [ ] 11 0 0 11 / 32 0.6s Mutex parallel [ ] 17 0 0 17 / 32 0.7s Mutex parallel [ ] 18 0 0 18 / 32 0.9s Mutex parallel [ ] 22 0 0 22 / 32 1.0s Mutex parallel [ ] 27 0 0 27 / 32 1.1s Mutex parallel [ ] 30 0 0 30 / 32 1.3s Mutex parallel [✓] 32 0 0 32 / 32 1.4s Mutex parallel ================================================================================ success (ran 2 tests) random seed: 3599598485019062462 generated error fail pass / total time test name [ ] 0 0 0 0 / 32 0.0s Mutex sequential [✓] 32 0 0 32 / 32 0.0s Mutex sequential [ ] 0 0 0 0 / 32 0.0s Mutex parallel [ ] 3 0 0 3 / 32 0.1s Mutex parallel [ ] 7 0 0 7 / 32 0.2s Mutex parallel [ ] 9 0 0 9 / 32 0.4s Mutex parallel [ ] 14 0 0 14 / 32 0.5s Mutex parallel [ ] 18 0 0 18 / 32 0.6s Mutex parallel [ ] 20 0 0 20 / 32 0.9s Mutex parallel [ ] 24 0 0 24 / 32 1.0s Mutex parallel [ ] 25 0 0 25 / 32 1.1s Mutex parallel [ ] 29 0 0 29 / 32 1.4s Mutex parallel [✓] 32 0 0 32 / 32 1.5s Mutex parallel ================================================================================ success (ran 2 tests) (cd _build/default/test && ./test_mpscq.exe) random seed: 3936099485973762766 generated error fail pass / total time test name [ ] 0 0 0 0 / 32 0.0s Mpscq sequential [ ] 0 0 0 0 / 32 0.0s Mpscq sequential (generating) [✓] 32 0 0 32 / 32 0.0s Mpscq sequential [ ] 0 0 0 0 / 32 0.0s Mpscq parallel [ ] 1 0 0 1 / 32 1.3s Mpscq parallel [ ] 2 0 0 2 / 32 1.9s Mpscq parallel [ ] 3 0 0 3 / 32 3.2s Mpscq parallel [ ] 4 0 0 4 / 32 4.3s Mpscq parallel [ ] 5 0 0 5 / 32 5.6s Mpscq parallel [ ] 6 0 0 6 / 32 6.7s Mpscq parallel [ ] 7 0 0 7 / 32 7.7s Mpscq parallel [ ] 8 0 0 8 / 32 8.7s Mpscq parallel [ ] 9 0 0 9 / 32 9.9s Mpscq parallel [ ] 10 0 0 10 / 32 10.9s Mpscq parallel [ ] 11 0 0 11 / 32 11.9s Mpscq parallel [ ] 12 0 0 12 / 32 12.8s Mpscq parallel [ ] 13 0 0 13 / 32 13.8s Mpscq parallel [ ] 14 0 0 14 / 32 14.6s Mpscq parallel [ ] 15 0 0 15 / 32 15.2s Mpscq parallel [ ] 16 0 0 16 / 32 15.5s Mpscq parallel [ ] 17 0 0 17 / 32 15.9s Mpscq parallel [ ] 18 0 0 18 / 32 16.5s Mpscq parallel [ ] 19 0 0 19 / 32 16.9s Mpscq parallel [ ] 20 0 0 20 / 32 17.3s Mpscq parallel [ ] 21 0 0 21 / 32 17.8s Mpscq parallel [ ] 22 0 0 22 / 32 18.2s Mpscq parallel [ ] 23 0 0 23 / 32 18.6s Mpscq parallel [ ] 24 0 0 24 / 32 18.8s Mpscq parallel [ ] 25 0 0 25 / 32 19.1s Mpscq parallel [ ] 26 0 0 26 / 32 19.2s Mpscq parallel [ ] 27 0 0 27 / 32 19.4s Mpscq parallel [ ] 28 0 0 28 / 32 19.6s Mpscq parallel [ ] 29 0 0 29 / 32 19.9s Mpscq parallel [ ] 30 0 0 30 / 32 20.1s Mpscq parallel [ ] 31 0 0 31 / 32 20.4s Mpscq parallel [ ] 32 0 0 32 / 32 20.7s Mpscq parallel [✓] 32 0 0 32 / 32 20.7s Mpscq parallel ================================================================================ success (ran 2 tests) random seed: 3373732430301052965 generated error fail pass / total time test name [ ] 0 0 0 0 / 60 0.0s Mpscq sequential [✓] 60 0 0 60 / 60 0.0s Mpscq sequential [ ] 0 0 0 0 / 60 0.0s Mpscq parallel [ ] 1 0 0 1 / 60 0.3s Mpscq parallel [ ] 3 0 0 3 / 60 0.6s Mpscq parallel [ ] 5 0 0 5 / 60 0.8s Mpscq parallel [ ] 6 0 0 6 / 60 1.0s Mpscq parallel [ ] 7 0 0 7 / 60 1.3s Mpscq parallel [ ] 8 0 0 8 / 60 1.5s Mpscq parallel [ ] 9 0 0 9 / 60 1.7s Mpscq parallel [ ] 10 0 0 10 / 60 1.9s Mpscq parallel [ ] 11 0 0 11 / 60 2.1s Mpscq parallel [ ] 13 0 0 13 / 60 2.3s Mpscq parallel [ ] 14 0 0 14 / 60 2.5s Mpscq parallel [ ] 15 0 0 15 / 60 2.7s Mpscq parallel [ ] 16 0 0 16 / 60 2.9s Mpscq parallel [ ] 17 0 0 17 / 60 3.1s Mpscq parallel [ ] 19 0 0 19 / 60 3.3s Mpscq parallel [ ] 20 0 0 20 / 60 3.4s Mpscq parallel [ ] 22 0 0 22 / 60 3.5s Mpscq parallel [ ] 23 0 0 23 / 60 3.8s Mpscq parallel [ ] 24 0 0 24 / 60 4.0s Mpscq parallel [ ] 26 0 0 26 / 60 4.2s Mpscq parallel [ ] 27 0 0 27 / 60 4.3s Mpscq parallel [ ] 28 0 0 28 / 60 4.4s Mpscq parallel [ ] 29 0 0 29 / 60 4.5s Mpscq parallel [ ] 30 0 0 30 / 60 5.0s Mpscq parallel [ ] 32 0 0 32 / 60 5.3s Mpscq parallel [ ] 34 0 0 34 / 60 5.4s Mpscq parallel [ ] 35 0 0 35 / 60 5.6s Mpscq parallel [ ] 36 0 0 36 / 60 5.7s Mpscq parallel [ ] 37 0 0 37 / 60 5.9s Mpscq parallel [ ] 39 0 0 39 / 60 6.1s Mpscq parallel [ ] 40 0 0 40 / 60 6.2s Mpscq parallel [ ] 42 0 0 42 / 60 6.4s Mpscq parallel [ ] 43 0 0 43 / 60 6.5s Mpscq parallel [ ] 45 0 0 45 / 60 6.7s Mpscq parallel [ ] 46 0 0 46 / 60 7.1s Mpscq parallel [ ] 49 0 0 49 / 60 7.2s Mpscq parallel [ ] 51 0 0 51 / 60 7.4s Mpscq parallel [ ] 52 0 0 52 / 60 7.6s Mpscq parallel [ ] 53 0 0 53 / 60 7.8s Mpscq parallel [ ] 55 0 0 55 / 60 8.0s Mpscq parallel [ ] 56 0 0 56 / 60 8.1s Mpscq parallel [ ] 58 0 0 58 / 60 8.2s Mpscq parallel [ ] 60 0 0 60 / 60 8.4s Mpscq parallel [✓] 60 0 0 60 / 60 8.4s Mpscq parallel ================================================================================ success (ran 2 tests) random seed: 4153327882384766379 generated error fail pass / total time test name [ ] 0 0 0 0 / 97 0.0s Mpscq sequential [✓] 97 0 0 97 / 97 0.0s Mpscq sequential [ ] 0 0 0 0 / 97 0.0s Mpscq parallel [ ] 1 0 0 1 / 97 0.2s Mpscq parallel [ ] 4 0 0 4 / 97 0.5s Mpscq parallel [ ] 6 0 0 6 / 97 0.6s Mpscq parallel [ ] 10 0 0 10 / 97 0.7s Mpscq parallel [ ] 13 0 0 13 / 97 0.9s Mpscq parallel [ ] 17 0 0 17 / 97 1.8s Mpscq parallel [ ] 19 0 0 19 / 97 1.9s Mpscq parallel [ ] 21 0 0 21 / 97 2.0s Mpscq parallel [ ] 23 0 0 23 / 97 2.2s Mpscq parallel [ ] 25 0 0 25 / 97 2.3s Mpscq parallel [ ] 26 0 0 26 / 97 2.4s Mpscq parallel [ ] 28 0 0 28 / 97 2.6s Mpscq parallel [ ] 30 0 0 30 / 97 2.7s Mpscq parallel [ ] 31 0 0 31 / 97 2.8s Mpscq parallel [ ] 33 0 0 33 / 97 3.0s Mpscq parallel [ ] 35 0 0 35 / 97 3.6s Mpscq parallel [ ] 37 0 0 37 / 97 3.7s Mpscq parallel [ ] 40 0 0 40 / 97 3.8s Mpscq parallel [ ] 42 0 0 42 / 97 3.9s Mpscq parallel [ ] 43 0 0 43 / 97 4.1s Mpscq parallel [ ] 45 0 0 45 / 97 4.3s Mpscq parallel [ ] 49 0 0 49 / 97 4.5s Mpscq parallel [ ] 51 0 0 51 / 97 4.7s Mpscq parallel [ ] 55 0 0 55 / 97 4.8s Mpscq parallel [ ] 58 0 0 58 / 97 4.9s Mpscq parallel [ ] 61 0 0 61 / 97 5.1s Mpscq parallel [ ] 63 0 0 63 / 97 5.2s Mpscq parallel [ ] 66 0 0 66 / 97 5.3s Mpscq parallel [ ] 68 0 0 68 / 97 5.6s Mpscq parallel [ ] 70 0 0 70 / 97 6.3s Mpscq parallel [ ] 73 0 0 73 / 97 6.4s Mpscq parallel [ ] 76 0 0 76 / 97 6.5s Mpscq parallel [ ] 77 0 0 77 / 97 6.7s Mpscq parallel [ ] 79 0 0 79 / 97 6.9s Mpscq parallel [ ] 81 0 0 81 / 97 7.2s Mpscq parallel [ ] 82 0 0 82 / 97 7.5s Mpscq parallel [ ] 83 0 0 83 / 97 7.6s Mpscq parallel [ ] 86 0 0 86 / 97 7.7s Mpscq parallel [ ] 89 0 0 89 / 97 7.8s Mpscq parallel [ ] 92 0 0 92 / 97 8.0s Mpscq parallel [ ] 94 0 0 94 / 97 8.1s Mpscq parallel [ ] 96 0 0 96 / 97 8.3s Mpscq parallel [ ] 97 0 0 97 / 97 8.4s Mpscq parallel [✓] 97 0 0 97 / 97 8.4s Mpscq parallel ================================================================================ success (ran 2 tests) random seed: 4354340753782395813 generated error fail pass / total time test name [ ] 0 0 0 0 / 113 0.0s Mpscq sequential [✓] 113 0 0 113 / 113 0.0s Mpscq sequential [ ] 0 0 0 0 / 113 0.0s Mpscq parallel [ ] 2 0 0 2 / 113 0.1s Mpscq parallel [ ] 3 0 0 3 / 113 0.2s Mpscq parallel [ ] 4 0 0 4 / 113 0.6s Mpscq parallel [ ] 6 0 0 6 / 113 0.8s Mpscq parallel [ ] 7 0 0 7 / 113 1.0s Mpscq parallel [ ] 9 0 0 9 / 113 1.3s Mpscq parallel [ ] 11 0 0 11 / 113 1.5s Mpscq parallel [ ] 14 0 0 14 / 113 1.7s Mpscq parallel [ ] 17 0 0 17 / 113 1.8s Mpscq parallel [ ] 18 0 0 18 / 113 2.0s Mpscq parallel [ ] 20 0 0 20 / 113 2.2s Mpscq parallel [ ] 22 0 0 22 / 113 2.3s Mpscq parallel [ ] 23 0 0 23 / 113 2.8s Mpscq parallel [ ] 25 0 0 25 / 113 3.0s Mpscq parallel [ ] 27 0 0 27 / 113 3.1s Mpscq parallel [ ] 28 0 0 28 / 113 3.6s Mpscq parallel [ ] 31 0 0 31 / 113 3.9s Mpscq parallel [ ] 34 0 0 34 / 113 4.3s Mpscq parallel [ ] 38 0 0 38 / 113 4.9s Mpscq parallel [ ] 40 0 0 40 / 113 5.0s Mpscq parallel [ ] 41 0 0 41 / 113 5.4s Mpscq parallel [ ] 43 0 0 43 / 113 5.5s Mpscq parallel [ ] 44 0 0 44 / 113 5.7s Mpscq parallel [ ] 46 0 0 46 / 113 5.9s Mpscq parallel [ ] 48 0 0 48 / 113 6.0s Mpscq parallel [ ] 52 0 0 52 / 113 6.2s Mpscq parallel [ ] 54 0 0 54 / 113 6.3s Mpscq parallel [ ] 56 0 0 56 / 113 6.4s Mpscq parallel [ ] 58 0 0 58 / 113 6.6s Mpscq parallel [ ] 61 0 0 61 / 113 6.7s Mpscq parallel [ ] 65 0 0 65 / 113 6.9s Mpscq parallel [ ] 67 0 0 67 / 113 7.0s Mpscq parallel [ ] 68 0 0 68 / 113 7.1s Mpscq parallel [ ] 71 0 0 71 / 113 7.3s Mpscq parallel [ ] 72 0 0 72 / 113 7.5s Mpscq parallel [ ] 76 0 0 76 / 113 7.7s Mpscq parallel [ ] 77 0 0 77 / 113 7.8s Mpscq parallel [ ] 79 0 0 79 / 113 8.4s Mpscq parallel [ ] 82 0 0 82 / 113 8.6s Mpscq parallel [ ] 85 0 0 85 / 113 8.7s Mpscq parallel [ ] 88 0 0 88 / 113 8.9s Mpscq parallel [ ] 91 0 0 91 / 113 9.1s Mpscq parallel [ ] 93 0 0 93 / 113 9.5s Mpscq parallel [ ] 96 0 0 96 / 113 9.6s Mpscq parallel [ ] 98 0 0 98 / 113 9.9s Mpscq parallel [ ] 100 0 0 100 / 113 10.0s Mpscq parallel [ ] 103 0 0 103 / 113 10.3s Mpscq parallel [ ] 104 0 0 104 / 113 10.4s Mpscq parallel [ ] 106 0 0 106 / 113 10.5s Mpscq parallel [ ] 109 0 0 109 / 113 10.7s Mpscq parallel [ ] 113 0 0 113 / 113 10.8s Mpscq parallel [✓] 113 0 0 113 / 113 10.8s Mpscq parallel ================================================================================ success (ran 2 tests) random seed: 3334134459188172073 generated error fail pass / total time test name [ ] 0 0 0 0 / 72 0.0s Mpscq sequential [✓] 72 0 0 72 / 72 0.0s Mpscq sequential [ ] 0 0 0 0 / 72 0.0s Mpscq parallel [ ] 3 0 0 3 / 72 0.3s Mpscq parallel [ ] 6 0 0 6 / 72 0.5s Mpscq parallel [ ] 10 0 0 10 / 72 0.6s Mpscq parallel [ ] 14 0 0 14 / 72 0.8s Mpscq parallel [ ] 17 0 0 17 / 72 0.9s Mpscq parallel [ ] 19 0 0 19 / 72 1.1s Mpscq parallel [ ] 27 0 0 27 / 72 1.3s Mpscq parallel [ ] 30 0 0 30 / 72 1.4s Mpscq parallel [ ] 34 0 0 34 / 72 1.5s Mpscq parallel [ ] 37 0 0 37 / 72 1.7s Mpscq parallel [ ] 40 0 0 40 / 72 1.9s Mpscq parallel [ ] 43 0 0 43 / 72 2.0s Mpscq parallel [ ] 46 0 0 46 / 72 2.3s Mpscq parallel [ ] 49 0 0 49 / 72 2.9s Mpscq parallel [ ] 51 0 0 51 / 72 3.0s Mpscq parallel [ ] 55 0 0 55 / 72 3.2s Mpscq parallel [ ] 61 0 0 61 / 72 3.5s Mpscq parallel [ ] 66 0 0 66 / 72 3.6s Mpscq parallel [ ] 70 0 0 70 / 72 3.9s Mpscq parallel [✓] 72 0 0 72 / 72 3.9s Mpscq parallel ================================================================================ success (ran 2 tests) random seed: 2607414034483636109 generated error fail pass / total time test name [ ] 0 0 0 0 / 55 0.0s Mpscq sequential [✓] 55 0 0 55 / 55 0.0s Mpscq sequential [ ] 0 0 0 0 / 55 0.0s Mpscq parallel [ ] 2 0 0 2 / 55 0.4s Mpscq parallel [ ] 6 0 0 6 / 55 0.6s Mpscq parallel [ ] 8 0 0 8 / 55 0.8s Mpscq parallel [ ] 12 0 0 12 / 55 0.9s Mpscq parallel [ ] 17 0 0 17 / 55 1.0s Mpscq parallel [ ] 21 0 0 21 / 55 1.3s Mpscq parallel [ ] 25 0 0 25 / 55 1.6s Mpscq parallel [ ] 29 0 0 29 / 55 1.9s Mpscq parallel [ ] 33 0 0 33 / 55 2.0s Mpscq parallel [ ] 40 0 0 40 / 55 2.1s Mpscq parallel [ ] 41 0 0 41 / 55 2.3s Mpscq parallel [ ] 46 0 0 46 / 55 2.5s Mpscq parallel [ ] 51 0 0 51 / 55 2.6s Mpscq parallel [✓] 55 0 0 55 / 55 2.6s Mpscq parallel ================================================================================ success (ran 2 tests) random seed: 2497589267656569727 generated error fail pass / total time test name [ ] 0 0 0 0 / 40 0.0s Mpscq sequential [✓] 40 0 0 40 / 40 0.0s Mpscq sequential [ ] 0 0 0 0 / 40 0.0s Mpscq parallel [ ] 4 0 0 4 / 40 0.1s Mpscq parallel [ ] 9 0 0 9 / 40 0.2s Mpscq parallel [ ] 14 0 0 14 / 40 0.3s Mpscq parallel [ ] 19 0 0 19 / 40 0.4s Mpscq parallel [ ] 24 0 0 24 / 40 0.6s Mpscq parallel [ ] 30 0 0 30 / 40 0.7s Mpscq parallel [ ] 31 0 0 31 / 40 0.9s Mpscq parallel [ ] 36 0 0 36 / 40 1.0s Mpscq parallel [ ] 37 0 0 37 / 40 1.1s Mpscq parallel [✓] 40 0 0 40 / 40 1.2s Mpscq parallel ================================================================================ success (ran 2 tests) random seed: 415271929567518665 generated error fail pass / total time test name [ ] 0 0 0 0 / 33 0.0s Mpscq sequential [✓] 33 0 0 33 / 33 0.0s Mpscq sequential [ ] 0 0 0 0 / 33 0.0s Mpscq parallel [ ] 1 0 0 1 / 33 0.0s Mpscq parallel [ ] 6 0 0 6 / 33 0.2s Mpscq parallel [ ] 10 0 0 10 / 33 0.3s Mpscq parallel [ ] 11 0 0 11 / 33 0.6s Mpscq parallel [ ] 14 0 0 14 / 33 1.1s Mpscq parallel [ ] 16 0 0 16 / 33 1.2s Mpscq parallel [ ] 17 0 0 17 / 33 1.3s Mpscq parallel [ ] 23 0 0 23 / 33 1.5s Mpscq parallel [ ] 26 0 0 26 / 33 1.7s Mpscq parallel [ ] 29 0 0 29 / 33 1.8s Mpscq parallel [ ] 32 0 0 32 / 33 2.2s Mpscq parallel [ ] 33 0 0 33 / 33 2.3s Mpscq parallel [✓] 33 0 0 33 / 33 2.3s Mpscq parallel ================================================================================ success (ran 2 tests) random seed: 1019200398237938548 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 [ ] 0 0 0 0 / 32 0.0s Mpscq parallel [ ] 3 0 0 3 / 32 0.1s Mpscq parallel [ ] 4 0 0 4 / 32 0.2s Mpscq parallel [ ] 7 0 0 7 / 32 0.4s Mpscq parallel [ ] 11 0 0 11 / 32 0.5s Mpscq parallel [ ] 12 0 0 12 / 32 0.9s Mpscq parallel [ ] 13 0 0 13 / 32 1.0s Mpscq parallel [ ] 15 0 0 15 / 32 1.1s Mpscq parallel [ ] 19 0 0 19 / 32 1.3s Mpscq parallel [ ] 22 0 0 22 / 32 1.4s Mpscq parallel [ ] 26 0 0 26 / 32 1.5s Mpscq parallel [ ] 27 0 0 27 / 32 1.6s Mpscq parallel [ ] 30 0 0 30 / 32 1.7s Mpscq parallel [ ] 31 0 0 31 / 32 2.1s Mpscq parallel [✓] 32 0 0 32 / 32 2.2s Mpscq parallel ================================================================================ success (ran 2 tests) (cd _build/default/bench && ./main.exe -brief Picos_htbl) Picos_htbl: operations over time/1 worker, 10% reads: 8.54 M/s operations over time/1 worker, 50% reads: 12.47 M/s operations over time/1 worker, 90% reads: 14.65 M/s operations over time/2 workers, 10% reads: 13.39 M/s operations over time/2 workers, 50% reads: 19.81 M/s operations over time/2 workers, 90% reads: 26.74 M/s operations over time/4 workers, 10% reads: 25.59 M/s operations over time/4 workers, 50% reads: 31.08 M/s operations over time/4 workers, 90% reads: 48.15 M/s operations over time/8 workers, 10% reads: 30.86 M/s operations over time/8 workers, 50% reads: 37.68 M/s operations over time/8 workers, 90% reads: 85.18 M/s time per operation/1 worker, 10% reads: 117.12 ns time per operation/1 worker, 50% reads: 80.18 ns time per operation/1 worker, 90% reads: 68.25 ns time per operation/2 workers, 10% reads: 149.36 ns time per operation/2 workers, 50% reads: 100.96 ns time per operation/2 workers, 90% reads: 74.78 ns time per operation/4 workers, 10% reads: 156.33 ns time per operation/4 workers, 50% reads: 128.72 ns time per operation/4 workers, 90% reads: 83.07 ns time per operation/8 workers, 10% reads: 259.25 ns time per operation/8 workers, 50% reads: 212.31 ns time per operation/8 workers, 90% reads: 93.92 ns (cd _build/default/test && ./test_mpmcq.exe) random seed: 1731794501679591145 generated error fail pass / total time test name [ ] 0 0 0 0 / 32 0.0s Mpmcq sequential [ ] 0 0 0 0 / 32 0.0s Mpmcq sequential (generating) [✓] 32 0 0 32 / 32 0.0s Mpmcq sequential [ ] 0 0 0 0 / 32 0.0s Mpmcq parallel [ ] 1 0 0 1 / 32 0.1s Mpmcq parallel [ ] 2 0 0 2 / 32 0.5s Mpmcq parallel [ ] 3 0 0 3 / 32 1.2s Mpmcq parallel [ ] 4 0 0 4 / 32 1.6s Mpmcq parallel [ ] 5 0 0 5 / 32 2.2s Mpmcq parallel [ ] 6 0 0 6 / 32 2.8s Mpmcq parallel [ ] 7 0 0 7 / 32 3.8s Mpmcq parallel [ ] 8 0 0 8 / 32 4.5s Mpmcq parallel [ ] 9 0 0 9 / 32 5.4s Mpmcq parallel [ ] 10 0 0 10 / 32 6.1s Mpmcq parallel [ ] 11 0 0 11 / 32 6.8s Mpmcq parallel [ ] 12 0 0 12 / 32 7.4s Mpmcq parallel [ ] 13 0 0 13 / 32 8.2s Mpmcq parallel [ ] 14 0 0 14 / 32 8.9s Mpmcq parallel [ ] 15 0 0 15 / 32 9.7s Mpmcq parallel [ ] 16 0 0 16 / 32 10.9s Mpmcq parallel [ ] 17 0 0 17 / 32 11.6s Mpmcq parallel [ ] 18 0 0 18 / 32 12.2s Mpmcq parallel [ ] 19 0 0 19 / 32 12.7s Mpmcq parallel [ ] 20 0 0 20 / 32 13.3s Mpmcq parallel [ ] 21 0 0 21 / 32 13.9s Mpmcq parallel [ ] 22 0 0 22 / 32 14.3s Mpmcq parallel [ ] 23 0 0 23 / 32 14.8s Mpmcq parallel [ ] 24 0 0 24 / 32 15.2s Mpmcq parallel [ ] 25 0 0 25 / 32 15.5s Mpmcq parallel [ ] 26 0 0 26 / 32 15.8s Mpmcq parallel [ ] 27 0 0 27 / 32 16.1s Mpmcq parallel [ ] 28 0 0 28 / 32 16.5s Mpmcq parallel [ ] 29 0 0 29 / 32 16.9s Mpmcq parallel [ ] 30 0 0 30 / 32 17.2s Mpmcq parallel [ ] 31 0 0 31 / 32 17.5s Mpmcq parallel [ ] 32 0 0 32 / 32 17.7s Mpmcq parallel [✓] 32 0 0 32 / 32 17.7s Mpmcq parallel ================================================================================ success (ran 2 tests) random seed: 4369556496512372070 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 parallel [ ] 1 0 0 1 / 64 0.3s Mpmcq parallel [ ] 2 0 0 2 / 64 0.6s Mpmcq parallel [ ] 3 0 0 3 / 64 0.8s Mpmcq parallel [ ] 4 0 0 4 / 64 1.0s Mpmcq parallel [ ] 5 0 0 5 / 64 1.2s Mpmcq parallel [ ] 6 0 0 6 / 64 1.4s Mpmcq parallel [ ] 7 0 0 7 / 64 1.9s Mpmcq parallel [ ] 8 0 0 8 / 64 2.2s Mpmcq parallel [ ] 9 0 0 9 / 64 2.4s Mpmcq parallel [ ] 10 0 0 10 / 64 2.7s Mpmcq parallel [ ] 11 0 0 11 / 64 2.9s Mpmcq parallel [ ] 12 0 0 12 / 64 3.0s Mpmcq parallel [ ] 14 0 0 14 / 64 3.3s Mpmcq parallel [ ] 16 0 0 16 / 64 3.4s Mpmcq parallel [ ] 17 0 0 17 / 64 3.8s Mpmcq parallel [ ] 18 0 0 18 / 64 4.0s Mpmcq parallel [ ] 19 0 0 19 / 64 4.2s Mpmcq parallel [ ] 20 0 0 20 / 64 4.3s Mpmcq parallel [ ] 21 0 0 21 / 64 4.5s Mpmcq parallel [ ] 23 0 0 23 / 64 4.6s Mpmcq parallel [ ] 25 0 0 25 / 64 4.8s Mpmcq parallel [ ] 26 0 0 26 / 64 4.9s Mpmcq parallel [ ] 27 0 0 27 / 64 5.1s Mpmcq parallel [ ] 28 0 0 28 / 64 5.3s Mpmcq parallel [ ] 30 0 0 30 / 64 5.6s Mpmcq parallel [ ] 32 0 0 32 / 64 5.9s Mpmcq parallel [ ] 33 0 0 33 / 64 6.1s Mpmcq parallel [ ] 34 0 0 34 / 64 6.4s Mpmcq parallel [ ] 35 0 0 35 / 64 6.6s Mpmcq parallel [ ] 37 0 0 37 / 64 6.8s Mpmcq parallel [ ] 39 0 0 39 / 64 6.9s Mpmcq parallel [ ] 41 0 0 41 / 64 7.0s Mpmcq parallel [ ] 44 0 0 44 / 64 7.2s Mpmcq parallel [ ] 46 0 0 46 / 64 7.4s Mpmcq parallel [ ] 48 0 0 48 / 64 7.5s Mpmcq parallel [ ] 49 0 0 49 / 64 7.6s Mpmcq parallel [ ] 50 0 0 50 / 64 7.7s Mpmcq parallel [ ] 52 0 0 52 / 64 7.9s Mpmcq parallel [ ] 54 0 0 54 / 64 8.1s Mpmcq parallel [ ] 56 0 0 56 / 64 8.3s Mpmcq parallel [ ] 59 0 0 59 / 64 8.4s Mpmcq parallel [ ] 61 0 0 61 / 64 8.6s Mpmcq parallel [ ] 63 0 0 63 / 64 9.1s Mpmcq parallel [✓] 64 0 0 64 / 64 9.2s Mpmcq parallel ================================================================================ success (ran 2 tests) random seed: 1483337365089845573 generated error fail pass / total time test name [ ] 0 0 0 0 / 117 0.0s Mpmcq sequential [✓] 117 0 0 117 / 117 0.0s Mpmcq sequential [ ] 0 0 0 0 / 117 0.0s Mpmcq parallel [ ] 1 0 0 1 / 117 0.1s Mpmcq parallel [ ] 3 0 0 3 / 117 0.3s Mpmcq parallel [ ] 4 0 0 4 / 117 0.7s Mpmcq parallel [ ] 7 0 0 7 / 117 0.8s Mpmcq parallel [ ] 10 0 0 10 / 117 1.0s Mpmcq parallel [ ] 12 0 0 12 / 117 1.2s Mpmcq parallel [ ] 15 0 0 15 / 117 1.3s Mpmcq parallel [ ] 17 0 0 17 / 117 1.5s Mpmcq parallel [ ] 19 0 0 19 / 117 1.8s Mpmcq parallel [ ] 21 0 0 21 / 117 1.9s Mpmcq parallel [ ] 23 0 0 23 / 117 2.4s Mpmcq parallel [ ] 26 0 0 26 / 117 2.9s Mpmcq parallel [ ] 28 0 0 28 / 117 3.0s Mpmcq parallel [ ] 32 0 0 32 / 117 3.1s Mpmcq parallel [ ] 36 0 0 36 / 117 3.4s Mpmcq parallel [ ] 39 0 0 39 / 117 3.5s Mpmcq parallel [ ] 42 0 0 42 / 117 3.6s Mpmcq parallel [ ] 43 0 0 43 / 117 3.8s Mpmcq parallel [ ] 45 0 0 45 / 117 4.1s Mpmcq parallel [ ] 47 0 0 47 / 117 4.2s Mpmcq parallel [ ] 49 0 0 49 / 117 4.4s Mpmcq parallel [ ] 51 0 0 51 / 117 4.5s Mpmcq parallel [ ] 53 0 0 53 / 117 4.7s Mpmcq parallel [ ] 56 0 0 56 / 117 4.8s Mpmcq parallel [ ] 60 0 0 60 / 117 5.0s Mpmcq parallel [ ] 64 0 0 64 / 117 5.1s Mpmcq parallel [ ] 66 0 0 66 / 117 5.2s Mpmcq parallel [ ] 67 0 0 67 / 117 5.5s Mpmcq parallel [ ] 69 0 0 69 / 117 5.6s Mpmcq parallel [ ] 73 0 0 73 / 117 5.7s Mpmcq parallel [ ] 76 0 0 76 / 117 5.9s Mpmcq parallel [ ] 79 0 0 79 / 117 6.1s Mpmcq parallel [ ] 80 0 0 80 / 117 6.2s Mpmcq parallel [ ] 83 0 0 83 / 117 6.3s Mpmcq parallel [ ] 85 0 0 85 / 117 6.5s Mpmcq parallel [ ] 86 0 0 86 / 117 6.7s Mpmcq parallel [ ] 89 0 0 89 / 117 6.9s Mpmcq parallel [ ] 92 0 0 92 / 117 7.0s Mpmcq parallel [ ] 93 0 0 93 / 117 7.3s Mpmcq parallel [ ] 97 0 0 97 / 117 7.4s Mpmcq parallel [ ] 99 0 0 99 / 117 7.6s Mpmcq parallel [ ] 101 0 0 101 / 117 7.8s Mpmcq parallel [ ] 105 0 0 105 / 117 7.9s Mpmcq parallel [ ] 106 0 0 106 / 117 8.0s Mpmcq parallel [ ] 108 0 0 108 / 117 8.1s Mpmcq parallel [ ] 111 0 0 111 / 117 8.3s Mpmcq parallel [ ] 113 0 0 113 / 117 8.6s Mpmcq parallel [ ] 115 0 0 115 / 117 8.7s Mpmcq parallel [✓] 117 0 0 117 / 117 8.7s Mpmcq parallel ================================================================================ success (ran 2 tests) random seed: 3559645492220020478 generated error fail pass / total time test name [ ] 0 0 0 0 / 145 0.0s Mpmcq sequential [✓] 145 0 0 145 / 145 0.0s Mpmcq sequential [ ] 0 0 0 0 / 145 0.0s Mpmcq parallel [ ] 2 0 0 2 / 145 0.1s Mpmcq parallel [ ] 5 0 0 5 / 145 0.6s Mpmcq parallel [ ] 7 0 0 7 / 145 0.7s Mpmcq parallel [ ] 8 0 0 8 / 145 1.1s Mpmcq parallel [ ] 12 0 0 12 / 145 1.3s Mpmcq parallel [ ] 13 0 0 13 / 145 1.6s Mpmcq parallel [ ] 17 0 0 17 / 145 1.8s Mpmcq parallel [ ] 22 0 0 22 / 145 2.1s Mpmcq parallel [ ] 25 0 0 25 / 145 2.3s Mpmcq parallel [ ] 26 0 0 26 / 145 2.9s Mpmcq parallel [ ] 28 0 0 28 / 145 3.0s Mpmcq parallel [ ] 31 0 0 31 / 145 3.2s Mpmcq parallel [ ] 33 0 0 33 / 145 3.3s Mpmcq parallel [ ] 36 0 0 36 / 145 3.6s Mpmcq parallel [ ] 38 0 0 38 / 145 4.0s Mpmcq parallel [ ] 41 0 0 41 / 145 4.1s Mpmcq parallel [ ] 43 0 0 43 / 145 4.3s Mpmcq parallel [ ] 46 0 0 46 / 145 4.4s Mpmcq parallel [ ] 49 0 0 49 / 145 4.5s Mpmcq parallel [ ] 50 0 0 50 / 145 4.7s Mpmcq parallel [ ] 52 0 0 52 / 145 5.1s Mpmcq parallel [ ] 57 0 0 57 / 145 5.2s Mpmcq parallel [ ] 61 0 0 61 / 145 5.3s Mpmcq parallel [ ] 62 0 0 62 / 145 5.7s Mpmcq parallel [ ] 65 0 0 65 / 145 5.8s Mpmcq parallel [ ] 66 0 0 66 / 145 6.3s Mpmcq parallel [ ] 69 0 0 69 / 145 6.5s Mpmcq parallel [ ] 70 0 0 70 / 145 6.6s Mpmcq parallel [ ] 74 0 0 74 / 145 6.8s Mpmcq parallel [ ] 78 0 0 78 / 145 6.9s Mpmcq parallel [ ] 84 0 0 84 / 145 7.1s Mpmcq parallel [ ] 89 0 0 89 / 145 7.2s Mpmcq parallel [ ] 94 0 0 94 / 145 7.3s Mpmcq parallel [ ] 96 0 0 96 / 145 7.7s Mpmcq parallel [ ] 99 0 0 99 / 145 8.0s Mpmcq parallel [ ] 103 0 0 103 / 145 8.1s Mpmcq parallel [ ] 106 0 0 106 / 145 8.3s Mpmcq parallel [ ] 110 0 0 110 / 145 8.5s Mpmcq parallel [ ] 113 0 0 113 / 145 8.9s Mpmcq parallel [ ] 117 0 0 117 / 145 9.0s Mpmcq parallel [ ] 123 0 0 123 / 145 9.2s Mpmcq parallel [ ] 127 0 0 127 / 145 9.3s Mpmcq parallel [ ] 131 0 0 131 / 145 9.4s Mpmcq parallel [ ] 132 0 0 132 / 145 9.6s Mpmcq parallel [ ] 135 0 0 135 / 145 9.7s Mpmcq parallel [ ] 140 0 0 140 / 145 9.8s Mpmcq parallel [ ] 144 0 0 144 / 145 10.0s Mpmcq parallel [✓] 145 0 0 145 / 145 10.0s Mpmcq parallel ================================================================================ success (ran 2 tests) random seed: 3893316590712395139 generated error fail pass / total time test name [ ] 0 0 0 0 / 112 0.0s Mpmcq sequential [✓] 112 0 0 112 / 112 0.0s Mpmcq sequential [ ] 0 0 0 0 / 112 0.0s Mpmcq parallel [ ] 6 0 0 6 / 112 0.1s Mpmcq parallel [ ] 8 0 0 8 / 112 0.5s Mpmcq parallel [ ] 14 0 0 14 / 112 0.7s Mpmcq parallel [ ] 19 0 0 19 / 112 0.8s Mpmcq parallel [ ] 23 0 0 23 / 112 0.9s Mpmcq parallel [ ] 27 0 0 27 / 112 1.2s Mpmcq parallel [ ] 34 0 0 34 / 112 1.3s Mpmcq parallel [ ] 40 0 0 40 / 112 1.4s Mpmcq parallel [ ] 41 0 0 41 / 112 1.5s Mpmcq parallel [ ] 43 0 0 43 / 112 1.7s Mpmcq parallel [ ] 49 0 0 49 / 112 1.9s Mpmcq parallel [ ] 54 0 0 54 / 112 2.0s Mpmcq parallel [ ] 59 0 0 59 / 112 2.1s Mpmcq parallel [ ] 64 0 0 64 / 112 2.2s Mpmcq parallel [ ] 67 0 0 67 / 112 2.4s Mpmcq parallel [ ] 70 0 0 70 / 112 2.5s Mpmcq parallel [ ] 73 0 0 73 / 112 2.6s Mpmcq parallel [ ] 78 0 0 78 / 112 2.8s Mpmcq parallel [ ] 85 0 0 85 / 112 2.9s Mpmcq parallel [ ] 90 0 0 90 / 112 3.2s Mpmcq parallel [ ] 91 0 0 91 / 112 3.5s Mpmcq parallel [ ] 92 0 0 92 / 112 3.7s Mpmcq parallel [ ] 96 0 0 96 / 112 3.8s Mpmcq parallel [ ] 101 0 0 101 / 112 4.0s Mpmcq parallel [ ] 106 0 0 106 / 112 4.1s Mpmcq parallel [ ] 107 0 0 107 / 112 4.4s Mpmcq parallel [ ] 110 0 0 110 / 112 4.5s Mpmcq parallel [✓] 112 0 0 112 / 112 4.6s Mpmcq parallel ================================================================================ success (ran 2 tests) random seed: 972430852206039492 generated error fail pass / total time test name [ ] 0 0 0 0 / 91 0.0s Mpmcq sequential [✓] 91 0 0 91 / 91 0.0s Mpmcq sequential [ ] 0 0 0 0 / 91 0.0s Mpmcq parallel [ ] 5 0 0 5 / 91 0.1s Mpmcq parallel [ ] 12 0 0 12 / 91 0.6s Mpmcq parallel [ ] 15 0 0 15 / 91 0.7s Mpmcq parallel [ ] 19 0 0 19 / 91 1.1s Mpmcq parallel [ ] 23 0 0 23 / 91 1.2s Mpmcq parallel [ ] 28 0 0 28 / 91 1.3s Mpmcq parallel [ ] 30 0 0 30 / 91 1.7s Mpmcq parallel [ ] 35 0 0 35 / 91 2.1s Mpmcq parallel [ ] 39 0 0 39 / 91 2.2s Mpmcq parallel [ ] 46 0 0 46 / 91 2.3s Mpmcq parallel [ ] 48 0 0 48 / 91 2.8s Mpmcq parallel [ ] 55 0 0 55 / 91 2.9s Mpmcq parallel [ ] 59 0 0 59 / 91 3.0s Mpmcq parallel [ ] 62 0 0 62 / 91 3.4s Mpmcq parallel [ ] 64 0 0 64 / 91 3.6s Mpmcq parallel [ ] 68 0 0 68 / 91 3.8s Mpmcq parallel [ ] 74 0 0 74 / 91 3.9s Mpmcq parallel [ ] 77 0 0 77 / 91 4.1s Mpmcq parallel [ ] 82 0 0 82 / 91 4.5s Mpmcq parallel [ ] 88 0 0 88 / 91 5.0s Mpmcq parallel [✓] 91 0 0 91 / 91 5.0s Mpmcq parallel ================================================================================ success (ran 2 tests) random seed: 3857711303529688456 generated error fail pass / total time test name [ ] 0 0 0 0 / 48 0.0s Mpmcq sequential [✓] 48 0 0 48 / 48 0.0s Mpmcq sequential [ ] 0 0 0 0 / 48 0.0s Mpmcq parallel [ ] 1 0 0 1 / 48 0.1s Mpmcq parallel [ ] 5 0 0 5 / 48 0.5s Mpmcq parallel [ ] 15 0 0 15 / 48 0.6s Mpmcq parallel [ ] 25 0 0 25 / 48 0.7s Mpmcq parallel [ ] 34 0 0 34 / 48 0.9s Mpmcq parallel [ ] 38 0 0 38 / 48 1.1s Mpmcq parallel [✓] 48 0 0 48 / 48 1.1s Mpmcq parallel ================================================================================ success (ran 2 tests) random seed: 3778683189367752993 generated error fail pass / total time test name [ ] 0 0 0 0 / 39 0.0s Mpmcq sequential [✓] 39 0 0 39 / 39 0.0s Mpmcq sequential [ ] 0 0 0 0 / 39 0.0s Mpmcq parallel [ ] 1 0 0 1 / 39 0.0s Mpmcq parallel [ ] 4 0 0 4 / 39 0.3s Mpmcq parallel [ ] 6 0 0 6 / 39 0.6s Mpmcq parallel [ ] 9 0 0 9 / 39 0.8s Mpmcq parallel [ ] 14 0 0 14 / 39 1.1s Mpmcq parallel [ ] 23 0 0 23 / 39 1.2s Mpmcq parallel [ ] 24 0 0 24 / 39 1.4s Mpmcq parallel [ ] 31 0 0 31 / 39 1.5s Mpmcq parallel [ ] 38 0 0 38 / 39 1.7s Mpmcq parallel [✓] 39 0 0 39 / 39 1.7s Mpmcq parallel ================================================================================ success (ran 2 tests) random seed: 201187218918915504 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 parallel [ ] 8 0 0 8 / 32 0.1s Mpmcq parallel [ ] 12 0 0 12 / 32 0.2s Mpmcq parallel [ ] 16 0 0 16 / 32 0.3s Mpmcq parallel [ ] 18 0 0 18 / 32 0.7s Mpmcq parallel [ ] 22 0 0 22 / 32 0.8s Mpmcq parallel [ ] 27 0 0 27 / 32 1.1s Mpmcq parallel [✓] 32 0 0 32 / 32 1.2s Mpmcq parallel ================================================================================ success (ran 2 tests) random seed: 1185298509258747934 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 parallel [ ] 1 0 0 1 / 32 0.0s Mpmcq parallel [ ] 2 0 0 2 / 32 0.2s Mpmcq parallel [ ] 8 0 0 8 / 32 0.5s Mpmcq parallel [ ] 9 0 0 9 / 32 0.9s Mpmcq parallel [ ] 13 0 0 13 / 32 1.2s Mpmcq parallel [ ] 15 0 0 15 / 32 1.3s Mpmcq parallel [ ] 17 0 0 17 / 32 1.5s Mpmcq parallel [ ] 23 0 0 23 / 32 1.7s Mpmcq parallel [ ] 24 0 0 24 / 32 2.0s Mpmcq parallel [ ] 25 0 0 25 / 32 2.1s Mpmcq parallel [ ] 26 0 0 26 / 32 2.4s Mpmcq parallel [✓] 32 0 0 32 / 32 2.5s Mpmcq parallel ================================================================================ success (ran 2 tests) (cd _build/default/test && ./test_lock.exe) random seed: 2379882160678694190 generated error fail pass / total time test name [ ] 0 0 0 0 / 32 0.0s Lock sequential [ ] 0 0 0 0 / 32 0.0s Lock sequential (generating) [✓] 32 0 0 32 / 32 0.0s Lock sequential [ ] 0 0 0 0 / 32 0.0s Lock parallel [ ] 1 0 0 1 / 32 0.6s Lock parallel [ ] 2 0 0 2 / 32 1.5s Lock parallel [ ] 3 0 0 3 / 32 2.3s Lock parallel [ ] 4 0 0 4 / 32 3.1s Lock parallel [ ] 5 0 0 5 / 32 3.8s Lock parallel [ ] 6 0 0 6 / 32 5.2s Lock parallel [ ] 7 0 0 7 / 32 6.1s Lock parallel [ ] 8 0 0 8 / 32 6.9s Lock parallel [ ] 9 0 0 9 / 32 7.6s Lock parallel [ ] 10 0 0 10 / 32 8.3s Lock parallel [ ] 11 0 0 11 / 32 9.1s Lock parallel [ ] 12 0 0 12 / 32 9.9s Lock parallel [ ] 13 0 0 13 / 32 10.7s Lock parallel [ ] 14 0 0 14 / 32 11.5s Lock parallel [ ] 15 0 0 15 / 32 12.2s Lock parallel [ ] 16 0 0 16 / 32 13.0s Lock parallel [ ] 17 0 0 17 / 32 13.7s Lock parallel [ ] 18 0 0 18 / 32 14.4s Lock parallel [ ] 19 0 0 19 / 32 15.1s Lock parallel [ ] 20 0 0 20 / 32 15.6s Lock parallel [ ] 21 0 0 21 / 32 16.2s Lock parallel [ ] 22 0 0 22 / 32 16.7s Lock parallel [ ] 23 0 0 23 / 32 17.2s Lock parallel [ ] 24 0 0 24 / 32 17.7s Lock parallel [ ] 25 0 0 25 / 32 18.2s Lock parallel [ ] 26 0 0 26 / 32 18.5s Lock parallel [ ] 27 0 0 27 / 32 18.7s Lock parallel [ ] 29 0 0 29 / 32 19.0s Lock parallel [ ] 30 0 0 30 / 32 19.1s Lock parallel [ ] 31 0 0 31 / 32 19.3s Lock parallel [ ] 32 0 0 32 / 32 19.5s Lock parallel [✓] 32 0 0 32 / 32 19.5s Lock parallel ================================================================================ success (ran 2 tests) random seed: 3349411110114962037 generated error fail pass / total time test name [ ] 0 0 0 0 / 64 0.0s Lock sequential [✓] 64 0 0 64 / 64 0.0s Lock sequential [ ] 0 0 0 0 / 64 0.0s Lock parallel [ ] 2 0 0 2 / 64 0.3s Lock parallel [ ] 3 0 0 3 / 64 0.7s Lock parallel [ ] 4 0 0 4 / 64 1.0s Lock parallel [ ] 5 0 0 5 / 64 1.2s Lock parallel [ ] 6 0 0 6 / 64 1.3s Lock parallel [ ] 7 0 0 7 / 64 1.5s Lock parallel [ ] 9 0 0 9 / 64 1.7s Lock parallel [ ] 10 0 0 10 / 64 1.9s Lock parallel [ ] 11 0 0 11 / 64 2.1s Lock parallel [ ] 13 0 0 13 / 64 2.2s Lock parallel [ ] 15 0 0 15 / 64 2.5s Lock parallel [ ] 16 0 0 16 / 64 2.7s Lock parallel [ ] 17 0 0 17 / 64 2.8s Lock parallel [ ] 18 0 0 18 / 64 3.0s Lock parallel [ ] 20 0 0 20 / 64 3.2s Lock parallel [ ] 21 0 0 21 / 64 3.3s Lock parallel [ ] 23 0 0 23 / 64 3.5s Lock parallel [ ] 25 0 0 25 / 64 3.7s Lock parallel [ ] 26 0 0 26 / 64 3.9s Lock parallel [ ] 27 0 0 27 / 64 4.1s Lock parallel [ ] 28 0 0 28 / 64 4.2s Lock parallel [ ] 29 0 0 29 / 64 4.5s Lock parallel [ ] 30 0 0 30 / 64 4.7s Lock parallel [ ] 31 0 0 31 / 64 4.9s Lock parallel [ ] 32 0 0 32 / 64 5.0s Lock parallel [ ] 33 0 0 33 / 64 5.2s Lock parallel [ ] 34 0 0 34 / 64 5.5s Lock parallel [ ] 36 0 0 36 / 64 5.6s Lock parallel [ ] 37 0 0 37 / 64 5.7s Lock parallel [ ] 38 0 0 38 / 64 5.9s Lock parallel [ ] 40 0 0 40 / 64 6.1s Lock parallel [ ] 41 0 0 41 / 64 6.2s Lock parallel [ ] 42 0 0 42 / 64 6.4s Lock parallel [ ] 43 0 0 43 / 64 6.5s Lock parallel [ ] 45 0 0 45 / 64 6.7s Lock parallel [ ] 46 0 0 46 / 64 6.9s Lock parallel [ ] 48 0 0 48 / 64 7.3s Lock parallel [ ] 50 0 0 50 / 64 7.5s Lock parallel [ ] 52 0 0 52 / 64 7.6s Lock parallel [ ] 54 0 0 54 / 64 7.7s Lock parallel [ ] 56 0 0 56 / 64 7.8s Lock parallel [ ] 57 0 0 57 / 64 8.1s Lock parallel [ ] 60 0 0 60 / 64 8.3s Lock parallel [ ] 62 0 0 62 / 64 8.5s Lock parallel [ ] 63 0 0 63 / 64 8.9s Lock parallel [ ] 64 0 0 64 / 64 9.0s Lock parallel [✓] 64 0 0 64 / 64 9.0s Lock parallel ================================================================================ success (ran 2 tests) random seed: 4257816427280748581 generated error fail pass / total time test name [ ] 0 0 0 0 / 106 0.0s Lock sequential [✓] 106 0 0 106 / 106 0.0s Lock sequential [ ] 0 0 0 0 / 106 0.0s Lock parallel [ ] 2 0 0 2 / 106 0.3s Lock parallel [ ] 5 0 0 5 / 106 0.4s Lock parallel [ ] 7 0 0 7 / 106 0.6s Lock parallel [ ] 8 0 0 8 / 106 0.7s Lock parallel [ ] 9 0 0 9 / 106 0.9s Lock parallel [ ] 10 0 0 10 / 106 1.0s Lock parallel [ ] 11 0 0 11 / 106 1.2s Lock parallel [ ] 13 0 0 13 / 106 1.3s Lock parallel [ ] 14 0 0 14 / 106 1.4s Lock parallel [ ] 18 0 0 18 / 106 1.9s Lock parallel [ ] 19 0 0 19 / 106 2.1s Lock parallel [ ] 21 0 0 21 / 106 2.2s Lock parallel [ ] 24 0 0 24 / 106 2.4s Lock parallel [ ] 26 0 0 26 / 106 2.5s Lock parallel [ ] 30 0 0 30 / 106 2.6s Lock parallel [ ] 31 0 0 31 / 106 2.7s Lock parallel [ ] 32 0 0 32 / 106 3.0s Lock parallel [ ] 34 0 0 34 / 106 3.1s Lock parallel [ ] 36 0 0 36 / 106 3.2s Lock parallel [ ] 39 0 0 39 / 106 3.4s Lock parallel [ ] 42 0 0 42 / 106 3.6s Lock parallel [ ] 45 0 0 45 / 106 3.7s Lock parallel [ ] 47 0 0 47 / 106 3.9s Lock parallel [ ] 51 0 0 51 / 106 4.0s Lock parallel [ ] 54 0 0 54 / 106 4.2s Lock parallel [ ] 57 0 0 57 / 106 4.3s Lock parallel [ ] 59 0 0 59 / 106 4.4s Lock parallel [ ] 61 0 0 61 / 106 4.5s Lock parallel [ ] 63 0 0 63 / 106 4.6s Lock parallel [ ] 65 0 0 65 / 106 4.7s Lock parallel [ ] 68 0 0 68 / 106 5.0s Lock parallel [ ] 73 0 0 73 / 106 5.5s Lock parallel [ ] 77 0 0 77 / 106 5.6s Lock parallel [ ] 79 0 0 79 / 106 5.7s Lock parallel [ ] 82 0 0 82 / 106 5.8s Lock parallel [ ] 84 0 0 84 / 106 5.9s Lock parallel [ ] 86 0 0 86 / 106 6.1s Lock parallel [ ] 88 0 0 88 / 106 6.3s Lock parallel [ ] 91 0 0 91 / 106 6.4s Lock parallel [ ] 93 0 0 93 / 106 6.5s Lock parallel [ ] 96 0 0 96 / 106 6.6s Lock parallel [ ] 98 0 0 98 / 106 6.8s Lock parallel [ ] 99 0 0 99 / 106 7.0s Lock parallel [ ] 102 0 0 102 / 106 7.1s Lock parallel [✓] 106 0 0 106 / 106 7.2s Lock parallel ================================================================================ success (ran 2 tests) random seed: 1114487770485711217 generated error fail pass / total time test name [ ] 0 0 0 0 / 138 0.0s Lock sequential [✓] 138 0 0 138 / 138 0.0s Lock sequential [ ] 0 0 0 0 / 138 0.0s Lock parallel [ ] 1 0 0 1 / 138 0.0s Lock parallel [ ] 7 0 0 7 / 138 0.2s Lock parallel [ ] 10 0 0 10 / 138 0.3s Lock parallel [ ] 12 0 0 12 / 138 0.4s Lock parallel [ ] 15 0 0 15 / 138 0.5s Lock parallel [ ] 19 0 0 19 / 138 0.7s Lock parallel [ ] 23 0 0 23 / 138 0.8s Lock parallel [ ] 25 0 0 25 / 138 1.2s Lock parallel [ ] 26 0 0 26 / 138 1.4s Lock parallel [ ] 27 0 0 27 / 138 1.5s Lock parallel [ ] 32 0 0 32 / 138 1.6s Lock parallel [ ] 34 0 0 34 / 138 1.9s Lock parallel [ ] 35 0 0 35 / 138 2.0s Lock parallel [ ] 37 0 0 37 / 138 2.4s Lock parallel [ ] 39 0 0 39 / 138 2.7s Lock parallel [ ] 43 0 0 43 / 138 3.1s Lock parallel [ ] 45 0 0 45 / 138 3.3s Lock parallel [ ] 48 0 0 48 / 138 3.5s Lock parallel [ ] 51 0 0 51 / 138 3.6s Lock parallel [ ] 54 0 0 54 / 138 3.7s Lock parallel [ ] 55 0 0 55 / 138 3.9s Lock parallel [ ] 57 0 0 57 / 138 4.2s Lock parallel [ ] 59 0 0 59 / 138 4.4s Lock parallel [ ] 61 0 0 61 / 138 4.6s Lock parallel [ ] 63 0 0 63 / 138 4.7s Lock parallel [ ] 65 0 0 65 / 138 4.8s Lock parallel [ ] 67 0 0 67 / 138 5.2s Lock parallel [ ] 68 0 0 68 / 138 5.3s Lock parallel [ ] 71 0 0 71 / 138 5.5s Lock parallel [ ] 72 0 0 72 / 138 5.7s Lock parallel [ ] 74 0 0 74 / 138 6.1s Lock parallel [ ] 78 0 0 78 / 138 6.3s Lock parallel [ ] 81 0 0 81 / 138 6.4s Lock parallel [ ] 84 0 0 84 / 138 6.5s Lock parallel [ ] 85 0 0 85 / 138 6.8s Lock parallel [ ] 87 0 0 87 / 138 6.9s Lock parallel [ ] 90 0 0 90 / 138 7.0s Lock parallel [ ] 92 0 0 92 / 138 7.1s Lock parallel [ ] 94 0 0 94 / 138 7.3s Lock parallel [ ] 95 0 0 95 / 138 7.5s Lock parallel [ ] 98 0 0 98 / 138 7.6s Lock parallel [ ] 100 0 0 100 / 138 7.7s Lock parallel [ ] 101 0 0 101 / 138 8.1s Lock parallel [ ] 102 0 0 102 / 138 8.2s Lock parallel [ ] 103 0 0 103 / 138 8.3s Lock parallel [ ] 105 0 0 105 / 138 8.4s Lock parallel [ ] 107 0 0 107 / 138 8.5s Lock parallel [ ] 111 0 0 111 / 138 8.8s Lock parallel [ ] 113 0 0 113 / 138 9.0s Lock parallel [ ] 117 0 0 117 / 138 9.1s Lock parallel [ ] 121 0 0 121 / 138 9.5s Lock parallel [ ] 126 0 0 126 / 138 9.7s Lock parallel [ ] 127 0 0 127 / 138 9.9s Lock parallel [ ] 132 0 0 132 / 138 10.1s Lock parallel [ ] 134 0 0 134 / 138 10.2s Lock parallel [ ] 135 0 0 135 / 138 10.4s Lock parallel [ ] 137 0 0 137 / 138 10.6s Lock parallel [✓] 138 0 0 138 / 138 10.7s Lock parallel ================================================================================ success (ran 2 tests) random seed: 4306868375496716815 generated error fail pass / total time test name [ ] 0 0 0 0 / 100 0.0s Lock sequential [✓] 100 0 0 100 / 100 0.0s Lock sequential [ ] 0 0 0 0 / 100 0.0s Lock parallel [ ] 1 0 0 1 / 100 0.0s Lock parallel [ ] 3 0 0 3 / 100 0.2s Lock parallel [ ] 5 0 0 5 / 100 0.3s Lock parallel [ ] 7 0 0 7 / 100 0.7s Lock parallel [ ] 10 0 0 10 / 100 0.9s Lock parallel [ ] 12 0 0 12 / 100 1.1s Lock parallel [ ] 16 0 0 16 / 100 1.2s Lock parallel [ ] 18 0 0 18 / 100 1.6s Lock parallel [ ] 19 0 0 19 / 100 1.7s Lock parallel [ ] 21 0 0 21 / 100 1.8s Lock parallel [ ] 28 0 0 28 / 100 2.0s Lock parallel [ ] 31 0 0 31 / 100 2.1s Lock parallel [ ] 33 0 0 33 / 100 2.6s Lock parallel [ ] 36 0 0 36 / 100 2.7s Lock parallel [ ] 39 0 0 39 / 100 2.8s Lock parallel [ ] 44 0 0 44 / 100 2.9s Lock parallel [ ] 47 0 0 47 / 100 3.0s Lock parallel [ ] 53 0 0 53 / 100 3.1s Lock parallel [ ] 56 0 0 56 / 100 3.2s Lock parallel [ ] 61 0 0 61 / 100 3.4s Lock parallel [ ] 65 0 0 65 / 100 3.6s Lock parallel [ ] 71 0 0 71 / 100 3.7s Lock parallel [ ] 73 0 0 73 / 100 3.9s Lock parallel [ ] 77 0 0 77 / 100 4.0s Lock parallel [ ] 81 0 0 81 / 100 4.3s Lock parallel [ ] 85 0 0 85 / 100 4.5s Lock parallel [ ] 86 0 0 86 / 100 4.6s Lock parallel [ ] 90 0 0 90 / 100 4.7s Lock parallel [ ] 95 0 0 95 / 100 4.8s Lock parallel [ ] 99 0 0 99 / 100 4.9s Lock parallel [✓] 100 0 0 100 / 100 4.9s Lock parallel ================================================================================ success (ran 2 tests) random seed: 128457710944903648 generated error fail pass / total time test name [ ] 0 0 0 0 / 75 0.0s Lock sequential [✓] 75 0 0 75 / 75 0.0s Lock sequential [ ] 0 0 0 0 / 75 0.0s Lock parallel [ ] 4 0 0 4 / 75 0.1s Lock parallel [ ] 8 0 0 8 / 75 0.2s Lock parallel [ ] 13 0 0 13 / 75 0.3s Lock parallel [ ] 14 0 0 14 / 75 0.5s Lock parallel [ ] 19 0 0 19 / 75 0.6s Lock parallel [ ] 21 0 0 21 / 75 0.7s Lock parallel [ ] 26 0 0 26 / 75 0.8s Lock parallel [ ] 30 0 0 30 / 75 1.0s Lock parallel [ ] 31 0 0 31 / 75 1.3s Lock parallel [ ] 38 0 0 38 / 75 1.4s Lock parallel [ ] 41 0 0 41 / 75 1.6s Lock parallel [ ] 44 0 0 44 / 75 2.0s Lock parallel [ ] 46 0 0 46 / 75 2.3s Lock parallel [ ] 55 0 0 55 / 75 2.4s Lock parallel [ ] 60 0 0 60 / 75 2.5s Lock parallel [ ] 68 0 0 68 / 75 2.6s Lock parallel [ ] 71 0 0 71 / 75 3.0s Lock parallel [ ] 74 0 0 74 / 75 3.1s Lock parallel [✓] 75 0 0 75 / 75 3.1s Lock parallel ================================================================================ success (ran 2 tests) random seed: 406987257143184667 generated error fail pass / total time test name [ ] 0 0 0 0 / 54 0.0s Lock sequential [✓] 54 0 0 54 / 54 0.0s Lock sequential [ ] 0 0 0 0 / 54 0.0s Lock parallel [ ] 1 0 0 1 / 54 0.3s Lock parallel [ ] 6 0 0 6 / 54 0.4s Lock parallel [ ] 7 0 0 7 / 54 0.6s Lock parallel [ ] 13 0 0 13 / 54 0.7s Lock parallel [ ] 16 0 0 16 / 54 1.0s Lock parallel [ ] 20 0 0 20 / 54 1.1s Lock parallel [ ] 21 0 0 21 / 54 1.3s Lock parallel [ ] 24 0 0 24 / 54 1.7s Lock parallel [ ] 30 0 0 30 / 54 1.8s Lock parallel [ ] 31 0 0 31 / 54 1.9s Lock parallel [ ] 32 0 0 32 / 54 2.1s Lock parallel [ ] 35 0 0 35 / 54 2.5s Lock parallel [ ] 41 0 0 41 / 54 2.6s Lock parallel [ ] 47 0 0 47 / 54 2.7s Lock parallel [ ] 53 0 0 53 / 54 2.8s Lock parallel [✓] 54 0 0 54 / 54 2.8s Lock parallel ================================================================================ success (ran 2 tests) random seed: 4303894136331467052 generated error fail pass / total time test name [ ] 0 0 0 0 / 32 0.0s Lock sequential [✓] 32 0 0 32 / 32 0.0s Lock sequential [ ] 0 0 0 0 / 32 0.0s Lock parallel [ ] 4 0 0 4 / 32 0.4s Lock parallel [ ] 6 0 0 6 / 32 0.6s Lock parallel [ ] 9 0 0 9 / 32 0.7s Lock parallel [ ] 13 0 0 13 / 32 1.1s Lock parallel [ ] 17 0 0 17 / 32 1.2s Lock parallel [ ] 20 0 0 20 / 32 1.4s Lock parallel [ ] 21 0 0 21 / 32 1.7s Lock parallel [ ] 24 0 0 24 / 32 1.8s Lock parallel [ ] 28 0 0 28 / 32 1.9s Lock parallel [ ] 31 0 0 31 / 32 2.3s Lock parallel [ ] 32 0 0 32 / 32 2.6s Lock parallel [✓] 32 0 0 32 / 32 2.6s Lock parallel ================================================================================ success (ran 2 tests) random seed: 3387779806762780984 generated error fail pass / total time test name [ ] 0 0 0 0 / 32 0.0s Lock sequential [✓] 32 0 0 32 / 32 0.0s Lock sequential [ ] 0 0 0 0 / 32 0.0s Lock parallel [ ] 1 0 0 1 / 32 0.1s Lock parallel [ ] 2 0 0 2 / 32 0.4s Lock parallel [ ] 4 0 0 4 / 32 0.8s Lock parallel [ ] 5 0 0 5 / 32 1.1s Lock parallel [ ] 9 0 0 9 / 32 1.3s Lock parallel [ ] 11 0 0 11 / 32 1.6s Lock parallel [ ] 13 0 0 13 / 32 1.8s Lock parallel [ ] 17 0 0 17 / 32 1.9s Lock parallel [ ] 23 0 0 23 / 32 2.0s Lock parallel [ ] 27 0 0 27 / 32 2.2s Lock parallel [ ] 29 0 0 29 / 32 2.3s Lock parallel [✓] 32 0 0 32 / 32 2.3s Lock parallel ================================================================================ success (ran 2 tests) (cd _build/default/test && ./test_htbl.exe) random seed: 1567584216672517415 generated error fail pass / total time test name [ ] 0 0 0 0 / 32 0.0s Htbl sequential [ ] 0 0 0 0 / 32 0.0s Htbl sequential (generating) [✓] 32 0 0 32 / 32 0.0s Htbl sequential [ ] 0 0 0 0 / 32 0.0s Htbl parallel [ ] 1 0 0 1 / 32 0.5s Htbl parallel [ ] 2 0 0 2 / 32 1.2s Htbl parallel [ ] 3 0 0 3 / 32 2.2s Htbl parallel [ ] 4 0 0 4 / 32 3.3s Htbl parallel [ ] 5 0 0 5 / 32 3.9s Htbl parallel [ ] 6 0 0 6 / 32 4.6s Htbl parallel [ ] 7 0 0 7 / 32 5.5s Htbl parallel [ ] 8 0 0 8 / 32 6.7s Htbl parallel [ ] 9 0 0 9 / 32 7.5s Htbl parallel [ ] 10 0 0 10 / 32 8.6s Htbl parallel [ ] 11 0 0 11 / 32 9.1s Htbl parallel [ ] 12 0 0 12 / 32 9.8s Htbl parallel [ ] 13 0 0 13 / 32 10.7s Htbl parallel [ ] 14 0 0 14 / 32 11.4s Htbl parallel [ ] 15 0 0 15 / 32 12.1s Htbl parallel [ ] 16 0 0 16 / 32 13.1s Htbl parallel [ ] 17 0 0 17 / 32 13.8s Htbl parallel [ ] 18 0 0 18 / 32 14.3s Htbl parallel [ ] 19 0 0 19 / 32 14.9s Htbl parallel [ ] 20 0 0 20 / 32 15.4s Htbl parallel [ ] 21 0 0 21 / 32 16.0s Htbl parallel [ ] 22 0 0 22 / 32 16.6s Htbl parallel [ ] 23 0 0 23 / 32 17.1s Htbl parallel [ ] 24 0 0 24 / 32 17.6s Htbl parallel [ ] 25 0 0 25 / 32 18.0s Htbl parallel [ ] 26 0 0 26 / 32 18.4s Htbl parallel [ ] 27 0 0 27 / 32 18.7s Htbl parallel [ ] 28 0 0 28 / 32 19.0s Htbl parallel [ ] 29 0 0 29 / 32 19.6s Htbl parallel [ ] 30 0 0 30 / 32 20.1s Htbl parallel [ ] 31 0 0 31 / 32 20.9s Htbl parallel [ ] 32 0 0 32 / 32 21.2s Htbl parallel [✓] 32 0 0 32 / 32 21.2s Htbl parallel ================================================================================ success (ran 2 tests) random seed: 2387789676040445204 generated error fail pass / total time test name [ ] 0 0 0 0 / 58 0.0s Htbl sequential [✓] 58 0 0 58 / 58 0.0s Htbl sequential [ ] 0 0 0 0 / 58 0.0s Htbl parallel [ ] 1 0 0 1 / 58 0.3s Htbl parallel [ ] 2 0 0 2 / 58 0.7s Htbl parallel [ ] 3 0 0 3 / 58 1.0s Htbl parallel [ ] 4 0 0 4 / 58 1.3s Htbl parallel [ ] 5 0 0 5 / 58 1.5s Htbl parallel [ ] 6 0 0 6 / 58 1.7s Htbl parallel [ ] 7 0 0 7 / 58 1.9s Htbl parallel [ ] 8 0 0 8 / 58 2.1s Htbl parallel [ ] 9 0 0 9 / 58 3.0s Htbl parallel [ ] 10 0 0 10 / 58 3.3s Htbl parallel [ ] 11 0 0 11 / 58 3.5s Htbl parallel [ ] 12 0 0 12 / 58 3.7s Htbl parallel [ ] 13 0 0 13 / 58 3.8s Htbl parallel [ ] 15 0 0 15 / 58 4.0s Htbl parallel [ ] 16 0 0 16 / 58 4.1s Htbl parallel [ ] 17 0 0 17 / 58 4.4s Htbl parallel [ ] 18 0 0 18 / 58 4.5s Htbl parallel [ ] 19 0 0 19 / 58 4.7s Htbl parallel [ ] 21 0 0 21 / 58 4.9s Htbl parallel [ ] 23 0 0 23 / 58 5.0s Htbl parallel [ ] 24 0 0 24 / 58 5.2s Htbl parallel [ ] 27 0 0 27 / 58 5.4s Htbl parallel [ ] 29 0 0 29 / 58 5.5s Htbl parallel [ ] 32 0 0 32 / 58 5.7s Htbl parallel [ ] 34 0 0 34 / 58 5.8s Htbl parallel [ ] 35 0 0 35 / 58 6.2s Htbl parallel [ ] 36 0 0 36 / 58 6.7s Htbl parallel [ ] 38 0 0 38 / 58 7.0s Htbl parallel [ ] 40 0 0 40 / 58 7.2s Htbl parallel [ ] 42 0 0 42 / 58 7.3s Htbl parallel [ ] 45 0 0 45 / 58 7.5s Htbl parallel [ ] 48 0 0 48 / 58 7.7s Htbl parallel [ ] 50 0 0 50 / 58 7.8s Htbl parallel [ ] 52 0 0 52 / 58 8.3s Htbl parallel [ ] 54 0 0 54 / 58 8.5s Htbl parallel [ ] 55 0 0 55 / 58 8.6s Htbl parallel [ ] 57 0 0 57 / 58 8.7s Htbl parallel [✓] 58 0 0 58 / 58 8.8s Htbl parallel ================================================================================ success (ran 2 tests) random seed: 277646584193687380 generated error fail pass / total time test name [ ] 0 0 0 0 / 89 0.0s Htbl sequential [✓] 89 0 0 89 / 89 0.0s Htbl sequential [ ] 0 0 0 0 / 89 0.0s Htbl parallel [ ] 1 0 0 1 / 89 0.2s Htbl parallel [ ] 4 0 0 4 / 89 0.3s Htbl parallel [ ] 5 0 0 5 / 89 0.7s Htbl parallel [ ] 7 0 0 7 / 89 0.9s Htbl parallel [ ] 10 0 0 10 / 89 1.1s Htbl parallel [ ] 12 0 0 12 / 89 1.2s Htbl parallel [ ] 14 0 0 14 / 89 1.4s Htbl parallel [ ] 17 0 0 17 / 89 1.5s Htbl parallel [ ] 18 0 0 18 / 89 1.6s Htbl parallel [ ] 20 0 0 20 / 89 1.7s Htbl parallel [ ] 22 0 0 22 / 89 1.8s Htbl parallel [ ] 25 0 0 25 / 89 2.0s Htbl parallel [ ] 28 0 0 28 / 89 2.1s Htbl parallel [ ] 31 0 0 31 / 89 2.2s Htbl parallel [ ] 34 0 0 34 / 89 2.3s Htbl parallel [ ] 38 0 0 38 / 89 2.6s Htbl parallel [ ] 41 0 0 41 / 89 2.7s Htbl parallel [ ] 44 0 0 44 / 89 2.8s Htbl parallel [ ] 47 0 0 47 / 89 3.0s Htbl parallel [ ] 49 0 0 49 / 89 3.1s Htbl parallel [ ] 51 0 0 51 / 89 3.4s Htbl parallel [ ] 55 0 0 55 / 89 3.5s Htbl parallel [ ] 58 0 0 58 / 89 3.6s Htbl parallel [ ] 60 0 0 60 / 89 3.8s Htbl parallel [ ] 62 0 0 62 / 89 4.1s Htbl parallel [ ] 64 0 0 64 / 89 4.6s Htbl parallel [ ] 67 0 0 67 / 89 4.7s Htbl parallel [ ] 68 0 0 68 / 89 4.8s Htbl parallel [ ] 70 0 0 70 / 89 5.0s Htbl parallel [ ] 71 0 0 71 / 89 5.2s Htbl parallel [ ] 75 0 0 75 / 89 5.6s Htbl parallel [ ] 76 0 0 76 / 89 5.7s Htbl parallel [ ] 80 0 0 80 / 89 5.9s Htbl parallel [ ] 85 0 0 85 / 89 6.3s Htbl parallel [ ] 88 0 0 88 / 89 6.5s Htbl parallel [✓] 89 0 0 89 / 89 6.5s Htbl parallel ================================================================================ success (ran 2 tests) random seed: 1662864734097046819 generated error fail pass / total time test name [ ] 0 0 0 0 / 115 0.0s Htbl sequential [✓] 115 0 0 115 / 115 0.0s Htbl sequential [ ] 0 0 0 0 / 115 0.0s Htbl parallel [ ] 1 0 0 1 / 115 0.1s Htbl parallel [ ] 3 0 0 3 / 115 0.2s Htbl parallel [ ] 6 0 0 6 / 115 0.4s Htbl parallel [ ] 8 0 0 8 / 115 0.6s Htbl parallel [ ] 10 0 0 10 / 115 0.7s Htbl parallel [ ] 12 0 0 12 / 115 0.8s Htbl parallel [ ] 14 0 0 14 / 115 0.9s Htbl parallel [ ] 15 0 0 15 / 115 1.1s Htbl parallel [ ] 17 0 0 17 / 115 1.2s Htbl parallel [ ] 20 0 0 20 / 115 1.3s Htbl parallel [ ] 22 0 0 22 / 115 1.5s Htbl parallel [ ] 23 0 0 23 / 115 1.6s Htbl parallel [ ] 24 0 0 24 / 115 1.8s Htbl parallel [ ] 27 0 0 27 / 115 1.9s Htbl parallel [ ] 32 0 0 32 / 115 2.0s Htbl parallel [ ] 36 0 0 36 / 115 2.1s Htbl parallel [ ] 40 0 0 40 / 115 2.3s Htbl parallel [ ] 43 0 0 43 / 115 2.4s Htbl parallel [ ] 47 0 0 47 / 115 2.5s Htbl parallel [ ] 48 0 0 48 / 115 3.0s Htbl parallel [ ] 49 0 0 49 / 115 3.1s Htbl parallel [ ] 51 0 0 51 / 115 3.2s Htbl parallel [ ] 52 0 0 52 / 115 3.4s Htbl parallel [ ] 53 0 0 53 / 115 4.0s Htbl parallel [ ] 54 0 0 54 / 115 4.2s Htbl parallel [ ] 57 0 0 57 / 115 4.3s Htbl parallel [ ] 59 0 0 59 / 115 4.4s Htbl parallel [ ] 61 0 0 61 / 115 4.6s Htbl parallel [ ] 64 0 0 64 / 115 4.7s Htbl parallel [ ] 70 0 0 70 / 115 4.9s Htbl parallel [ ] 75 0 0 75 / 115 5.0s Htbl parallel [ ] 81 0 0 81 / 115 5.2s Htbl parallel [ ] 83 0 0 83 / 115 5.3s Htbl parallel [ ] 86 0 0 86 / 115 5.4s Htbl parallel [ ] 90 0 0 90 / 115 6.1s Htbl parallel [ ] 94 0 0 94 / 115 6.2s Htbl parallel [ ] 97 0 0 97 / 115 6.7s Htbl parallel [ ] 98 0 0 98 / 115 7.2s Htbl parallel [ ] 101 0 0 101 / 115 7.3s Htbl parallel [ ] 103 0 0 103 / 115 7.6s Htbl parallel [ ] 105 0 0 105 / 115 7.7s Htbl parallel [ ] 107 0 0 107 / 115 7.9s Htbl parallel [ ] 109 0 0 109 / 115 8.0s Htbl parallel [ ] 110 0 0 110 / 115 8.3s Htbl parallel [ ] 113 0 0 113 / 115 8.5s Htbl parallel [✓] 115 0 0 115 / 115 8.5s Htbl parallel ================================================================================ success (ran 2 tests) random seed: 3537930360031676486 generated error fail pass / total time test name [ ] 0 0 0 0 / 97 0.0s Htbl sequential [✓] 97 0 0 97 / 97 0.0s Htbl sequential [ ] 0 0 0 0 / 97 0.0s Htbl parallel [ ] 1 0 0 1 / 97 0.5s Htbl parallel [ ] 4 0 0 4 / 97 0.6s Htbl parallel [ ] 6 0 0 6 / 97 0.7s Htbl parallel [ ] 7 0 0 7 / 97 0.9s Htbl parallel [ ] 10 0 0 10 / 97 1.0s Htbl parallel [ ] 12 0 0 12 / 97 1.2s Htbl parallel [ ] 18 0 0 18 / 97 1.3s Htbl parallel [ ] 22 0 0 22 / 97 1.6s Htbl parallel [ ] 23 0 0 23 / 97 1.8s Htbl parallel [ ] 26 0 0 26 / 97 2.2s Htbl parallel [ ] 29 0 0 29 / 97 2.3s Htbl parallel [ ] 33 0 0 33 / 97 2.6s Htbl parallel [ ] 35 0 0 35 / 97 2.7s Htbl parallel [ ] 39 0 0 39 / 97 2.9s Htbl parallel [ ] 43 0 0 43 / 97 3.3s Htbl parallel [ ] 46 0 0 46 / 97 3.4s Htbl parallel [ ] 50 0 0 50 / 97 3.5s Htbl parallel [ ] 54 0 0 54 / 97 3.6s Htbl parallel [ ] 59 0 0 59 / 97 3.8s Htbl parallel [ ] 64 0 0 64 / 97 3.9s Htbl parallel [ ] 67 0 0 67 / 97 4.2s Htbl parallel [ ] 73 0 0 73 / 97 4.3s Htbl parallel [ ] 77 0 0 77 / 97 4.9s Htbl parallel [ ] 81 0 0 81 / 97 5.0s Htbl parallel [ ] 85 0 0 85 / 97 5.1s Htbl parallel [ ] 89 0 0 89 / 97 5.2s Htbl parallel [ ] 91 0 0 91 / 97 5.3s Htbl parallel [ ] 96 0 0 96 / 97 5.6s Htbl parallel [✓] 97 0 0 97 / 97 5.6s Htbl parallel ================================================================================ success (ran 2 tests) random seed: 1644593347247880284 generated error fail pass / total time test name [ ] 0 0 0 0 / 72 0.0s Htbl sequential [✓] 72 0 0 72 / 72 0.0s Htbl sequential [ ] 0 0 0 0 / 72 0.0s Htbl parallel [ ] 2 0 0 2 / 72 0.1s Htbl parallel [ ] 4 0 0 4 / 72 0.4s Htbl parallel [ ] 5 0 0 5 / 72 0.5s Htbl parallel [ ] 9 0 0 9 / 72 0.6s Htbl parallel [ ] 13 0 0 13 / 72 0.8s Htbl parallel [ ] 16 0 0 16 / 72 0.9s Htbl parallel [ ] 22 0 0 22 / 72 1.0s Htbl parallel [ ] 26 0 0 26 / 72 1.1s Htbl parallel [ ] 32 0 0 32 / 72 1.2s Htbl parallel [ ] 38 0 0 38 / 72 1.3s Htbl parallel [ ] 42 0 0 42 / 72 1.5s Htbl parallel [ ] 47 0 0 47 / 72 1.6s Htbl parallel [ ] 52 0 0 52 / 72 2.1s Htbl parallel [ ] 61 0 0 61 / 72 2.2s Htbl parallel [ ] 67 0 0 67 / 72 2.3s Htbl parallel [ ] 72 0 0 72 / 72 2.4s Htbl parallel [✓] 72 0 0 72 / 72 2.4s Htbl parallel ================================================================================ success (ran 2 tests) random seed: 1568578354208192739 generated error fail pass / total time test name [ ] 0 0 0 0 / 60 0.0s Htbl sequential [✓] 60 0 0 60 / 60 0.0s Htbl sequential [ ] 0 0 0 0 / 60 0.0s Htbl parallel [ ] 8 0 0 8 / 60 0.1s Htbl parallel [ ] 9 0 0 9 / 60 0.5s Htbl parallel [ ] 15 0 0 15 / 60 0.6s Htbl parallel [ ] 16 0 0 16 / 60 1.0s Htbl parallel [ ] 20 0 0 20 / 60 1.2s Htbl parallel [ ] 25 0 0 25 / 60 1.4s Htbl parallel [ ] 28 0 0 28 / 60 1.6s Htbl parallel [ ] 31 0 0 31 / 60 1.9s Htbl parallel [ ] 36 0 0 36 / 60 2.0s Htbl parallel [ ] 45 0 0 45 / 60 2.1s Htbl parallel [ ] 48 0 0 48 / 60 2.2s Htbl parallel [ ] 49 0 0 49 / 60 2.3s Htbl parallel [ ] 57 0 0 57 / 60 2.9s Htbl parallel [✓] 60 0 0 60 / 60 3.0s Htbl parallel ================================================================================ success (ran 2 tests) random seed: 1562293166747657018 generated error fail pass / total time test name [ ] 0 0 0 0 / 37 0.0s Htbl sequential [✓] 37 0 0 37 / 37 0.0s Htbl sequential [ ] 0 0 0 0 / 37 0.0s Htbl parallel [ ] 5 0 0 5 / 37 0.1s Htbl parallel [ ] 9 0 0 9 / 37 0.2s Htbl parallel [ ] 11 0 0 11 / 37 0.4s Htbl parallel [ ] 13 0 0 13 / 37 0.5s Htbl parallel [ ] 17 0 0 17 / 37 0.6s Htbl parallel [ ] 20 0 0 20 / 37 0.9s Htbl parallel [ ] 21 0 0 21 / 37 1.0s Htbl parallel [ ] 26 0 0 26 / 37 1.2s Htbl parallel [ ] 29 0 0 29 / 37 1.5s Htbl parallel [ ] 35 0 0 35 / 37 1.7s Htbl parallel [✓] 37 0 0 37 / 37 1.7s Htbl parallel ================================================================================ success (ran 2 tests) random seed: 942462960292279753 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 parallel [ ] 4 0 0 4 / 32 0.1s Htbl parallel [ ] 6 0 0 6 / 32 0.4s Htbl parallel [ ] 9 0 0 9 / 32 0.5s Htbl parallel [ ] 10 0 0 10 / 32 0.7s Htbl parallel [ ] 13 0 0 13 / 32 0.8s Htbl parallel [ ] 16 0 0 16 / 32 1.0s Htbl parallel [ ] 19 0 0 19 / 32 1.1s Htbl parallel [ ] 23 0 0 23 / 32 1.3s Htbl parallel [ ] 25 0 0 25 / 32 1.4s Htbl parallel [ ] 27 0 0 27 / 32 1.9s Htbl parallel [ ] 32 0 0 32 / 32 2.0s Htbl parallel [✓] 32 0 0 32 / 32 2.0s Htbl parallel ================================================================================ success (ran 2 tests) random seed: 3438047891362524714 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 parallel [ ] 1 0 0 1 / 32 0.2s Htbl parallel [ ] 2 0 0 2 / 32 0.6s Htbl parallel [ ] 5 0 0 5 / 32 1.2s Htbl parallel [ ] 9 0 0 9 / 32 1.4s Htbl parallel [ ] 12 0 0 12 / 32 1.9s Htbl parallel [ ] 14 0 0 14 / 32 2.1s Htbl parallel [ ] 22 0 0 22 / 32 2.2s Htbl parallel [ ] 27 0 0 27 / 32 2.4s Htbl parallel [✓] 32 0 0 32 / 32 2.5s Htbl parallel ================================================================================ success (ran 2 tests) (cd _build/default/test && ./test_sem.exe) random seed: 871495832850420286 generated error fail pass / total time test name [ ] 0 0 0 0 / 32 0.0s Sem sequential [ ] 0 0 0 0 / 32 0.0s Sem sequential (generating) [✓] 32 0 0 32 / 32 0.0s Sem sequential [ ] 0 0 0 0 / 32 0.0s Sem parallel [ ] 1 0 0 1 / 32 0.2s Sem parallel [ ] 2 0 0 2 / 32 1.2s Sem parallel [ ] 3 0 0 3 / 32 1.7s Sem parallel [ ] 4 0 0 4 / 32 2.6s Sem parallel [ ] 5 0 0 5 / 32 3.0s Sem parallel [ ] 6 0 0 6 / 32 3.7s Sem parallel [ ] 7 0 0 7 / 32 4.3s Sem parallel [ ] 8 0 0 8 / 32 5.4s Sem parallel [ ] 9 0 0 9 / 32 6.0s Sem parallel [ ] 10 0 0 10 / 32 7.1s Sem parallel [ ] 11 0 0 11 / 32 7.8s Sem parallel [ ] 12 0 0 12 / 32 8.6s Sem parallel [ ] 13 0 0 13 / 32 9.3s Sem parallel [ ] 14 0 0 14 / 32 9.9s Sem parallel [ ] 15 0 0 15 / 32 10.3s Sem parallel [ ] 16 0 0 16 / 32 10.8s Sem parallel [ ] 17 0 0 17 / 32 11.7s Sem parallel [ ] 18 0 0 18 / 32 12.5s Sem parallel [ ] 19 0 0 19 / 32 13.2s Sem parallel [ ] 20 0 0 20 / 32 13.6s Sem parallel [ ] 21 0 0 21 / 32 14.1s Sem parallel [ ] 22 0 0 22 / 32 14.6s Sem parallel [ ] 23 0 0 23 / 32 15.0s Sem parallel [ ] 24 0 0 24 / 32 15.4s Sem parallel [ ] 25 0 0 25 / 32 15.6s Sem parallel [ ] 26 0 0 26 / 32 15.9s Sem parallel [ ] 27 0 0 27 / 32 16.3s Sem parallel [ ] 28 0 0 28 / 32 16.6s Sem parallel [ ] 29 0 0 29 / 32 16.9s Sem parallel [ ] 30 0 0 30 / 32 17.3s Sem parallel [ ] 31 0 0 31 / 32 17.7s Sem parallel [ ] 32 0 0 32 / 32 18.0s Sem parallel [✓] 32 0 0 32 / 32 18.0s Sem parallel ================================================================================ success (ran 2 tests) random seed: 722929553494317957 generated error fail pass / total time test name [ ] 0 0 0 0 / 64 0.0s Sem sequential [✓] 64 0 0 64 / 64 0.0s Sem sequential [ ] 0 0 0 0 / 64 0.0s Sem parallel [ ] 1 0 0 1 / 64 0.2s Sem parallel [ ] 2 0 0 2 / 64 0.4s Sem parallel [ ] 3 0 0 3 / 64 0.7s Sem parallel [ ] 4 0 0 4 / 64 0.9s Sem parallel [ ] 6 0 0 6 / 64 1.1s Sem parallel [ ] 7 0 0 7 / 64 1.4s Sem parallel [ ] 8 0 0 8 / 64 1.6s Sem parallel [ ] 9 0 0 9 / 64 1.8s Sem parallel [ ] 10 0 0 10 / 64 2.2s Sem parallel [ ] 11 0 0 11 / 64 2.3s Sem parallel [ ] 12 0 0 12 / 64 2.6s Sem parallel [ ] 13 0 0 13 / 64 2.7s Sem parallel [ ] 14 0 0 14 / 64 2.8s Sem parallel [ ] 15 0 0 15 / 64 2.9s Sem parallel [ ] 17 0 0 17 / 64 3.1s Sem parallel [ ] 18 0 0 18 / 64 3.2s Sem parallel [ ] 20 0 0 20 / 64 3.5s Sem parallel [ ] 21 0 0 21 / 64 3.6s Sem parallel [ ] 22 0 0 22 / 64 3.8s Sem parallel [ ] 23 0 0 23 / 64 4.0s Sem parallel [ ] 24 0 0 24 / 64 4.2s Sem parallel [ ] 25 0 0 25 / 64 4.4s Sem parallel [ ] 26 0 0 26 / 64 4.6s Sem parallel [ ] 27 0 0 27 / 64 5.1s Sem parallel [ ] 29 0 0 29 / 64 5.4s Sem parallel [ ] 30 0 0 30 / 64 5.6s Sem parallel [ ] 31 0 0 31 / 64 5.7s Sem parallel [ ] 32 0 0 32 / 64 5.9s Sem parallel [ ] 33 0 0 33 / 64 6.0s Sem parallel [ ] 35 0 0 35 / 64 6.1s Sem parallel [ ] 37 0 0 37 / 64 6.3s Sem parallel [ ] 39 0 0 39 / 64 6.6s Sem parallel [ ] 41 0 0 41 / 64 6.7s Sem parallel [ ] 42 0 0 42 / 64 6.9s Sem parallel [ ] 43 0 0 43 / 64 7.0s Sem parallel [ ] 44 0 0 44 / 64 7.1s Sem parallel [ ] 45 0 0 45 / 64 7.3s Sem parallel [ ] 46 0 0 46 / 64 7.4s Sem parallel [ ] 47 0 0 47 / 64 7.6s Sem parallel [ ] 48 0 0 48 / 64 7.8s Sem parallel [ ] 49 0 0 49 / 64 7.9s Sem parallel [ ] 50 0 0 50 / 64 8.1s Sem parallel [ ] 51 0 0 51 / 64 8.3s Sem parallel [ ] 52 0 0 52 / 64 8.4s Sem parallel [ ] 53 0 0 53 / 64 8.5s Sem parallel [ ] 55 0 0 55 / 64 8.7s Sem parallel [ ] 58 0 0 58 / 64 8.8s Sem parallel [ ] 60 0 0 60 / 64 9.0s Sem parallel [ ] 62 0 0 62 / 64 9.4s Sem parallel [✓] 64 0 0 64 / 64 9.5s Sem parallel ================================================================================ success (ran 2 tests) random seed: 2464647041758275610 generated error fail pass / total time test name [ ] 0 0 0 0 / 113 0.0s Sem sequential [✓] 113 0 0 113 / 113 0.0s Sem sequential [ ] 0 0 0 0 / 113 0.0s Sem parallel [ ] 1 0 0 1 / 113 0.0s Sem parallel [ ] 3 0 0 3 / 113 0.2s Sem parallel [ ] 6 0 0 6 / 113 0.3s Sem parallel [ ] 7 0 0 7 / 113 0.6s Sem parallel [ ] 10 0 0 10 / 113 0.9s Sem parallel [ ] 13 0 0 13 / 113 1.0s Sem parallel [ ] 15 0 0 15 / 113 1.1s Sem parallel [ ] 17 0 0 17 / 113 1.2s Sem parallel [ ] 19 0 0 19 / 113 1.6s Sem parallel [ ] 20 0 0 20 / 113 2.0s Sem parallel [ ] 22 0 0 22 / 113 2.1s Sem parallel [ ] 24 0 0 24 / 113 2.6s Sem parallel [ ] 31 0 0 31 / 113 2.7s Sem parallel [ ] 33 0 0 33 / 113 3.1s Sem parallel [ ] 34 0 0 34 / 113 3.5s Sem parallel [ ] 35 0 0 35 / 113 3.6s Sem parallel [ ] 36 0 0 36 / 113 3.8s Sem parallel [ ] 37 0 0 37 / 113 4.1s Sem parallel [ ] 39 0 0 39 / 113 4.3s Sem parallel [ ] 40 0 0 40 / 113 4.4s Sem parallel [ ] 42 0 0 42 / 113 4.6s Sem parallel [ ] 43 0 0 43 / 113 4.7s Sem parallel [ ] 44 0 0 44 / 113 4.9s Sem parallel [ ] 47 0 0 47 / 113 5.0s Sem parallel [ ] 50 0 0 50 / 113 5.2s Sem parallel [ ] 52 0 0 52 / 113 5.4s Sem parallel [ ] 54 0 0 54 / 113 5.5s Sem parallel [ ] 56 0 0 56 / 113 5.7s Sem parallel [ ] 58 0 0 58 / 113 5.8s Sem parallel [ ] 61 0 0 61 / 113 5.9s Sem parallel [ ] 63 0 0 63 / 113 6.1s Sem parallel [ ] 65 0 0 65 / 113 6.3s Sem parallel [ ] 67 0 0 67 / 113 6.4s Sem parallel [ ] 68 0 0 68 / 113 6.7s Sem parallel [ ] 70 0 0 70 / 113 6.8s Sem parallel [ ] 74 0 0 74 / 113 7.2s Sem parallel [ ] 76 0 0 76 / 113 7.4s Sem parallel [ ] 78 0 0 78 / 113 7.5s Sem parallel [ ] 81 0 0 81 / 113 7.7s Sem parallel [ ] 83 0 0 83 / 113 7.8s Sem parallel [ ] 85 0 0 85 / 113 7.9s Sem parallel [ ] 86 0 0 86 / 113 8.1s Sem parallel [ ] 89 0 0 89 / 113 8.2s Sem parallel [ ] 91 0 0 91 / 113 8.4s Sem parallel [ ] 94 0 0 94 / 113 8.6s Sem parallel [ ] 97 0 0 97 / 113 8.9s Sem parallel [ ] 101 0 0 101 / 113 9.0s Sem parallel [ ] 103 0 0 103 / 113 9.5s Sem parallel [ ] 107 0 0 107 / 113 9.6s Sem parallel [ ] 111 0 0 111 / 113 9.9s Sem parallel [✓] 113 0 0 113 / 113 9.9s Sem parallel ================================================================================ success (ran 2 tests) random seed: 3235570234984911233 generated error fail pass / total time test name [ ] 0 0 0 0 / 126 0.0s Sem sequential [✓] 126 0 0 126 / 126 0.0s Sem sequential [ ] 0 0 0 0 / 126 0.0s Sem parallel [ ] 3 0 0 3 / 126 0.1s Sem parallel [ ] 5 0 0 5 / 126 0.3s Sem parallel [ ] 8 0 0 8 / 126 0.5s Sem parallel [ ] 11 0 0 11 / 126 0.7s Sem parallel [ ] 15 0 0 15 / 126 0.9s Sem parallel [ ] 19 0 0 19 / 126 1.0s Sem parallel [ ] 24 0 0 24 / 126 1.2s Sem parallel [ ] 26 0 0 26 / 126 1.3s Sem parallel [ ] 27 0 0 27 / 126 1.4s Sem parallel [ ] 29 0 0 29 / 126 1.6s Sem parallel [ ] 32 0 0 32 / 126 1.8s Sem parallel [ ] 34 0 0 34 / 126 2.0s Sem parallel [ ] 35 0 0 35 / 126 2.1s Sem parallel [ ] 37 0 0 37 / 126 2.4s Sem parallel [ ] 40 0 0 40 / 126 2.9s Sem parallel [ ] 42 0 0 42 / 126 3.0s Sem parallel [ ] 46 0 0 46 / 126 3.1s Sem parallel [ ] 50 0 0 50 / 126 3.2s Sem parallel [ ] 53 0 0 53 / 126 3.4s Sem parallel [ ] 56 0 0 56 / 126 3.5s Sem parallel [ ] 60 0 0 60 / 126 3.8s Sem parallel [ ] 62 0 0 62 / 126 4.0s Sem parallel [ ] 64 0 0 64 / 126 4.1s Sem parallel [ ] 67 0 0 67 / 126 4.2s Sem parallel [ ] 71 0 0 71 / 126 4.7s Sem parallel [ ] 75 0 0 75 / 126 5.2s Sem parallel [ ] 79 0 0 79 / 126 5.4s Sem parallel [ ] 84 0 0 84 / 126 5.5s Sem parallel [ ] 90 0 0 90 / 126 5.6s Sem parallel [ ] 94 0 0 94 / 126 5.8s Sem parallel [ ] 95 0 0 95 / 126 5.9s Sem parallel [ ] 98 0 0 98 / 126 6.0s Sem parallel [ ] 100 0 0 100 / 126 6.1s Sem parallel [ ] 103 0 0 103 / 126 6.2s Sem parallel [ ] 104 0 0 104 / 126 6.4s Sem parallel [ ] 105 0 0 105 / 126 6.5s Sem parallel [ ] 109 0 0 109 / 126 6.6s Sem parallel [ ] 113 0 0 113 / 126 6.7s Sem parallel [ ] 114 0 0 114 / 126 6.9s Sem parallel [ ] 118 0 0 118 / 126 7.0s Sem parallel [ ] 121 0 0 121 / 126 7.2s Sem parallel [ ] 125 0 0 125 / 126 7.3s Sem parallel [✓] 126 0 0 126 / 126 7.3s Sem parallel ================================================================================ success (ran 2 tests) random seed: 2847908588852939605 generated error fail pass / total time test name [ ] 0 0 0 0 / 114 0.0s Sem sequential [✓] 114 0 0 114 / 114 0.0s Sem sequential [ ] 0 0 0 0 / 114 0.0s Sem parallel [ ] 3 0 0 3 / 114 0.2s Sem parallel [ ] 7 0 0 7 / 114 0.3s Sem parallel [ ] 9 0 0 9 / 114 0.4s Sem parallel [ ] 13 0 0 13 / 114 0.5s Sem parallel [ ] 16 0 0 16 / 114 0.7s Sem parallel [ ] 20 0 0 20 / 114 0.8s Sem parallel [ ] 22 0 0 22 / 114 1.3s Sem parallel [ ] 25 0 0 25 / 114 1.4s Sem parallel [ ] 29 0 0 29 / 114 1.5s Sem parallel [ ] 33 0 0 33 / 114 1.7s Sem parallel [ ] 36 0 0 36 / 114 1.8s Sem parallel [ ] 39 0 0 39 / 114 2.0s Sem parallel [ ] 40 0 0 40 / 114 2.4s Sem parallel [ ] 45 0 0 45 / 114 2.5s Sem parallel [ ] 50 0 0 50 / 114 2.6s Sem parallel [ ] 51 0 0 51 / 114 3.0s Sem parallel [ ] 55 0 0 55 / 114 3.1s Sem parallel [ ] 60 0 0 60 / 114 3.2s Sem parallel [ ] 61 0 0 61 / 114 3.3s Sem parallel [ ] 67 0 0 67 / 114 3.8s Sem parallel [ ] 72 0 0 72 / 114 3.9s Sem parallel [ ] 77 0 0 77 / 114 4.2s Sem parallel [ ] 79 0 0 79 / 114 4.3s Sem parallel [ ] 82 0 0 82 / 114 4.4s Sem parallel [ ] 84 0 0 84 / 114 4.6s Sem parallel [ ] 85 0 0 85 / 114 4.9s Sem parallel [ ] 89 0 0 89 / 114 5.1s Sem parallel [ ] 95 0 0 95 / 114 5.2s Sem parallel [ ] 100 0 0 100 / 114 5.4s Sem parallel [ ] 104 0 0 104 / 114 5.6s Sem parallel [ ] 105 0 0 105 / 114 5.9s Sem parallel [ ] 109 0 0 109 / 114 6.3s Sem parallel [ ] 110 0 0 110 / 114 6.5s Sem parallel [ ] 113 0 0 113 / 114 6.6s Sem parallel [ ] 114 0 0 114 / 114 6.7s Sem parallel [✓] 114 0 0 114 / 114 6.7s Sem parallel ================================================================================ success (ran 2 tests) random seed: 1410644938255478657 generated error fail pass / total time test name [ ] 0 0 0 0 / 75 0.0s Sem sequential [✓] 75 0 0 75 / 75 0.0s Sem sequential [ ] 0 0 0 0 / 75 0.0s Sem parallel [ ] 4 0 0 4 / 75 0.2s Sem parallel [ ] 9 0 0 9 / 75 0.3s Sem parallel [ ] 11 0 0 11 / 75 0.5s Sem parallel [ ] 18 0 0 18 / 75 0.8s Sem parallel [ ] 24 0 0 24 / 75 0.9s Sem parallel [ ] 26 0 0 26 / 75 1.1s Sem parallel [ ] 29 0 0 29 / 75 1.3s Sem parallel [ ] 38 0 0 38 / 75 1.4s Sem parallel [ ] 41 0 0 41 / 75 1.5s Sem parallel [ ] 44 0 0 44 / 75 1.7s Sem parallel [ ] 50 0 0 50 / 75 1.8s Sem parallel [ ] 55 0 0 55 / 75 1.9s Sem parallel [ ] 56 0 0 56 / 75 2.3s Sem parallel [ ] 60 0 0 60 / 75 2.5s Sem parallel [ ] 63 0 0 63 / 75 2.7s Sem parallel [ ] 65 0 0 65 / 75 3.0s Sem parallel [ ] 70 0 0 70 / 75 3.1s Sem parallel [ ] 75 0 0 75 / 75 3.3s Sem parallel [✓] 75 0 0 75 / 75 3.3s Sem parallel ================================================================================ success (ran 2 tests) random seed: 50230561255519264 generated error fail pass / total time test name [ ] 0 0 0 0 / 50 0.0s Sem sequential [✓] 50 0 0 50 / 50 0.0s Sem sequential [ ] 0 0 0 0 / 50 0.0s Sem parallel [ ] 6 0 0 6 / 50 0.1s Sem parallel [ ] 12 0 0 12 / 50 0.2s Sem parallel [ ] 16 0 0 16 / 50 0.4s Sem parallel [ ] 21 0 0 21 / 50 0.5s Sem parallel [ ] 24 0 0 24 / 50 0.6s Sem parallel [ ] 29 0 0 29 / 50 0.8s Sem parallel [ ] 35 0 0 35 / 50 1.0s Sem parallel [ ] 42 0 0 42 / 50 1.2s Sem parallel [ ] 45 0 0 45 / 50 1.3s Sem parallel [ ] 47 0 0 47 / 50 1.4s Sem parallel [✓] 50 0 0 50 / 50 1.5s Sem parallel ================================================================================ success (ran 2 tests) random seed: 1682516947123505632 generated error fail pass / total time test name [ ] 0 0 0 0 / 38 0.0s Sem sequential [✓] 38 0 0 38 / 38 0.0s Sem sequential [ ] 0 0 0 0 / 38 0.0s Sem parallel [ ] 2 0 0 2 / 38 0.2s Sem parallel [ ] 8 0 0 8 / 38 0.3s Sem parallel [ ] 13 0 0 13 / 38 0.4s Sem parallel [ ] 14 0 0 14 / 38 0.6s Sem parallel [ ] 15 0 0 15 / 38 0.7s Sem parallel [ ] 17 0 0 17 / 38 0.8s Sem parallel [ ] 21 0 0 21 / 38 1.1s Sem parallel [ ] 22 0 0 22 / 38 1.4s Sem parallel [ ] 26 0 0 26 / 38 1.5s Sem parallel [ ] 31 0 0 31 / 38 1.6s Sem parallel [ ] 36 0 0 36 / 38 1.8s Sem parallel [✓] 38 0 0 38 / 38 1.8s Sem parallel ================================================================================ success (ran 2 tests) random seed: 4269517565604656617 generated error fail pass / total time test name [ ] 0 0 0 0 / 32 0.0s Sem sequential [✓] 32 0 0 32 / 32 0.0s Sem sequential [ ] 0 0 0 0 / 32 0.0s Sem parallel [ ] 2 0 0 2 / 32 0.0s Sem parallel [ ] 6 0 0 6 / 32 0.3s Sem parallel [ ] 9 0 0 9 / 32 0.4s Sem parallel [ ] 12 0 0 12 / 32 0.5s Sem parallel [ ] 13 0 0 13 / 32 0.8s Sem parallel [ ] 16 0 0 16 / 32 0.9s Sem parallel [ ] 21 0 0 21 / 32 1.0s Sem parallel [ ] 24 0 0 24 / 32 1.2s Sem parallel [ ] 25 0 0 25 / 32 1.4s Sem parallel [ ] 29 0 0 29 / 32 1.5s Sem parallel [ ] 32 0 0 32 / 32 1.9s Sem parallel [✓] 32 0 0 32 / 32 1.9s Sem parallel ================================================================================ success (ran 2 tests) random seed: 247665389751113922 generated error fail pass / total time test name [ ] 0 0 0 0 / 32 0.0s Sem sequential [✓] 32 0 0 32 / 32 0.0s Sem sequential [ ] 0 0 0 0 / 32 0.0s Sem parallel [ ] 2 0 0 2 / 32 0.1s Sem parallel [ ] 3 0 0 3 / 32 0.3s Sem parallel [ ] 7 0 0 7 / 32 0.7s Sem parallel [ ] 10 0 0 10 / 32 0.8s Sem parallel [ ] 11 0 0 11 / 32 0.9s Sem parallel [ ] 13 0 0 13 / 32 1.3s Sem parallel [ ] 18 0 0 18 / 32 1.4s Sem parallel [ ] 20 0 0 20 / 32 1.7s Sem parallel [ ] 21 0 0 21 / 32 1.9s Sem parallel [ ] 22 0 0 22 / 32 2.1s Sem parallel [ ] 27 0 0 27 / 32 2.2s Sem parallel [ ] 31 0 0 31 / 32 2.3s Sem parallel [✓] 32 0 0 32 / 32 2.4s Sem parallel ================================================================================ success (ran 2 tests) (cd _build/default/bench && ./main.exe -brief 'Hashtbl with Picos_std_sync') Hashtbl with Picos_std_sync: operations over time/1 worker, 10% reads with Lock: 5.88 M/s operations over time/1 worker, 10% reads with Rwlock: 7.68 M/s operations over time/1 worker, 10% reads with Sem: 6.30 M/s operations over time/1 worker, 100% reads with Lock: 7.60 M/s operations over time/1 worker, 100% reads with Rwlock: 6.00 M/s operations over time/1 worker, 100% reads with Sem: 9.19 M/s operations over time/1 worker, 50% reads with Lock: 6.68 M/s operations over time/1 worker, 50% reads with Rwlock: 6.28 M/s operations over time/1 worker, 50% reads with Sem: 6.32 M/s operations over time/1 worker, 90% reads with Lock: 7.66 M/s operations over time/1 worker, 90% reads with Rwlock: 6.77 M/s operations over time/1 worker, 90% reads with Sem: 6.19 M/s operations over time/1 worker, 95% reads with Lock: 6.54 M/s operations over time/1 worker, 95% reads with Rwlock: 6.68 M/s operations over time/1 worker, 95% reads with Sem: 6.86 M/s operations over time/2 workers, 10% reads with Lock: 7.31 M/s operations over time/2 workers, 10% reads with Rwlock: 5.89 M/s operations over time/2 workers, 10% reads with Sem: 5.04 M/s operations over time/2 workers, 100% reads with Lock: 4.01 M/s operations over time/2 workers, 100% reads with Rwlock: 10.58 M/s operations over time/2 workers, 100% reads with Sem: 7.60 M/s operations over time/2 workers, 50% reads with Lock: 4.63 M/s operations over time/2 workers, 50% reads with Rwlock: 4.90 M/s operations over time/2 workers, 50% reads with Sem: 7.17 M/s operations over time/2 workers, 90% reads with Lock: 5.19 M/s operations over time/2 workers, 90% reads with Rwlock: 8.21 M/s operations over time/2 workers, 90% reads with Sem: 7.88 M/s operations over time/2 workers, 95% reads with Lock: 5.73 M/s operations over time/2 workers, 95% reads with Rwlock: 7.79 M/s operations over time/2 workers, 95% reads with Sem: 4.61 M/s operations over time/4 workers, 10% reads with Lock: 7.84 M/s operations over time/4 workers, 10% reads with Rwlock: 6.69 M/s operations over time/4 workers, 10% reads with Sem: 6.09 M/s operations over time/4 workers, 100% reads with Lock: 6.47 M/s operations over time/4 workers, 100% reads with Rwlock: 11.10 M/s operations over time/4 workers, 100% reads with Sem: 6.58 M/s operations over time/4 workers, 50% reads with Lock: 5.28 M/s operations over time/4 workers, 50% reads with Rwlock: 5.16 M/s operations over time/4 workers, 50% reads with Sem: 7.33 M/s operations over time/4 workers, 90% reads with Lock: 7.12 M/s operations over time/4 workers, 90% reads with Rwlock: 6.78 M/s operations over time/4 workers, 90% reads with Sem: 6.23 M/s operations over time/4 workers, 95% reads with Lock: 6.60 M/s operations over time/4 workers, 95% reads with Rwlock: 7.28 M/s operations over time/4 workers, 95% reads with Sem: 7.72 M/s operations over time/8 workers, 10% reads with Lock: 6.44 M/s operations over time/8 workers, 10% reads with Rwlock: 3.24 M/s operations over time/8 workers, 10% reads with Sem: 4.55 M/s operations over time/8 workers, 100% reads with Lock: 5.41 M/s operations over time/8 workers, 100% reads with Rwlock: 11.63 M/s operations over time/8 workers, 100% reads with Sem: 3.84 M/s operations over time/8 workers, 50% reads with Lock: 4.83 M/s operations over time/8 workers, 50% reads with Rwlock: 4.24 M/s operations over time/8 workers, 50% reads with Sem: 2.61 M/s operations over time/8 workers, 90% reads with Lock: 6.37 M/s operations over time/8 workers, 90% reads with Rwlock: 5.38 M/s operations over time/8 workers, 90% reads with Sem: 5.72 M/s operations over time/8 workers, 95% reads with Lock: 5.86 M/s operations over time/8 workers, 95% reads with Rwlock: 4.15 M/s operations over time/8 workers, 95% reads with Sem: 5.08 M/s time per operation/1 worker, 10% reads with Lock: 170.18 ns time per operation/1 worker, 10% reads with Rwlock: 130.25 ns time per operation/1 worker, 10% reads with Sem: 158.77 ns time per operation/1 worker, 100% reads with Lock: 131.61 ns time per operation/1 worker, 100% reads with Rwlock: 166.79 ns time per operation/1 worker, 100% reads with Sem: 108.81 ns time per operation/1 worker, 50% reads with Lock: 149.64 ns time per operation/1 worker, 50% reads with Rwlock: 159.24 ns time per operation/1 worker, 50% reads with Sem: 158.14 ns time per operation/1 worker, 90% reads with Lock: 130.55 ns time per operation/1 worker, 90% reads with Rwlock: 147.79 ns time per operation/1 worker, 90% reads with Sem: 161.49 ns time per operation/1 worker, 95% reads with Lock: 152.82 ns time per operation/1 worker, 95% reads with Rwlock: 149.68 ns time per operation/1 worker, 95% reads with Sem: 145.84 ns time per operation/2 workers, 10% reads with Lock: 273.65 ns time per operation/2 workers, 10% reads with Rwlock: 339.58 ns time per operation/2 workers, 10% reads with Sem: 396.94 ns time per operation/2 workers, 100% reads with Lock: 498.98 ns time per operation/2 workers, 100% reads with Rwlock: 189.02 ns time per operation/2 workers, 100% reads with Sem: 263.21 ns time per operation/2 workers, 50% reads with Lock: 431.99 ns time per operation/2 workers, 50% reads with Rwlock: 408.03 ns time per operation/2 workers, 50% reads with Sem: 278.94 ns time per operation/2 workers, 90% reads with Lock: 385.34 ns time per operation/2 workers, 90% reads with Rwlock: 243.58 ns time per operation/2 workers, 90% reads with Sem: 253.95 ns time per operation/2 workers, 95% reads with Lock: 349.21 ns time per operation/2 workers, 95% reads with Rwlock: 256.68 ns time per operation/2 workers, 95% reads with Sem: 434.19 ns time per operation/4 workers, 10% reads with Lock: 509.91 ns time per operation/4 workers, 10% reads with Rwlock: 597.50 ns time per operation/4 workers, 10% reads with Sem: 656.96 ns time per operation/4 workers, 100% reads with Lock: 618.33 ns time per operation/4 workers, 100% reads with Rwlock: 360.36 ns time per operation/4 workers, 100% reads with Sem: 608.28 ns time per operation/4 workers, 50% reads with Lock: 757.54 ns time per operation/4 workers, 50% reads with Rwlock: 775.60 ns time per operation/4 workers, 50% reads with Sem: 545.60 ns time per operation/4 workers, 90% reads with Lock: 562.10 ns time per operation/4 workers, 90% reads with Rwlock: 589.73 ns time per operation/4 workers, 90% reads with Sem: 641.79 ns time per operation/4 workers, 95% reads with Lock: 605.72 ns time per operation/4 workers, 95% reads with Rwlock: 549.59 ns time per operation/4 workers, 95% reads with Sem: 517.89 ns time per operation/8 workers, 10% reads with Lock: 1242.59 ns time per operation/8 workers, 10% reads with Rwlock: 2472.76 ns time per operation/8 workers, 10% reads with Sem: 1758.41 ns time per operation/8 workers, 100% reads with Lock: 1479.40 ns time per operation/8 workers, 100% reads with Rwlock: 688.02 ns time per operation/8 workers, 100% reads with Sem: 2083.64 ns time per operation/8 workers, 50% reads with Lock: 1655.03 ns time per operation/8 workers, 50% reads with Rwlock: 1886.69 ns time per operation/8 workers, 50% reads with Sem: 3061.31 ns time per operation/8 workers, 90% reads with Lock: 1255.07 ns time per operation/8 workers, 90% reads with Rwlock: 1487.39 ns time per operation/8 workers, 90% reads with Sem: 1397.84 ns time per operation/8 workers, 95% reads with Lock: 1364.88 ns time per operation/8 workers, 95% reads with Rwlock: 1928.40 ns time per operation/8 workers, 95% reads with Sem: 1574.05 ns (cd _build/default/bench && ./main.exe -brief Picos_stdio) Picos_stdio: blocking reads over time/1 worker: 0.06 M/s blocking reads over time/2 workers: 0.10 M/s blocking reads over time/4 workers: 0.18 M/s non-blocking reads over time/1 worker: 0.66 M/s non-blocking reads over time/2 workers: 1.31 M/s non-blocking reads over time/4 workers: 2.73 M/s time per blocking read/1 worker: 16437.47 ns time per blocking read/2 workers: 20359.15 ns time per blocking read/4 workers: 22852.08 ns time per non-blocking read/1 worker: 1513.83 ns time per non-blocking read/2 workers: 1525.02 ns time per non-blocking read/4 workers: 1466.16 ns (cd _build/default/bench && ./main.exe -brief 'Picos_sync Stream') Picos_sync Stream: messages over time/1 nb pusher, 1 nb reader: 3.86 M/s messages over time/2 nb pushers, 1 nb reader: 4.51 M/s messages over time/4 nb pushers, 1 nb reader: 5.76 M/s messages over time/one domain: 4.64 M/s time per message/1 nb pusher, 1 nb reader: 518.20 ns time per message/2 nb pushers, 1 nb reader: 665.06 ns time per message/4 nb pushers, 1 nb reader: 868.49 ns time per message/one domain: 215.74 ns (cd _build/default/bench && ./main.exe -brief Fib) Fib: spawns over time/1 mfifo, fib 20: 0.93 M/s spawns over time/2 mfifos, fib 20: 1.79 M/s spawns over time/4 mfifos, fib 20: 4.05 M/s spawns over time/8 mfifos, fib 20: 6.64 M/s time per spawn/1 mfifo, fib 20: 1073.86 ns time per spawn/2 mfifos, fib 20: 1119.25 ns time per spawn/4 mfifos, fib 20: 988.29 ns time per spawn/8 mfifos, fib 20: 1205.45 ns (cd _build/default/bench && ./main.exe -brief 'Picos binaries') Picos binaries: binary size/picos: 94.93 kB binary size/picos.domain: 5.04 kB binary size/picos.thread: 4.47 kB binary size/picos_aux.htbl: 58.16 kB binary size/picos_aux.mpmcq: 17.05 kB binary size/picos_aux.mpscq: 20.44 kB binary size/picos_aux.rc: 19.84 kB binary size/picos_io: 115.90 kB binary size/picos_io.fd: 10.69 kB binary size/picos_io.select: 67.04 kB binary size/picos_io_cohttp: 48.52 kB binary size/picos_lwt: 29.74 kB binary size/picos_lwt.unix: 16.07 kB binary size/picos_mux.fifo: 30.06 kB binary size/picos_mux.multififo: 67.30 kB binary size/picos_mux.random: 52.78 kB binary size/picos_mux.thread: 26.50 kB binary size/picos_std.awaitable: 36.45 kB binary size/picos_std.event: 25.92 kB binary size/picos_std.finally: 20.75 kB binary size/picos_std.structured: 94.04 kB binary size/picos_std.sync: 212.94 kB (cd _build/default/bench && ./main.exe -brief 'Bounded_q with Picos_std_sync') Bounded_q with Picos_std_sync: messages over time/1 adder, 1 taker with Lock: 3.46 M/s messages over time/1 adder, 2 takers with Lock: 1.60 M/s messages over time/1 adder, 4 takers with Lock: 1.27 M/s messages over time/2 adders, 1 taker with Lock: 1.16 M/s messages over time/2 adders, 2 takers with Lock: 0.95 M/s messages over time/2 adders, 4 takers with Lock: 1.77 M/s messages over time/4 adders, 1 taker with Lock: 5.02 M/s messages over time/4 adders, 2 takers with Lock: 1.95 M/s messages over time/4 adders, 4 takers with Lock: 1.79 M/s messages over time/one domain with Lock: 12.07 M/s time per message/1 adder, 1 taker with Lock: 578.00 ns time per message/1 adder, 2 takers with Lock: 2187.99 ns time per message/1 adder, 4 takers with Lock: 3944.74 ns time per message/2 adders, 1 taker with Lock: 2580.58 ns time per message/2 adders, 2 takers with Lock: 4214.81 ns time per message/2 adders, 4 takers with Lock: 3499.84 ns time per message/4 adders, 1 taker with Lock: 995.56 ns time per message/4 adders, 2 takers with Lock: 3084.30 ns time per message/4 adders, 4 takers with Lock: 5221.45 ns time per message/one domain with Lock: 82.88 ns (cd _build/default/bench && ./main.exe -brief 'Memory usage') Memory usage: stack and heap used/Fun.protect: 80.00 B stack and heap used/fiber in a bundle: 240.00 B stack and heap used/fiber in a flock: 256.00 B stack and heap used/fiber with shared computation & latch: 240.00 B stack and heap used/finally: 40.00 B stack and heap used/instantiate: 96.00 B stack and heap used/join_after bundle: 248.00 B stack and heap used/join_after flock: 248.00 B stack and heap used/lastly: 32.00 B stack and heap used/promise in a bundle: 360.00 B stack and heap used/promise in a flock: 376.00 B 2025-06-13 16:29.48 ---> saved as "aa0afff8884c726184869bfa357272944af26f92ee1bfd7b9eea49bd4dd631fb" Job succeeded 2025-06-13 16:29.49: Job succeeded