Organisationsocaml-multicorepicosd40778 ()fedora-41-4.14_opam-2.3

fedora-41-4.14_opam-2.3

Logs

Steps to Reproduce
git clone --recursive "https://github.com/ocaml-multicore/picos.git" -b "main" && cd "picos" && git reset --hard d4077850
cat > Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:fedora-41-ocaml-4.14@sha256:d4c1bb0291bee4e15020d5839c102ae83acfedbb8065f510788d2b5d5cab8e31
# fedora-41-4.14_opam-2.3
USER 1000:1000
ENV CLICOLOR_FORCE="1"
ENV OPAMCOLOR="always"
WORKDIR /src
RUN sudo dnf install -y findutils
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 cf5182fecd136e84d8ca14d9c0774986a77f5209 || git fetch origin master) && git reset -q --hard cf5182fecd136e84d8ca14d9c0774986a77f5209 && 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.8.0 angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 backoff.0.1.1 base.v0.16.3 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.1 bigstringaf.0.10.0 bos.0.2.1 ca-certs.1.0.0 camlp-streams.5.0.1 cmdliner.1.3.0 cohttp.6.0.0 cohttp-lwt.6.0.0 cohttp-lwt-unix.6.0.0 conduit.7.1.0 conduit-lwt.7.1.0 conduit-lwt-unix.7.1.0 conf-bash.1 conf-gmp.4 conf-gmp-powm-sec.3 conf-npm.1 conf-pkg-config.4 containers.3.15 cppo.1.8.0 csexp.1.5.2 digestif.1.2.0 domain-local-await.1.0.1 domain-name.0.4.1 domain_shims.0.1.0 dscheck.0.5.0 dune.3.17.2 dune-configurator.3.17.2 duration.0.2.1 either.1.0.0 eqaf.0.10 fmt.0.9.0 fpath.0.7.3 gen.1.1 gmap.0.3.0 http.6.0.0 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.7.0 lwt.5.9.0 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.0 mirage-crypto-ec.2.0.0 mirage-crypto-pk.2.0.0 mirage-crypto-rng.2.0.0 mtime.2.1.0 multicore-bench.0.1.7 multicore-magic.2.3.1 multicore-magic-dscheck.2.3.1 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.3.7.3 ocamlbuild.0.15.0 ocamlfind.1.9.8 ocplib-endian.1.2 ohex.0.2.0 oseq.0.5.1 ppx_derivers.1.2.1 ppx_sexp_conv.v0.16.0 ppxlib.0.35.0 psq.0.2.1 ptime.1.2.0 qcheck-core.0.23 qcheck-multicoretests-util.0.7 qcheck-stm.0.7 re.1.12.0 result.1.5 rresult.0.7.0 sedlex.3.3 seq.base sexplib0.v0.16.0 stdlib-shims.0.3.0 stringext.1.6.0 thread-local-storage.0.2 thread-table.1.0.0 topkg.1.0.7 tsort.2.1.0 uri.4.4.0 uri-sexp.4.4.0 uutf.1.0.3 x509.1.0.5 yojson.2.2.2 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 .
2025-02-19 22:07.05: New job: test ocaml-multicore/picos https://github.com/ocaml-multicore/picos.git#refs/heads/main (d4077850cea0bfd6361a2c04da398026e507ae0e) (linux-x86_64:fedora-41-4.14_opam-2.3)
Base: ocaml/opam:fedora-41-ocaml-4.14@sha256:d4c1bb0291bee4e15020d5839c102ae83acfedbb8065f510788d2b5d5cab8e31
Opam project build


To reproduce locally:


git clone --recursive "https://github.com/ocaml-multicore/picos.git" -b "main" && cd "picos" && git reset --hard d4077850
cat > Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:fedora-41-ocaml-4.14@sha256:d4c1bb0291bee4e15020d5839c102ae83acfedbb8065f510788d2b5d5cab8e31
# fedora-41-4.14_opam-2.3
USER 1000:1000
ENV CLICOLOR_FORCE="1"
ENV OPAMCOLOR="always"
WORKDIR /src
RUN sudo dnf install -y findutils
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 cf5182fecd136e84d8ca14d9c0774986a77f5209 || git fetch origin master) && git reset -q --hard cf5182fecd136e84d8ca14d9c0774986a77f5209 && 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.8.0 angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 backoff.0.1.1 base.v0.16.3 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.1 bigstringaf.0.10.0 bos.0.2.1 ca-certs.1.0.0 camlp-streams.5.0.1 cmdliner.1.3.0 cohttp.6.0.0 cohttp-lwt.6.0.0 cohttp-lwt-unix.6.0.0 conduit.7.1.0 conduit-lwt.7.1.0 conduit-lwt-unix.7.1.0 conf-bash.1 conf-gmp.4 conf-gmp-powm-sec.3 conf-npm.1 conf-pkg-config.4 containers.3.15 cppo.1.8.0 csexp.1.5.2 digestif.1.2.0 domain-local-await.1.0.1 domain-name.0.4.1 domain_shims.0.1.0 dscheck.0.5.0 dune.3.17.2 dune-configurator.3.17.2 duration.0.2.1 either.1.0.0 eqaf.0.10 fmt.0.9.0 fpath.0.7.3 gen.1.1 gmap.0.3.0 http.6.0.0 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.7.0 lwt.5.9.0 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.0 mirage-crypto-ec.2.0.0 mirage-crypto-pk.2.0.0 mirage-crypto-rng.2.0.0 mtime.2.1.0 multicore-bench.0.1.7 multicore-magic.2.3.1 multicore-magic-dscheck.2.3.1 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.3.7.3 ocamlbuild.0.15.0 ocamlfind.1.9.8 ocplib-endian.1.2 ohex.0.2.0 oseq.0.5.1 ppx_derivers.1.2.1 ppx_sexp_conv.v0.16.0 ppxlib.0.35.0 psq.0.2.1 ptime.1.2.0 qcheck-core.0.23 qcheck-multicoretests-util.0.7 qcheck-stm.0.7 re.1.12.0 result.1.5 rresult.0.7.0 sedlex.3.3 seq.base sexplib0.v0.16.0 stdlib-shims.0.3.0 stringext.1.6.0 thread-local-storage.0.2 thread-table.1.0.0 topkg.1.0.7 tsort.2.1.0 uri.4.4.0 uri-sexp.4.4.0 uutf.1.0.3 x509.1.0.5 yojson.2.2.2 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-02-19 22:07.05: Using cache hint "ocaml-multicore/picos-ocaml/opam:fedora-41-ocaml-4.14@sha256:d4c1bb0291bee4e15020d5839c102ae83acfedbb8065f510788d2b5d5cab8e31-fedora-41-4.14_opam-2.3-3e8278a55c5738fdb537b3b4afd3aeb9"
2025-02-19 22:07.05: Using OBuilder spec:
((from ocaml/opam:fedora-41-ocaml-4.14@sha256:d4c1bb0291bee4e15020d5839c102ae83acfedbb8065f510788d2b5d5cab8e31)
(comment fedora-41-4.14_opam-2.3)
(user (uid 1000) (gid 1000))
(env CLICOLOR_FORCE 1)
(env OPAMCOLOR always)
(workdir /src)
(run (network host)
(shell "sudo dnf install -y findutils"))
(run (shell "sudo ln -f /usr/bin/opam-2.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 cf5182fecd136e84d8ca14d9c0774986a77f5209 || git fetch origin master) && git reset -q --hard cf5182fecd136e84d8ca14d9c0774986a77f5209 && 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.8.0 angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 backoff.0.1.1 base.v0.16.3 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.1 bigstringaf.0.10.0 bos.0.2.1 ca-certs.1.0.0 camlp-streams.5.0.1 cmdliner.1.3.0 cohttp.6.0.0 cohttp-lwt.6.0.0 cohttp-lwt-unix.6.0.0 conduit.7.1.0 conduit-lwt.7.1.0 conduit-lwt-unix.7.1.0 conf-bash.1 conf-gmp.4 conf-gmp-powm-sec.3 conf-npm.1 conf-pkg-config.4 containers.3.15 cppo.1.8.0 csexp.1.5.2 digestif.1.2.0 domain-local-await.1.0.1 domain-name.0.4.1 domain_shims.0.1.0 dscheck.0.5.0 dune.3.17.2 dune-configurator.3.17.2 duration.0.2.1 either.1.0.0 eqaf.0.10 fmt.0.9.0 fpath.0.7.3 gen.1.1 gmap.0.3.0 http.6.0.0 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.7.0 lwt.5.9.0 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.0 mirage-crypto-ec.2.0.0 mirage-crypto-pk.2.0.0 mirage-crypto-rng.2.0.0 mtime.2.1.0 multicore-bench.0.1.7 multicore-magic.2.3.1 multicore-magic-dscheck.2.3.1 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.3.7.3 ocamlbuild.0.15.0 ocamlfind.1.9.8 ocplib-endian.1.2 ohex.0.2.0 oseq.0.5.1 ppx_derivers.1.2.1 ppx_sexp_conv.v0.16.0 ppxlib.0.35.0 psq.0.2.1 ptime.1.2.0 qcheck-core.0.23 qcheck-multicoretests-util.0.7 qcheck-stm.0.7 re.1.12.0 result.1.5 rresult.0.7.0 sedlex.3.3 seq.base sexplib0.v0.16.0 stdlib-shims.0.3.0 stringext.1.6.0 thread-local-storage.0.2 thread-table.1.0.0 topkg.1.0.7 tsort.2.1.0 uri.4.4.0 uri-sexp.4.4.0 uutf.1.0.3 x509.1.0.5 yojson.2.2.2 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-02-19 22:07.05: Waiting for resource in pool OCluster
2025-02-19 22:07.06: Waiting for worker…
2025-02-19 22:08.11: Got resource from pool OCluster
Building on x86-bm-c2.sw.ocaml.org
All commits already cached
HEAD is now at d407785 Drop `picos` from `libraries` as it comes as a `re_export`


(from ocaml/opam:fedora-41-ocaml-4.14@sha256:d4c1bb0291bee4e15020d5839c102ae83acfedbb8065f510788d2b5d5cab8e31)
2025-02-19 22:08.32 ---> saved as "d0edabe3039e3be4180746fad9671a6ef3897e6596e3ed00e2e9bb506d0c0dac"


/: (comment fedora-41-4.14_opam-2.3)


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


/: (env CLICOLOR_FORCE 1)


/: (env OPAMCOLOR always)


/: (workdir /src)


/src: (run (network host)
(shell "sudo dnf install -y findutils"))
Updating and loading repositories:
Fedora 41 - x86_64 - Updates           100% | 265.8 KiB/s |  24.5 KiB |  00m00s
Fedora 41 - x86_64 - Updates           100% |   4.0 MiB/s |   2.7 MiB |  00m01s
Repositories loaded.
Package "findutils-1:4.10.0-4.fc41.x86_64" is already installed.


Nothing to do.
2025-02-19 22:08.36 ---> saved as "c621465988ed1c828ca7da7fadddd8e83f549e421f75c15180f30539cc26e463"


/src: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam"))
2025-02-19 22:08.36 ---> saved as "794c3e2eedd4dfa3255f5981656f7a03c37abaee8d7f172d2526801b9bf56eac"


/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
[NOTE] The 'jobs' option was reset, its value was 255 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=255 --global
Format upgrade done.


<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[ERROR] Could not update repository "opam-repository-archive": "/usr/bin/git fetch -q" exited with code 128 "fatal: unable to access 'https://github.com/ocaml/opam-repository-archive/': Could not resolve host: github.com"
[default] synchronised from file:///home/opam/opam-repository
2025-02-19 22:10.10 ---> saved as "3060dc50c0b597ec9abdc3140e40df94bea95f35d789157c5f2e2857caf1139a"


/src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
Linux 5.15.0-130-generic
The OCaml toplevel, version 4.14.2
2.3.0
2025-02-19 22:10.10 ---> saved as "a34780d28de848ae489944f80996f4c3b1650d516721eecc8057dd408911b4e9"


/src: (workdir /src)


/src: (run (shell "sudo chown opam /src"))
2025-02-19 22:10.10 ---> saved as "835e23136df5a5f441ea8e6994e29629d5aef0d747ae06bba9d4eba9828dbbac"


/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "cd ~/opam-repository && (git cat-file -e cf5182fecd136e84d8ca14d9c0774986a77f5209 || git fetch origin master) && git reset -q --hard cf5182fecd136e84d8ca14d9c0774986a77f5209 && git log --no-decorate -n1 --oneline && opam update -u"))
From https://github.com/ocaml/opam-repository
* branch                  master     -> FETCH_HEAD
94514fa0d0..3f0fbcdd62  master     -> origin/master
cf5182fecd Merge pull request #27465 from hannesm/release-domain-name-v0.4.1


<><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><>
[opam-repository-archive] synchronised from git+https://github.com/ocaml/opam-repository-archive
[default] synchronised from 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-02-19 22:11.21 ---> saved as "001a5531cf82db002aff3d75c4da4882ad529bb09d6647ab925ce80911bf4a7e"


/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-02-19 22:11.22 ---> saved as "06ae27ce3b5ad5f8c9bc91a6efa86f74c1fcb86986baff67ecd785d096117149"


/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-02-19 22:11.33 ---> saved as "b06deac1e556da695364171323d52528309eccab45b9438cb914c3b0f0ab818e"


/src: (run (network host)
(shell "echo '(lang dune 3.0)' > './dune-project'"))
2025-02-19 22:11.33 ---> saved as "1a5c479334ad3bbf26a52b5266f21567343cc1c0efaaae38cf10708ceef81cda"


/src: (env DEPS "alcotest.1.8.0 angstrom.0.16.1 asn1-combinators.0.3.2 astring.0.8.5 backoff.0.1.1 base.v0.16.3 base-bigarray.base base-bytes.base base-threads.base base-unix.base base64.3.5.1 bigstringaf.0.10.0 bos.0.2.1 ca-certs.1.0.0 camlp-streams.5.0.1 cmdliner.1.3.0 cohttp.6.0.0 cohttp-lwt.6.0.0 cohttp-lwt-unix.6.0.0 conduit.7.1.0 conduit-lwt.7.1.0 conduit-lwt-unix.7.1.0 conf-bash.1 conf-gmp.4 conf-gmp-powm-sec.3 conf-npm.1 conf-pkg-config.4 containers.3.15 cppo.1.8.0 csexp.1.5.2 digestif.1.2.0 domain-local-await.1.0.1 domain-name.0.4.1 domain_shims.0.1.0 dscheck.0.5.0 dune.3.17.2 dune-configurator.3.17.2 duration.0.2.1 either.1.0.0 eqaf.0.10 fmt.0.9.0 fpath.0.7.3 gen.1.1 gmap.0.3.0 http.6.0.0 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.7.0 lwt.5.9.0 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.0 mirage-crypto-ec.2.0.0 mirage-crypto-pk.2.0.0 mirage-crypto-rng.2.0.0 mtime.2.1.0 multicore-bench.0.1.7 multicore-magic.2.3.1 multicore-magic-dscheck.2.3.1 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-compiler-libs.v0.12.4 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocaml-version.3.7.3 ocamlbuild.0.15.0 ocamlfind.1.9.8 ocplib-endian.1.2 ohex.0.2.0 oseq.0.5.1 ppx_derivers.1.2.1 ppx_sexp_conv.v0.16.0 ppxlib.0.35.0 psq.0.2.1 ptime.1.2.0 qcheck-core.0.23 qcheck-multicoretests-util.0.7 qcheck-stm.0.7 re.1.12.0 result.1.5 rresult.0.7.0 sedlex.3.3 seq.base sexplib0.v0.16.0 stdlib-shims.0.3.0 stringext.1.6.0 thread-local-storage.0.2 thread-table.1.0.0 topkg.1.0.7 tsort.2.1.0 uri.4.4.0 uri-sexp.4.4.0 uutf.1.0.3 x509.1.0.5 yojson.2.2.2 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 "yum" "makecache"
- Updating and loading repositories:
- Repositories loaded.
- Metadata cache created.


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


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


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


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


+ /usr/bin/sudo "yum" "install" "-y" "gmp-devel" "npm"
- Updating and loading repositories:
- Repositories loaded.
- Package           Arch   Version                   Repository      Size
- Installing:
-  gmp-devel        x86_64 1:6.3.0-2.fc41            fedora     352.3 KiB
-  nodejs-npm       x86_64 1:10.9.0-1.22.11.0.3.fc41 updates      9.4 MiB
- Installing dependencies:
-  gmp-c++          x86_64 1:6.3.0-2.fc41            fedora      31.8 KiB
-  libuv            x86_64 1:1.50.0-1.fc41           updates    568.4 KiB
-  nodejs           x86_64 1:22.11.0-3.fc41          updates    148.5 KiB
-  nodejs-libs      x86_64 1:22.11.0-3.fc41          updates     73.8 MiB
- Installing weak dependencies:
-  nodejs-docs      noarch 1:22.11.0-3.fc41          updates     91.9 MiB
-  nodejs-full-i18n x86_64 1:22.11.0-3.fc41          updates     29.3 MiB
- 
- Transaction Summary:
-  Installing:         8 packages
- 
- Total size of inbound packages is 38 MiB. Need to download 38 MiB.
- After this operation, 205 MiB extra will be used (install 205 MiB, remove 0 B).
- [1/8] gmp-c++-1:6.3.0-2.fc41.x86_64     100% | 109.0 KiB/s |  18.6 KiB |  00m00s
- [2/8] gmp-devel-1:6.3.0-2.fc41.x86_64   100% | 863.5 KiB/s | 174.4 KiB |  00m00s
- [3/8] nodejs-npm-1:10.9.0-1.22.11.0.3.f 100% |   8.8 MiB/s |   2.4 MiB |  00m00s
- [4/8] nodejs-1:22.11.0-3.fc41.x86_64    100% | 388.3 KiB/s |  45.0 KiB |  00m00s
- [5/8] libuv-1:1.50.0-1.fc41.x86_64      100% |   8.1 MiB/s | 264.3 KiB |  00m00s
- [6/8] nodejs-full-i18n-1:22.11.0-3.fc41 100% |  47.3 MiB/s |   8.4 MiB |  00m00s
- [7/8] nodejs-docs-1:22.11.0-3.fc41.noar 100% |   8.3 MiB/s |   8.6 MiB |  00m01s
- [8/8] nodejs-libs-1:22.11.0-3.fc41.x86_ 100% |  11.0 MiB/s |  18.3 MiB |  00m02s
- --------------------------------------------------------------------------------
- [8/8] Total                             100% |  18.6 MiB/s |  38.2 MiB |  00m02s
- Running transaction
- [ 1/10] Verify package files            100% |  26.0   B/s |   8.0   B |  00m00s
- [ 2/10] Prepare transaction             100% |  82.0   B/s |   8.0   B |  00m00s
- [ 3/10] Installing libuv-1:1.50.0-1.fc4 100% | 111.6 MiB/s | 571.2 KiB |  00m00s
- [ 4/10] Installing nodejs-libs-1:22.11. 100% | 176.9 MiB/s |  73.8 MiB |  00m00s
- [ 5/10] Installing nodejs-1:22.11.0-3.f 100% |  73.5 MiB/s | 150.6 KiB |  00m00s
- [ 6/10] Installing gmp-c++-1:6.3.0-2.fc 100% |  31.8 MiB/s |  32.6 KiB |  00m00s
- [ 7/10] Installing gmp-devel-1:6.3.0-2. 100% |  31.4 MiB/s | 354.1 KiB |  00m00s
- [ 8/10] Installing nodejs-npm-1:10.9.0- 100% |  36.2 MiB/s |   9.9 MiB |  00m00s
- [ 9/10] Installing nodejs-full-i18n-1:2 100% | 164.6 MiB/s |  29.3 MiB |  00m00s
- [10/10] Installing nodejs-docs-1:22.11. 100% | 609.3 MiB/s |  92.0 MiB |  00m00s
- Complete!
+ /usr/bin/rpm "-q" "--whatprovides" "gmp-devel" "npm"
- gmp-devel-6.3.0-2.fc41.x86_64
- nodejs-npm-10.9.0-1.22.11.0.3.fc41.x86_64
2025-02-19 22:12.02 ---> saved as "82ae0a61aa16e459f3e506ca7e348560e5fb98a5768e53994d3de3b47a232cd9"


/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam install $DEPS"))
[NOTE] Package ocaml-options-vanilla is already installed (current version is 1).
[NOTE] Package ocaml-config is already installed (current version is 2).
[NOTE] Package ocaml-base-compiler is already installed (current version is 4.14.2).
[NOTE] Package ocaml is already installed (current version is 4.14.2).
[NOTE] Package base-unix is already installed (current version is base).
[NOTE] Package base-threads is already installed (current version is base).
[NOTE] Package base-bigarray is already installed (current version is base).
The following actions will be performed:
=== install 98 packages
- install alcotest                   1.8.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.16.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.0
- install camlp-streams              5.0.1
- install cmdliner                   1.3.0
- install cohttp                     6.0.0
- install cohttp-lwt                 6.0.0
- install cohttp-lwt-unix            6.0.0
- install conduit                    7.1.0
- install conduit-lwt                7.1.0
- install conduit-lwt-unix           7.1.0
- install conf-bash                  1
- install conf-gmp                   4
- install conf-gmp-powm-sec          3
- install conf-npm                   1
- install conf-pkg-config            4
- install containers                 3.15
- install cppo                       1.8.0
- install csexp                      1.5.2
- install digestif                   1.2.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.17.2
- install dune-configurator          3.17.2
- install duration                   0.2.1
- install either                     1.0.0
- install eqaf                       0.10
- install fmt                        0.9.0
- install fpath                      0.7.3
- install gen                        1.1
- install gmap                       0.3.0
- install http                       6.0.0
- 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.7.0
- install lwt                        5.9.0
- 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.0
- install mirage-crypto-ec           2.0.0
- install mirage-crypto-pk           2.0.0
- install mirage-crypto-rng          2.0.0
- 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.12.4
- install ocaml-syntax-shims         1.0.0
- install ocaml-version              3.7.3
- install ocamlbuild                 0.15.0
- install ocamlfind                  1.9.8
- install ocplib-endian              1.2
- install ohex                       0.2.0
- install oseq                       0.5.1
- install ppx_derivers               1.2.1
- install ppx_sexp_conv              v0.16.0
- install ppxlib                     0.35.0
- install psq                        0.2.1
- install ptime                      1.2.0
- install qcheck-core                0.23
- install qcheck-multicoretests-util 0.7
- install qcheck-stm                 0.7
- install re                         1.12.0
- install result                     1.5
- install rresult                    0.7.0
- install sedlex                     3.3
- install seq                        base
- install sexplib0                   v0.16.0
- install stdlib-shims               0.3.0
- install stringext                  1.6.0
- install thread-local-storage       0.2
- install thread-table               1.0.0
- install topkg                      1.0.7
- install tsort                      2.1.0
- install uri                        4.4.0
- install uri-sexp                   4.4.0
- install uutf                       1.0.3
- install x509                       1.0.5
- install yojson                     2.2.2
- install zarith                     1.14


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


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


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


[1/2/3/4] 1


+ /usr/bin/sudo "yum" "install" "-y" "npm"
- Updating and loading repositories:
- Repositories loaded.
- Package "nodejs-npm-1:10.9.0-1.22.11.0.3.fc41.x86_64" is already installed.
- 
- Nothing to do.
+ /usr/bin/rpm "-q" "--whatprovides" "npm"
- nodejs-npm-10.9.0-1.22.11.0.3.fc41.x86_64


<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved asn1-combinators.0.3.2  (cached)
-> retrieved angstrom.0.16.1  (cached)
-> retrieved astring.0.8.5  (cached)
-> retrieved alcotest.1.8.0  (cached)
-> retrieved backoff.0.1.1  (cached)
-> retrieved base.v0.16.3  (cached)
-> retrieved base64.3.5.1  (cached)
-> retrieved bigstringaf.0.10.0  (cached)
-> retrieved ca-certs.1.0.0  (cached)
-> retrieved bos.0.2.1  (cached)
-> retrieved camlp-streams.5.0.1  (cached)
-> retrieved cmdliner.1.3.0  (cached)
-> retrieved conf-gmp.4  (cached)
-> retrieved conf-gmp-powm-sec.3  (cached)
-> retrieved cohttp.6.0.0, cohttp-lwt.6.0.0, cohttp-lwt-unix.6.0.0, http.6.0.0  (cached)
-> retrieved conduit.7.1.0, conduit-lwt.7.1.0, conduit-lwt-unix.7.1.0  (cached)
-> retrieved containers.3.15  (cached)
-> installed conf-bash.1
-> installed conf-gmp.4
-> installed conf-npm.1
-> installed conf-pkg-config.4
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed conf-gmp-powm-sec.3
-> retrieved domain-local-await.1.0.1  (cached)
-> 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.9.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.2.0  (cached)
-> retrieved kdf.1.0.0  (cached)
-> retrieved logs.0.7.0  (cached)
-> retrieved lwt.5.9.0  (cached)
-> retrieved magic-mime.1.3.1  (cached)
-> retrieved mdx.2.5.0  (cached)
-> retrieved menhir.20240715, menhirCST.20240715, menhirLib.20240715, menhirSdk.20240715  (cached)
-> retrieved dune.3.17.2, dune-configurator.3.17.2  (cached)
-> retrieved js_of_ocaml.6.0.1, js_of_ocaml-compiler.6.0.1  (cached)
-> retrieved mirage-crypto.2.0.0, mirage-crypto-ec.2.0.0, mirage-crypto-pk.2.0.0, mirage-crypto-rng.2.0.0  (cached)
-> retrieved mtime.2.1.0  (cached)
-> retrieved multicore-bench.0.1.7  (cached)
-> retrieved multicore-magic.2.3.1, multicore-magic-dscheck.2.3.1  (cached)
-> retrieved ocaml-compiler-libs.v0.12.4  (cached)
-> installed cmdliner.1.3.0
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocaml-version.3.7.3  (cached)
-> retrieved ocamlbuild.0.15.0  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved ohex.0.2.0  (cached)
-> retrieved oseq.0.5.1  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_sexp_conv.v0.16.0  (cached)
-> retrieved psq.0.2.1  (cached)
-> retrieved ptime.1.2.0  (cached)
-> retrieved qcheck-multicoretests-util.0.7, qcheck-stm.0.7  (cached)
-> retrieved ppxlib.0.35.0  (cached)
-> retrieved qcheck-core.0.23  (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 sexplib0.v0.16.0  (cached)
-> retrieved sedlex.3.3  (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 topkg.1.0.7  (cached)
-> retrieved tsort.2.1.0  (cached)
-> retrieved uutf.1.0.3  (cached)
-> retrieved uri.4.4.0, uri-sexp.4.4.0  (cached)
-> retrieved x509.1.0.5  (cached)
-> retrieved yojson.2.2.2  (cached)
-> retrieved zarith.1.14  (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.15.0
-> installed zarith.1.14
-> installed topkg.1.0.7
-> installed rresult.0.7.0
-> installed uutf.1.0.3
-> installed mtime.2.1.0
-> installed fmt.0.9.0
-> installed ptime.1.2.0
-> installed astring.0.8.5
-> installed fpath.0.7.3
-> installed dune.3.17.2
-> installed backoff.0.1.1
-> installed camlp-streams.5.0.1
-> installed base64.3.5.1
-> installed csexp.1.5.2
-> installed asn1-combinators.0.3.2
-> installed cppo.1.8.0
-> 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.0.0
-> 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-compiler-libs.v0.12.4
-> installed ocaml-syntax-shims.1.0.0
-> installed ocaml-version.3.7.3
-> installed ohex.0.2.0
-> installed oseq.0.5.1
-> installed ppx_derivers.1.2.1
-> installed psq.0.2.1
-> installed re.1.12.0
-> installed result.1.5
-> installed sexplib0.v0.16.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.1.0
-> installed ocplib-endian.1.2
-> installed qcheck-core.0.23
-> installed yojson.2.2.2
-> installed ipaddr.5.6.0
-> installed domain-local-await.1.0.1
-> installed digestif.1.2.0
-> installed qcheck-multicoretests-util.0.7
-> installed multicore-bench.0.1.7
-> installed alcotest.1.8.0
-> installed qcheck-stm.0.7
-> installed dune-configurator.3.17.2
-> installed bigstringaf.0.10.0
-> installed angstrom.0.16.1
-> installed mirage-crypto.2.0.0
-> installed containers.3.15
-> installed kdf.1.0.0
-> installed dscheck.0.5.0
-> installed multicore-magic-dscheck.2.3.1
-> installed uri.4.4.0
-> installed lwt.5.9.0
-> installed base.v0.16.3
-> installed menhir.20240715
-> installed ppxlib.0.35.0
-> installed ppx_sexp_conv.v0.16.0
-> installed sedlex.3.3
-> installed ipaddr-sexp.5.6.0
-> installed uri-sexp.4.4.0
-> installed js_of_ocaml-compiler.6.0.1
-> installed js_of_ocaml.6.0.1
-> installed logs.0.7.0
-> installed mirage-crypto-rng.2.0.0
-> installed mirage-crypto-pk.2.0.0
-> installed conduit.7.1.0
-> installed cohttp.6.0.0
-> installed mdx.2.5.0
-> installed conduit-lwt.7.1.0
-> installed bos.0.2.1
-> installed cohttp-lwt.6.0.0
-> installed mirage-crypto-ec.2.0.0
-> installed x509.1.0.5
-> installed ca-certs.1.0.0
-> installed conduit-lwt-unix.7.1.0
-> installed cohttp-lwt-unix.6.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-02-19 22:14.52 ---> saved as "3eb367e32f2922eacc5c5e521fad644aa54ecb4e999cc4ea8c43c77d484a64fa"


/src: (copy (src .) (dst /src))
2025-02-19 22:14.53 ---> saved as "a9da6d4ab7219e498bc763f3f17a35feabbd2556d3161099df515a9661a1560f"


/src: (run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build"))
(cd _build/default/test && ./test_mpscq.exe)
random seed: 2294144806819510806
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
================================================================================
success (ran 1 tests)
random seed: 843872805685088882
generated error fail pass / total     time test name
[ ]    0    0    0    0 /   64     0.0s Mpscq sequential
[]   64    0    0   64 /   64     0.0s Mpscq sequential
================================================================================
success (ran 1 tests)
random seed: 2949534690767666265
generated error fail pass / total     time test name
[ ]    0    0    0    0 /  128     0.0s Mpscq sequential
[]  128    0    0  128 /  128     0.0s Mpscq sequential
================================================================================
success (ran 1 tests)
random seed: 572054403310981961
generated error fail pass / total     time test name
[ ]    0    0    0    0 /  256     0.0s Mpscq sequential
[]  256    0    0  256 /  256     0.0s Mpscq sequential
================================================================================
success (ran 1 tests)
random seed: 1281122535090616109
generated error fail pass / total     time test name
[ ]    0    0    0    0 /  512     0.0s Mpscq sequential
[]  512    0    0  512 /  512     0.0s Mpscq sequential
================================================================================
success (ran 1 tests)
random seed: 1395758937911667430
generated error fail pass / total     time test name
[ ]    0    0    0    0 /   32     0.0s Mpscq sequential
[]   32    0    0   32 /   32     0.0s Mpscq sequential
================================================================================
success (ran 1 tests)
(cd _build/default/bench && ./main.exe -brief 'Picos Computation')
Picos Computation:
attach detach pairs over time/1 worker:
5.30 M/s
attach detach pairs over time/trivial:
13.58 M/s
time per attach detach pair/1 worker:
188.71 ns
time per attach detach pair/trivial:
73.65 ns
(cd _build/default/test && ./test_finally.exe)
Testing `Picos_finally'.
This run has ID `78E7IYK3'.


[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.013s. 2 tests run.
(cd _build/default/bench && ./main.exe -brief 'Picos Current')
Picos Current:
ops over time/1 worker:
72.27 M/s
time per op/1 worker:
13.84 ns
(cd _build/default/test && ./test_server_and_client.exe)
Using blocking sockets and threads on OCaml 4:
Recursive server running
Server listening
Client B running
Client B connected
Client B wrote 100
Server accepting
Server accepted client
Server read 100
Server wrote 50
Server accepting
Client A running
Client A connected
Client A wrote 100
Server accepted client
Server read 100
Server wrote 50
Client A read 50
Client B read 50
Server accepting
Server and Client test: OK
(cd _build/default/bench && ./main.exe -brief 'Picos FLS (excluding Current)')
Picos FLS (excluding Current):
gets over time/1 worker:
128.60 M/s
sets over time/1 worker:
81.54 M/s
time per get/1 worker:
7.78 ns
time per set/1 worker:
12.26 ns
(cd _build/default/bench && ./main.exe -brief 'Picos TLS')
Picos TLS:
gets over time/1 worker:
120.35 M/s
sets over time/1 worker:
63.95 M/s
time per get/1 worker:
8.31 ns
time per set/1 worker:
15.64 ns
(cd _build/default/bench && ./main.exe -brief 'Picos DLS')
Picos DLS:
gets over time/1 worker:
192.89 M/s
sets over time/1 worker:
97.77 M/s
time per get/1 worker:
5.18 ns
time per set/1 worker:
10.23 ns
(cd _build/default/test && ./test_sync.exe -- '^Mutex and Condition$' 0)
Testing `Picos_sync'.
This run has ID `97WQKRO4'.


[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.377s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Mutex and Condition$' 1)
Testing `Picos_sync'.
This run has ID `0WEL8SVG'.


[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.030s. 1 test run.
(cd _build/default/test && ./test_structured.exe)
Testing `Picos_structured'.
This run has ID `Z1IGXQZE'.


[OK]          Bundle          0   fork after terminate.
[OK]          Bundle          1   fork after escape.
[OK]          Bundle          2   exception in child terminates.
[OK]          Bundle          3   cancelation awaits children.
[OK]          Bundle          4   block raises when forbidden.
[OK]          Bundle          5   block raises Sys_error when fiber finishes.
[OK]          Bundle          6   termination nests.
[OK]          Bundle          7   promise cancelation does not terminate.
[OK]          Bundle          8   error in promise terminates.
[OK]          Bundle          9   can wait promises.
[OK]          Bundle         10   can select promises.
[OK]          Run             0   any and all errors.
[OK]          Run             1   any and all returns.
[OK]          Run             2   race any.


Full test results in `/src/_build/default/test/_build/_tests/Picos_structured'.
Test Successful in 0.806s. 14 tests run.
(cd _build/default/test && ./test_io.exe)
Testing `Picos_io'.
This run has ID `K8WMYOYM'.


[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.585s. 6 tests run.
(cd _build/default/test && ./test_io_with_lwt.exe)
Testing `Picos_io_with_lwt'.
This run has ID `D3XST0RB'.


[OK]          Unix          0   system.


Full test results in `/src/_build/default/test/_build/_tests/Picos_io_with_lwt'.
Test Successful in 2.070s. 1 test run.
(cd _build/default/test && ./test_select.exe)
Testing `Picos_select'.
This run has ID `CK9ITYZB'.


[OK]          Intr          0


Full test results in `/src/_build/default/test/_build/_tests/Picos_select'.
Test Successful in 2.245s. 1 test run.
(cd _build/default/bench && ./main.exe -brief 'Yield with Picos_std_sync')
Yield with Picos_std_sync:
locked yields over time/1 fiber with Lock:
0.03 M/s
locked yields over time/1 fiber with Rwlock:
0.01 M/s
locked yields over time/1 fiber with Sem:
0.03 M/s
locked yields over time/1 fiber with Sem 2:
0.03 M/s
locked yields over time/1 fiber with Sem 3:
0.14 M/s
locked yields over time/1 fiber with Sem 4:
0.07 M/s
locked yields over time/256 fibers with Lock:
0.00 M/s
locked yields over time/256 fibers with Rwlock:
0.01 M/s
locked yields over time/256 fibers with Sem:
0.01 M/s
locked yields over time/256 fibers with Sem 2:
0.01 M/s
locked yields over time/256 fibers with Sem 3:
0.01 M/s
locked yields over time/256 fibers with Sem 4:
0.01 M/s
locked yields over time/2 fibers with Lock:
0.04 M/s
locked yields over time/2 fibers with Rwlock:
0.02 M/s
locked yields over time/2 fibers with Sem:
0.01 M/s
locked yields over time/2 fibers with Sem 2:
0.03 M/s
locked yields over time/2 fibers with Sem 3:
0.03 M/s
locked yields over time/2 fibers with Sem 4:
0.04 M/s
locked yields over time/3 fibers with Lock:
0.03 M/s
locked yields over time/3 fibers with Rwlock:
0.05 M/s
locked yields over time/3 fibers with Sem:
0.03 M/s
locked yields over time/3 fibers with Sem 2:
0.03 M/s
locked yields over time/3 fibers with Sem 3:
0.03 M/s
locked yields over time/3 fibers with Sem 4:
0.03 M/s
locked yields over time/4 fibers with Lock:
0.02 M/s
locked yields over time/4 fibers with Rwlock:
0.02 M/s
locked yields over time/4 fibers with Sem:
0.02 M/s
locked yields over time/4 fibers with Sem 2:
0.01 M/s
locked yields over time/4 fibers with Sem 3:
0.02 M/s
locked yields over time/4 fibers with Sem 4:
0.03 M/s
locked yields over time/8 fibers with Lock:
0.07 M/s
locked yields over time/8 fibers with Rwlock:
0.02 M/s
locked yields over time/8 fibers with Sem:
0.02 M/s
locked yields over time/8 fibers with Sem 2:
0.02 M/s
locked yields over time/8 fibers with Sem 3:
0.02 M/s
locked yields over time/8 fibers with Sem 4:
0.03 M/s
time per locked yield/1 fiber with Lock:
39925.19 ns
time per locked yield/1 fiber with Rwlock:
95112.29 ns
time per locked yield/1 fiber with Sem:
39015.89 ns
time per locked yield/1 fiber with Sem 2:
35369.04 ns
time per locked yield/1 fiber with Sem 3:
26532.26 ns
time per locked yield/1 fiber with Sem 4:
14308.05 ns
time per locked yield/256 fibers with Lock:
264507.51 ns
time per locked yield/256 fibers with Rwlock:
149837.75 ns
time per locked yield/256 fibers with Sem:
177403.82 ns
time per locked yield/256 fibers with Sem 2:
118550.49 ns
time per locked yield/256 fibers with Sem 3:
114993.06 ns
time per locked yield/256 fibers with Sem 4:
83176.40 ns
time per locked yield/2 fibers with Lock:
25780.16 ns
time per locked yield/2 fibers with Rwlock:
45760.62 ns
time per locked yield/2 fibers with Sem:
72044.18 ns
time per locked yield/2 fibers with Sem 2:
39538.91 ns
time per locked yield/2 fibers with Sem 3:
39732.39 ns
time per locked yield/2 fibers with Sem 4:
23737.61 ns
time per locked yield/3 fibers with Lock:
32779.65 ns
time per locked yield/3 fibers with Rwlock:
19939.88 ns
time per locked yield/3 fibers with Sem:
30976.29 ns
time per locked yield/3 fibers with Sem 2:
34436.28 ns
time per locked yield/3 fibers with Sem 3:
33094.46 ns
time per locked yield/3 fibers with Sem 4:
39745.36 ns
time per locked yield/4 fibers with Lock:
56776.33 ns
time per locked yield/4 fibers with Rwlock:
65272.20 ns
time per locked yield/4 fibers with Sem:
51716.20 ns
time per locked yield/4 fibers with Sem 2:
67672.71 ns
time per locked yield/4 fibers with Sem 3:
44523.55 ns
time per locked yield/4 fibers with Sem 4:
34050.27 ns
time per locked yield/8 fibers with Lock:
13347.86 ns
time per locked yield/8 fibers with Rwlock:
59572.30 ns
time per locked yield/8 fibers with Sem:
47791.16 ns
time per locked yield/8 fibers with Sem 2:
51642.95 ns
time per locked yield/8 fibers with Sem 3:
48600.42 ns
time per locked yield/8 fibers with Sem 4:
28731.10 ns
(cd _build/default/bench && ./main.exe -brief 'Picos Spawn')
Picos Spawn:
(cd _build/default/bench && ./main.exe -brief 'Picos Yield')
Picos Yield:
time per yield/100 fibers:
23190.02 ns
time per yield/10 fibers:
15040.26 ns
time per yield/1 fiber:
22906.30 ns
yields over time/100 fibers:
0.04 M/s
yields over time/10 fibers:
0.07 M/s
yields over time/1 fiber:
0.04 M/s
(cd _build/default/test && ./test_sync.exe -- '^Mutex and Condition$' 2)
Testing `Picos_sync'.
This run has ID `QB7IAIVL'.


[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 5.211s. 1 test run.
(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.08 M/s
round-trips over time/1 worker:
0.05 M/s
time per async round-trip/1 worker:
13305.83 ns
time per round-trip/1 worker:
20456.77 ns
(cd _build/default/test && ./test_sync.exe -- '^Lock and Lock.Condition$' 0)
Testing `Picos_sync'.
This run has ID `1SU3AI8B'.


[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.323s. 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 'Ref with Picos_std_sync')
Ref with Picos_std_sync:
ops over time/cas int with Lock:
41.87 M/s
ops over time/cas int with Rwlock:
33.06 M/s
ops over time/cas int with Sem:
44.10 M/s
ops over time/get with Lock:
54.04 M/s
ops over time/get with Rwlock:
53.18 M/s
ops over time/get with Sem:
56.20 M/s
ops over time/incr with Lock:
53.30 M/s
ops over time/incr with Rwlock:
35.39 M/s
ops over time/incr with Sem:
55.45 M/s
ops over time/push & pop with Lock:
36.25 M/s
ops over time/push & pop with Rwlock:
29.03 M/s
ops over time/push & pop with Sem:
41.24 M/s
ops over time/swap with Lock:
37.75 M/s
ops over time/swap with Rwlock:
32.40 M/s
ops over time/swap with Sem:
41.39 M/s
ops over time/xchg int with Lock:
45.25 M/s
ops over time/xchg int with Rwlock:
33.91 M/s
ops over time/xchg int with Sem:
44.18 M/s
time per op/cas int with Lock:
23.88 ns
time per op/cas int with Rwlock:
30.25 ns
time per op/cas int with Sem:
22.68 ns
time per op/get with Lock:
18.51 ns
time per op/get with Rwlock:
18.80 ns
time per op/get with Sem:
17.79 ns
time per op/incr with Lock:
18.76 ns
time per op/incr with Rwlock:
28.26 ns
time per op/incr with Sem:
18.03 ns
time per op/push & pop with Lock:
27.58 ns
time per op/push & pop with Rwlock:
34.45 ns
time per op/push & pop with Sem:
24.25 ns
time per op/swap with Lock:
26.49 ns
time per op/swap with Rwlock:
30.86 ns
time per op/swap with Sem:
24.16 ns
time per op/xchg int with Lock:
22.10 ns
time per op/xchg int with Rwlock:
29.49 ns
time per op/xchg int with Sem:
22.64 ns
(cd _build/default/bench && ./main.exe -brief Picos_mpmcq)
Picos_mpmcq:
messages over time/one domain:
18.14 M/s
time per message/one domain:
55.13 ns
(cd _build/default/test && ./test_io_cohttp.exe)
Uri: //127.0.0.1:60115/hello-io-cohttp
Method: POST


host: 127.0.0.1:60115
user-agent: ocaml-cohttp/v6.0.0
content-length: 17


Body: It's-a-Me, Picos!
(cd _build/default/bench && ./main.exe -brief Picos_mpscq)
Picos_mpscq:
messages over time/one domain:
19.90 M/s
time per message/one domain:
50.24 ns
(cd _build/default/bench && ./main.exe -brief Picos_htbl)
Picos_htbl:
operations over time/1 worker, 10% reads:
9.02 M/s
operations over time/1 worker, 50% reads:
10.81 M/s
operations over time/1 worker, 90% reads:
13.85 M/s
time per operation/1 worker, 10% reads:
110.92 ns
time per operation/1 worker, 50% reads:
92.53 ns
time per operation/1 worker, 90% reads:
72.19 ns
(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:
7.82 M/s
operations over time/1 worker, 10% reads with Rwlock:
8.47 M/s
operations over time/1 worker, 10% reads with Sem:
8.36 M/s
operations over time/1 worker, 100% reads with Lock:
6.18 M/s
operations over time/1 worker, 100% reads with Rwlock:
9.38 M/s
operations over time/1 worker, 100% reads with Sem:
9.38 M/s
operations over time/1 worker, 50% reads with Lock:
8.45 M/s
operations over time/1 worker, 50% reads with Rwlock:
7.59 M/s
operations over time/1 worker, 50% reads with Sem:
8.49 M/s
operations over time/1 worker, 90% reads with Lock:
9.51 M/s
operations over time/1 worker, 90% reads with Rwlock:
9.40 M/s
operations over time/1 worker, 90% reads with Sem:
9.35 M/s
operations over time/1 worker, 95% reads with Lock:
9.18 M/s
operations over time/1 worker, 95% reads with Rwlock:
9.50 M/s
operations over time/1 worker, 95% reads with Sem:
9.28 M/s
time per operation/1 worker, 10% reads with Lock:
127.87 ns
time per operation/1 worker, 10% reads with Rwlock:
118.01 ns
time per operation/1 worker, 10% reads with Sem:
119.59 ns
time per operation/1 worker, 100% reads with Lock:
225.19 ns
time per operation/1 worker, 100% reads with Rwlock:
106.58 ns
time per operation/1 worker, 100% reads with Sem:
106.62 ns
time per operation/1 worker, 50% reads with Lock:
118.35 ns
time per operation/1 worker, 50% reads with Rwlock:
132.00 ns
time per operation/1 worker, 50% reads with Sem:
117.82 ns
time per operation/1 worker, 90% reads with Lock:
105.15 ns
time per operation/1 worker, 90% reads with Rwlock:
106.36 ns
time per operation/1 worker, 90% reads with Sem:
106.91 ns
time per operation/1 worker, 95% reads with Lock:
108.97 ns
time per operation/1 worker, 95% reads with Rwlock:
105.22 ns
time per operation/1 worker, 95% reads with Sem:
107.73 ns
(cd _build/default/bench && ./main.exe -brief Picos_stdio)
Picos_stdio:
blocking reads over time/1 worker:
0.03 M/s
non-blocking reads over time/1 worker:
0.31 M/s
time per blocking read/1 worker:
31020.41 ns
time per non-blocking read/1 worker:
3216.62 ns
(cd _build/default/bench && ./main.exe -brief 'Picos_sync Stream')
Picos_sync Stream:
messages over time/one domain:
7.58 M/s
time per message/one domain:
131.87 ns
(cd _build/default/bench && ./main.exe -brief Fib)
Fib:
(cd _build/default/bench && ./main.exe -brief 'Picos binaries')
Picos binaries:
binary size/picos:
86.75 kB
binary size/picos.domain:
7.69 kB
binary size/picos.thread:
4.44 kB
binary size/picos_aux.htbl:
59.01 kB
binary size/picos_aux.mpmcq:
17.09 kB
binary size/picos_aux.mpscq:
19.86 kB
binary size/picos_aux.rc:
19.93 kB
binary size/picos_io:
97.37 kB
binary size/picos_io.fd:
10.01 kB
binary size/picos_io.select:
63.07 kB
binary size/picos_io_cohttp:
46.99 kB
binary size/picos_mux.thread:
27.09 kB
binary size/picos_std.awaitable:
35.41 kB
binary size/picos_std.event:
26.37 kB
binary size/picos_std.finally:
19.97 kB
binary size/picos_std.structured:
87.03 kB
binary size/picos_std.sync:
203.21 kB
(cd _build/default/bench && ./main.exe -brief 'Bounded_q with Picos_std_sync')
Bounded_q with Picos_std_sync:
messages over time/one domain with Lock:
11.72 M/s
time per message/one domain with Lock:
85.30 ns
(cd _build/default/bench && ./main.exe -brief 'Memory usage')
Memory usage:
(cd _build/default/test && ./test_sync.exe -- '^Lock and Lock.Condition$' 1)
Testing `Picos_sync'.
This run has ID `QW0L10ZA'.


[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 3.948s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Lock and Lock.Condition$' 2)
Testing `Picos_sync'.
This run has ID `17VMXBPG'.


[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.028s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Lock and Lock.Condition$' 3)
Testing `Picos_sync'.
This run has ID `9HI6O09O'.


[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.016s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Rwlock and Rwlock.Condition$' 0)
Testing `Picos_sync'.
This run has ID `4TDBN86T'.


[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.200s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Rwlock and Rwlock.Condition$' 1)
Testing `Picos_sync'.
This run has ID `QBTJGU5Q'.


[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 2.933s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Rwlock and Rwlock.Condition$' 2)
Testing `Picos_sync'.
This run has ID `F7RS5C3H'.


[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 `8CFEPDHB'.


[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 `D5BWORVO'.


[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.018s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Rwlock and Rwlock.Condition$' 5)
Testing `Picos_sync'.
This run has ID `NN9EZJG0'.


[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.009s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Rwlock and Rwlock.Condition$' 6)
Testing `Picos_sync'.
This run has ID `44UFWNYT'.


[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.010s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Semaphore$ 0)
Testing `Picos_sync'.
This run has ID `R9HV9NJW'.


[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 `F0KPGD31'.


[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.096s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Sem$ 0)
Testing `Picos_sync'.
This run has ID `40QV85S3'.


[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.009s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Sem$ 1)
Testing `Picos_sync'.
This run has ID `3OXW3L9B'.


[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]        Semm                                  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.062s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Sem$ 2)
Testing `Picos_sync'.
This run has ID `0SN9BVAH'.


[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.020s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Sem$ 3)
Testing `Picos_sync'.
This run has ID `CO92I7HZ'.


[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.005s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Lazy$ 0)
Testing `Picos_sync'.
This run has ID `EAGGA5H4'.


[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.016s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Lazy$ 1)
Testing `Picos_sync'.
This run has ID `Z92ZK35N'.


[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.032s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Event$ 0)
Testing `Picos_sync'.
This run has ID `H33BU956'.


[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.120s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Barrier$ 0)
Testing `Picos_sync'.
This run has ID `N6PP9S1U'.


[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.130s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- ^Barrier$ 1)
Testing `Picos_sync'.
This run has ID `4ETBAMUO'.


[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.108s. 1 test run.
(cd _build/default/test && ./test_sync.exe -- '^Non-cancelable ops$' 0)
Testing `Picos_sync'.
This run has ID `I0JKGV96'.


[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.009s. 1 test run.
(cd _build/default/test && ./test_picos.exe)
Testing `Picos'.
This run has ID `56E602C1'.


[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 15.825s. 7 tests run.
(cd _build/default/test && ./test_schedulers.exe)
Testing `Picos schedulers'.
This run has ID `09IC92XN'.


[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 27.107s. 8 tests run.
Thread 107 killed on uncaught exception Failure("fatal")
Raised at Dune__exe__Test_schedulers.test_fatal.fatal_exn_handler in file "test/test_schedulers.ml", line 117, characters 6-15
Called from Thread.create.(fun) in file "thread.ml", line 49, characters 8-14
(cd _build/default/test && ./test_htbl.exe)
random seed: 3842744146831109559
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 concurrent
[ ]    1    0    0    1 /   32     2.2s Htbl concurrent
[ ]    2    0    0    2 /   32     3.4s Htbl concurrent
[ ]    3    0    0    3 /   32     4.5s Htbl concurrent
[ ]    4    0    0    4 /   32     5.6s Htbl concurrent
[ ]    5    0    0    5 /   32     6.0s Htbl concurrent
[ ]    6    0    0    6 /   32     7.6s Htbl concurrent
[ ]    7    0    0    7 /   32     9.2s Htbl concurrent
[ ]    8    0    0    8 /   32    10.9s Htbl concurrent
[ ]    9    0    0    9 /   32    11.2s Htbl concurrent
[ ]   10    0    0   10 /   32    12.6s Htbl concurrent
[ ]   11    0    0   11 /   32    13.9s Htbl concurrent
[ ]   12    0    0   12 /   32    14.7s Htbl concurrent
[ ]   13    0    0   13 /   32    15.1s Htbl concurrent
[ ]   14    0    0   14 /   32    15.5s Htbl concurrent
[ ]   15    0    0   15 /   32    16.5s Htbl concurrent
[ ]   16    0    0   16 /   32    16.9s Htbl concurrent
[ ]   17    0    0   17 /   32    17.7s Htbl concurrent
[ ]   18    0    0   18 /   32    17.9s Htbl concurrent
[ ]   19    0    0   19 /   32    18.6s Htbl concurrent
[ ]   20    0    0   20 /   32    19.1s Htbl concurrent
[ ]   21    0    0   21 /   32    19.3s Htbl concurrent
[ ]   22    0    0   22 /   32    19.7s Htbl concurrent
[ ]   23    0    0   23 /   32    19.8s Htbl concurrent
[ ]   24    0    0   24 /   32    20.3s Htbl concurrent
[ ]   26    0    0   26 /   32    20.8s Htbl concurrent
[ ]   27    0    0   27 /   32    20.9s Htbl concurrent
[ ]   28    0    0   28 /   32    21.2s Htbl concurrent
[ ]   30    0    0   30 /   32    21.4s Htbl concurrent
[ ]   32    0    0   32 /   32    21.8s Htbl concurrent
[]   32    0    0   32 /   32    21.8s Htbl concurrent
================================================================================
success (ran 2 tests)
random seed: 4003290476164238426
generated error fail pass / total     time test name
[ ]    0    0    0    0 /   56     0.0s Htbl sequential
[]   56    0    0   56 /   56     0.0s Htbl sequential
[ ]    0    0    0    0 /   56     0.0s Htbl concurrent
[ ]    3    0    0    3 /   56     0.1s Htbl concurrent
[ ]    5    0    0    5 /   56     0.3s Htbl concurrent
[ ]    9    0    0    9 /   56     0.4s Htbl concurrent
[ ]   11    0    0   11 /   56     0.5s Htbl concurrent
[ ]   15    0    0   15 /   56     0.7s Htbl concurrent
[ ]   18    0    0   18 /   56     0.8s Htbl concurrent
[ ]   22    0    0   22 /   56     0.9s Htbl concurrent
[ ]   25    0    0   25 /   56     1.1s Htbl concurrent
[ ]   26    0    0   26 /   56     1.3s Htbl concurrent
[ ]   27    0    0   27 /   56     1.5s Htbl concurrent
[ ]   29    0    0   29 /   56     1.7s Htbl concurrent
[ ]   30    0    0   30 /   56     2.1s Htbl concurrent
[ ]   31    0    0   31 /   56     2.2s Htbl concurrent
[ ]   33    0    0   33 /   56     2.6s Htbl concurrent
[ ]   37    0    0   37 /   56     2.7s Htbl concurrent
[ ]   40    0    0   40 /   56     2.8s Htbl concurrent
[ ]   44    0    0   44 /   56     3.0s Htbl concurrent
[ ]   45    0    0   45 /   56     3.3s Htbl concurrent
[ ]   48    0    0   48 /   56     3.5s Htbl concurrent
[ ]   49    0    0   49 /   56     3.7s Htbl concurrent
[ ]   50    0    0   50 /   56     4.1s Htbl concurrent
[ ]   53    0    0   53 /   56     4.2s Htbl concurrent
[]   56    0    0   56 /   56     4.3s Htbl concurrent
================================================================================
success (ran 2 tests)
random seed: 753982718023773405
generated error fail pass / total     time test name
[ ]    0    0    0    0 /  114     0.0s Htbl sequential
[]  114    0    0  114 /  114     0.0s Htbl sequential
[ ]    0    0    0    0 /  114     0.0s Htbl concurrent
[ ]    2    0    0    2 /  114     0.0s Htbl concurrent
[ ]    4    0    0    4 /  114     0.2s Htbl concurrent
[ ]    6    0    0    6 /  114     0.3s Htbl concurrent
[ ]    9    0    0    9 /  114     0.4s Htbl concurrent
[ ]   13    0    0   13 /  114     0.5s Htbl concurrent
[ ]   17    0    0   17 /  114     0.6s Htbl concurrent
[ ]   21    0    0   21 /  114     0.7s Htbl concurrent
[ ]   23    0    0   23 /  114     0.8s Htbl concurrent
[ ]   26    0    0   26 /  114     0.9s Htbl concurrent
[ ]   28    0    0   28 /  114     1.1s Htbl concurrent
[ ]   29    0    0   29 /  114     1.3s Htbl concurrent
[ ]   32    0    0   32 /  114     1.4s Htbl concurrent
[ ]   36    0    0   36 /  114     1.5s Htbl concurrent
[ ]   38    0    0   38 /  114     1.7s Htbl concurrent
[ ]   40    0    0   40 /  114     1.8s Htbl concurrent
[ ]   43    0    0   43 /  114     2.2s Htbl concurrent
[ ]   44    0    0   44 /  114     2.4s Htbl concurrent
[ ]   47    0    0   47 /  114     2.5s Htbl concurrent
[ ]   49    0    0   49 /  114     2.6s Htbl concurrent
[ ]   51    0    0   51 /  114     2.9s Htbl concurrent
[ ]   55    0    0   55 /  114     3.0s Htbl concurrent
[ ]   57    0    0   57 /  114     3.2s Htbl concurrent
[ ]   61    0    0   61 /  114     3.3s Htbl concurrent
[ ]   64    0    0   64 /  114     3.4s Htbl concurrent
[ ]   66    0    0   66 /  114     3.9s Htbl concurrent
[ ]   72    0    0   72 /  114     4.0s Htbl concurrent
[ ]   74    0    0   74 /  114     4.3s Htbl concurrent
[ ]   76    0    0   76 /  114     5.1s Htbl concurrent
[ ]   79    0    0   79 /  114     5.3s Htbl concurrent
[ ]   82    0    0   82 /  114     5.6s Htbl concurrent
[ ]   84    0    0   84 /  114     5.7s Htbl concurrent
[ ]   86    0    0   86 /  114     5.8s Htbl concurrent
[ ]   88    0    0   88 /  114     6.2s Htbl concurrent
[ ]   89    0    0   89 /  114     6.4s Htbl concurrent
[ ]   91    0    0   91 /  114     6.8s Htbl concurrent
[ ]   92    0    0   92 /  114     6.9s Htbl concurrent
[ ]   93    0    0   93 /  114     8.8s Htbl concurrent
[ ]   94    0    0   94 /  114    12.7s Htbl concurrent
[ ]   95    0    0   95 /  114    15.6s Htbl concurrent
[ ]   96    0    0   96 /  114    16.9s Htbl concurrent
[ ]   97    0    0   97 /  114    18.4s Htbl concurrent
[ ]   98    0    0   98 /  114    20.3s Htbl concurrent
[ ]   99    0    0   99 /  114    22.8s Htbl concurrent
[ ]  100    0    0  100 /  114    24.1s Htbl concurrent
[ ]  101    0    0  101 /  114    25.3s Htbl concurrent
[ ]  102    0    0  102 /  114    27.0s Htbl concurrent
[ ]  103    0    0  103 /  114    28.3s Htbl concurrent
[ ]  104    0    0  104 /  114    29.4s Htbl concurrent
[ ]  105    0    0  105 /  114    30.6s Htbl concurrent
[ ]  106    0    0  106 /  114    31.7s Htbl concurrent
[ ]  107    0    0  107 /  114    33.6s Htbl concurrent
[ ]  108    0    0  108 /  114    34.4s Htbl concurrent
[ ]  109    0    0  109 /  114    35.5s Htbl concurrent
[ ]  110    0    0  110 /  114    36.5s Htbl concurrent
[ ]  111    0    0  111 /  114    37.7s Htbl concurrent
[ ]  112    0    0  112 /  114    38.6s Htbl concurrent
[ ]  113    0    0  113 /  114    39.6s Htbl concurrent
[ ]  114    0    0  114 /  114    40.3s Htbl concurrent
[]  114    0    0  114 /  114    40.3s Htbl concurrent
================================================================================
success (ran 2 tests)
(cd _build/default/test && ./test_sem.exe)
random seed: 1123394490138405392
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 concurrent
[ ]    1    0    0    1 /   32     1.0s Sem concurrent
[ ]    2    0    0    2 /   32     3.0s Sem concurrent
[ ]    3    0    0    3 /   32     4.0s Sem concurrent
[ ]    4    0    0    4 /   32     4.9s Sem concurrent
[ ]    5    0    0    5 /   32     6.5s Sem concurrent
[ ]    6    0    0    6 /   32     7.9s Sem concurrent
[ ]    7    0    0    7 /   32     8.8s Sem concurrent
[ ]    8    0    0    8 /   32    10.6s Sem concurrent
[ ]    9    0    0    9 /   32    12.5s Sem concurrent
[ ]   10    0    0   10 /   32    13.1s Sem concurrent
[ ]   11    0    0   11 /   32    13.2s Sem concurrent
[ ]   12    0    0   12 /   32    13.5s Sem concurrent
[ ]   13    0    0   13 /   32    14.0s Sem concurrent
[ ]   14    0    0   14 /   32    14.7s Sem concurrent
[ ]   15    0    0   15 /   32    15.5s Sem concurrent
[ ]   16    0    0   16 /   32    15.9s Sem concurrent
[ ]   17    0    0   17 /   32    16.2s Sem concurrent
[ ]   18    0    0   18 /   32    16.4s Sem concurrent
[ ]   19    0    0   19 /   32    16.6s Sem concurrent
[ ]   20    0    0   20 /   32    17.2s Sem concurrent
[ ]   21    0    0   21 /   32    17.5s Sem concurrent
[ ]   22    0    0   22 /   32    17.7s Sem concurrent
[ ]   23    0    0   23 /   32    17.8s Sem concurrent
[ ]   26    0    0   26 /   32    18.0s Sem concurrent
[ ]   27    0    0   27 /   32    18.1s Sem concurrent
[ ]   28    0    0   28 /   32    18.3s Sem concurrent
[ ]   30    0    0   30 /   32    18.6s Sem concurrent
[ ]   31    0    0   31 /   32    18.9s Sem concurrent
[ ]   32    0    0   32 /   32    19.2s Sem concurrent
[]   32    0    0   32 /   32    19.2s Sem concurrent
================================================================================
success (ran 2 tests)
random seed: 252463713588434912
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 concurrent
[ ]    2    0    0    2 /   64     0.1s Sem concurrent
[ ]    4    0    0    4 /   64     0.4s Sem concurrent
[ ]    7    0    0    7 /   64     0.5s Sem concurrent
[ ]   10    0    0   10 /   64     0.6s Sem concurrent
[ ]   11    0    0   11 /   64     0.8s Sem concurrent
[ ]   15    0    0   15 /   64     0.9s Sem concurrent
[ ]   19    0    0   19 /   64     1.1s Sem concurrent
[ ]   20    0    0   20 /   64     1.5s Sem concurrent
[ ]   22    0    0   22 /   64     1.6s Sem concurrent
[ ]   25    0    0   25 /   64     1.7s Sem concurrent
[ ]   26    0    0   26 /   64     1.9s Sem concurrent
[ ]   27    0    0   27 /   64     2.1s Sem concurrent
[ ]   29    0    0   29 /   64     2.2s Sem concurrent
[ ]   31    0    0   31 /   64     2.3s Sem concurrent
[ ]   33    0    0   33 /   64     2.5s Sem concurrent
[ ]   36    0    0   36 /   64     2.6s Sem concurrent
[ ]   39    0    0   39 /   64     3.2s Sem concurrent
[ ]   43    0    0   43 /   64     3.3s Sem concurrent
[ ]   45    0    0   45 /   64     3.4s Sem concurrent
[ ]   48    0    0   48 /   64     3.5s Sem concurrent
[ ]   51    0    0   51 /   64     3.7s Sem concurrent
[ ]   52    0    0   52 /   64     3.8s Sem concurrent
[ ]   55    0    0   55 /   64     3.9s Sem concurrent
[ ]   57    0    0   57 /   64     4.0s Sem concurrent
[ ]   58    0    0   58 /   64     4.2s Sem concurrent
[ ]   59    0    0   59 /   64     4.5s Sem concurrent
[ ]   60    0    0   60 /   64     4.7s Sem concurrent
[ ]   64    0    0   64 /   64     5.1s Sem concurrent
[]   64    0    0   64 /   64     5.1s Sem concurrent
================================================================================
success (ran 2 tests)
random seed: 1279869602232978054
generated error fail pass / total     time test name
[ ]    0    0    0    0 /  128     0.0s Sem sequential
[]  128    0    0  128 /  128     0.0s Sem sequential
[ ]    0    0    0    0 /  128     0.0s Sem concurrent
[ ]    3    0    0    3 /  128     0.1s Sem concurrent
[ ]    7    0    0    7 /  128     0.2s Sem concurrent
[ ]   10    0    0   10 /  128     0.3s Sem concurrent
[ ]   12    0    0   12 /  128     0.5s Sem concurrent
[ ]   15    0    0   15 /  128     0.7s Sem concurrent
[ ]   18    0    0   18 /  128     1.0s Sem concurrent
[ ]   21    0    0   21 /  128     1.1s Sem concurrent
[ ]   23    0    0   23 /  128     1.6s Sem concurrent
[ ]   26    0    0   26 /  128     1.7s Sem concurrent
[ ]   28    0    0   28 /  128     1.9s Sem concurrent
[ ]   32    0    0   32 /  128     2.0s Sem concurrent
[ ]   36    0    0   36 /  128     2.1s Sem concurrent
[ ]   41    0    0   41 /  128     2.3s Sem concurrent
[ ]   46    0    0   46 /  128     2.4s Sem concurrent
[ ]   50    0    0   50 /  128     2.5s Sem concurrent
[ ]   56    0    0   56 /  128     2.6s Sem concurrent
[ ]   57    0    0   57 /  128     2.8s Sem concurrent
[ ]   60    0    0   60 /  128     2.9s Sem concurrent
[ ]   64    0    0   64 /  128     3.0s Sem concurrent
[ ]   67    0    0   67 /  128     3.1s Sem concurrent
[ ]   68    0    0   68 /  128     3.2s Sem concurrent
[ ]   72    0    0   72 /  128     3.4s Sem concurrent
[ ]   77    0    0   77 /  128     3.5s Sem concurrent
[ ]   82    0    0   82 /  128     3.6s Sem concurrent
[ ]   86    0    0   86 /  128     3.7s Sem concurrent
[ ]   87    0    0   87 /  128     3.9s Sem concurrent
[ ]   89    0    0   89 /  128     4.1s Sem concurrent
[ ]   95    0    0   95 /  128     4.2s Sem concurrent
[ ]   99    0    0   99 /  128     4.3s Sem concurrent
[ ]  100    0    0  100 /  128     4.4s Sem concurrent
[ ]  103    0    0  103 /  128     4.7s Sem concurrent
[ ]  104    0    0  104 /  128     4.9s Sem concurrent
[ ]  108    0    0  108 /  128     5.0s Sem concurrent
[ ]  112    0    0  112 /  128     5.3s Sem concurrent
[ ]  114    0    0  114 /  128     6.2s Sem concurrent
[ ]  115    0    0  115 /  128     6.3s Sem concurrent
[ ]  116    0    0  116 /  128     6.4s Sem concurrent
[ ]  117    0    0  117 /  128     6.6s Sem concurrent
[ ]  118    0    0  118 /  128     6.7s Sem concurrent
[ ]  119    0    0  119 /  128     9.0s Sem concurrent
[ ]  120    0    0  120 /  128    13.2s Sem concurrent
[ ]  121    0    0  121 /  128    14.4s Sem concurrent
[ ]  122    0    0  122 /  128    16.4s Sem concurrent
[ ]  123    0    0  123 /  128    18.2s Sem concurrent
[ ]  124    0    0  124 /  128    19.8s Sem concurrent
[ ]  125    0    0  125 /  128    22.2s Sem concurrent
[ ]  126    0    0  126 /  128    24.1s Sem concurrent
[ ]  127    0    0  127 /  128    25.5s Sem concurrent
[ ]  128    0    0  128 /  128    27.0s Sem concurrent
[]  128    0    0  128 /  128    27.0s Sem concurrent
================================================================================
success (ran 2 tests)
random seed: 4157014958462301945
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 concurrent
[ ]    1    0    0    1 /   38     0.9s Sem concurrent
[ ]    2    0    0    2 /   38     2.1s Sem concurrent
[ ]    3    0    0    3 /   38     3.7s Sem concurrent
[ ]    4    0    0    4 /   38     4.7s Sem concurrent
[ ]    5    0    0    5 /   38     5.8s Sem concurrent
[ ]    6    0    0    6 /   38     6.6s Sem concurrent
[ ]    7    0    0    7 /   38     7.1s Sem concurrent
[ ]    8    0    0    8 /   38     8.0s Sem concurrent
[ ]    9    0    0    9 /   38     9.1s Sem concurrent
[ ]   10    0    0   10 /   38    10.4s Sem concurrent
[ ]   11    0    0   11 /   38    11.2s Sem concurrent
[ ]   12    0    0   12 /   38    12.0s Sem concurrent
[ ]   13    0    0   13 /   38    12.9s Sem concurrent
[ ]   14    0    0   14 /   38    13.5s Sem concurrent
[ ]   15    0    0   15 /   38    15.0s Sem concurrent
[ ]   16    0    0   16 /   38    15.9s Sem concurrent
[ ]   17    0    0   17 /   38    16.9s Sem concurrent
[ ]   18    0    0   18 /   38    18.3s Sem concurrent
[ ]   19    0    0   19 /   38    19.8s Sem concurrent
[ ]   20    0    0   20 /   38    20.9s Sem concurrent
[ ]   21    0    0   21 /   38    21.7s Sem concurrent
[ ]   22    0    0   22 /   38    22.0s Sem concurrent
[ ]   23    0    0   23 /   38    22.3s Sem concurrent
[ ]   24    0    0   24 /   38    22.4s Sem concurrent
[ ]   26    0    0   26 /   38    22.8s Sem concurrent
[ ]   27    0    0   27 /   38    23.1s Sem concurrent
[ ]   28    0    0   28 /   38    23.2s Sem concurrent
[ ]   29    0    0   29 /   38    23.4s Sem concurrent
[ ]   31    0    0   31 /   38    23.6s Sem concurrent
[ ]   32    0    0   32 /   38    23.9s Sem concurrent
[ ]   33    0    0   33 /   38    24.0s Sem concurrent
[ ]   34    0    0   34 /   38    24.2s Sem concurrent
[ ]   35    0    0   35 /   38    24.4s Sem concurrent
[ ]   36    0    0   36 /   38    24.7s Sem concurrent
[ ]   37    0    0   37 /   38    25.1s Sem concurrent
[ ]   38    0    0   38 /   38    25.7s Sem concurrent
[]   38    0    0   38 /   38    25.7s Sem concurrent
================================================================================
success (ran 2 tests)
(cd _build/default/test && ./test_mutex.exe)
random seed: 1425646879164613510
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 concurrent
[ ]    1    0    0    1 /   32     1.6s Mutex concurrent
[ ]    2    0    0    2 /   32     2.5s Mutex concurrent
[ ]    3    0    0    3 /   32     3.9s Mutex concurrent
[ ]    4    0    0    4 /   32     4.9s Mutex concurrent
[ ]    5    0    0    5 /   32     6.1s Mutex concurrent
[ ]    6    0    0    6 /   32     7.4s Mutex concurrent
[ ]    7    0    0    7 /   32     8.5s Mutex concurrent
[ ]    8    0    0    8 /   32     9.9s Mutex concurrent
[ ]    9    0    0    9 /   32    11.1s Mutex concurrent
[ ]   10    0    0   10 /   32    12.0s Mutex concurrent
[ ]   11    0    0   11 /   32    13.0s Mutex concurrent
[ ]   12    0    0   12 /   32    13.2s Mutex concurrent
[ ]   13    0    0   13 /   32    13.5s Mutex concurrent
[ ]   14    0    0   14 /   32    13.8s Mutex concurrent
[ ]   15    0    0   15 /   32    14.2s Mutex concurrent
[ ]   16    0    0   16 /   32    15.1s Mutex concurrent
[ ]   17    0    0   17 /   32    15.7s Mutex concurrent
[ ]   18    0    0   18 /   32    16.0s Mutex concurrent
[ ]   19    0    0   19 /   32    16.4s Mutex concurrent
[ ]   21    0    0   21 /   32    16.7s Mutex concurrent
[ ]   22    0    0   22 /   32    17.3s Mutex concurrent
[ ]   23    0    0   23 /   32    17.5s Mutex concurrent
[ ]   24    0    0   24 /   32    17.7s Mutex concurrent
[ ]   25    0    0   25 /   32    17.9s Mutex concurrent
[ ]   26    0    0   26 /   32    18.1s Mutex concurrent
[ ]   28    0    0   28 /   32    18.2s Mutex concurrent
[ ]   29    0    0   29 /   32    18.4s Mutex concurrent
[ ]   30    0    0   30 /   32    18.5s Mutex concurrent
[ ]   31    0    0   31 /   32    19.0s Mutex concurrent
[ ]   32    0    0   32 /   32    19.2s Mutex concurrent
[]   32    0    0   32 /   32    19.2s Mutex concurrent
================================================================================
success (ran 2 tests)
random seed: 4379305744923878734
generated error fail pass / total     time test name
[ ]    0    0    0    0 /   64     0.0s Mutex sequential
[]   64    0    0   64 /   64     0.0s Mutex sequential
[ ]    0    0    0    0 /   64     0.0s Mutex concurrent
[ ]    1    0    0    1 /   64     0.3s Mutex concurrent
[ ]    4    0    0    4 /   64     0.4s Mutex concurrent
[ ]    5    0    0    5 /   64     0.5s Mutex concurrent
[ ]    8    0    0    8 /   64     0.7s Mutex concurrent
[ ]   10    0    0   10 /   64     0.8s Mutex concurrent
[ ]   11    0    0   11 /   64     1.0s Mutex concurrent
[ ]   14    0    0   14 /   64     1.2s Mutex concurrent
[ ]   17    0    0   17 /   64     1.3s Mutex concurrent
[ ]   21    0    0   21 /   64     1.4s Mutex concurrent
[ ]   25    0    0   25 /   64     1.5s Mutex concurrent
[ ]   29    0    0   29 /   64     2.1s Mutex concurrent
[ ]   30    0    0   30 /   64     2.2s Mutex concurrent
[ ]   32    0    0   32 /   64     2.3s Mutex concurrent
[ ]   34    0    0   34 /   64     2.5s Mutex concurrent
[ ]   36    0    0   36 /   64     2.7s Mutex concurrent
[ ]   39    0    0   39 /   64     2.8s Mutex concurrent
[ ]   41    0    0   41 /   64     2.9s Mutex concurrent
[ ]   43    0    0   43 /   64     3.4s Mutex concurrent
[ ]   44    0    0   44 /   64     3.5s Mutex concurrent
[ ]   47    0    0   47 /   64     3.7s Mutex concurrent
[ ]   50    0    0   50 /   64     3.8s Mutex concurrent
[ ]   53    0    0   53 /   64     4.2s Mutex concurrent
[ ]   54    0    0   54 /   64     4.4s Mutex concurrent
[ ]   57    0    0   57 /   64     4.5s Mutex concurrent
[ ]   62    0    0   62 /   64     4.7s Mutex concurrent
[]   64    0    0   64 /   64     4.7s Mutex concurrent
================================================================================
success (ran 2 tests)
random seed: 1576302788691923195
generated error fail pass / total     time test name
[ ]    0    0    0    0 /  128     0.0s Mutex sequential
[]  128    0    0  128 /  128     0.0s Mutex sequential
[ ]    0    0    0    0 /  128     0.0s Mutex concurrent
[ ]    2    0    0    2 /  128     0.1s Mutex concurrent
[ ]    8    0    0    8 /  128     0.2s Mutex concurrent
[ ]   12    0    0   12 /  128     0.4s Mutex concurrent
[ ]   16    0    0   16 /  128     0.5s Mutex concurrent
[ ]   20    0    0   20 /  128     0.6s Mutex concurrent
[ ]   21    0    0   21 /  128     0.8s Mutex concurrent
[ ]   24    0    0   24 /  128     0.9s Mutex concurrent
[ ]   25    0    0   25 /  128     1.0s Mutex concurrent
[ ]   29    0    0   29 /  128     1.1s Mutex concurrent
[ ]   33    0    0   33 /  128     1.3s Mutex concurrent
[ ]   37    0    0   37 /  128     1.8s Mutex concurrent
[ ]   42    0    0   42 /  128     1.9s Mutex concurrent
[ ]   45    0    0   45 /  128     2.0s Mutex concurrent
[ ]   49    0    0   49 /  128     2.1s Mutex concurrent
[ ]   50    0    0   50 /  128     2.3s Mutex concurrent
[ ]   51    0    0   51 /  128     2.5s Mutex concurrent
[ ]   56    0    0   56 /  128     2.6s Mutex concurrent
[ ]   58    0    0   58 /  128     2.8s Mutex concurrent
[ ]   60    0    0   60 /  128     3.1s Mutex concurrent
[ ]   64    0    0   64 /  128     3.3s Mutex concurrent
[ ]   67    0    0   67 /  128     3.6s Mutex concurrent
[ ]   70    0    0   70 /  128     3.9s Mutex concurrent
[ ]   73    0    0   73 /  128     4.3s Mutex concurrent
[ ]   76    0    0   76 /  128     4.5s Mutex concurrent
[ ]   78    0    0   78 /  128     4.7s Mutex concurrent
[ ]   84    0    0   84 /  128     4.8s Mutex concurrent
[ ]   90    0    0   90 /  128     4.9s Mutex concurrent
[ ]   95    0    0   95 /  128     5.0s Mutex concurrent
[ ]  100    0    0  100 /  128     5.2s Mutex concurrent
[ ]  105    0    0  105 /  128     5.3s Mutex concurrent
[ ]  109    0    0  109 /  128     5.5s Mutex concurrent
[ ]  113    0    0  113 /  128     5.6s Mutex concurrent
[ ]  117    0    0  117 /  128     5.7s Mutex concurrent
[ ]  120    0    0  120 /  128     5.9s Mutex concurrent
[ ]  123    0    0  123 /  128     6.1s Mutex concurrent
[ ]  125    0    0  125 /  128     6.9s Mutex concurrent
[ ]  127    0    0  127 /  128     7.3s Mutex concurrent
[ ]  128    0    0  128 /  128     9.9s Mutex concurrent
[]  128    0    0  128 /  128     9.9s Mutex concurrent
================================================================================
success (ran 2 tests)
random seed: 3407648190901599182
generated error fail pass / total     time test name
[ ]    0    0    0    0 /  173     0.0s Mutex sequential
[]  173    0    0  173 /  173     0.0s Mutex sequential
[ ]    0    0    0    0 /  173     0.0s Mutex concurrent
[ ]    1    0    0    1 /  173     2.4s Mutex concurrent
[ ]    2    0    0    2 /  173     4.9s Mutex concurrent
[ ]    3    0    0    3 /  173     7.3s Mutex concurrent
[ ]    4    0    0    4 /  173    10.4s Mutex concurrent
[ ]    5    0    0    5 /  173    12.3s Mutex concurrent
[ ]    6    0    0    6 /  173    13.8s Mutex concurrent
[ ]    7    0    0    7 /  173    16.6s Mutex concurrent
[ ]    8    0    0    8 /  173    19.5s Mutex concurrent
[ ]    9    0    0    9 /  173    22.4s Mutex concurrent
[ ]   10    0    0   10 /  173    24.1s Mutex concurrent
[ ]   11    0    0   11 /  173    25.6s Mutex concurrent
[ ]   12    0    0   12 /  173    27.1s Mutex concurrent
[ ]   13    0    0   13 /  173    27.8s Mutex concurrent
[ ]   14    0    0   14 /  173    28.8s Mutex concurrent
[ ]   15    0    0   15 /  173    30.2s Mutex concurrent
[ ]   16    0    0   16 /  173    30.6s Mutex concurrent
[ ]   17    0    0   17 /  173    30.9s Mutex concurrent
[ ]   18    0    0   18 /  173    31.4s Mutex concurrent
[ ]   19    0    0   19 /  173    31.8s Mutex concurrent
[ ]   20    0    0   20 /  173    32.2s Mutex concurrent
[ ]   21    0    0   21 /  173    32.5s Mutex concurrent
[ ]   22    0    0   22 /  173    32.6s Mutex concurrent
[ ]   23    0    0   23 /  173    32.9s Mutex concurrent
[ ]   24    0    0   24 /  173    33.2s Mutex concurrent
[ ]   25    0    0   25 /  173    35.1s Mutex concurrent
[ ]   26    0    0   26 /  173    36.0s Mutex concurrent
[ ]   27    0    0   27 /  173    36.6s Mutex concurrent
[ ]   28    0    0   28 /  173    37.1s Mutex concurrent
[ ]   29    0    0   29 /  173    37.4s Mutex concurrent
[ ]   30    0    0   30 /  173    37.9s Mutex concurrent
[ ]   31    0    0   31 /  173    38.2s Mutex concurrent
[ ]   32    0    0   32 /  173    38.4s Mutex concurrent
[ ]   33    0    0   33 /  173    38.7s Mutex concurrent
[ ]   34    0    0   34 /  173    39.2s Mutex concurrent
[ ]   35    0    0   35 /  173    39.5s Mutex concurrent
[ ]   37    0    0   37 /  173    39.7s Mutex concurrent
[ ]   38    0    0   38 /  173    39.9s Mutex concurrent
[ ]   39    0    0   39 /  173    40.0s Mutex concurrent
[ ]   40    0    0   40 /  173    40.2s Mutex concurrent
[ ]   41    0    0   41 /  173    40.3s Mutex concurrent
[ ]   42    0    0   42 /  173    40.5s Mutex concurrent
[ ]   43    0    0   43 /  173    40.7s Mutex concurrent
[ ]   44    0    0   44 /  173    40.9s Mutex concurrent
[ ]   45    0    0   45 /  173    41.0s Mutex concurrent
[ ]   46    0    0   46 /  173    41.1s Mutex concurrent
[ ]   47    0    0   47 /  173    41.3s Mutex concurrent
[ ]   49    0    0   49 /  173    41.5s Mutex concurrent
[ ]   50    0    0   50 /  173    41.7s Mutex concurrent
[ ]   51    0    0   51 /  173    41.9s Mutex concurrent
[ ]   52    0    0   52 /  173    42.2s Mutex concurrent
[ ]   53    0    0   53 /  173    43.4s Mutex concurrent
[ ]   54    0    0   54 /  173    43.9s Mutex concurrent
[ ]   55    0    0   55 /  173    47.8s Mutex concurrent
[ ]   56    0    0   56 /  173    50.8s Mutex concurrent
[ ]   57    0    0   57 /  173    53.6s Mutex concurrent
[ ]   58    0    0   58 /  173    56.9s Mutex concurrent
[ ]   59    0    0   59 /  173    59.2s Mutex concurrent
[ ]   60    0    0   60 /  173    60.7s Mutex concurrent
[ ]   61    0    0   61 /  173    62.9s Mutex concurrent
[ ]   62    0    0   62 /  173    65.0s Mutex concurrent
[ ]   63    0    0   63 /  173    67.1s Mutex concurrent
[ ]   64    0    0   64 /  173    69.7s Mutex concurrent
[ ]   65    0    0   65 /  173    70.6s Mutex concurrent
[ ]   66    0    0   66 /  173    73.2s Mutex concurrent
[ ]   67    0    0   67 /  173    74.9s Mutex concurrent
[ ]   68    0    0   68 /  173    76.1s Mutex concurrent
[ ]   69    0    0   69 /  173    77.3s Mutex concurrent
[ ]   70    0    0   70 /  173    81.2s Mutex concurrent
[ ]   71    0    0   71 /  173    83.9s Mutex concurrent
[ ]   72    0    0   72 /  173    84.7s Mutex concurrent
[ ]   73    0    0   73 /  173    85.5s Mutex concurrent
[ ]   74    0    0   74 /  173    86.6s Mutex concurrent
[ ]   75    0    0   75 /  173    87.6s Mutex concurrent
[ ]   76    0    0   76 /  173    88.0s Mutex concurrent
[ ]   77    0    0   77 /  173    88.9s Mutex concurrent
[ ]   78    0    0   78 /  173    89.0s Mutex concurrent
[ ]   79    0    0   79 /  173    89.8s Mutex concurrent
[ ]   80    0    0   80 /  173    90.7s Mutex concurrent
[ ]   81    0    0   81 /  173    91.0s Mutex concurrent
[ ]   82    0    0   82 /  173    91.7s Mutex concurrent
[ ]   83    0    0   83 /  173    92.3s Mutex concurrent
[ ]   84    0    0   84 /  173    92.8s Mutex concurrent
[ ]   85    0    0   85 /  173    93.0s Mutex concurrent
[ ]   86    0    0   86 /  173    93.6s Mutex concurrent
[ ]   87    0    0   87 /  173    94.5s Mutex concurrent
[ ]   88    0    0   88 /  173    95.5s Mutex concurrent
[ ]   89    0    0   89 /  173    97.5s Mutex concurrent
[ ]   90    0    0   90 /  173    99.2s Mutex concurrent
[ ]   91    0    0   91 /  173   100.4s Mutex concurrent
[ ]   92    0    0   92 /  173   100.8s Mutex concurrent
[ ]   93    0    0   93 /  173   101.2s Mutex concurrent
[ ]   94    0    0   94 /  173   101.4s Mutex concurrent
[ ]   95    0    0   95 /  173   101.9s Mutex concurrent
[ ]   96    0    0   96 /  173   102.0s Mutex concurrent
[ ]   99    0    0   99 /  173   102.2s Mutex concurrent
[ ]  100    0    0  100 /  173   102.3s Mutex concurrent
[ ]  102    0    0  102 /  173   102.6s Mutex concurrent
[ ]  103    0    0  103 /  173   102.7s Mutex concurrent
[ ]  105    0    0  105 /  173   102.9s Mutex concurrent
[ ]  106    0    0  106 /  173   103.7s Mutex concurrent
[ ]  107    0    0  107 /  173   103.8s Mutex concurrent
[ ]  108    0    0  108 /  173   103.9s Mutex concurrent
[ ]  109    0    0  109 /  173   104.0s Mutex concurrent
[ ]  110    0    0  110 /  173   104.2s Mutex concurrent
[ ]  111    0    0  111 /  173   104.4s Mutex concurrent
[ ]  112    0    0  112 /  173   105.0s Mutex concurrent
[ ]  113    0    0  113 /  173   105.8s Mutex concurrent
[ ]  114    0    0  114 /  173   106.0s Mutex concurrent
[ ]  115    0    0  115 /  173   106.1s Mutex concurrent
[ ]  116    0    0  116 /  173   106.3s Mutex concurrent
[ ]  117    0    0  117 /  173   107.1s Mutex concurrent
[ ]  118    0    0  118 /  173   107.3s Mutex concurrent
[ ]  119    0    0  119 /  173   107.8s Mutex concurrent
[ ]  120    0    0  120 /  173   108.0s Mutex concurrent
[ ]  121    0    0  121 /  173   108.4s Mutex concurrent
[ ]  123    0    0  123 /  173   108.7s Mutex concurrent
[ ]  124    0    0  124 /  173   108.9s Mutex concurrent
[ ]  129    0    0  129 /  173   109.0s Mutex concurrent
[ ]  133    0    0  133 /  173   109.1s Mutex concurrent
[ ]  134    0    0  134 /  173   109.2s Mutex concurrent
[ ]  136    0    0  136 /  173   109.4s Mutex concurrent
[ ]  142    0    0  142 /  173   109.5s Mutex concurrent
[ ]  146    0    0  146 /  173   109.6s Mutex concurrent
[ ]  150    0    0  150 /  173   109.8s Mutex concurrent
[ ]  156    0    0  156 /  173   109.9s Mutex concurrent
[ ]  158    0    0  158 /  173   110.1s Mutex concurrent
[ ]  164    0    0  164 /  173   110.2s Mutex concurrent
[ ]  168    0    0  168 /  173   110.3s Mutex concurrent
[ ]  170    0    0  170 /  173   110.6s Mutex concurrent
[ ]  171    0    0  171 /  173   110.8s Mutex concurrent
[ ]  173    0    0  173 /  173   111.1s Mutex concurrent
[]  173    0    0  173 /  173   111.1s Mutex concurrent
================================================================================
success (ran 2 tests)
(cd _build/default/test && ./test_mpmcq.exe)
random seed: 3041576865060366165
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 concurrent
[ ]    1    0    0    1 /   32     2.0s Mpmcq concurrent
[ ]    2    0    0    2 /   32     3.5s Mpmcq concurrent
[ ]    3    0    0    3 /   32     4.6s Mpmcq concurrent
[ ]    4    0    0    4 /   32     6.0s Mpmcq concurrent
[ ]    5    0    0    5 /   32     6.5s Mpmcq concurrent
[ ]    6    0    0    6 /   32     7.7s Mpmcq concurrent
[ ]    7    0    0    7 /   32     9.3s Mpmcq concurrent
[ ]    8    0    0    8 /   32    10.7s Mpmcq concurrent
[ ]    9    0    0    9 /   32    12.5s Mpmcq concurrent
[ ]   10    0    0   10 /   32    14.2s Mpmcq concurrent
[ ]   11    0    0   11 /   32    15.4s Mpmcq concurrent
[ ]   12    0    0   12 /   32    16.0s Mpmcq concurrent
[ ]   13    0    0   13 /   32    16.6s Mpmcq concurrent
[ ]   14    0    0   14 /   32    17.0s Mpmcq concurrent
[ ]   15    0    0   15 /   32    17.6s Mpmcq concurrent
[ ]   16    0    0   16 /   32    18.0s Mpmcq concurrent
[ ]   17    0    0   17 /   32    18.2s Mpmcq concurrent
[ ]   18    0    0   18 /   32    19.0s Mpmcq concurrent
[ ]   19    0    0   19 /   32    19.3s Mpmcq concurrent
[ ]   21    0    0   21 /   32    19.6s Mpmcq concurrent
[ ]   24    0    0   24 /   32    19.8s Mpmcq concurrent
[ ]   26    0    0   26 /   32    20.3s Mpmcq concurrent
[ ]   27    0    0   27 /   32    20.5s Mpmcq concurrent
[ ]   28    0    0   28 /   32    20.8s Mpmcq concurrent
[ ]   29    0    0   29 /   32    21.0s Mpmcq concurrent
[ ]   30    0    0   30 /   32    21.1s Mpmcq concurrent
[]   32    0    0   32 /   32    21.2s Mpmcq concurrent
================================================================================
success (ran 2 tests)
random seed: 3993379267720561813
generated error fail pass / total     time test name
[ ]    0    0    0    0 /   58     0.0s Mpmcq sequential
[]   58    0    0   58 /   58     0.0s Mpmcq sequential
[ ]    0    0    0    0 /   58     0.0s Mpmcq concurrent
[ ]    1    0    0    1 /   58     0.0s Mpmcq concurrent
[ ]    3    0    0    3 /   58     0.2s Mpmcq concurrent
[ ]    7    0    0    7 /   58     0.4s Mpmcq concurrent
[ ]   10    0    0   10 /   58     0.5s Mpmcq concurrent
[ ]   14    0    0   14 /   58     0.7s Mpmcq concurrent
[ ]   18    0    0   18 /   58     0.8s Mpmcq concurrent
[ ]   22    0    0   22 /   58     0.9s Mpmcq concurrent
[ ]   26    0    0   26 /   58     1.0s Mpmcq concurrent
[ ]   27    0    0   27 /   58     1.5s Mpmcq concurrent
[ ]   31    0    0   31 /   58     1.6s Mpmcq concurrent
[ ]   34    0    0   34 /   58     2.0s Mpmcq concurrent
[ ]   36    0    0   36 /   58     2.1s Mpmcq concurrent
[ ]   38    0    0   38 /   58     2.2s Mpmcq concurrent
[ ]   40    0    0   40 /   58     2.4s Mpmcq concurrent
[ ]   43    0    0   43 /   58     2.5s Mpmcq concurrent
[ ]   46    0    0   46 /   58     2.8s Mpmcq concurrent
[ ]   48    0    0   48 /   58     3.2s Mpmcq concurrent
[ ]   51    0    0   51 /   58     3.3s Mpmcq concurrent
[ ]   53    0    0   53 /   58     3.5s Mpmcq concurrent
[ ]   55    0    0   55 /   58     3.7s Mpmcq concurrent
[ ]   57    0    0   57 /   58     3.9s Mpmcq concurrent
[]   58    0    0   58 /   58     3.9s Mpmcq concurrent
================================================================================
success (ran 2 tests)
random seed: 866464833375579502
generated error fail pass / total     time test name
[ ]    0    0    0    0 /  125     0.0s Mpmcq sequential
[]  125    0    0  125 /  125     0.0s Mpmcq sequential
[ ]    0    0    0    0 /  125     0.0s Mpmcq concurrent
[ ]    2    0    0    2 /  125     0.2s Mpmcq concurrent
[ ]    6    0    0    6 /  125     0.3s Mpmcq concurrent
[ ]    8    0    0    8 /  125     0.5s Mpmcq concurrent
[ ]   10    0    0   10 /  125     0.7s Mpmcq concurrent
[ ]   17    0    0   17 /  125     0.9s Mpmcq concurrent
[ ]   20    0    0   20 /  125     1.1s Mpmcq concurrent
[ ]   24    0    0   24 /  125     1.2s Mpmcq concurrent
[ ]   25    0    0   25 /  125     1.4s Mpmcq concurrent
[ ]   28    0    0   28 /  125     1.6s Mpmcq concurrent
[ ]   29    0    0   29 /  125     1.8s Mpmcq concurrent
[ ]   33    0    0   33 /  125     2.0s Mpmcq concurrent
[ ]   35    0    0   35 /  125     2.1s Mpmcq concurrent
[ ]   39    0    0   39 /  125     2.2s Mpmcq concurrent
[ ]   42    0    0   42 /  125     2.3s Mpmcq concurrent
[ ]   46    0    0   46 /  125     2.4s Mpmcq concurrent
[ ]   49    0    0   49 /  125     2.5s Mpmcq concurrent
[ ]   53    0    0   53 /  125     2.6s Mpmcq concurrent
[ ]   57    0    0   57 /  125     2.8s Mpmcq concurrent
[ ]   62    0    0   62 /  125     3.1s Mpmcq concurrent
[ ]   66    0    0   66 /  125     3.5s Mpmcq concurrent
[ ]   67    0    0   67 /  125     3.6s Mpmcq concurrent
[ ]   70    0    0   70 /  125     3.7s Mpmcq concurrent
[ ]   71    0    0   71 /  125     3.9s Mpmcq concurrent
[ ]   78    0    0   78 /  125     4.0s Mpmcq concurrent
[ ]   82    0    0   82 /  125     4.3s Mpmcq concurrent
[ ]   87    0    0   87 /  125     4.5s Mpmcq concurrent
[ ]   90    0    0   90 /  125     4.9s Mpmcq concurrent
[ ]   96    0    0   96 /  125     5.0s Mpmcq concurrent
[ ]  100    0    0  100 /  125     5.1s Mpmcq concurrent
[ ]  104    0    0  104 /  125     5.2s Mpmcq concurrent
[ ]  106    0    0  106 /  125     5.4s Mpmcq concurrent
[ ]  107    0    0  107 /  125     5.6s Mpmcq concurrent
[ ]  113    0    0  113 /  125     5.7s Mpmcq concurrent
[ ]  118    0    0  118 /  125     5.8s Mpmcq concurrent
[ ]  122    0    0  122 /  125     6.0s Mpmcq concurrent
[ ]  124    0    0  124 /  125     6.1s Mpmcq concurrent
[]  125    0    0  125 /  125     6.1s Mpmcq concurrent
================================================================================
success (ran 2 tests)
random seed: 2930237795003609872
generated error fail pass / total     time test name
[ ]    0    0    0    0 /  198     0.0s Mpmcq sequential
[]  198    0    0  198 /  198     0.0s Mpmcq sequential
[ ]    0    0    0    0 /  198     0.0s Mpmcq concurrent
[ ]    3    0    0    3 /  198     0.2s Mpmcq concurrent
[ ]    5    0    0    5 /  198     0.3s Mpmcq concurrent
[ ]    9    0    0    9 /  198     0.7s Mpmcq concurrent
[ ]   11    0    0   11 /  198     0.9s Mpmcq concurrent
[ ]   12    0    0   12 /  198     1.1s Mpmcq concurrent
[ ]   13    0    0   13 /  198     1.8s Mpmcq concurrent
[ ]   14    0    0   14 /  198     5.0s Mpmcq concurrent
[ ]   15    0    0   15 /  198     7.6s Mpmcq concurrent
[ ]   16    0    0   16 /  198     9.2s Mpmcq concurrent
[ ]   17    0    0   17 /  198    11.3s Mpmcq concurrent
[ ]   18    0    0   18 /  198    13.7s Mpmcq concurrent
[ ]   19    0    0   19 /  198    15.2s Mpmcq concurrent
[ ]   20    0    0   20 /  198    17.9s Mpmcq concurrent
[ ]   21    0    0   21 /  198    21.5s Mpmcq concurrent
[ ]   22    0    0   22 /  198    25.2s Mpmcq concurrent
[ ]   23    0    0   23 /  198    26.4s Mpmcq concurrent
[ ]   24    0    0   24 /  198    28.7s Mpmcq concurrent
[ ]   25    0    0   25 /  198    30.9s Mpmcq concurrent
[ ]   26    0    0   26 /  198    31.9s Mpmcq concurrent
[ ]   27    0    0   27 /  198    32.2s Mpmcq concurrent
[ ]   28    0    0   28 /  198    34.0s Mpmcq concurrent
[ ]   29    0    0   29 /  198    34.8s Mpmcq concurrent
[ ]   30    0    0   30 /  198    35.0s Mpmcq concurrent
[ ]   31    0    0   31 /  198    35.8s Mpmcq concurrent
[ ]   32    0    0   32 /  198    36.3s Mpmcq concurrent
[ ]   33    0    0   33 /  198    36.5s Mpmcq concurrent
[ ]   34    0    0   34 /  198    36.8s Mpmcq concurrent
[ ]   35    0    0   35 /  198    36.9s Mpmcq concurrent
[ ]   36    0    0   36 /  198    37.1s Mpmcq concurrent
[ ]   37    0    0   37 /  198    37.3s Mpmcq concurrent
[ ]   38    0    0   38 /  198    37.6s Mpmcq concurrent
[ ]   39    0    0   39 /  198    38.0s Mpmcq concurrent
[ ]   40    0    0   40 /  198    38.8s Mpmcq concurrent
[ ]   41    0    0   41 /  198    39.4s Mpmcq concurrent
[ ]   42    0    0   42 /  198    39.9s Mpmcq concurrent
[ ]   43    0    0   43 /  198    40.6s Mpmcq concurrent
[ ]   44    0    0   44 /  198    41.0s Mpmcq concurrent
[ ]   45    0    0   45 /  198    41.5s Mpmcq concurrent
[ ]   46    0    0   46 /  198    42.0s Mpmcq concurrent
[ ]   47    0    0   47 /  198    42.4s Mpmcq concurrent
[ ]   48    0    0   48 /  198    42.7s Mpmcq concurrent
[ ]   50    0    0   50 /  198    43.0s Mpmcq concurrent
[ ]   51    0    0   51 /  198    43.5s Mpmcq concurrent
[ ]   52    0    0   52 /  198    43.7s Mpmcq concurrent
[ ]   53    0    0   53 /  198    44.0s Mpmcq concurrent
[ ]   54    0    0   54 /  198    44.1s Mpmcq concurrent
[ ]   55    0    0   55 /  198    44.4s Mpmcq concurrent
[ ]   57    0    0   57 /  198    44.6s Mpmcq concurrent
[ ]   58    0    0   58 /  198    44.7s Mpmcq concurrent
[ ]   59    0    0   59 /  198    44.9s Mpmcq concurrent
[ ]   60    0    0   60 /  198    45.1s Mpmcq concurrent
[ ]   62    0    0   62 /  198    45.2s Mpmcq concurrent
[ ]   63    0    0   63 /  198    45.3s Mpmcq concurrent
[ ]   65    0    0   65 /  198    45.6s Mpmcq concurrent
[ ]   67    0    0   67 /  198    45.7s Mpmcq concurrent
[ ]   69    0    0   69 /  198    46.0s Mpmcq concurrent
[ ]   70    0    0   70 /  198    46.2s Mpmcq concurrent
[ ]   71    0    0   71 /  198    46.4s Mpmcq concurrent
[ ]   72    0    0   72 /  198    46.8s Mpmcq concurrent
[ ]   73    0    0   73 /  198    47.4s Mpmcq concurrent
[ ]   74    0    0   74 /  198    48.1s Mpmcq concurrent
[ ]   75    0    0   75 /  198    50.4s Mpmcq concurrent
[ ]   76    0    0   76 /  198    54.9s Mpmcq concurrent
[ ]   77    0    0   77 /  198    56.3s Mpmcq concurrent
[ ]   78    0    0   78 /  198    59.7s Mpmcq concurrent
[ ]   79    0    0   79 /  198    60.7s Mpmcq concurrent
[ ]   80    0    0   80 /  198    63.0s Mpmcq concurrent
[ ]   81    0    0   81 /  198    65.6s Mpmcq concurrent
[ ]   82    0    0   82 /  198    66.8s Mpmcq concurrent
[ ]   83    0    0   83 /  198    70.6s Mpmcq concurrent
[ ]   84    0    0   84 /  198    72.1s Mpmcq concurrent
[ ]   85    0    0   85 /  198    74.5s Mpmcq concurrent
[ ]   86    0    0   86 /  198    75.3s Mpmcq concurrent
[ ]   87    0    0   87 /  198    77.1s Mpmcq concurrent
[ ]   88    0    0   88 /  198    79.4s Mpmcq concurrent
[ ]   89    0    0   89 /  198    81.0s Mpmcq concurrent
[ ]   90    0    0   90 /  198    83.5s Mpmcq concurrent
[ ]   91    0    0   91 /  198    87.2s Mpmcq concurrent
[ ]   92    0    0   92 /  198    88.7s Mpmcq concurrent
[ ]   93    0    0   93 /  198    89.3s Mpmcq concurrent
[ ]   94    0    0   94 /  198    89.9s Mpmcq concurrent
[ ]   95    0    0   95 /  198    91.4s Mpmcq concurrent
[ ]   96    0    0   96 /  198    91.8s Mpmcq concurrent
[ ]   97    0    0   97 /  198    92.3s Mpmcq concurrent
[ ]   98    0    0   98 /  198    92.9s Mpmcq concurrent
[ ]   99    0    0   99 /  198    93.3s Mpmcq concurrent
[ ]  100    0    0  100 /  198    94.2s Mpmcq concurrent
[ ]  101    0    0  101 /  198    94.6s Mpmcq concurrent
[ ]  103    0    0  103 /  198    94.7s Mpmcq concurrent
[ ]  104    0    0  104 /  198    95.1s Mpmcq concurrent
[ ]  105    0    0  105 /  198    95.6s Mpmcq concurrent
[ ]  106    0    0  106 /  198    95.9s Mpmcq concurrent
[ ]  107    0    0  107 /  198    96.2s Mpmcq concurrent
[ ]  108    0    0  108 /  198    96.5s Mpmcq concurrent
[ ]  109    0    0  109 /  198    97.1s Mpmcq concurrent
[ ]  110    0    0  110 /  198    97.4s Mpmcq concurrent
[ ]  111    0    0  111 /  198    98.0s Mpmcq concurrent
[ ]  112    0    0  112 /  198    98.6s Mpmcq concurrent
[ ]  113    0    0  113 /  198    99.1s Mpmcq concurrent
[ ]  114    0    0  114 /  198   100.8s Mpmcq concurrent
[ ]  115    0    0  115 /  198   101.7s Mpmcq concurrent
[ ]  116    0    0  116 /  198   103.4s Mpmcq concurrent
[ ]  117    0    0  117 /  198   103.6s Mpmcq concurrent
[ ]  118    0    0  118 /  198   103.7s Mpmcq concurrent
[ ]  119    0    0  119 /  198   104.0s Mpmcq concurrent
[ ]  120    0    0  120 /  198   104.2s Mpmcq concurrent
[ ]  121    0    0  121 /  198   104.5s Mpmcq concurrent
[ ]  122    0    0  122 /  198   105.1s Mpmcq concurrent
[ ]  123    0    0  123 /  198   105.6s Mpmcq concurrent
[ ]  124    0    0  124 /  198   105.7s Mpmcq concurrent
[ ]  125    0    0  125 /  198   106.0s Mpmcq concurrent
[ ]  126    0    0  126 /  198   106.2s Mpmcq concurrent
[ ]  127    0    0  127 /  198   106.5s Mpmcq concurrent
[ ]  128    0    0  128 /  198   106.9s Mpmcq concurrent
[ ]  129    0    0  129 /  198   107.0s Mpmcq concurrent
[ ]  130    0    0  130 /  198   107.5s Mpmcq concurrent
[ ]  131    0    0  131 /  198   107.7s Mpmcq concurrent
[ ]  132    0    0  132 /  198   108.1s Mpmcq concurrent
[ ]  133    0    0  133 /  198   108.2s Mpmcq concurrent
[ ]  134    0    0  134 /  198   108.4s Mpmcq concurrent
[ ]  135    0    0  135 /  198   108.6s Mpmcq concurrent
[ ]  136    0    0  136 /  198   109.0s Mpmcq concurrent
[ ]  137    0    0  137 /  198   109.1s Mpmcq concurrent
[ ]  138    0    0  138 /  198   109.6s Mpmcq concurrent
[ ]  139    0    0  139 /  198   110.1s Mpmcq concurrent
[ ]  140    0    0  140 /  198   110.2s Mpmcq concurrent
[ ]  141    0    0  141 /  198   110.4s Mpmcq concurrent
[ ]  142    0    0  142 /  198   110.5s Mpmcq concurrent
[ ]  143    0    0  143 /  198   110.8s Mpmcq concurrent
[ ]  144    0    0  144 /  198   111.5s Mpmcq concurrent
[ ]  145    0    0  145 /  198   112.3s Mpmcq concurrent
[ ]  146    0    0  146 /  198   112.7s Mpmcq concurrent
[ ]  147    0    0  147 /  198   112.9s Mpmcq concurrent
[ ]  149    0    0  149 /  198   113.0s Mpmcq concurrent
[ ]  150    0    0  150 /  198   113.1s Mpmcq concurrent
[ ]  152    0    0  152 /  198   113.2s Mpmcq concurrent
[ ]  153    0    0  153 /  198   113.4s Mpmcq concurrent
[ ]  159    0    0  159 /  198   113.5s Mpmcq concurrent
[ ]  160    0    0  160 /  198   113.9s Mpmcq concurrent
[ ]  164    0    0  164 /  198   114.0s Mpmcq concurrent
[ ]  167    0    0  167 /  198   114.1s Mpmcq concurrent (collecting)
[ ]  171    0    0  171 /  198   114.5s Mpmcq concurrent
[ ]  177    0    0  177 /  198   114.6s Mpmcq concurrent
[ ]  182    0    0  182 /  198   114.8s Mpmcq concurrent
[ ]  184    0    0  184 /  198   115.1s Mpmcq concurrent
[ ]  186    0    0  186 /  198   115.2s Mpmcq concurrent
[ ]  188    0    0  188 /  198   115.9s Mpmcq concurrent
[ ]  192    0    0  192 /  198   116.0s Mpmcq concurrent
[ ]  197    0    0  197 /  198   116.1s Mpmcq concurrent
[]  198    0    0  198 /  198   116.2s Mpmcq concurrent
================================================================================
success (ran 2 tests)
(cd _build/default/test && ./test_rwlock.exe)
random seed: 2416495103945028054
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 concurrent
[ ]    1    0    0    1 /   32     0.6s Rwlock concurrent
[ ]    2    0    0    2 /   32     2.1s Rwlock concurrent
[ ]    3    0    0    3 /   32     4.1s Rwlock concurrent
[ ]    4    0    0    4 /   32     4.8s Rwlock concurrent
[ ]    5    0    0    5 /   32     6.3s Rwlock concurrent
[ ]    6    0    0    6 /   32     7.3s Rwlock concurrent
[ ]    7    0    0    7 /   32     8.5s Rwlock concurrent
[ ]    8    0    0    8 /   32     9.8s Rwlock concurrent
[ ]    9    0    0    9 /   32    11.0s Rwlock concurrent
[ ]   10    0    0   10 /   32    11.7s Rwlock concurrent
[ ]   11    0    0   11 /   32    12.6s Rwlock concurrent
[ ]   12    0    0   12 /   32    12.9s Rwlock concurrent
[ ]   14    0    0   14 /   32    13.2s Rwlock concurrent
[ ]   16    0    0   16 /   32    13.6s Rwlock concurrent
[ ]   17    0    0   17 /   32    14.6s Rwlock concurrent
[ ]   18    0    0   18 /   32    15.1s Rwlock concurrent
[ ]   19    0    0   19 /   32    15.9s Rwlock concurrent
[ ]   20    0    0   20 /   32    16.3s Rwlock concurrent
[ ]   21    0    0   21 /   32    16.5s Rwlock concurrent
[ ]   22    0    0   22 /   32    16.7s Rwlock concurrent
[ ]   23    0    0   23 /   32    17.0s Rwlock concurrent
[ ]   24    0    0   24 /   32    17.7s Rwlock concurrent
[ ]   25    0    0   25 /   32    17.8s Rwlock concurrent
[ ]   27    0    0   27 /   32    18.1s Rwlock concurrent
[ ]   29    0    0   29 /   32    18.3s Rwlock concurrent
[ ]   30    0    0   30 /   32    18.4s Rwlock concurrent
[ ]   31    0    0   31 /   32    18.9s Rwlock concurrent
[ ]   32    0    0   32 /   32    19.1s Rwlock concurrent
[]   32    0    0   32 /   32    19.1s Rwlock concurrent
================================================================================
success (ran 2 tests)
random seed: 259871227857916103
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 concurrent
[ ]    2    0    0    2 /   64     0.3s Rwlock concurrent
[ ]    4    0    0    4 /   64     0.4s Rwlock concurrent
[ ]    6    0    0    6 /   64     0.6s Rwlock concurrent
[ ]    8    0    0    8 /   64     0.7s Rwlock concurrent
[ ]   10    0    0   10 /   64     0.8s Rwlock concurrent
[ ]   13    0    0   13 /   64     0.9s Rwlock concurrent
[ ]   14    0    0   14 /   64     1.2s Rwlock concurrent
[ ]   18    0    0   18 /   64     1.3s Rwlock concurrent
[ ]   21    0    0   21 /   64     1.4s Rwlock concurrent
[ ]   24    0    0   24 /   64     1.5s Rwlock concurrent
[ ]   26    0    0   26 /   64     1.7s Rwlock concurrent
[ ]   29    0    0   29 /   64     1.8s Rwlock concurrent
[ ]   33    0    0   33 /   64     1.9s Rwlock concurrent
[ ]   36    0    0   36 /   64     2.0s Rwlock concurrent
[ ]   37    0    0   37 /   64     2.2s Rwlock concurrent
[ ]   38    0    0   38 /   64     2.3s Rwlock concurrent
[ ]   40    0    0   40 /   64     2.4s Rwlock concurrent
[ ]   42    0    0   42 /   64     2.6s Rwlock concurrent
[ ]   44    0    0   44 /   64     2.7s Rwlock concurrent
[ ]   49    0    0   49 /   64     2.8s Rwlock concurrent
[ ]   52    0    0   52 /   64     2.9s Rwlock concurrent
[ ]   56    0    0   56 /   64     3.0s Rwlock concurrent
[ ]   58    0    0   58 /   64     3.3s Rwlock concurrent
[ ]   63    0    0   63 /   64     3.4s Rwlock concurrent
[]   64    0    0   64 /   64     3.5s Rwlock concurrent
================================================================================
success (ran 2 tests)
random seed: 4123928831673579605
generated error fail pass / total     time test name
[ ]    0    0    0    0 /  128     0.0s Rwlock sequential
[]  128    0    0  128 /  128     0.0s Rwlock sequential
[ ]    0    0    0    0 /  128     0.0s Rwlock concurrent
[ ]    5    0    0    5 /  128     0.4s Rwlock concurrent
[ ]    6    0    0    6 /  128     0.6s Rwlock concurrent
[ ]    7    0    0    7 /  128     0.8s Rwlock concurrent
[ ]   11    0    0   11 /  128     0.9s Rwlock concurrent
[ ]   15    0    0   15 /  128     1.0s Rwlock concurrent
[ ]   17    0    0   17 /  128     1.2s Rwlock concurrent
[ ]   21    0    0   21 /  128     1.3s Rwlock concurrent
[ ]   26    0    0   26 /  128     1.6s Rwlock concurrent
[ ]   31    0    0   31 /  128     1.7s Rwlock concurrent
[ ]   35    0    0   35 /  128     1.9s Rwlock concurrent
[ ]   39    0    0   39 /  128     2.0s Rwlock concurrent
[ ]   43    0    0   43 /  128     2.6s Rwlock concurrent
[ ]   47    0    0   47 /  128     2.7s Rwlock concurrent
[ ]   50    0    0   50 /  128     2.8s Rwlock concurrent
[ ]   53    0    0   53 /  128     2.9s Rwlock concurrent
[ ]   56    0    0   56 /  128     3.1s Rwlock concurrent
[ ]   60    0    0   60 /  128     3.6s Rwlock concurrent
[ ]   66    0    0   66 /  128     3.9s Rwlock concurrent
[ ]   68    0    0   68 /  128     4.1s Rwlock concurrent
[ ]   70    0    0   70 /  128     4.2s Rwlock concurrent
[ ]   74    0    0   74 /  128     4.3s Rwlock concurrent
[ ]   78    0    0   78 /  128     4.5s Rwlock concurrent
[ ]   81    0    0   81 /  128     4.7s Rwlock concurrent
[ ]   84    0    0   84 /  128     5.0s Rwlock concurrent
[ ]   89    0    0   89 /  128     5.1s Rwlock concurrent
[ ]   90    0    0   90 /  128     5.3s Rwlock concurrent
[ ]   91    0    0   91 /  128     5.5s Rwlock concurrent
[ ]   98    0    0   98 /  128     5.7s Rwlock concurrent
[ ]   99    0    0   99 /  128     6.0s Rwlock concurrent
[ ]  101    0    0  101 /  128     6.3s Rwlock concurrent
[ ]  106    0    0  106 /  128     6.4s Rwlock concurrent
[ ]  111    0    0  111 /  128     6.5s Rwlock concurrent
[ ]  115    0    0  115 /  128     6.7s Rwlock concurrent
[ ]  116    0    0  116 /  128     7.0s Rwlock concurrent
[ ]  121    0    0  121 /  128     7.1s Rwlock concurrent
[ ]  124    0    0  124 /  128     7.2s Rwlock concurrent
[ ]  128    0    0  128 /  128     7.3s Rwlock concurrent
[]  128    0    0  128 /  128     7.3s Rwlock concurrent
================================================================================
success (ran 2 tests)
random seed: 2843492644018011074
generated error fail pass / total     time test name
[ ]    0    0    0    0 /  227     0.0s Rwlock sequential
[]  227    0    0  227 /  227     0.0s Rwlock sequential
[ ]    0    0    0    0 /  227     0.0s Rwlock concurrent
[ ]    3    0    0    3 /  227     0.1s Rwlock concurrent
[ ]    7    0    0    7 /  227     0.2s Rwlock concurrent
[ ]    8    0    0    8 /  227     0.4s Rwlock concurrent
[ ]    9    0    0    9 /  227     0.6s Rwlock concurrent
[ ]   10    0    0   10 /  227     0.9s Rwlock concurrent
[ ]   12    0    0   12 /  227     1.1s Rwlock concurrent
[ ]   13    0    0   13 /  227     1.3s Rwlock concurrent
[ ]   16    0    0   16 /  227     4.1s Rwlock concurrent
[ ]   17    0    0   17 /  227     6.2s Rwlock concurrent
[ ]   18    0    0   18 /  227     7.9s Rwlock concurrent
[ ]   19    0    0   19 /  227     9.7s Rwlock concurrent
[ ]   20    0    0   20 /  227    13.3s Rwlock concurrent
[ ]   21    0    0   21 /  227    15.2s Rwlock concurrent
[ ]   22    0    0   22 /  227    17.4s Rwlock concurrent
[ ]   23    0    0   23 /  227    20.4s Rwlock concurrent
[ ]   24    0    0   24 /  227    23.5s Rwlock concurrent
[ ]   25    0    0   25 /  227    25.2s Rwlock concurrent
[ ]   26    0    0   26 /  227    26.7s Rwlock concurrent
[ ]   27    0    0   27 /  227    28.4s Rwlock concurrent
[ ]   28    0    0   28 /  227    30.3s Rwlock concurrent
[ ]   29    0    0   29 /  227    31.1s Rwlock concurrent
[ ]   30    0    0   30 /  227    32.3s Rwlock concurrent
[ ]   31    0    0   31 /  227    33.5s Rwlock concurrent
[ ]   32    0    0   32 /  227    34.2s Rwlock concurrent
[ ]   33    0    0   33 /  227    34.7s Rwlock concurrent
[ ]   34    0    0   34 /  227    35.5s Rwlock concurrent
[ ]   35    0    0   35 /  227    36.1s Rwlock concurrent
[ ]   36    0    0   36 /  227    36.3s Rwlock concurrent
[ ]   37    0    0   37 /  227    36.5s Rwlock concurrent
[ ]   38    0    0   38 /  227    36.7s Rwlock concurrent
[ ]   39    0    0   39 /  227    37.1s Rwlock concurrent
[ ]   40    0    0   40 /  227    37.7s Rwlock concurrent
[ ]   41    0    0   41 /  227    39.0s Rwlock concurrent
[ ]   42    0    0   42 /  227    39.8s Rwlock concurrent
[ ]   43    0    0   43 /  227    40.2s Rwlock concurrent
[ ]   44    0    0   44 /  227    40.7s Rwlock concurrent
[ ]   45    0    0   45 /  227    41.0s Rwlock concurrent
[ ]   46    0    0   46 /  227    41.5s Rwlock concurrent
[ ]   47    0    0   47 /  227    42.1s Rwlock concurrent
[ ]   48    0    0   48 /  227    42.3s Rwlock concurrent
[ ]   49    0    0   49 /  227    42.4s Rwlock concurrent
[ ]   51    0    0   51 /  227    43.0s Rwlock concurrent
[ ]   52    0    0   52 /  227    43.5s Rwlock concurrent
[ ]   53    0    0   53 /  227    43.6s Rwlock concurrent
[ ]   54    0    0   54 /  227    43.7s Rwlock concurrent
[ ]   55    0    0   55 /  227    44.0s Rwlock concurrent
[ ]   56    0    0   56 /  227    44.2s Rwlock concurrent
[ ]   57    0    0   57 /  227    44.3s Rwlock concurrent
[ ]   58    0    0   58 /  227    44.4s Rwlock concurrent
[ ]   59    0    0   59 /  227    44.6s Rwlock concurrent
[ ]   61    0    0   61 /  227    44.8s Rwlock concurrent
[ ]   62    0    0   62 /  227    45.0s Rwlock concurrent
[ ]   63    0    0   63 /  227    45.2s Rwlock concurrent
[ ]   65    0    0   65 /  227    45.5s Rwlock concurrent
[ ]   66    0    0   66 /  227    45.7s Rwlock concurrent
[ ]   67    0    0   67 /  227    46.6s Rwlock concurrent
[ ]   68    0    0   68 /  227    46.9s Rwlock concurrent
[ ]   69    0    0   69 /  227    48.0s Rwlock concurrent
[ ]   70    0    0   70 /  227    49.1s Rwlock concurrent
[ ]   71    0    0   71 /  227    52.4s Rwlock concurrent
[ ]   72    0    0   72 /  227    56.2s Rwlock concurrent
[ ]   73    0    0   73 /  227    58.9s Rwlock concurrent
[ ]   74    0    0   74 /  227    62.8s Rwlock concurrent
[ ]   75    0    0   75 /  227    65.4s Rwlock concurrent
[ ]   76    0    0   76 /  227    67.6s Rwlock concurrent
[ ]   77    0    0   77 /  227    70.2s Rwlock concurrent
[ ]   78    0    0   78 /  227    72.0s Rwlock concurrent
[ ]   79    0    0   79 /  227    73.7s Rwlock concurrent
[ ]   80    0    0   80 /  227    74.6s Rwlock concurrent
[ ]   81    0    0   81 /  227    76.3s Rwlock concurrent
[ ]   82    0    0   82 /  227    79.1s Rwlock concurrent
[ ]   83    0    0   83 /  227    81.1s Rwlock concurrent
[ ]   84    0    0   84 /  227    84.6s Rwlock concurrent
[ ]   85    0    0   85 /  227    87.2s Rwlock concurrent
[ ]   86    0    0   86 /  227    88.6s Rwlock concurrent
[ ]   87    0    0   87 /  227    88.8s Rwlock concurrent
[ ]   88    0    0   88 /  227    89.1s Rwlock concurrent
[ ]   89    0    0   89 /  227    90.5s Rwlock concurrent
[ ]   90    0    0   90 /  227    91.6s Rwlock concurrent
[ ]   91    0    0   91 /  227    92.9s Rwlock concurrent
[ ]   92    0    0   92 /  227    93.5s Rwlock concurrent
[ ]   93    0    0   93 /  227    93.6s Rwlock concurrent
[ ]   94    0    0   94 /  227    94.4s Rwlock concurrent
[ ]   96    0    0   96 /  227    94.6s Rwlock concurrent
[ ]   97    0    0   97 /  227    94.7s Rwlock concurrent
[ ]   98    0    0   98 /  227    94.8s Rwlock concurrent
[ ]   99    0    0   99 /  227    95.4s Rwlock concurrent
[ ]  100    0    0  100 /  227    95.5s Rwlock concurrent
[ ]  101    0    0  101 /  227    96.1s Rwlock concurrent
[ ]  102    0    0  102 /  227    96.6s Rwlock concurrent
[ ]  103    0    0  103 /  227    96.9s Rwlock concurrent
[ ]  104    0    0  104 /  227    97.2s Rwlock concurrent
[ ]  105    0    0  105 /  227    97.3s Rwlock concurrent
[ ]  106    0    0  106 /  227    98.0s Rwlock concurrent
[ ]  107    0    0  107 /  227    98.7s Rwlock concurrent
[ ]  108    0    0  108 /  227    98.9s Rwlock concurrent
[ ]  109    0    0  109 /  227   100.6s Rwlock concurrent
[ ]  110    0    0  110 /  227   102.0s Rwlock concurrent
[ ]  111    0    0  111 /  227   103.4s Rwlock concurrent
[ ]  112    0    0  112 /  227   104.3s Rwlock concurrent
[ ]  113    0    0  113 /  227   104.5s Rwlock concurrent
[ ]  114    0    0  114 /  227   104.8s Rwlock concurrent
[ ]  115    0    0  115 /  227   105.0s Rwlock concurrent
[ ]  116    0    0  116 /  227   105.3s Rwlock concurrent
[ ]  117    0    0  117 /  227   105.5s Rwlock concurrent
[ ]  118    0    0  118 /  227   105.9s Rwlock concurrent
[ ]  121    0    0  121 /  227   106.1s Rwlock concurrent
[ ]  122    0    0  122 /  227   106.2s Rwlock concurrent
[ ]  123    0    0  123 /  227   106.3s Rwlock concurrent
[ ]  124    0    0  124 /  227   106.5s Rwlock concurrent
[ ]  125    0    0  125 /  227   106.9s Rwlock concurrent
[ ]  126    0    0  126 /  227   107.1s Rwlock concurrent
[ ]  127    0    0  127 /  227   107.2s Rwlock concurrent
[ ]  128    0    0  128 /  227   107.4s Rwlock concurrent
[ ]  129    0    0  129 /  227   107.6s Rwlock concurrent
[ ]  130    0    0  130 /  227   107.7s Rwlock concurrent
[ ]  132    0    0  132 /  227   109.5s Rwlock concurrent
[ ]  133    0    0  133 /  227   109.7s Rwlock concurrent
[ ]  134    0    0  134 /  227   109.8s Rwlock concurrent
[ ]  135    0    0  135 /  227   110.0s Rwlock concurrent
[ ]  136    0    0  136 /  227   111.1s Rwlock concurrent
[ ]  137    0    0  137 /  227   111.7s Rwlock concurrent
[ ]  138    0    0  138 /  227   112.3s Rwlock concurrent
[ ]  139    0    0  139 /  227   112.4s Rwlock concurrent
[ ]  140    0    0  140 /  227   112.5s Rwlock concurrent
[ ]  142    0    0  142 /  227   112.7s Rwlock concurrent
[ ]  143    0    0  143 /  227   112.8s Rwlock concurrent
[ ]  144    0    0  144 /  227   113.1s Rwlock concurrent
[ ]  146    0    0  146 /  227   113.3s Rwlock concurrent
[ ]  150    0    0  150 /  227   113.4s Rwlock concurrent
[ ]  154    0    0  154 /  227   113.5s Rwlock concurrent
[ ]  156    0    0  156 /  227   113.8s Rwlock concurrent
[ ]  160    0    0  160 /  227   113.9s Rwlock concurrent
[ ]  164    0    0  164 /  227   114.0s Rwlock concurrent
[ ]  165    0    0  165 /  227   114.1s Rwlock concurrent
[ ]  168    0    0  168 /  227   114.6s Rwlock concurrent
[ ]  170    0    0  170 /  227   114.7s Rwlock concurrent
[ ]  173    0    0  173 /  227   114.9s Rwlock concurrent
[ ]  174    0    0  174 /  227   115.0s Rwlock concurrent
[ ]  175    0    0  175 /  227   115.2s Rwlock concurrent
[ ]  176    0    0  176 /  227   115.4s Rwlock concurrent
[ ]  179    0    0  179 /  227   115.5s Rwlock concurrent
[ ]  180    0    0  180 /  227   115.7s Rwlock concurrent
[ ]  184    0    0  184 /  227   115.9s Rwlock concurrent
[ ]  187    0    0  187 /  227   116.4s Rwlock concurrent
[ ]  188    0    0  188 /  227   116.5s Rwlock concurrent
[ ]  190    0    0  190 /  227   116.6s Rwlock concurrent
[ ]  191    0    0  191 /  227   116.8s Rwlock concurrent
[ ]  192    0    0  192 /  227   116.9s Rwlock concurrent
[ ]  193    0    0  193 /  227   117.1s Rwlock concurrent
[ ]  194    0    0  194 /  227   117.3s Rwlock concurrent
[ ]  195    0    0  195 /  227   117.6s Rwlock concurrent
[ ]  196    0    0  196 /  227   117.7s Rwlock concurrent
[ ]  197    0    0  197 /  227   117.9s Rwlock concurrent
[ ]  198    0    0  198 /  227   118.1s Rwlock concurrent
[ ]  199    0    0  199 /  227   118.3s Rwlock concurrent
[ ]  201    0    0  201 /  227   118.4s Rwlock concurrent
[ ]  202    0    0  202 /  227   118.7s Rwlock concurrent
[ ]  203    0    0  203 /  227   119.1s Rwlock concurrent
[ ]  204    0    0  204 /  227   119.5s Rwlock concurrent
[ ]  205    0    0  205 /  227   120.0s Rwlock concurrent
[ ]  206    0    0  206 /  227   120.3s Rwlock concurrent
[ ]  207    0    0  207 /  227   120.6s Rwlock concurrent
[ ]  208    0    0  208 /  227   120.9s Rwlock concurrent
[ ]  209    0    0  209 /  227   125.0s Rwlock concurrent
[ ]  210    0    0  210 /  227   127.6s Rwlock concurrent
[ ]  211    0    0  211 /  227   127.9s Rwlock concurrent
[ ]  212    0    0  212 /  227   128.1s Rwlock concurrent
[ ]  214    0    0  214 /  227   129.0s Rwlock concurrent
[ ]  215    0    0  215 /  227   130.1s Rwlock concurrent
[ ]  216    0    0  216 /  227   130.5s Rwlock concurrent
[ ]  217    0    0  217 /  227   130.7s Rwlock concurrent
[ ]  218    0    0  218 /  227   131.3s Rwlock concurrent
[ ]  219    0    0  219 /  227   132.1s Rwlock concurrent
[ ]  220    0    0  220 /  227   132.4s Rwlock concurrent
[ ]  221    0    0  221 /  227   132.5s Rwlock concurrent
[ ]  222    0    0  222 /  227   132.8s Rwlock concurrent
[ ]  223    0    0  223 /  227   133.2s Rwlock concurrent
[ ]  224    0    0  224 /  227   133.5s Rwlock concurrent
[ ]  225    0    0  225 /  227   133.8s Rwlock concurrent
[ ]  226    0    0  226 /  227   134.3s Rwlock concurrent
[ ]  227    0    0  227 /  227   134.4s Rwlock concurrent
[]  227    0    0  227 /  227   134.4s Rwlock concurrent
================================================================================
success (ran 2 tests)
(cd _build/default/test && ./test_lock.exe)
random seed: 2202366537464162535
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 concurrent
[ ]    1    0    0    1 /   32     0.5s Lock concurrent
[ ]    2    0    0    2 /   32     2.1s Lock concurrent
[ ]    3    0    0    3 /   32     3.8s Lock concurrent
[ ]    4    0    0    4 /   32     4.6s Lock concurrent
[ ]    5    0    0    5 /   32     5.9s Lock concurrent
[ ]    6    0    0    6 /   32     7.0s Lock concurrent
[ ]    7    0    0    7 /   32     9.0s Lock concurrent
[ ]    8    0    0    8 /   32     9.9s Lock concurrent
[ ]    9    0    0    9 /   32    10.6s Lock concurrent
[ ]   10    0    0   10 /   32    11.1s Lock concurrent
[ ]   11    0    0   11 /   32    11.7s Lock concurrent
[ ]   12    0    0   12 /   32    12.5s Lock concurrent
[ ]   13    0    0   13 /   32    12.7s Lock concurrent
[ ]   14    0    0   14 /   32    12.8s Lock concurrent
[ ]   15    0    0   15 /   32    13.9s Lock concurrent
[ ]   16    0    0   16 /   32    14.5s Lock concurrent
[ ]   17    0    0   17 /   32    14.7s Lock concurrent
[ ]   18    0    0   18 /   32    15.0s Lock concurrent
[ ]   19    0    0   19 /   32    15.9s Lock concurrent
[ ]   20    0    0   20 /   32    16.4s Lock concurrent
[ ]   21    0    0   21 /   32    17.2s Lock concurrent
[ ]   22    0    0   22 /   32    17.6s Lock concurrent
[ ]   24    0    0   24 /   32    18.0s Lock concurrent
[ ]   26    0    0   26 /   32    18.8s Lock concurrent
[ ]   27    0    0   27 /   32    19.3s Lock concurrent
[ ]   29    0    0   29 /   32    19.4s Lock concurrent
[ ]   31    0    0   31 /   32    19.5s Lock concurrent
[ ]   32    0    0   32 /   32    19.6s Lock concurrent
[]   32    0    0   32 /   32    19.6s Lock concurrent
================================================================================
success (ran 2 tests)
random seed: 963575464360132478
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 concurrent
[ ]    5    0    0    5 /   64     0.1s Lock concurrent
[ ]    6    0    0    6 /   64     0.5s Lock concurrent
[ ]   10    0    0   10 /   64     0.6s Lock concurrent
[ ]   13    0    0   13 /   64     0.7s Lock concurrent
[ ]   18    0    0   18 /   64     0.8s Lock concurrent
[ ]   20    0    0   20 /   64     1.0s Lock concurrent
[ ]   23    0    0   23 /   64     1.2s Lock concurrent
[ ]   25    0    0   25 /   64     1.4s Lock concurrent
[ ]   28    0    0   28 /   64     1.6s Lock concurrent
[ ]   31    0    0   31 /   64     2.0s Lock concurrent
[ ]   36    0    0   36 /   64     2.1s Lock concurrent
[ ]   39    0    0   39 /   64     2.5s Lock concurrent
[ ]   41    0    0   41 /   64     2.7s Lock concurrent
[ ]   45    0    0   45 /   64     2.8s Lock concurrent
[ ]   48    0    0   48 /   64     3.0s Lock concurrent
[ ]   50    0    0   50 /   64     3.1s Lock concurrent
[ ]   54    0    0   54 /   64     3.2s Lock concurrent
[ ]   57    0    0   57 /   64     3.3s Lock concurrent
[ ]   60    0    0   60 /   64     3.4s Lock concurrent
[ ]   64    0    0   64 /   64     3.5s Lock concurrent
[]   64    0    0   64 /   64     3.5s Lock concurrent
================================================================================
success (ran 2 tests)
random seed: 4007643385654071343
generated error fail pass / total     time test name
[ ]    0    0    0    0 /  128     0.0s Lock sequential
[]  128    0    0  128 /  128     0.0s Lock sequential
[ ]    0    0    0    0 /  128     0.0s Lock concurrent
[ ]    5    0    0    5 /  128     0.1s Lock concurrent
[ ]   10    0    0   10 /  128     0.2s Lock concurrent
[ ]   15    0    0   15 /  128     0.4s Lock concurrent
[ ]   19    0    0   19 /  128     0.5s Lock concurrent
[ ]   23    0    0   23 /  128     0.6s Lock concurrent
[ ]   26    0    0   26 /  128     1.0s Lock concurrent
[ ]   29    0    0   29 /  128     1.1s Lock concurrent
[ ]   32    0    0   32 /  128     1.2s Lock concurrent
[ ]   33    0    0   33 /  128     1.4s Lock concurrent
[ ]   35    0    0   35 /  128     1.5s Lock concurrent
[ ]   38    0    0   38 /  128     1.6s Lock concurrent
[ ]   44    0    0   44 /  128     1.7s Lock concurrent
[ ]   46    0    0   46 /  128     1.8s Lock concurrent
[ ]   49    0    0   49 /  128     2.0s Lock concurrent
[ ]   53    0    0   53 /  128     2.1s Lock concurrent
[ ]   56    0    0   56 /  128     2.2s Lock concurrent
[ ]   59    0    0   59 /  128     2.3s Lock concurrent
[ ]   64    0    0   64 /  128     2.5s Lock concurrent
[ ]   66    0    0   66 /  128     2.6s Lock concurrent
[ ]   70    0    0   70 /  128     2.7s Lock concurrent
[ ]   74    0    0   74 /  128     2.8s Lock concurrent
[ ]   76    0    0   76 /  128     3.3s Lock concurrent
[ ]   79    0    0   79 /  128     3.4s Lock concurrent
[ ]   82    0    0   82 /  128     3.6s Lock concurrent
[ ]   86    0    0   86 /  128     3.7s Lock concurrent
[ ]   88    0    0   88 /  128     3.8s Lock concurrent
[ ]   92    0    0   92 /  128     3.9s Lock concurrent
[ ]   97    0    0   97 /  128     4.2s Lock concurrent
[ ]   98    0    0   98 /  128     4.4s Lock concurrent
[ ]  103    0    0  103 /  128     4.5s Lock concurrent
[ ]  104    0    0  104 /  128     4.7s Lock concurrent
[ ]  109    0    0  109 /  128     4.8s Lock concurrent
[ ]  114    0    0  114 /  128     5.1s Lock concurrent
[ ]  118    0    0  118 /  128     5.2s Lock concurrent
[ ]  120    0    0  120 /  128     5.5s Lock concurrent
[ ]  124    0    0  124 /  128     5.9s Lock concurrent
[ ]  126    0    0  126 /  128     6.0s Lock concurrent
[]  128    0    0  128 /  128     6.1s Lock concurrent
================================================================================
success (ran 2 tests)
random seed: 1777082968919762615
generated error fail pass / total     time test name
[ ]    0    0    0    0 /  234     0.0s Lock sequential
[]  234    0    0  234 /  234     0.0s Lock sequential
[ ]    0    0    0    0 /  234     0.0s Lock concurrent
[ ]    1    0    0    1 /  234     0.0s Lock concurrent
[ ]    4    0    0    4 /  234     0.2s Lock concurrent
[ ]    7    0    0    7 /  234     0.3s Lock concurrent
[ ]    9    0    0    9 /  234     0.4s Lock concurrent
[ ]   10    0    0   10 /  234     0.6s Lock concurrent
[ ]   11    0    0   11 /  234     0.8s Lock concurrent
[ ]   12    0    0   12 /  234     1.0s Lock concurrent
[ ]   13    0    0   13 /  234     1.1s Lock concurrent
[ ]   14    0    0   14 /  234     1.4s Lock concurrent
[ ]   16    0    0   16 /  234     4.0s Lock concurrent
[ ]   17    0    0   17 /  234     6.4s Lock concurrent
[ ]   18    0    0   18 /  234     7.8s Lock concurrent
[ ]   19    0    0   19 /  234     8.5s Lock concurrent
[ ]   20    0    0   20 /  234    10.5s Lock concurrent
[ ]   21    0    0   21 /  234    12.5s Lock concurrent
[ ]   22    0    0   22 /  234    15.0s Lock concurrent
[ ]   23    0    0   23 /  234    16.7s Lock concurrent
[ ]   24    0    0   24 /  234    18.7s Lock concurrent
[ ]   25    0    0   25 /  234    20.3s Lock concurrent
[ ]   26    0    0   26 /  234    21.9s Lock concurrent
[ ]   27    0    0   27 /  234    23.0s Lock concurrent
[ ]   28    0    0   28 /  234    23.8s Lock concurrent
[ ]   29    0    0   29 /  234    24.8s Lock concurrent
[ ]   30    0    0   30 /  234    26.5s Lock concurrent
[ ]   31    0    0   31 /  234    28.1s Lock concurrent
[ ]   32    0    0   32 /  234    28.9s Lock concurrent
[ ]   33    0    0   33 /  234    30.1s Lock concurrent
[ ]   34    0    0   34 /  234    30.8s Lock concurrent
[ ]   35    0    0   35 /  234    32.1s Lock concurrent
[ ]   36    0    0   36 /  234    32.7s Lock concurrent
[ ]   37    0    0   37 /  234    33.8s Lock concurrent
[ ]   38    0    0   38 /  234    34.4s Lock concurrent
[ ]   39    0    0   39 /  234    35.1s Lock concurrent
[ ]   40    0    0   40 /  234    35.8s Lock concurrent
[ ]   41    0    0   41 /  234    36.1s Lock concurrent
[ ]   42    0    0   42 /  234    36.5s Lock concurrent
[ ]   43    0    0   43 /  234    37.5s Lock concurrent
[ ]   44    0    0   44 /  234    38.3s Lock concurrent
[ ]   45    0    0   45 /  234    39.7s Lock concurrent
[ ]   46    0    0   46 /  234    40.8s Lock concurrent
[ ]   47    0    0   47 /  234    42.1s Lock concurrent
[ ]   48    0    0   48 /  234    43.0s Lock concurrent
[ ]   49    0    0   49 /  234    43.4s Lock concurrent
[ ]   50    0    0   50 /  234    44.0s Lock concurrent
[ ]   51    0    0   51 /  234    44.1s Lock concurrent
[ ]   53    0    0   53 /  234    44.4s Lock concurrent
[ ]   54    0    0   54 /  234    44.7s Lock concurrent
[ ]   55    0    0   55 /  234    44.9s Lock concurrent
[ ]   56    0    0   56 /  234    45.0s Lock concurrent
[ ]   57    0    0   57 /  234    45.2s Lock concurrent
[ ]   58    0    0   58 /  234    45.4s Lock concurrent
[ ]   59    0    0   59 /  234    45.9s Lock concurrent
[ ]   60    0    0   60 /  234    46.2s Lock concurrent
[ ]   61    0    0   61 /  234    46.6s Lock concurrent
[ ]   62    0    0   62 /  234    46.9s Lock concurrent
[ ]   63    0    0   63 /  234    48.2s Lock concurrent
[ ]   64    0    0   64 /  234    50.8s Lock concurrent
[ ]   65    0    0   65 /  234    52.7s Lock concurrent
[ ]   66    0    0   66 /  234    55.1s Lock concurrent
[ ]   67    0    0   67 /  234    57.1s Lock concurrent
[ ]   68    0    0   68 /  234    59.8s Lock concurrent
[ ]   69    0    0   69 /  234    62.7s Lock concurrent
[ ]   70    0    0   70 /  234    65.1s Lock concurrent
[ ]   71    0    0   71 /  234    67.3s Lock concurrent
[ ]   72    0    0   72 /  234    69.2s Lock concurrent
[ ]   73    0    0   73 /  234    72.0s Lock concurrent
[ ]   74    0    0   74 /  234    73.8s Lock concurrent
[ ]   75    0    0   75 /  234    76.7s Lock concurrent
[ ]   76    0    0   76 /  234    77.8s Lock concurrent
[ ]   77    0    0   77 /  234    79.8s Lock concurrent
[ ]   78    0    0   78 /  234    82.1s Lock concurrent
[ ]   79    0    0   79 /  234    83.7s Lock concurrent
[ ]   80    0    0   80 /  234    85.0s Lock concurrent
[ ]   81    0    0   81 /  234    85.8s Lock concurrent
[ ]   82    0    0   82 /  234    85.9s Lock concurrent
[ ]   84    0    0   84 /  234    86.4s Lock concurrent
[ ]   85    0    0   85 /  234    87.6s Lock concurrent
[ ]   86    0    0   86 /  234    89.3s Lock concurrent
[ ]   87    0    0   87 /  234    91.0s Lock concurrent
[ ]   88    0    0   88 /  234    92.1s Lock concurrent
[ ]   89    0    0   89 /  234    93.7s Lock concurrent
[ ]   90    0    0   90 /  234    94.2s Lock concurrent
[ ]   91    0    0   91 /  234    94.3s Lock concurrent
[ ]   92    0    0   92 /  234    94.5s Lock concurrent
[ ]   93    0    0   93 /  234    94.7s Lock concurrent
[ ]   94    0    0   94 /  234    94.8s Lock concurrent
[ ]   95    0    0   95 /  234    94.9s Lock concurrent
[ ]   96    0    0   96 /  234    95.2s Lock concurrent
[ ]   97    0    0   97 /  234    95.6s Lock concurrent
[ ]   98    0    0   98 /  234    95.7s Lock concurrent
[ ]   99    0    0   99 /  234    96.2s Lock concurrent
[ ]  100    0    0  100 /  234    96.7s Lock concurrent
[ ]  102    0    0  102 /  234    96.9s Lock concurrent
[ ]  103    0    0  103 /  234    97.3s Lock concurrent
[ ]  104    0    0  104 /  234    97.8s Lock concurrent
[ ]  105    0    0  105 /  234    98.1s Lock concurrent
[ ]  106    0    0  106 /  234    99.3s Lock concurrent
[ ]  107    0    0  107 /  234    99.4s Lock concurrent
[ ]  108    0    0  108 /  234   100.8s Lock concurrent
[ ]  109    0    0  109 /  234   102.3s Lock concurrent
[ ]  110    0    0  110 /  234   103.1s Lock concurrent
[ ]  111    0    0  111 /  234   103.3s Lock concurrent
[ ]  112    0    0  112 /  234   103.9s Lock concurrent
[ ]  113    0    0  113 /  234   104.3s Lock concurrent
[ ]  114    0    0  114 /  234   104.6s Lock concurrent
[ ]  115    0    0  115 /  234   104.8s Lock concurrent
[ ]  116    0    0  116 /  234   105.3s Lock concurrent
[ ]  117    0    0  117 /  234   106.1s Lock concurrent
[ ]  119    0    0  119 /  234   106.2s Lock concurrent
[ ]  121    0    0  121 /  234   106.3s Lock concurrent
[ ]  122    0    0  122 /  234   106.5s Lock concurrent
[ ]  123    0    0  123 /  234   106.6s Lock concurrent
[ ]  124    0    0  124 /  234   106.8s Lock concurrent
[ ]  125    0    0  125 /  234   107.3s Lock concurrent
[ ]  126    0    0  126 /  234   107.6s Lock concurrent
[ ]  127    0    0  127 /  234   107.7s Lock concurrent
[ ]  128    0    0  128 /  234   107.9s Lock concurrent
[ ]  129    0    0  129 /  234   108.1s Lock concurrent
[ ]  130    0    0  130 /  234   108.3s Lock concurrent
[ ]  131    0    0  131 /  234   108.9s Lock concurrent
[ ]  132    0    0  132 /  234   109.4s Lock concurrent
[ ]  133    0    0  133 /  234   109.6s Lock concurrent
[ ]  135    0    0  135 /  234   109.9s Lock concurrent
[ ]  136    0    0  136 /  234   110.0s Lock concurrent
[ ]  137    0    0  137 /  234   110.2s Lock concurrent
[ ]  138    0    0  138 /  234   111.1s Lock concurrent
[ ]  139    0    0  139 /  234   111.4s Lock concurrent
[ ]  140    0    0  140 /  234   111.8s Lock concurrent
[ ]  141    0    0  141 /  234   112.4s Lock concurrent
[ ]  142    0    0  142 /  234   112.5s Lock concurrent
[ ]  144    0    0  144 /  234   112.8s Lock concurrent
[ ]  145    0    0  145 /  234   113.0s Lock concurrent
[ ]  147    0    0  147 /  234   113.1s Lock concurrent
[ ]  148    0    0  148 /  234   113.2s Lock concurrent
[ ]  150    0    0  150 /  234   113.4s Lock concurrent
[ ]  151    0    0  151 /  234   113.6s Lock concurrent
[ ]  153    0    0  153 /  234   113.9s Lock concurrent
[ ]  154    0    0  154 /  234   114.2s Lock concurrent
[ ]  157    0    0  157 /  234   114.4s Lock concurrent
[ ]  164    0    0  164 /  234   114.6s Lock concurrent
[ ]  169    0    0  169 /  234   114.7s Lock concurrent
[ ]  174    0    0  174 /  234   115.1s Lock concurrent
[ ]  175    0    0  175 /  234   115.4s Lock concurrent
[ ]  177    0    0  177 /  234   115.6s Lock concurrent
[ ]  180    0    0  180 /  234   115.8s Lock concurrent
[ ]  182    0    0  182 /  234116.0s Lock concurrent
[ ]  183    0    0  183 /  234   116.6s Lock concurrent
[ ]  184    0    0  184 /  234   116.9s Lock concurrent
[ ]  185    0    0  185 /  234   117.0s Lock concurrent
[ ]  186    0    0  186 /  234   117.2s Lock concurrent
[ ]  187    0    0  187 /  234   117.4s Lock concurrent
[ ]  188    0    0  188 /  234   117.8s Lock concurrent
[ ]  189    0    0  189 /  234   118.1s Lock concurrent
[ ]  190    0    0  190 /  234   118.3s Lock concurrent
[ ]  192    0    0  192 /  234   118.6s Lock concurrent
[ ]  193    0    0  193 /  234   118.8s Lock concurrent
[ ]  194    0    0  194 /  234   118.9s Lock concurrent
[ ]  195    0    0  195 /  234   119.1s Lock concurrent
[ ]  196    0    0  196 /  234   119.3s Lock concurrent
[ ]  197    0    0  197 /  234   119.7s Lock concurrent
[ ]  198    0    0  198 /  234   120.2s Lock concurrent
[ ]  199    0    0  199 /  234   120.6s Lock concurrent
[ ]  200    0    0  200 /  234   120.8s Lock concurrent
[ ]  201    0    0  201 /  234   121.0s Lock concurrent
[ ]  202    0    0  202 /  234   121.3s Lock concurrent
[ ]  203    0    0  203 /  234   121.7s Lock concurrent
[ ]  204    0    0  204 /  234   123.7s Lock concurrent
[ ]  205    0    0  205 /  234   125.1s Lock concurrent
[ ]  206    0    0  206 /  234   127.1s Lock concurrent
[ ]  207    0    0  207 /  234   127.9s Lock concurrent
[ ]  208    0    0  208 /  234   129.2s Lock concurrent
[ ]  209    0    0  209 /  234   130.3s Lock concurrent
[ ]  210    0    0  210 /  234   130.5s Lock concurrent
[ ]  211    0    0  211 /  234   131.0s Lock concurrent
[ ]  212    0    0  212 /  234   131.6s Lock concurrent
[ ]  213    0    0  213 /  234   131.8s Lock concurrent
[ ]  214    0    0  214 /  234   132.1s Lock concurrent
[ ]  215    0    0  215 /  234   132.6s Lock concurrent
[ ]  216    0    0  216 /  234   133.0s Lock concurrent
[ ]  217    0    0  217 /  234   133.1s Lock concurrent
[ ]  218    0    0  218 /  234   133.5s Lock concurrent
[ ]  219    0    0  219 /  234   133.8s Lock concurrent
[ ]  220    0    0  220 /  234   135.1s Lock concurrent
[ ]  221    0    0  221 /  234   136.3s Lock concurrent
[ ]  222    0    0  222 /  234   136.5s Lock concurrent
[ ]  223    0    0  223 /  234   136.9s Lock concurrent
[ ]  224    0    0  224 /  234   137.9s Lock concurrent
[ ]  225    0    0  225 /  234   138.0s Lock concurrent
[ ]  228    0    0  228 /  234   138.2s Lock concurrent
[ ]  230    0    0  230 /  234   138.3s Lock concurrent
[ ]  231    0    0  231 /  234   138.5s Lock concurrent
[ ]  232    0    0  232 /  234   139.4s Lock concurrent
[ ]  233    0    0  233 /  234   140.2s Lock concurrent
[ ]  234    0    0  234 /  234   141.2s Lock concurrent
[]  234    0    0  234 /  234   141.2s Lock concurrent
================================================================================
success (ran 2 tests)
2025-02-19 22:17.49 ---> saved as "58e5e2e9e873e93f861a648039a0b6923e45ae674bb5c4db1521d53c7fd304b0"
Job succeeded
2025-02-19 22:17.50: Job succeeded