(not at the head of any monitored branch or PR)
2026-04-30 02:04.34: New job: test saturn_lockfree.0.5.0 with dune.3.23.0~alpha2, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29824/head (89a6ae888498500bf7c0fc05361da936fc6acacf)
                              on debian-13-ocaml-4.14/amd64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/29824/head" && git reset --hard 89a6ae88
git fetch origin master
git merge --no-edit d1c56642b8ca7e1166c90bfe0c74f38007bbad58
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-13-ocaml-4.14@sha256:9fe84ffeeaa92507d198c7af8adb382726e06ae36c031f5ef645a3241cac0353
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn dune.3.23.0~alpha2 3.23.0~alpha2
RUN opam reinstall dune.3.23.0~alpha2; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'dune.3.23.0~alpha2' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall saturn_lockfree.0.5.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'saturn_lockfree.0.5.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test saturn_lockfree.0.5.0) || true
RUN opam reinstall --with-test --verbose saturn_lockfree.0.5.0; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"debian-13\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'saturn_lockfree.0.5.0' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

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

2026-04-30 02:04.34: Using cache hint "ocaml/opam:debian-13-ocaml-4.14@sha256:9fe84ffeeaa92507d198c7af8adb382726e06ae36c031f5ef645a3241cac0353-dune.3.23.0~alpha2-saturn_lockfree.0.5.0-89a6ae888498500bf7c0fc05361da936fc6acacf"
2026-04-30 02:04.34: Using OBuilder spec:
((from ocaml/opam:debian-13-ocaml-4.14@sha256:9fe84ffeeaa92507d198c7af8adb382726e06ae36c031f5ef645a3241cac0353)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -ni"))
 (run (shell "opam option solver=builtin-0install && opam config report"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMPRECISETRACKING 1)
 (env CI true)
 (env OPAM_REPO_CI true)
 (run (shell "rm -rf opam-repository/"))
 (copy (src .) (dst opam-repository/))
 (run (shell "opam repository set-url --strict default opam-repository/"))
 (run (network host)
      (shell "opam update --depexts || true"))
 (run (shell "opam pin add -k version -yn dune.3.23.0~alpha2 3.23.0~alpha2"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall dune.3.23.0~alpha2;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'dune.3.23.0~alpha2' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall saturn_lockfree.0.5.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'saturn_lockfree.0.5.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test saturn_lockfree.0.5.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose saturn_lockfree.0.5.0;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'saturn_lockfree.0.5.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2026-04-30 02:04.34: Waiting for resource in pool OCluster
2026-04-30 07:15.21: Waiting for worker…
2026-04-30 07:18.32: Got resource from pool OCluster
Building on clete.caelum.ci.dev
All commits already cached
Updating files:  96% (18171/18887)
Updating files:  97% (18321/18887)
Updating files:  98% (18510/18887)
Updating files:  99% (18699/18887)
Updating files: 100% (18887/18887)
Updating files: 100% (18887/18887), done.
HEAD is now at d1c56642b8 Merge pull request #29820 from jmid/core-0.17.1-bound
Merge made by the 'ort' strategy.
 .../chrome-trace/chrome-trace.3.23.0~alpha2/opam   | 39 +++++++++++
 .../dune-action-plugin.3.23.0~alpha2/opam          | 52 ++++++++++++++
 .../dune-action-trace.3.23.0~alpha2/opam           | 39 +++++++++++
 .../dune-build-info.3.23.0~alpha2/opam             | 45 ++++++++++++
 .../dune-configurator.3.23.0~alpha2/opam           | 49 +++++++++++++
 packages/dune-glob/dune-glob.3.23.0~alpha2/opam    | 42 ++++++++++++
 .../dune-private-libs.3.23.0~alpha2/opam           | 50 ++++++++++++++
 .../dune-rpc-lwt/dune-rpc-lwt.3.23.0~alpha2/opam   | 41 +++++++++++
 packages/dune-rpc/dune-rpc.3.23.0~alpha2/opam      | 44 ++++++++++++
 packages/dune-site/dune-site.3.23.0~alpha2/opam    | 37 ++++++++++
 packages/dune/dune.3.23.0~alpha2/opam              | 80 ++++++++++++++++++++++
 packages/dyn/dyn.3.23.0~alpha2/opam                | 40 +++++++++++
 packages/fs-io/fs-io.3.23.0~alpha2/opam            | 39 +++++++++++
 packages/ocamlc-loc/ocamlc-loc.3.23.0~alpha2/opam  | 43 ++++++++++++
 packages/ordering/ordering.3.23.0~alpha2/opam      | 38 ++++++++++
 packages/stdune/stdune.3.23.0~alpha2/opam          | 46 +++++++++++++
 .../top-closure/top-closure.3.23.0~alpha2/opam     | 38 ++++++++++
 packages/xdg/xdg.3.23.0~alpha2/opam                | 39 +++++++++++
 18 files changed, 801 insertions(+)
 create mode 100644 packages/chrome-trace/chrome-trace.3.23.0~alpha2/opam
 create mode 100644 packages/dune-action-plugin/dune-action-plugin.3.23.0~alpha2/opam
 create mode 100644 packages/dune-action-trace/dune-action-trace.3.23.0~alpha2/opam
 create mode 100644 packages/dune-build-info/dune-build-info.3.23.0~alpha2/opam
 create mode 100644 packages/dune-configurator/dune-configurator.3.23.0~alpha2/opam
 create mode 100644 packages/dune-glob/dune-glob.3.23.0~alpha2/opam
 create mode 100644 packages/dune-private-libs/dune-private-libs.3.23.0~alpha2/opam
 create mode 100644 packages/dune-rpc-lwt/dune-rpc-lwt.3.23.0~alpha2/opam
 create mode 100644 packages/dune-rpc/dune-rpc.3.23.0~alpha2/opam
 create mode 100644 packages/dune-site/dune-site.3.23.0~alpha2/opam
 create mode 100644 packages/dune/dune.3.23.0~alpha2/opam
 create mode 100644 packages/dyn/dyn.3.23.0~alpha2/opam
 create mode 100644 packages/fs-io/fs-io.3.23.0~alpha2/opam
 create mode 100644 packages/ocamlc-loc/ocamlc-loc.3.23.0~alpha2/opam
 create mode 100644 packages/ordering/ordering.3.23.0~alpha2/opam
 create mode 100644 packages/stdune/stdune.3.23.0~alpha2/opam
 create mode 100644 packages/top-closure/top-closure.3.23.0~alpha2/opam
 create mode 100644 packages/xdg/xdg.3.23.0~alpha2/opam

(from ocaml/opam:debian-13-ocaml-4.14@sha256:9fe84ffeeaa92507d198c7af8adb382726e06ae36c031f5ef645a3241cac0353)
2026-04-30 07:25.09 ---> using "59750879172620501422dd230c4db220684ca7fe3e97409754eb72dcd3390183" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-04-30 07:25.09 ---> using "b9ebb375f27da820f646269f579489455309b96c19083cd92f7f6ddd05a4b5f2" from cache

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

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

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

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2026-04-30 07:25.09 ---> using "a861010f9e8d58738e62217a8c0fc067b85ae67b915e1ef93e08d814bb3c914c" from cache

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.1
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=13
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       4.14
# invariant            ["ocaml-base-compiler" {= "4.14.3"}]
# compiler-packages    ocaml-base-compiler.4.14.3, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       4.14.3
2026-04-30 07:25.09 ---> using "a880c606232c92d84d818c349c45696fe9be139917bfa5f7b1065b497e8df441" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2026-04-30 07:25.09 ---> using "47c085e53aa5880966ff9fc1e1e12a4661255166181f7931a397db06034201cf" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2026-04-30 07:25.10 ---> using "4f46738dfb91aa0cd6670022d574de26b7ba05050d8f85957ea4872d96399e01" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-04-30 07:25.10 ---> using "f445e8c26fbca2dd0e343fb9cad949aab8e50ebe8f19361a10c799b6322ab39c" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://deb.debian.org/debian trixie InRelease
- Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
- Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
- Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [129 kB]
- Fetched 219 kB in 0s (456 kB/s)
- Reading package lists...
- 
2026-04-30 07:25.10 ---> using "b966a5b49a15ba3eb63ca44315c18e89b0e8b1ab5327a74622eb8f27705503f7" from cache

/home/opam: (run (shell "opam pin add -k version -yn dune.3.23.0~alpha2 3.23.0~alpha2"))
dune is now pinned to version 3.23.0~alpha2
2026-04-30 07:25.10 ---> using "25765793fc7cef20054e052a9de3d7d38466f3811e35fee48d28bad9710db3b2" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall dune.3.23.0~alpha2;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'dune.3.23.0~alpha2' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
dune.3.23.0~alpha2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 1 package
  - install dune 3.23.0~alpha2 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.23.0~alpha2  (cached)
-> installed dune.3.23.0~alpha2
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 07:25.10 ---> using "8638839e5ae5cf3f1965d4f7cf42b88935780d5bcff7e41a79deffdd572bdcbf" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall saturn_lockfree.0.5.0;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"debian-13\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'saturn_lockfree.0.5.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
saturn_lockfree.0.5.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 3 packages
  - install backoff         0.1.1 [required by saturn_lockfree]
  - install multicore-magic 2.3.2 [required by saturn_lockfree]
  - install saturn_lockfree 0.5.0

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved backoff.0.1.1  (cached)
-> retrieved multicore-magic.2.3.2  (cached)
-> retrieved saturn_lockfree.0.5.0  (cached)
-> installed backoff.0.1.1
-> installed multicore-magic.2.3.2
-> installed saturn_lockfree.0.5.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 07:25.19 ---> saved as "8f38676e403aa18c78d04c7fad9ca16dda030a07bd95a0f75e1e068ae7a71e8c"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test saturn_lockfree.0.5.0) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile saturn_lockfree            0.5.0
=== install 29 packages
  - install   alcotest                   1.9.1         [required by saturn_lockfree]
  - install   astring                    0.8.5         [required by alcotest]
  - install   cmdliner                   2.1.1         [required by alcotest, dscheck]
  - install   containers                 3.18          [required by dscheck]
  - install   csexp                      1.5.2         [required by dune-configurator]
  - install   domain_shims               0.1.0         [required by saturn_lockfree]
  - install   dscheck                    0.5.0         [required by saturn_lockfree]
  - install   dune-configurator          3.23.0~alpha2 [required by containers]
  - install   either                     1.0.0         [required by containers]
  - install   fmt                        0.11.0        [required by alcotest]
  - install   multicore-magic-dscheck    2.3.2         [required by saturn_lockfree]
  - install   ocaml-syntax-shims         1.0.0         [required by alcotest]
  - install   ocamlbuild                 0.16.1        [required by fmt, astring, uutf]
  - install   ocamlfind                  1.9.8         [required by fmt, astring, uutf]
  - install   oseq                       0.5.1         [required by dscheck]
  - install   ounit2                     2.2.7         [required by qcheck-ounit]
  - install   qcheck                     0.91          [required by saturn_lockfree]
  - install   qcheck-alcotest            0.91          [required by saturn_lockfree]
  - install   qcheck-core                0.91          [required by saturn_lockfree]
  - install   qcheck-multicoretests-util 0.10          [required by saturn_lockfree]
  - install   qcheck-ounit               0.91          [required by qcheck]
  - install   qcheck-stm                 0.10          [required by saturn_lockfree]
  - install   re                         1.14.0        [required by alcotest]
  - install   seq                        base          [required by ounit2]
  - install   stdlib-shims               0.3.0         [required by alcotest]
  - install   topkg                      1.1.1         [required by fmt, astring, uutf]
  - install   tsort                      2.2.0         [required by dscheck]
  - install   uutf                       1.0.4         [required by alcotest]
  - install   yojson                     3.0.0         [required by saturn_lockfree]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1  (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5  (https://opam.ocaml.org/cache)
-> retrieved cmdliner.2.1.1  (https://opam.ocaml.org/cache)
-> retrieved containers.3.18  (https://opam.ocaml.org/cache)
-> retrieved csexp.1.5.2  (https://opam.ocaml.org/cache)
-> retrieved domain_shims.0.1.0  (https://opam.ocaml.org/cache)
-> retrieved dscheck.0.5.0  (https://opam.ocaml.org/cache)
-> installed csexp.1.5.2
-> installed domain_shims.0.1.0
-> retrieved dune-configurator.3.23.0~alpha2  (https://github.com/ocaml/dune/releases/download/3.23.0_alpha2/dune-3.23.0.alpha2.tbz)
-> retrieved either.1.0.0  (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0  (https://opam.ocaml.org/cache)
-> installed cmdliner.2.1.1
-> installed dune-configurator.3.23.0~alpha2
-> installed either.1.0.0
-> retrieved multicore-magic-dscheck.2.3.2  (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0  (https://opam.ocaml.org/cache)
-> retrieved ocamlbuild.0.16.1  (https://opam.ocaml.org/cache)
-> retrieved ocamlfind.1.9.8  (https://opam.ocaml.org/cache)
-> retrieved oseq.0.5.1  (https://opam.ocaml.org/cache)
-> retrieved ounit2.2.2.7  (https://opam.ocaml.org/cache)
-> retrieved qcheck.0.91, qcheck-alcotest.0.91, qcheck-core.0.91, qcheck-ounit.0.91  (https://opam.ocaml.org/cache)
-> installed oseq.0.5.1
-> retrieved qcheck-multicoretests-util.0.10, qcheck-stm.0.10  (https://opam.ocaml.org/cache)
-> installed ocaml-syntax-shims.1.0.0
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> retrieved saturn_lockfree.0.5.0  (https://opam.ocaml.org/cache)
-> retrieved seq.base  (2 extra sources)
-> retrieved seq.base  (2 extra sources)
-> installed seq.base
-> retrieved stdlib-shims.0.3.0  (https://opam.ocaml.org/cache)
-> retrieved topkg.1.1.1  (https://opam.ocaml.org/cache)
-> retrieved tsort.2.2.0  (https://opam.ocaml.org/cache)
-> installed stdlib-shims.0.3.0
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> retrieved yojson.3.0.0  (https://opam.ocaml.org/cache)
-> installed containers.3.18
-> installed tsort.2.2.0
-> installed dscheck.0.5.0
-> installed multicore-magic-dscheck.2.3.2
-> installed re.1.14.0
-> installed qcheck-core.0.91
-> installed ounit2.2.2.7
-> installed qcheck-ounit.0.91
-> installed qcheck-multicoretests-util.0.10
-> installed qcheck.0.91
-> installed yojson.3.0.0
-> installed ocamlfind.1.9.8
-> installed qcheck-stm.0.10
-> removed   saturn_lockfree.0.5.0
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.1
-> installed uutf.1.0.4
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed alcotest.1.9.1
-> installed qcheck-alcotest.0.91
-> installed saturn_lockfree.0.5.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 07:26.25 ---> saved as "966ce05fe758f2722ad3ed1f123806f399001739410a16bb8863d1cd84a9ba9b"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [saturn_lockfree.0.5.0: extract]
-> retrieved saturn_lockfree.0.5.0  (cached)
Processing  2/4: [saturn_lockfree: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "saturn_lockfree" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/saturn_lockfree.0.5.0)
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I test/treiber_stack/.qcheck_treiber_stack.eobjs/byte -I test/treiber_stack/.qcheck_treiber_stack.eobjs/native -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/domain_shims -I /home/opam/.opam/4.14/lib/qcheck -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I src_lockfree/.saturn_lockfree.objs/byte -I src_lockfree/.saturn_lockfree.objs/native -I test/barrier/.barrier.objs/byte -I test/barrier/.barrier.objs/native -intf-suffix .ml -no-alias-deps -o test/treiber_stack/.qcheck_treiber_stack.eobjs/native/dune__exe__Qcheck_treiber_stack.cmx -c -impl test/treiber_stack/qcheck_treiber_stack.ml)
- File "test/treiber_stack/qcheck_treiber_stack.ml", line 82, characters 48-57:
- 82 |       Test.make ~name:"parallel_pop_push" (pair small_nat small_nat)
-                                                      ^^^^^^^^^
- Alert deprecated: QCheck.small_nat
- Use [nat_small] instead
- File "test/treiber_stack/qcheck_treiber_stack.ml", line 82, characters 58-67:
- 82 |       Test.make ~name:"parallel_pop_push" (pair small_nat small_nat)
-                                                                ^^^^^^^^^
- Alert deprecated: QCheck.small_nat
- Use [nat_small] instead
- File "test/treiber_stack/qcheck_treiber_stack.ml", line 129, characters 55-64:
- 129 |       Test.make ~name:"parallel_pop_push_random" (pair small_nat small_nat)
-                                                              ^^^^^^^^^
- Alert deprecated: QCheck.small_nat
- Use [nat_small] instead
- File "test/treiber_stack/qcheck_treiber_stack.ml", line 129, characters 65-74:
- 129 |       Test.make ~name:"parallel_pop_push_random" (pair small_nat small_nat)
-                                                                        ^^^^^^^^^
- Alert deprecated: QCheck.small_nat
- Use [nat_small] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I test/skiplist/.qcheck_skiplist.eobjs/byte -I test/skiplist/.qcheck_skiplist.eobjs/native -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/domain_shims -I /home/opam/.opam/4.14/lib/qcheck -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I src_lockfree/.saturn_lockfree.objs/byte -I src_lockfree/.saturn_lockfree.objs/native -I test/barrier/.barrier.objs/byte -I test/barrier/.barrier.objs/native -intf-suffix .ml -no-alias-deps -o test/skiplist/.qcheck_skiplist.eobjs/native/dune__exe__Qcheck_skiplist.cmx -c -impl test/skiplist/qcheck_skiplist.ml)
- File "test/skiplist/qcheck_skiplist.ml", line 84, characters 43-52:
- 84 |       Test.make ~name:"parallel_add" (pair small_nat small_nat)
-                                                 ^^^^^^^^^
- Alert deprecated: QCheck.small_nat
- Use [nat_small] instead
- File "test/skiplist/qcheck_skiplist.ml", line 84, characters 53-62:
- 84 |       Test.make ~name:"parallel_add" (pair small_nat small_nat)
-                                                           ^^^^^^^^^
- Alert deprecated: QCheck.small_nat
- Use [nat_small] instead
- File "test/skiplist/qcheck_skiplist.ml", line 112, characters 14-23:
- 112 |         (pair small_nat small_nat) (fun (npush1, npush2) ->
-                     ^^^^^^^^^
- Alert deprecated: QCheck.small_nat
- Use [nat_small] instead
- File "test/skiplist/qcheck_skiplist.ml", line 112, characters 24-33:
- 112 |         (pair small_nat small_nat) (fun (npush1, npush2) ->
-                               ^^^^^^^^^
- Alert deprecated: QCheck.small_nat
- Use [nat_small] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I test/ws_deque/.qcheck_ws_deque.eobjs/byte -I test/ws_deque/.qcheck_ws_deque.eobjs/native -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/domain_shims -I /home/opam/.opam/4.14/lib/qcheck -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I src_lockfree/.saturn_lockfree.objs/byte -I src_lockfree/.saturn_lockfree.objs/native -I test/barrier/.barrier.objs/byte -I test/barrier/.barrier.objs/native -intf-suffix .ml -no-alias-deps -o test/ws_deque/.qcheck_ws_deque.eobjs/native/dune__exe__Qcheck_ws_deque.cmx -c -impl test/ws_deque/qcheck_ws_deque.ml)
- File "test/ws_deque/qcheck_ws_deque.ml", line 43, characters 25-34:
- 43 |         (pair (list int) small_nat)
-                               ^^^^^^^^^
- Alert deprecated: QCheck.small_nat
- Use [nat_small] instead
- File "test/ws_deque/qcheck_ws_deque.ml", line 69, characters 25-34:
- 69 |         (pair (list int) small_nat)
-                               ^^^^^^^^^
- Alert deprecated: QCheck.small_nat
- Use [nat_small] instead
- File "test/ws_deque/qcheck_ws_deque.ml", line 114, characters 20-29:
- 114 |         (pair (list small_int) (int_bound 200))
-                           ^^^^^^^^^
- Alert deprecated: QCheck.small_int
- Use [nat_small] instead
- File "test/ws_deque/qcheck_ws_deque.ml", line 170, characters 20-29:
- 170 |         (pair (list small_int) (pair small_nat small_nat))
-                           ^^^^^^^^^
- Alert deprecated: QCheck.small_int
- Use [nat_small] instead
- File "test/ws_deque/qcheck_ws_deque.ml", line 170, characters 37-46:
- 170 |         (pair (list small_int) (pair small_nat small_nat))
-                                            ^^^^^^^^^
- Alert deprecated: QCheck.small_nat
- Use [nat_small] instead
- File "test/ws_deque/qcheck_ws_deque.ml", line 170, characters 47-56:
- 170 |         (pair (list small_int) (pair small_nat small_nat))
-                                                      ^^^^^^^^^
- Alert deprecated: QCheck.small_nat
- Use [nat_small] instead
- File "test/ws_deque/qcheck_ws_deque.ml", line 231, characters 20-29:
- 231 |         (pair (list small_int) (pair small_nat small_nat))
-                           ^^^^^^^^^
- Alert deprecated: QCheck.small_int
- Use [nat_small] instead
- File "test/ws_deque/qcheck_ws_deque.ml", line 231, characters 37-46:
- 231 |         (pair (list small_int) (pair small_nat small_nat))
-                                            ^^^^^^^^^
- Alert deprecated: QCheck.small_nat
- Use [nat_small] instead
- File "test/ws_deque/qcheck_ws_deque.ml", line 231, characters 47-56:
- 231 |         (pair (list small_int) (pair small_nat small_nat))
-                                                      ^^^^^^^^^
- Alert deprecated: QCheck.small_nat
- Use [nat_small] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I test/michael_scott_queue/.qcheck_michael_scott_queue.eobjs/byte -I test/michael_scott_queue/.qcheck_michael_scott_queue.eobjs/native -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/domain_shims -I /home/opam/.opam/4.14/lib/qcheck -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I src_lockfree/.saturn_lockfree.objs/byte -I src_lockfree/.saturn_lockfree.objs/native -I test/barrier/.barrier.objs/byte -I test/barrier/.barrier.objs/native -I test/michael_scott_queue/ms_queues/.ms_queues.objs/byte -I test/michael_scott_queue/ms_queues/.ms_queues.objs/native -intf-suffix .ml -no-alias-deps -o test/michael_scott_queue/.qcheck_michael_scott_queue.eobjs/native/dune__exe__Qcheck_michael_scott_queue.cmx -c -impl test/michael_scott_queue/qcheck_michael_scott_queue.ml)
- File "test/michael_scott_queue/qcheck_michael_scott_queue.ml", line 151, characters 54-63:
- 151 |         Test.make ~name:"parallel_pop_opt_push" (pair small_nat small_nat)
-                                                             ^^^^^^^^^
- Alert deprecated: QCheck.small_nat
- Use [nat_small] instead
- File "test/michael_scott_queue/qcheck_michael_scott_queue.ml", line 151, characters 64-73:
- 151 |         Test.make ~name:"parallel_pop_opt_push" (pair small_nat small_nat)
-                                                                       ^^^^^^^^^
- Alert deprecated: QCheck.small_nat
- Use [nat_small] instead
- File "test/michael_scott_queue/qcheck_michael_scott_queue.ml", line 210, characters 16-25:
- 210 |           (pair small_nat small_nat) (fun (npush1, npush2) ->
-                       ^^^^^^^^^
- Alert deprecated: QCheck.small_nat
- Use [nat_small] instead
- File "test/michael_scott_queue/qcheck_michael_scott_queue.ml", line 210, characters 26-35:
- 210 |           (pair small_nat small_nat) (fun (npush1, npush2) ->
-                                 ^^^^^^^^^
- Alert deprecated: QCheck.small_nat
- Use [nat_small] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I test/spsc_queue/.qcheck_spsc_queue.eobjs/byte -I test/spsc_queue/.qcheck_spsc_queue.eobjs/native -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/domain_shims -I /home/opam/.opam/4.14/lib/qcheck -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I test/barrier/.barrier.objs/byte -I test/barrier/.barrier.objs/native -I test/spsc_queue/spsc_queues/.spsc_queues.objs/byte -I test/spsc_queue/spsc_queues/.spsc_queues.objs/native -intf-suffix .ml -no-alias-deps -o test/spsc_queue/.qcheck_spsc_queue.eobjs/native/dune__exe__Qcheck_spsc_queue.cmx -c -impl test/spsc_queue/qcheck_spsc_queue.ml)
- File "test/spsc_queue/qcheck_spsc_queue.ml", line 34, characters 27-36:
- 34 |           (pair (list int) small_nat)
-                                 ^^^^^^^^^
- Alert deprecated: QCheck.small_nat
- Use [nat_small] instead
- File "test/spsc_queue/qcheck_spsc_queue.ml", line 66, characters 27-36:
- 66 |           (pair (list int) small_nat)
-                                 ^^^^^^^^^
- Alert deprecated: QCheck.small_nat
- Use [nat_small] instead
- File "test/spsc_queue/qcheck_spsc_queue.ml", line 98, characters 27-36:
- 98 |           (pair (list int) small_nat)
-                                 ^^^^^^^^^
- Alert deprecated: QCheck.small_nat
- Use [nat_small] instead
- File "test/spsc_queue/qcheck_spsc_queue.ml", line 126, characters 45-54:
- 126 |           (pair (pair (list int) (list int)) small_nat)
-                                                    ^^^^^^^^^
- Alert deprecated: QCheck.small_nat
- Use [nat_small] instead
- (cd _build/default && /home/opam/.opam/4.14/bin/ocamlopt.opt -w -40 -g -I test/mpsc_queue/.qcheck_mpsc_queue.eobjs/byte -I test/mpsc_queue/.qcheck_mpsc_queue.eobjs/native -I /home/opam/.opam/4.14/lib/alcotest -I /home/opam/.opam/4.14/lib/domain_shims -I /home/opam/.opam/4.14/lib/qcheck -I /home/opam/.opam/4.14/lib/qcheck-alcotest -I /home/opam/.opam/4.14/lib/qcheck-core -I src_lockfree/.saturn_lockfree.objs/byte -I src_lockfree/.saturn_lockfree.objs/native -I test/barrier/.barrier.objs/byte -I test/barrier/.barrier.objs/native -intf-suffix .ml -no-alias-deps -o test/mpsc_queue/.qcheck_mpsc_queue.eobjs/native/dune__exe__Qcheck_mpsc_queue.cmx -c -impl test/mpsc_queue/qcheck_mpsc_queue.ml)
- File "test/mpsc_queue/qcheck_mpsc_queue.ml", line 274, characters 31-40:
- 274 |         (pair (list int) (pair small_nat small_nat))
-                                      ^^^^^^^^^
- Alert deprecated: QCheck.small_nat
- Use [nat_small] instead
- File "test/mpsc_queue/qcheck_mpsc_queue.ml", line 274, characters 41-50:
- 274 |         (pair (list int) (pair small_nat small_nat))
-                                                ^^^^^^^^^
- Alert deprecated: QCheck.small_nat
- Use [nat_small] instead
- File "test/mpsc_queue/qcheck_mpsc_queue.ml", line 309, characters 14-23:
- 309 |         (pair small_nat (pair (list int) (list int)))
-                     ^^^^^^^^^
- Alert deprecated: QCheck.small_nat
- Use [nat_small] instead
- File "test/mpsc_queue/qcheck_mpsc_queue.ml", line 384, characters 25-34:
- 384 |         (pair (list int) small_nat)
-                                ^^^^^^^^^
- Alert deprecated: QCheck.small_nat
- Use [nat_small] instead
- File "test/mpsc_queue/qcheck_mpsc_queue.ml", line 408, characters 25-34:
- 408 |         (pair (list int) small_nat)
-                                ^^^^^^^^^
- Alert deprecated: QCheck.small_nat
- Use [nat_small] instead
- (cd _build/default/test/spsc_queue && ./test_spsc_queue.exe)
- test_Spsc_queue_empty: ok
- test_Spsc_queue_full: ok
- test_Spsc_queue_parallel: ok (transferred = 100)
- test_Spsc_queue_unsafe_empty: ok
- test_Spsc_queue_unsafe_full: ok
- test_Spsc_queue_unsafe_parallel: ok (transferred = 100)
- (cd _build/default/test/spsc_queue && ./stm_spsc_queue.exe)
- 
random seed: 101981606
- generated error fail pass / total     time test name
- 
[ ]    0    0    0    0 / 1000     0.0s Saturn_lockfree.Spsc_queue sequential
[✓] 1000    0    0 1000 / 1000     0.0s Saturn_lockfree.Spsc_queue sequential
- ================================================================================
- success (ran 1 tests)
- generated error fail pass / total     time test name
- 
[ ]    0    0    0    0 / 1000     0.0s Saturn_lockfree.Spsc_queue_unsafe sequential
[✓] 1000    0    0 1000 / 1000     0.0s Saturn_lockfree.Spsc_queue_unsafe sequential
- ================================================================================
- success (ran 1 tests)
- (cd _build/default/test/ws_deque && ./stm_ws_deque.exe)
- 
random seed: 307300211
- generated error fail pass / total     time test name
- 
[ ]    0    0    0    0 / 1000     0.0s Saturn_lockfree.Ws_deque sequential
[✓] 1000    0    0 1000 / 1000     0.0s Saturn_lockfree.Ws_deque sequential
- ================================================================================
- success (ran 1 tests)
- (cd _build/default/test/mpsc_queue && ./stm_mpsc_queue.exe)
- 
random seed: 467221437
- generated error fail pass / total     time test name
- 
[ ]    0    0    0    0 / 1000     0.0s Saturn_lockfree.Mpsc_queue sequential
[✓] 1000    0    0 1000 / 1000     0.0s Saturn_lockfree.Mpsc_queue sequential
- ================================================================================
- success (ran 1 tests)
- (cd _build/default/test/treiber_stack && ./qcheck_treiber_stack.exe)
- qcheck random seed: 197284103
- Testing `Treiber_stack'.
- This run has ID `PCZSF5LE'.
- 
-   [OK]          test_sequential            0   push.
-   [OK]          test_sequential            1   push_pop_until_empty.
-   [OK]          test_sequential            2   lifo.
-   [OK]          one_cons_one_prod          0   parallel.
-   [OK]          two_domains                0   parallel_pop_push.
-   [OK]          two_domains                1   parallel_pop_push_random.
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/saturn_lockfree.0.5.0/_build/default/test/treiber_stack/_build/_tests/Treiber_stack'.
- Test Successful in 0.064s. 6 tests run.
- (cd _build/default/test/michael_scott_queue && ./qcheck_michael_scott_queue.exe)
- qcheck random seed: 979760110
- Testing `Michael_scott_queue'.
- This run has ID `ST2GZZ06'.
- 
-   [OK]          test_sequential_safe              0   push.
-   [OK]          test_sequential_safe              1   push_pop_opt_until_empty.
-   [OK]          test_sequential_safe              2   fifo.
-   [OK]          test_sequential_safe              3   fifo_peek_opt.
-   [OK]          one_cons_one_prod_safe            0   parallel_fifo.
-   [OK]          one_cons_one_prod_safe            1   parallel_peek.
-   [OK]          two_domains_safe                  0   parallel_pop_opt_push.
-   [OK]          two_domains_safe                  1   parallel_pop_opt_push_r...
-   [OK]          test_sequential_unsafe            0   push.
-   [OK]          test_sequential_unsafe            1   push_pop_opt_until_empty.
-   [OK]          test_sequential_unsafe            2   fifo.
-   [OK]          test_sequential_unsafe            3   fifo_peek_opt.
-   [OK]          one_cons_one_prod_unsafe          0   parallel_fifo.
-   [OK]          one_cons_one_prod_unsafe          1   parallel_peek.
-   [OK]          two_domains_unsafe                0   parallel_pop_opt_push.
-   [OK]          two_domains_unsafe                1   parallel_pop_opt_push_r...
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/saturn_lockfree.0.5.0/_build/default/test/michael_scott_queue/_build/_tests/Michael_scott_queue'.
- Test Successful in 0.194s. 16 tests run.
- (cd _build/default/test/ws_deque && ./qcheck_ws_deque.exe)
- qcheck random seed: 251216895
- Testing `Ws_deque'.
- This run has ID `1D1OA89Y'.
- 
-   [OK]          one_producer                       0   pops_are_in_order.
-   [OK]          one_producer                       1   pop_on_empty_deque_rai...
-   [OK]          one_producer_one_stealer           0   steals_are_in_order.
-   [OK]          one_producer_one_stealer           1   parallel_pushes_and_st...
-   [OK]          one_producer_one_stealer           2   parallel_pops_and_steals.
-   [OK]          one_producer_two_stealers          0   parallel_steals.
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/saturn_lockfree.0.5.0/_build/default/test/ws_deque/_build/_tests/Ws_deque'.
- Test Successful in 0.163s. 6 tests run.
- (cd _build/default/test/spsc_queue && ./qcheck_spsc_queue.exe)
- qcheck random seed: 193149440
- Testing `Spsc_queues'.
- This run has ID `ZCM25E37'.
- 
-   [OK]          Spsc_queue                 0   seq_pop_opt_push.
-   [OK]          Spsc_queue                 1   seq_pop_push.
-   [OK]          Spsc_queue                 2   seq_pop_try_push.
-   [OK]          Spsc_queue                 3   par_pop_push.
-   [OK]          Spsc_queue                 4   push_full.
-   [OK]          Spsc_queue                 5   seq_peek_opt.
-   [OK]          Spsc_queue                 6   seq_peek.
-   [OK]          Spsc_queue                 7   par_peek_opt.
-   [OK]          Spsc_queue_unsafe          0   seq_pop_opt_push.
-   [OK]          Spsc_queue_unsafe          1   seq_pop_push.
-   [OK]          Spsc_queue_unsafe          2   seq_pop_try_push.
-   [OK]          Spsc_queue_unsafe          3   par_pop_push.
-   [OK]          Spsc_queue_unsafe          4   push_full.
-   [OK]          Spsc_queue_unsafe          5   seq_peek_opt.
-   [OK]          Spsc_queue_unsafe          6   seq_peek.
-   [OK]          Spsc_queue_unsafe          7   par_peek_opt.
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/saturn_lockfree.0.5.0/_build/default/test/spsc_queue/_build/_tests/Spsc_queues'.
- Test Successful in 0.499s. 16 tests run.
- (cd _build/default/test/skiplist && ./qcheck_skiplist.exe)
- qcheck random seed: 569621812
- Testing `QCheck Skiplist'.
- This run has ID `6LSX4370'.
- 
-   [OK]          test_sequential            0   add.
-   [OK]          test_sequential            1   add_remove.
-   [OK]          test_sequential            2   add_find.
-   [OK]          test_sequential            3   add_remove_find.
-   [OK]          tests_two_domains          0   parallel_add.
-   [OK]          tests_two_domains          1   parallel_add_remove.
-   [OK]          tests_two_domains          2   parallel_add_remove_same_list.
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/saturn_lockfree.0.5.0/_build/default/test/skiplist/_build/_tests/QCheck Skiplist'.
- Test Successful in 2.384s. 7 tests run.
- (cd _build/default/test/mpsc_queue && ./qcheck_mpsc_queue.exe)
- qcheck random seed: 234534881
- Testing `Mpsc_queue'.
- This run has ID `SQZLLSJB'.
- 
-   [OK]          one_consumer               0   push_head_pop_opt.
-   [OK]          one_consumer               1   push_head_pop.
-   [OK]          one_consumer               2   push_head_peek_opt.
-   [OK]          one_consumer               3   push_head_peek.
-   [OK]          one_consumer               4   pop_opt_empty.
-   [OK]          one_consumer               5   pop_empty.
-   [OK]          one_consumer               6   peek_opt_empty.
-   [OK]          one_consumer               7   peek_empty.
-   [OK]          one_consumer               8   push_head_not_empty.
-   [OK]          one_consumer               9   close_push_head.
-   [OK]          one_consumer              10   close_is_empty.
-   [OK]          one_consumer              11   close_pop_opt.
-   [OK]          one_consumer              12   pop_opt_order.
-   [OK]          one_consumer              13   seq_push_pop_opt.
-   [OK]          one_producer               0   push_not_empty.
-   [OK]          one_producer               1   closing_prevents_pushing.
-   [OK]          one_cons_one_prod          0   seq_push_pop_opt_peek_opt.
-   [OK]          one_cons_one_prod          1   par_push_pop.
-   [OK]          one_cons_one_prod          2   par_push_push_head.
-   [OK]          one_cons_one_prod          3   par_pop_opt_push2.
-   [OK]          one_cons_two_prod          0   par_push.
-   [OK]          one_cons_two_prod          1   par_push_close_pop_opt.
- 
- Full test results in `~/.opam/4.14/.opam-switch/build/saturn_lockfree.0.5.0/_build/default/test/mpsc_queue/_build/_tests/Mpsc_queue'.
- Test Successful in 2.941s. 22 tests run.
- (cd _build/default/test/treiber_stack && ./stm_treiber_stack.exe)
- 
random seed: 342004222
- generated error fail pass / total     time test name
- 
[ ]    0    0    0    0 /  500     0.0s Saturn_lockfree.Treiber_stack sequential
[✓]  500    0    0  500 /  500     0.0s Saturn_lockfree.Treiber_stack sequential
- 
[ ]    0    0    0    0 /  500     0.0s Saturn_lockfree.Treiber_stack concurrent
[ ]    1    0    0    1 /  500     0.2s Saturn_lockfree.Treiber_stack concurrent
[ ]    4    0    0    4 /  500     0.3s Saturn_lockfree.Treiber_stack concurrent
[ ]    8    0    0    8 /  500     0.5s Saturn_lockfree.Treiber_stack concurrent
[ ]   15    0    0   15 /  500     0.6s Saturn_lockfree.Treiber_stack concurrent
[ ]   18    0    0   18 /  500     0.8s Saturn_lockfree.Treiber_stack concurrent
[ ]   35    0    0   35 /  500     0.9s Saturn_lockfree.Treiber_stack concurrent
[ ]   45    0    0   45 /  500     1.1s Saturn_lockfree.Treiber_stack concurrent
[ ]   46    0    0   46 /  500     1.2s Saturn_lockfree.Treiber_stack concurrent
[ ]   49    0    0   49 /  500     1.3s Saturn_lockfree.Treiber_stack concurrent
[ ]   54    0    0   54 /  500     1.5s Saturn_lockfree.Treiber_stack concurrent
[ ]   58    0    0   58 /  500     1.6s Saturn_lockfree.Treiber_stack concurrent
[ ]   61    0    0   61 /  500     1.8s Saturn_lockfree.Treiber_stack concurrent
[ ]   65    0    0   65 /  500     1.9s Saturn_lockfree.Treiber_stack concurrent
[ ]   71    0    0   71 /  500     2.0s Saturn_lockfree.Treiber_stack concurrent
[ ]   84    0    0   84 /  500     2.1s Saturn_lockfree.Treiber_stack concurrent
[ ]   90    0    0   90 /  500     2.2s Saturn_lockfree.Treiber_stack concurrent
[ ]   93    0    0   93 /  500     2.3s Saturn_lockfree.Treiber_stack concurrent
[ ]  111    0    0  111 /  500     2.5s Saturn_lockfree.Treiber_stack concurrent
[ ]  119    0    0  119 /  500     2.7s Saturn_lockfree.Treiber_stack concurrent
[ ]  138    0    0  138 /  500     2.8s Saturn_lockfree.Treiber_stack concurrent
[ ]  141    0    0  141 /  500     2.9s Saturn_lockfree.Treiber_stack concurrent
[ ]  164    0    0  164 /  500     3.1s Saturn_lockfree.Treiber_stack concurrent
[ ]  178    0    0  178 /  500     3.2s Saturn_lockfree.Treiber_stack concurrent
[ ]  194    0    0  194 /  500     3.3s Saturn_lockfree.Treiber_stack concurrent
[ ]  203    0    0  203 /  500     3.5s Saturn_lockfree.Treiber_stack concurrent
[ ]  214    0    0  214 /  500     3.7s Saturn_lockfree.Treiber_stack concurrent
[ ]  223    0    0  223 /  500     3.8s Saturn_lockfree.Treiber_stack concurrent
[ ]  230    0    0  230 /  500     4.0s Saturn_lockfree.Treiber_stack concurrent
[ ]  243    0    0  243 /  500     4.2s Saturn_lockfree.Treiber_stack concurrent
[ ]  254    0    0  254 /  500     4.3s Saturn_lockfree.Treiber_stack concurrent
[ ]  262    0    0  262 /  500     4.5s Saturn_lockfree.Treiber_stack concurrent
[ ]  265    0    0  265 /  500     4.7s Saturn_lockfree.Treiber_stack concurrent
[ ]  280    0    0  280 /  500     4.9s Saturn_lockfree.Treiber_stack concurrent
[ ]  295    0    0  295 /  500     5.1s Saturn_lockfree.Treiber_stack concurrent
[ ]  297    0    0  297 /  500     5.2s Saturn_lockfree.Treiber_stack concurrent
[ ]  305    0    0  305 /  500     5.4s Saturn_lockfree.Treiber_stack concurrent
[ ]  307    0    0  307 /  500     5.6s Saturn_lockfree.Treiber_stack concurrent
[ ]  311    0    0  311 /  500     5.8s Saturn_lockfree.Treiber_stack concurrent
[ ]  324    0    0  324 /  500     5.9s Saturn_lockfree.Treiber_stack concurrent
[ ]  334    0    0  334 /  500     6.1s Saturn_lockfree.Treiber_stack concurrent
[ ]  351    0    0  351 /  500     6.2s Saturn_lockfree.Treiber_stack concurrent
[ ]  363    0    0  363 /  500     6.3s Saturn_lockfree.Treiber_stack concurrent
[ ]  368    0    0  368 /  500     6.5s Saturn_lockfree.Treiber_stack concurrent
[ ]  387    0    0  387 /  500     6.6s Saturn_lockfree.Treiber_stack concurrent
[ ]  403    0    0  403 /  500     6.8s Saturn_lockfree.Treiber_stack concurrent
[ ]  412    0    0  412 /  500     7.0s Saturn_lockfree.Treiber_stack concurrent
[ ]  420    0    0  420 /  500     7.2s Saturn_lockfree.Treiber_stack concurrent
[ ]  423    0    0  423 /  500     7.4s Saturn_lockfree.Treiber_stack concurrent
[ ]  435    0    0  435 /  500     7.6s Saturn_lockfree.Treiber_stack concurrent
[ ]  443    0    0  443 /  500     7.7s Saturn_lockfree.Treiber_stack concurrent
[ ]  449    0    0  449 /  500     7.9s Saturn_lockfree.Treiber_stack concurrent
[ ]  459    0    0  459 /  500     8.1s Saturn_lockfree.Treiber_stack concurrent
[ ]  462    0    0  462 /  500     8.3s Saturn_lockfree.Treiber_stack concurrent
[ ]  465    0    0  465 /  500     8.4s Saturn_lockfree.Treiber_stack concurrent
[ ]  482    0    0  482 /  500     8.7s Saturn_lockfree.Treiber_stack concurrent
[✓]  500    0    0  500 /  500     8.7s Saturn_lockfree.Treiber_stack concurrent
- ================================================================================
- success (ran 2 tests)
- (cd _build/default/test/ws_deque && ./test_ws_deque.exe)
- test_exit: ok
- test_push_and_pop: ok
- test_push_and_steal: ok
- test_concurrent_workload: ok (pushed = 100000, popped = 100000, stolen = 0)
- (cd _build/default/test/michael_scott_queue && ./stm_michael_scott_queue.exe)
- 
random seed: 466743204
- generated error fail pass / total     time test name
- 
[ ]    0    0    0    0 /  500     0.0s Saturn_lockfree.michael_scott_queue_safe sequential
[✓]  500    0    0  500 /  500     0.0s Saturn_lockfree.michael_scott_queue_safe sequential
- 
[ ]    0    0    0    0 /  500     0.0s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]    6    0    0    6 /  500     0.1s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]   13    0    0   13 /  500     0.3s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]   20    0    0   20 /  500     0.4s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]   23    0    0   23 /  500     0.7s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]   32    0    0   32 /  500     0.9s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]   58    0    0   58 /  500     1.0s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]   73    0    0   73 /  500     1.3s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]   86    0    0   86 /  500     1.4s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]   91    0    0   91 /  500     1.5s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]   99    0    0   99 /  500     1.6s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]  109    0    0  109 /  500     1.8s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]  118    0    0  118 /  500     2.0s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]  135    0    0  135 /  500     2.4s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]  138    0    0  138 /  500     2.5s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]  151    0    0  151 /  500     2.6s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]  162    0    0  162 /  500     2.8s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]  169    0    0  169 /  500     2.9s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]  172    0    0  172 /  500     3.1s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]  175    0    0  175 /  500     3.4s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]  190    0    0  190 /  500     3.5s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]  192    0    0  192 /  500     4.0s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]  202    0    0  202 /  500     4.2s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]  203    0    0  203 /  500     4.4s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]  205    0    0  205 /  500     4.5s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]  216    0    0  216 /  500     4.7s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]  230    0    0  230 /  500     4.8s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]  242    0    0  242 /  500     5.1s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]  267    0    0  267 /  500     5.2s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]  268    0    0  268 /  500     5.3s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]  270    0    0  270 /  500     5.4s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]  287    0    0  287 /  500     5.7s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]  293    0    0  293 /  500     5.9s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]  300    0    0  300 /  500     6.0s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]  309    0    0  309 /  500     6.1s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]  314    0    0  314 /  500     6.3s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]  319    0    0  319 /  500     6.5s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]  342    0    0  342 /  500     6.6s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]  348    0    0  348 /  500     6.7s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]  356    0    0  356 /  500     6.9s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]  364    0    0  364 /  500     7.0s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]  382    0    0  382 /  500     7.2s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]  383    0    0  383 /  500     7.3s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]  393    0    0  393 /  500     7.5s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]  422    0    0  422 /  500     7.6s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]  429    0    0  429 /  500     7.8s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]  430    0    0  430 /  500     8.1s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]  435    0    0  435 /  500     8.3s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]  451    0    0  451 /  500     8.5s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]  458    0    0  458 /  500     8.6s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]  474    0    0  474 /  500     8.7s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]  476    0    0  476 /  500     9.1s Saturn_lockfree.michael_scott_queue_safe concurrent
[ ]  489    0    0  489 /  500     9.2s Saturn_lockfree.michael_scott_queue_safe concurrent
[✓]  500    0    0  500 /  500     9.2s Saturn_lockfree.michael_scott_queue_safe concurrent
- ================================================================================
- success (ran 2 tests)
- generated error fail pass / total     time test name
- 
[ ]    0    0    0    0 /  500     0.0s Saturn_lockfree.michael_scott_queue_unsafe sequential
[✓]  500    0    0  500 /  500     0.0s Saturn_lockfree.michael_scott_queue_unsafe sequential
- 
[ ]    0    0    0    0 /  500     0.0s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]   13    0    0   13 /  500     0.2s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]   21    0    0   21 /  500     0.3s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]   23    0    0   23 /  500     0.6s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]   32    0    0   32 /  500     0.8s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]   58    0    0   58 /  500     0.9s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]   73    0    0   73 /  500     1.1s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]   89    0    0   89 /  500     1.3s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]   92    0    0   92 /  500     1.4s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  103    0    0  103 /  500     1.5s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  107    0    0  107 /  500     1.6s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  110    0    0  110 /  500     1.7s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  118    0    0  118 /  500     1.9s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  135    0    0  135 /  500     2.2s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  138    0    0  138 /  500     2.4s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  151    0    0  151 /  500     2.5s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  162    0    0  162 /  500     2.6s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  169    0    0  169 /  500     2.7s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  172    0    0  172 /  500     2.9s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  175    0    0  175 /  500     3.2s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  190    0    0  190 /  500     3.3s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  192    0    0  192 /  500     3.8s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  202    0    0  202 /  500     4.1s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  203    0    0  203 /  500     4.3s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  205    0    0  205 /  500     4.4s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  216    0    0  216 /  500     4.6s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  222    0    0  222 /  500     4.7s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  242    0    0  242 /  500     4.9s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  268    0    0  268 /  500     5.0s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  270    0    0  270 /  500     5.1s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  287    0    0  287 /  500     5.3s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  293    0    0  293 /  500     5.4s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  306    0    0  306 /  500     5.6s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  314    0    0  314 /  500     5.7s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  319    0    0  319 /  500     5.9s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  342    0    0  342 /  500     6.0s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  348    0    0  348 /  500     6.1s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  356    0    0  356 /  500     6.3s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  364    0    0  364 /  500     6.5s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  382    0    0  382 /  500     6.7s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  383    0    0  383 /  500     6.8s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  393    0    0  393 /  500     7.0s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  422    0    0  422 /  500     7.1s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  429    0    0  429 /  500     7.3s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  430    0    0  430 /  500     7.7s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  435    0    0  435 /  500     8.0s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  448    0    0  448 /  500     8.1s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  452    0    0  452 /  500     8.2s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  464    0    0  464 /  500     8.4s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  476    0    0  476 /  500     8.9s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  480    0    0  480 /  500     9.1s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[ ]  492    0    0  492 /  500     9.3s Saturn_lockfree.michael_scott_queue_unsafe concurrent
[✓]  500    0    0  500 /  500     9.3s Saturn_lockfree.michael_scott_queue_unsafe concurrent
- ================================================================================
- success (ran 2 tests)
- (cd _build/default/test/skiplist && ./stm_skiplist.exe)
- 
random seed: 323881607
- generated error fail pass / total     time test name
- 
[ ]    0    0    0    0 / 1000     0.0s Lockfree.Skiplist sequential
[✓] 1000    0    0 1000 / 1000     0.0s Lockfree.Skiplist sequential
- 
[ ]    0    0    0    0 / 1000     0.0s Lockfree.Skiplist concurrent
[ ]    4    0    0    4 / 1000     0.4s Lockfree.Skiplist concurrent
[ ]   19    0    0   19 / 1000     0.5s Lockfree.Skiplist concurrent
[ ]   45    0    0   45 / 1000     0.9s Lockfree.Skiplist concurrent
[ ]   54    0    0   54 / 1000     1.2s Lockfree.Skiplist concurrent
[ ]   70    0    0   70 / 1000     1.8s Lockfree.Skiplist concurrent
[ ]   85    0    0   85 / 1000     1.9s Lockfree.Skiplist concurrent
[ ]   87    0    0   87 / 1000     2.0s Lockfree.Skiplist concurrent
[ ]   90    0    0   90 / 1000     2.2s Lockfree.Skiplist concurrent
[ ]   96    0    0   96 / 1000     2.3s Lockfree.Skiplist concurrent
[ ]  116    0    0  116 / 1000     2.4s Lockfree.Skiplist concurrent
[ ]  125    0    0  125 / 1000     2.5s Lockfree.Skiplist concurrent
[ ]  128    0    0  128 / 1000     2.7s Lockfree.Skiplist concurrent
[ ]  136    0    0  136 / 1000     2.9s Lockfree.Skiplist concurrent
[ ]  145    0    0  145 / 1000     3.1s Lockfree.Skiplist concurrent
[ ]  153    0    0  153 / 1000     3.2s Lockfree.Skiplist concurrent
[ ]  155    0    0  155 / 1000     3.4s Lockfree.Skiplist concurrent
[ ]  161    0    0  161 / 1000     3.6s Lockfree.Skiplist concurrent
[ ]  170    0    0  170 / 1000     3.7s Lockfree.Skiplist concurrent
[ ]  190    0    0  190 / 1000     3.9s Lockfree.Skiplist concurrent
[ ]  201    0    0  201 / 1000     4.1s Lockfree.Skiplist concurrent
[ ]  216    0    0  216 / 1000     4.4s Lockfree.Skiplist concurrent
[ ]  220    0    0  220 / 1000     4.7s Lockfree.Skiplist concurrent
[ ]  224    0    0  224 / 1000     4.9s Lockfree.Skiplist concurrent
[ ]  231    0    0  231 / 1000     5.4s Lockfree.Skiplist concurrent
[ ]  232    0    0  232 / 1000     5.7s Lockfree.Skiplist concurrent
[ ]  237    0    0  237 / 1000     6.3s Lockfree.Skiplist concurrent
[ ]  240    0    0  240 / 1000     6.4s Lockfree.Skiplist concurrent
[ ]  252    0    0  252 / 1000     6.6s Lockfree.Skiplist concurrent
[ ]  265    0    0  265 / 1000     6.9s Lockfree.Skiplist concurrent
[ ]  272    0    0  272 / 1000     7.1s Lockfree.Skiplist concurrent
[ ]  274    0    0  274 / 1000     7.3s Lockfree.Skiplist concurrent
[ ]  275    0    0  275 / 1000     7.6s Lockfree.Skiplist concurrent
[ ]  285    0    0  285 / 1000     7.8s Lockfree.Skiplist concurrent
[ ]  296    0    0  296 / 1000     7.9s Lockfree.Skiplist concurrent
[ ]  298    0    0  298 / 1000     8.0s Lockfree.Skiplist concurrent
[ ]  306    0    0  306 / 1000     8.2s Lockfree.Skiplist concurrent
[ ]  311    0    0  311 / 1000     8.3s Lockfree.Skiplist concurrent
[ ]  312    0    0  312 / 1000     8.5s Lockfree.Skiplist concurrent
[ ]  315    0    0  315 / 1000     8.7s Lockfree.Skiplist concurrent
[ ]  323    0    0  323 / 1000     8.8s Lockfree.Skiplist concurrent
[ ]  326    0    0  326 / 1000     9.2s Lockfree.Skiplist concurrent
[ ]  335    0    0  335 / 1000     9.5s Lockfree.Skiplist concurrent
[ ]  340    0    0  340 / 1000     9.6s Lockfree.Skiplist concurrent
[ ]  357    0    0  357 / 1000     9.8s Lockfree.Skiplist concurrent
[ ]  359    0    0  359 / 1000    10.5s Lockfree.Skiplist concurrent
[ ]  367    0    0  367 / 1000    10.6s Lockfree.Skiplist concurrent
[ ]  374    0    0  374 / 1000    11.0s Lockfree.Skiplist concurrent
[ ]  377    0    0  377 / 1000    11.6s Lockfree.Skiplist concurrent
[ ]  382    0    0  382 / 1000    11.8s Lockfree.Skiplist concurrent
[ ]  387    0    0  387 / 1000    11.9s Lockfree.Skiplist concurrent
[ ]  388    0    0  388 / 1000    12.0s Lockfree.Skiplist concurrent
[ ]  393    0    0  393 / 1000    12.2s Lockfree.Skiplist concurrent
[ ]  409    0    0  409 / 1000    12.3s Lockfree.Skiplist concurrent
[ ]  410    0    0  410 / 1000    12.6s Lockfree.Skiplist concurrent
[ ]  415    0    0  415 / 1000    12.7s Lockfree.Skiplist concurrent
[ ]  418    0    0  418 / 1000    12.8s Lockfree.Skiplist concurrent
[ ]  426    0    0  426 / 1000    13.0s Lockfree.Skiplist concurrent
[ ]  445    0    0  445 / 1000    13.2s Lockfree.Skiplist concurrent
[ ]  450    0    0  450 / 1000    13.4s Lockfree.Skiplist concurrent
[ ]  457    0    0  457 / 1000    13.5s Lockfree.Skiplist concurrent
[ ]  462    0    0  462 / 1000    14.0s Lockfree.Skiplist concurrent
[ ]  468    0    0  468 / 1000    14.1s Lockfree.Skiplist concurrent
[ ]  470    0    0  470 / 1000    14.4s Lockfree.Skiplist concurrent
[ ]  479    0    0  479 / 1000    14.5s Lockfree.Skiplist concurrent
[ ]  481    0    0  481 / 1000    14.6s Lockfree.Skiplist concurrent
[ ]  485    0    0  485 / 1000    15.0s Lockfree.Skiplist concurrent
[ ]  498    0    0  498 / 1000    15.1s Lockfree.Skiplist concurrent
[ ]  499    0    0  499 / 1000    15.4s Lockfree.Skiplist concurrent
[ ]  501    0    0  501 / 1000    15.7s Lockfree.Skiplist concurrent
[ ]  506    0    0  506 / 1000    15.9s Lockfree.Skiplist concurrent
[ ]  511    0    0  511 / 1000    16.1s Lockfree.Skiplist concurrent
[ ]  517    0    0  517 / 1000    16.3s Lockfree.Skiplist concurrent
[ ]  526    0    0  526 / 1000    17.0s Lockfree.Skiplist concurrent
[ ]  528    0    0  528 / 1000    17.1s Lockfree.Skiplist concurrent
[ ]  534    0    0  534 / 1000    17.7s Lockfree.Skiplist concurrent
[ ]  545    0    0  545 / 1000    17.8s Lockfree.Skiplist concurrent
[ ]  549    0    0  549 / 1000    17.9s Lockfree.Skiplist concurrent
[ ]  572    0    0  572 / 1000    18.0s Lockfree.Skiplist concurrent
[ ]  579    0    0  579 / 1000    18.2s Lockfree.Skiplist concurrent
[ ]  585    0    0  585 / 1000    18.5s Lockfree.Skiplist concurrent
[ ]  605    0    0  605 / 1000    18.8s Lockfree.Skiplist concurrent
[ ]  609    0    0  609 / 1000    19.0s Lockfree.Skiplist concurrent
[ ]  611    0    0  611 / 1000    19.5s Lockfree.Skiplist concurrent
[ ]  616    0    0  616 / 1000    19.6s Lockfree.Skiplist concurrent
[ ]  619    0    0  619 / 1000    19.7s Lockfree.Skiplist concurrent
[ ]  627    0    0  627 / 1000    20.0s Lockfree.Skiplist concurrent
[ ]  639    0    0  639 / 1000    20.1s Lockfree.Skiplist concurrent
[ ]  650    0    0  650 / 1000    20.2s Lockfree.Skiplist concurrent
[ ]  657    0    0  657 / 1000    20.6s Lockfree.Skiplist concurrent
[ ]  662    0    0  662 / 1000    20.7s Lockfree.Skiplist concurrent
[ ]  668    0    0  668 / 1000    20.9s Lockfree.Skiplist concurrent
[ ]  669    0    0  669 / 1000    21.4s Lockfree.Skiplist concurrent
[ ]  677    0    0  677 / 1000    21.8s Lockfree.Skiplist concurrent
[ ]  678    0    0  678 / 1000    22.1s Lockfree.Skiplist concurrent
[ ]  679    0    0  679 / 1000    22.6s Lockfree.Skiplist concurrent
[ ]  681    0    0  681 / 1000    22.7s Lockfree.Skiplist concurrent
[ ]  682    0    0  682 / 1000    23.5s Lockfree.Skiplist concurrent
[ ]  693    0    0  693 / 1000    24.1s Lockfree.Skiplist concurrent
[ ]  697    0    0  697 / 1000    24.6s Lockfree.Skiplist concurrent
[ ]  700    0    0  700 / 1000    24.8s Lockfree.Skiplist concurrent
[ ]  704    0    0  704 / 1000    25.3s Lockfree.Skiplist concurrent
[ ]  710    0    0  710 / 1000    25.7s Lockfree.Skiplist concurrent
[ ]  729    0    0  729 / 1000    25.9s Lockfree.Skiplist concurrent
[ ]  734    0    0  734 / 1000    26.5s Lockfree.Skiplist concurrent
[ ]  752    0    0  752 / 1000    27.0s Lockfree.Skiplist concurrent
[ ]  756    0    0  756 / 1000    27.1s Lockfree.Skiplist concurrent
[ ]  760    0    0  760 / 1000    27.2s Lockfree.Skiplist concurrent
[ ]  763    0    0  763 / 1000    27.5s Lockfree.Skiplist concurrent
[ ]  770    0    0  770 / 1000    27.6s Lockfree.Skiplist concurrent
[ ]  775    0    0  775 / 1000    27.7s Lockfree.Skiplist concurrent
[ ]  777    0    0  777 / 1000    28.2s Lockfree.Skiplist concurrent
[ ]  784    0    0  784 / 1000    28.3s Lockfree.Skiplist concurrent
[ ]  787    0    0  787 / 1000    28.4s Lockfree.Skiplist concurrent
[ ]  789    0    0  789 / 1000    28.7s Lockfree.Skiplist concurrent
[ ]  791    0    0  791 / 1000    29.2s Lockfree.Skiplist concurrent
[ ]  792    0    0  792 / 1000    29.3s Lockfree.Skiplist concurrent
[ ]  798    0    0  798 / 1000    29.5s Lockfree.Skiplist concurrent
[ ]  811    0    0  811 / 1000    29.6s Lockfree.Skiplist concurrent
[ ]  817    0    0  817 / 1000    29.9s Lockfree.Skiplist concurrent
[ ]  820    0    0  820 / 1000    30.1s Lockfree.Skiplist concurrent
[ ]  832    0    0  832 / 1000    30.2s Lockfree.Skiplist concurrent
[ ]  838    0    0  838 / 1000    30.4s Lockfree.Skiplist concurrent
[ ]  850    0    0  850 / 1000    30.5s Lockfree.Skiplist concurrent
[ ]  856    0    0  856 / 1000    30.8s Lockfree.Skiplist concurrent
[ ]  862    0    0  862 / 1000    31.0s Lockfree.Skiplist concurrent
[ ]  867    0    0  867 / 1000    31.2s Lockfree.Skiplist concurrent
[ ]  870    0    0  870 / 1000    31.8s Lockfree.Skiplist concurrent
[ ]  873    0    0  873 / 1000    32.1s Lockfree.Skiplist concurrent
[ ]  875    0    0  875 / 1000    32.2s Lockfree.Skiplist concurrent
[ ]  885    0    0  885 / 1000    32.3s Lockfree.Skiplist concurrent
[ ]  887    0    0  887 / 1000    32.7s Lockfree.Skiplist concurrent
[ ]  890    0    0  890 / 1000    33.4s Lockfree.Skiplist concurrent
[ ]  917    0    0  917 / 1000    33.5s Lockfree.Skiplist concurrent
[ ]  921    0    0  921 / 1000    34.5s Lockfree.Skiplist concurrent
[ ]  922    0    0  922 / 1000    34.6s Lockfree.Skiplist concurrent
[ ]  931    0    0  931 / 1000    34.7s Lockfree.Skiplist concurrent
[ ]  932    0    0  932 / 1000    34.8s Lockfree.Skiplist concurrent
[ ]  936    0    0  936 / 1000    34.9s Lockfree.Skiplist concurrent
[ ]  938    0    0  938 / 1000    35.1s Lockfree.Skiplist concurrent
[ ]  940    0    0  940 / 1000    35.6s Lockfree.Skiplist concurrent
[ ]  946    0    0  946 / 1000    35.8s Lockfree.Skiplist concurrent
[ ]  968    0    0  968 / 1000    35.9s Lockfree.Skiplist concurrent
[ ]  976    0    0  976 / 1000    36.1s Lockfree.Skiplist concurrent
[ ]  978    0    0  978 / 1000    36.5s Lockfree.Skiplist concurrent
[ ]  981    0    0  981 / 1000    36.9s Lockfree.Skiplist concurrent
[ ]  988    0    0  988 / 1000    37.1s Lockfree.Skiplist concurrent
[ ]  997    0    0  997 / 1000    37.2s Lockfree.Skiplist concurrent
[✓] 1000    0    0 1000 / 1000    37.2s Lockfree.Skiplist concurrent
- ================================================================================
- success (ran 2 tests)
- (cd _build/default/test/size && ./stm_size.exe)
- 
random seed: 27395004
- generated error fail pass / total     time test name
- 
[ ]    0    0    0    0 / 1000     0.0s Saturn_lockfree.Size sequential
[✓] 1000    0    0 1000 / 1000     0.0s Saturn_lockfree.Size sequential
- 
[ ]    0    0    0    0 / 1000     0.0s Saturn_lockfree.Size concurrent
[ ]   13    0    0   13 / 1000     0.5s Saturn_lockfree.Size concurrent
[ ]   23    0    0   23 / 1000     0.8s Saturn_lockfree.Size concurrent
[ ]   24    0    0   24 / 1000     0.9s Saturn_lockfree.Size concurrent
[ ]   41    0    0   41 / 1000     1.2s Saturn_lockfree.Size concurrent
[ ]   44    0    0   44 / 1000     1.5s Saturn_lockfree.Size concurrent
[ ]   54    0    0   54 / 1000     1.6s Saturn_lockfree.Size concurrent
[ ]   59    0    0   59 / 1000     2.0s Saturn_lockfree.Size concurrent
[ ]   63    0    0   63 / 1000     2.2s Saturn_lockfree.Size concurrent
[ ]   67    0    0   67 / 1000     2.4s Saturn_lockfree.Size concurrent
[ ]   82    0    0   82 / 1000     2.7s Saturn_lockfree.Size concurrent
[ ]   92    0    0   92 / 1000     3.1s Saturn_lockfree.Size concurrent
[ ]  104    0    0  104 / 1000     3.2s Saturn_lockfree.Size concurrent
[ ]  120    0    0  120 / 1000     3.5s Saturn_lockfree.Size concurrent
[ ]  121    0    0  121 / 1000     3.7s Saturn_lockfree.Size concurrent
[ ]  127    0    0  127 / 1000     3.8s Saturn_lockfree.Size concurrent
[ ]  138    0    0  138 / 1000     4.5s Saturn_lockfree.Size concurrent
[ ]  140    0    0  140 / 1000     4.6s Saturn_lockfree.Size concurrent
[ ]  147    0    0  147 / 1000     4.7s Saturn_lockfree.Size concurrent
[ ]  150    0    0  150 / 1000     4.8s Saturn_lockfree.Size concurrent
[ ]  160    0    0  160 / 1000     5.2s Saturn_lockfree.Size concurrent
[ ]  169    0    0  169 / 1000     5.5s Saturn_lockfree.Size concurrent
[ ]  177    0    0  177 / 1000     5.7s Saturn_lockfree.Size concurrent
[ ]  183    0    0  183 / 1000     5.8s Saturn_lockfree.Size concurrent
[ ]  187    0    0  187 / 1000     6.0s Saturn_lockfree.Size concurrent
[ ]  197    0    0  197 / 1000     6.2s Saturn_lockfree.Size concurrent
[ ]  202    0    0  202 / 1000     6.4s Saturn_lockfree.Size concurrent
[ ]  216    0    0  216 / 1000     6.6s Saturn_lockfree.Size concurrent
[ ]  220    0    0  220 / 1000     6.7s Saturn_lockfree.Size concurrent
[ ]  230    0    0  230 / 1000     6.8s Saturn_lockfree.Size concurrent
[ ]  235    0    0  235 / 1000     7.0s Saturn_lockfree.Size concurrent
[ ]  236    0    0  236 / 1000     7.2s Saturn_lockfree.Size concurrent
[ ]  238    0    0  238 / 1000     7.4s Saturn_lockfree.Size concurrent
[ ]  244    0    0  244 / 1000     7.6s Saturn_lockfree.Size concurrent
[ ]  251    0    0  251 / 1000     7.7s Saturn_lockfree.Size concurrent
[ ]  254    0    0  254 / 1000     7.9s Saturn_lockfree.Size concurrent
[ ]  259    0    0  259 / 1000     8.4s Saturn_lockfree.Size concurrent
[ ]  266    0    0  266 / 1000     8.5s Saturn_lockfree.Size concurrent
[ ]  276    0    0  276 / 1000     8.7s Saturn_lockfree.Size concurrent
[ ]  284    0    0  284 / 1000     8.8s Saturn_lockfree.Size concurrent
[ ]  288    0    0  288 / 1000     9.1s Saturn_lockfree.Size concurrent
[ ]  292    0    0  292 / 1000     9.2s Saturn_lockfree.Size concurrent
[ ]  297    0    0  297 / 1000     9.3s Saturn_lockfree.Size concurrent
[ ]  302    0    0  302 / 1000     9.8s Saturn_lockfree.Size concurrent
[ ]  306    0    0  306 / 1000    10.4s Saturn_lockfree.Size concurrent
[ ]  310    0    0  310 / 1000    10.6s Saturn_lockfree.Size concurrent
[ ]  311    0    0  311 / 1000    10.8s Saturn_lockfree.Size concurrent
[ ]  312    0    0  312 / 1000    11.3s Saturn_lockfree.Size concurrent
[ ]  313    0    0  313 / 1000    11.6s Saturn_lockfree.Size concurrent
[ ]  318    0    0  318 / 1000    11.9s Saturn_lockfree.Size concurrent
[ ]  331    0    0  331 / 1000    12.1s Saturn_lockfree.Size concurrent
[ ]  337    0    0  337 / 1000    12.3s Saturn_lockfree.Size concurrent
[ ]  338    0    0  338 / 1000    12.6s Saturn_lockfree.Size concurrent
[ ]  340    0    0  340 / 1000    12.8s Saturn_lockfree.Size concurrent
[ ]  344    0    0  344 / 1000    13.1s Saturn_lockfree.Size concurrent
[ ]  352    0    0  352 / 1000    13.4s Saturn_lockfree.Size concurrent
[ ]  356    0    0  356 / 1000    13.6s Saturn_lockfree.Size concurrent
[ ]  364    0    0  364 / 1000    13.8s Saturn_lockfree.Size concurrent
[ ]  373    0    0  373 / 1000    14.2s Saturn_lockfree.Size concurrent
[ ]  374    0    0  374 / 1000    14.3s Saturn_lockfree.Size concurrent
[ ]  396    0    0  396 / 1000    14.5s Saturn_lockfree.Size concurrent
[ ]  401    0    0  401 / 1000    14.9s Saturn_lockfree.Size concurrent
[ ]  414    0    0  414 / 1000    15.1s Saturn_lockfree.Size concurrent
[ ]  419    0    0  419 / 1000    15.5s Saturn_lockfree.Size concurrent
[ ]  421    0    0  421 / 1000    15.6s Saturn_lockfree.Size concurrent
[ ]  422    0    0  422 / 1000    15.9s Saturn_lockfree.Size concurrent
[ ]  438    0    0  438 / 1000    16.2s Saturn_lockfree.Size concurrent
[ ]  446    0    0  446 / 1000    16.3s Saturn_lockfree.Size concurrent
[ ]  448    0    0  448 / 1000    16.4s Saturn_lockfree.Size concurrent
[ ]  457    0    0  457 / 1000    16.8s Saturn_lockfree.Size concurrent
[ ]  474    0    0  474 / 1000    17.1s Saturn_lockfree.Size concurrent
[ ]  478    0    0  478 / 1000    17.5s Saturn_lockfree.Size concurrent
[ ]  481    0    0  481 / 1000    17.6s Saturn_lockfree.Size concurrent
[ ]  484    0    0  484 / 1000    17.7s Saturn_lockfree.Size concurrent
[ ]  493    0    0  493 / 1000    18.4s Saturn_lockfree.Size concurrent
[ ]  494    0    0  494 / 1000    18.5s Saturn_lockfree.Size concurrent
[ ]  501    0    0  501 / 1000    18.8s Saturn_lockfree.Size concurrent
[ ]  505    0    0  505 / 1000    18.9s Saturn_lockfree.Size concurrent
[ ]  513    0    0  513 / 1000    19.2s Saturn_lockfree.Size concurrent
[ ]  516    0    0  516 / 1000    19.5s Saturn_lockfree.Size concurrent
[ ]  522    0    0  522 / 1000    19.8s Saturn_lockfree.Size concurrent
[ ]  527    0    0  527 / 1000    20.1s Saturn_lockfree.Size concurrent
[ ]  536    0    0  536 / 1000    20.8s Saturn_lockfree.Size concurrent
[ ]  545    0    0  545 / 1000    20.9s Saturn_lockfree.Size concurrent
[ ]  547    0    0  547 / 1000    21.2s Saturn_lockfree.Size concurrent
[ ]  549    0    0  549 / 1000    21.5s Saturn_lockfree.Size concurrent
[ ]  552    0    0  552 / 1000    22.4s Saturn_lockfree.Size concurrent
[ ]  565    0    0  565 / 1000    22.5s Saturn_lockfree.Size concurrent
[ ]  569    0    0  569 / 1000    22.7s Saturn_lockfree.Size concurrent
[ ]  578    0    0  578 / 1000    22.8s Saturn_lockfree.Size concurrent
[ ]  579    0    0  579 / 1000    22.9s Saturn_lockfree.Size concurrent
[ ]  585    0    0  585 / 1000    23.0s Saturn_lockfree.Size concurrent
[ ]  597    0    0  597 / 1000    23.3s Saturn_lockfree.Size concurrent
[ ]  602    0    0  602 / 1000    23.5s Saturn_lockfree.Size concurrent
[ ]  606    0    0  606 / 1000    23.7s Saturn_lockfree.Size concurrent
[ ]  613    0    0  613 / 1000    24.3s Saturn_lockfree.Size concurrent
[ ]  617    0    0  617 / 1000    24.7s Saturn_lockfree.Size concurrent
[ ]  620    0    0  620 / 1000    24.9s Saturn_lockfree.Size concurrent
[ ]  621    0    0  621 / 1000    25.4s Saturn_lockfree.Size concurrent
[ ]  629    0    0  629 / 1000    25.6s Saturn_lockfree.Size concurrent
[ ]  631    0    0  631 / 1000    25.7s Saturn_lockfree.Size concurrent
[ ]  637    0    0  637 / 1000    25.9s Saturn_lockfree.Size concurrent
[ ]  640    0    0  640 / 1000    26.1s Saturn_lockfree.Size concurrent
[ ]  655    0    0  655 / 1000    26.3s Saturn_lockfree.Size concurrent
[ ]  657    0    0  657 / 1000    26.4s Saturn_lockfree.Size concurrent
[ ]  665    0    0  665 / 1000    26.7s Saturn_lockfree.Size concurrent
[ ]  667    0    0  667 / 1000    26.8s Saturn_lockfree.Size concurrent (collecting)
[ ]  678    0    0  678 / 1000    27.0s Saturn_lockfree.Size concurrent
[ ]  682    0    0  682 / 1000    27.1s Saturn_lockfree.Size concurrent
[ ]  691    0    0  691 / 1000    27.6s Saturn_lockfree.Size concurrent
[ ]  705    0    0  705 / 1000    27.7s Saturn_lockfree.Size concurrent
[ ]  720    0    0  720 / 1000    27.8s Saturn_lockfree.Size concurrent
[ ]  729    0    0  729 / 1000    27.9s Saturn_lockfree.Size concurrent
[ ]  738    0    0  738 / 1000    28.1s Saturn_lockfree.Size concurrent
[ ]  740    0    0  740 / 1000    28.4s Saturn_lockfree.Size concurrent
[ ]  747    0    0  747 / 1000    28.6s Saturn_lockfree.Size concurrent
[ ]  755    0    0  755 / 1000    28.7s Saturn_lockfree.Size concurrent
[ ]  760    0    0  760 / 1000    28.9s Saturn_lockfree.Size concurrent
[ ]  768    0    0  768 / 1000    29.0s Saturn_lockfree.Size concurrent
[ ]  785    0    0  785 / 1000    29.2s Saturn_lockfree.Size concurrent
[ ]  796    0    0  796 / 1000    29.4s Saturn_lockfree.Size concurrent
[ ]  801    0    0  801 / 1000    29.6s Saturn_lockfree.Size concurrent
[ ]  813    0    0  813 / 1000    29.8s Saturn_lockfree.Size concurrent
[ ]  814    0    0  814 / 1000    30.0s Saturn_lockfree.Size concurrent
[ ]  825    0    0  825 / 1000    30.3s Saturn_lockfree.Size concurrent
[ ]  827    0    0  827 / 1000    30.4s Saturn_lockfree.Size concurrent
[ ]  834    0    0  834 / 1000    31.0s Saturn_lockfree.Size concurrent
[ ]  836    0    0  836 / 1000    31.4s Saturn_lockfree.Size concurrent
[ ]  838    0    0  838 / 1000    31.5s Saturn_lockfree.Size concurrent
[ ]  848    0    0  848 / 1000    32.2s Saturn_lockfree.Size concurrent
[ ]  851    0    0  851 / 1000    32.4s Saturn_lockfree.Size concurrent
[ ]  853    0    0  853 / 1000    32.5s Saturn_lockfree.Size concurrent
[ ]  856    0    0  856 / 1000    32.6s Saturn_lockfree.Size concurrent
[ ]  866    0    0  866 / 1000    33.0s Saturn_lockfree.Size concurrent
[ ]  872    0    0  872 / 1000    33.1s Saturn_lockfree.Size concurrent
[ ]  875    0    0  875 / 1000    33.5s Saturn_lockfree.Size concurrent
[ ]  877    0    0  877 / 1000    33.6s Saturn_lockfree.Size concurrent
[ ]  879    0    0  879 / 1000    33.8s Saturn_lockfree.Size concurrent
[ ]  881    0    0  881 / 1000    34.0s Saturn_lockfree.Size concurrent
[ ]  885    0    0  885 / 1000    34.3s Saturn_lockfree.Size concurrent
[ ]  892    0    0  892 / 1000    34.4s Saturn_lockfree.Size concurrent
[ ]  895    0    0  895 / 1000    35.0s Saturn_lockfree.Size concurrent
[ ]  903    0    0  903 / 1000    35.1s Saturn_lockfree.Size concurrent
[ ]  910    0    0  910 / 1000    35.2s Saturn_lockfree.Size concurrent
[ ]  919    0    0  919 / 1000    35.5s Saturn_lockfree.Size concurrent
[ ]  926    0    0  926 / 1000    35.7s Saturn_lockfree.Size concurrent
[ ]  928    0    0  928 / 1000    35.9s Saturn_lockfree.Size concurrent
[ ]  935    0    0  935 / 1000    36.0s Saturn_lockfree.Size concurrent
[ ]  962    0    0  962 / 1000    36.2s Saturn_lockfree.Size concurrent
[ ]  971    0    0  971 / 1000    36.3s Saturn_lockfree.Size concurrent
[ ]  973    0    0  973 / 1000    36.5s Saturn_lockfree.Size concurrent
[ ]  978    0    0  978 / 1000    37.3s Saturn_lockfree.Size concurrent
[ ]  980    0    0  980 / 1000    37.5s Saturn_lockfree.Size concurrent
[ ]  983    0    0  983 / 1000    38.0s Saturn_lockfree.Size concurrent
[ ]  992    0    0  992 / 1000    38.3s Saturn_lockfree.Size concurrent
[ ]  998    0    0  998 / 1000    38.7s Saturn_lockfree.Size concurrent
[ ] 1000    0    0 1000 / 1000    39.1s Saturn_lockfree.Size concurrent
[✓] 1000    0    0 1000 / 1000    39.1s Saturn_lockfree.Size concurrent
- ================================================================================
- success (ran 2 tests)
-> compiled  saturn_lockfree.0.5.0
-> removed   saturn_lockfree.0.5.0
-> installed saturn_lockfree.0.5.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-04-30 07:27.14 ---> saved as "36b604664cdb10c3ef04cb8d11da21b1af09ef04f48b771d3014a323c3746440"
Job succeeded
2026-04-30 07:27.51: Job succeeded