Organisationsocaml-multicoresaturnc29f75 ()freebsd-5.2_opam-2.2

freebsd-5.2_opam-2.2

Link Copied
Code Copied

Logs

2024-09-10 11:48.49: New job: test ocaml-multicore/saturn https://github.com/ocaml-multicore/saturn.git#refs/pull/152/head (c29f75efcdb4642f2d536cf5c01457bcd825cb1a) (freebsd-x86_64:freebsd-5.2_opam-2.2)
Base: freebsd-ocaml-5.2
Opam project build


To reproduce locally:


git clone --recursive "https://github.com/ocaml-multicore/saturn.git" && cd "saturn" && git fetch origin "refs/pull/152/head" && git reset --hard c29f75ef
cat > Dockerfile <<'END-OF-DOCKERFILE'
FROM freebsd-ocaml-5.2
# freebsd-5.2_opam-2.2
USER 1000:1000
ENV CLICOLOR_FORCE="1"
ENV OPAMCOLOR="always"
WORKDIR /src
RUN sudo ln -f /usr/local/bin/opam-2.2 /usr/local/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 b92ae980c0437e8cdeac9f8f2c24a7800f1ed171 || git fetch origin master) && git reset -q --hard b92ae980c0437e8cdeac9f8f2c24a7800f1ed171 && git log --no-decorate -n1 --oneline && opam update -u
COPY --chown=1000:1000 saturn_lockfree.opam saturn.opam ./
RUN opam pin add -yn saturn_lockfree.dev './' && \
    opam pin add -yn saturn.dev './'
ENV DEPS="alcotest.1.8.0 astring.0.8.5 backoff.0.1.0 base-bigarray.base base-domains.base base-nnp.base base-threads.base base-unix.base cmdliner.1.3.0 containers.3.13.1 csexp.1.5.2 domain-local-await.1.0.1 domain_shims.0.1.0 dscheck.0.5.0 dune.3.16.0 dune-configurator.3.16.0 either.1.0.0 fmt.0.9.0 host-arch-x86_64.1 host-system-other.1 mtime.2.0.0 multicore-bench.0.1.4 multicore-magic.2.3.0 multicore-magic-dscheck.2.3.0 ocaml.5.2.0 ocaml-base-compiler.5.2.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocamlbuild.0.15.0 ocamlfind.1.9.6 oseq.0.5.1 ounit2.2.2.7 qcheck.0.22 qcheck-alcotest.0.22 qcheck-core.0.22 qcheck-multicoretests-util.0.3 qcheck-ounit.0.22 qcheck-stm.0.3 re.1.12.0 seq.base stdlib-shims.0.3.0 thread-table.1.0.0 topkg.1.0.7 tsort.2.1.0 uutf.1.0.3 yojson.2.2.2"
ENV CI="true"
ENV OCAMLCI="true"
RUN opam update --depexts && opam install --cli=2.2 --depext-only -y saturn_lockfree.dev saturn.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


2024-09-10 11:48.49: Using cache hint "ocaml-multicore/saturn-freebsd-ocaml-5.2-freebsd-5.2_opam-2.2-b1db37155f974406feba7f6468000be4"
2024-09-10 11:48.49: Using OBuilder spec:
((from freebsd-ocaml-5.2)
 (comment freebsd-5.2_opam-2.2)
 (user (uid 1000) (gid 1000))
 (env CLICOLOR_FORCE 1)
 (env OPAMCOLOR always)
 (workdir /src)
 (run (shell "sudo ln -f /usr/local/bin/opam-2.2 /usr/local/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 b92ae980c0437e8cdeac9f8f2c24a7800f1ed171 || git fetch origin master) && git reset -q --hard b92ae980c0437e8cdeac9f8f2c24a7800f1ed171 && git log --no-decorate -n1 --oneline && opam update -u"))
 (copy (src saturn_lockfree.opam saturn.opam) (dst ./))
 (run (network host)
      (shell  "opam pin add -yn saturn_lockfree.dev './' && \
             \nopam pin add -yn saturn.dev './'"))
 (env DEPS "alcotest.1.8.0 astring.0.8.5 backoff.0.1.0 base-bigarray.base base-domains.base base-nnp.base base-threads.base base-unix.base cmdliner.1.3.0 containers.3.13.1 csexp.1.5.2 domain-local-await.1.0.1 domain_shims.0.1.0 dscheck.0.5.0 dune.3.16.0 dune-configurator.3.16.0 either.1.0.0 fmt.0.9.0 host-arch-x86_64.1 host-system-other.1 mtime.2.0.0 multicore-bench.0.1.4 multicore-magic.2.3.0 multicore-magic-dscheck.2.3.0 ocaml.5.2.0 ocaml-base-compiler.5.2.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocamlbuild.0.15.0 ocamlfind.1.9.6 oseq.0.5.1 ounit2.2.2.7 qcheck.0.22 qcheck-alcotest.0.22 qcheck-core.0.22 qcheck-multicoretests-util.0.3 qcheck-ounit.0.22 qcheck-stm.0.3 re.1.12.0 seq.base stdlib-shims.0.3.0 thread-table.1.0.0 topkg.1.0.7 tsort.2.1.0 uutf.1.0.3 yojson.2.2.2")
 (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.2 --depext-only -y saturn_lockfree.dev saturn.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"))
)


2024-09-10 11:48.49: Waiting for resource in pool OCluster
2024-09-10 11:48.49: Waiting for worker…
2024-09-10 11:48.49: Got resource from pool OCluster
Building on spring
HEAD is now at a77dc75 Regroup MS_queue and spsc_queue under their own subdirectory. (#151)
HEAD is now at c29f75e Add time limit for stm tests.


(from freebsd-ocaml-5.2)
2024-09-10 11:39.48 ---> using "3515bf58445883216685df527c06fc8b9b7799700694ffa335d1401da4433261" from cache


/: (comment freebsd-5.2_opam-2.2)


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


/: (env CLICOLOR_FORCE 1)


/: (env OPAMCOLOR always)


/: (workdir /src)


/src: (run (shell "sudo ln -f /usr/local/bin/opam-2.2 /usr/local/bin/opam"))
2024-09-10 11:39.49 ---> using "ce5d446dcad4679490c4842006d3847ab79c5b03f27c64107dd9b4b693f9227b" from cache


/src: (run (shell "opam init --reinit -ni"))
No configuration file found, using 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.1 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 1 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=1 --global
Format upgrade done.


<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] no changes from git+file:///home/opam/opam-repository
2024-09-10 11:39.49 ---> using "315f104d2431f3f8513b249e297f5cd9ab00e87e07651779a2c033f75790f186" from cache


/src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
FreeBSD 14.0-RELEASE-p6
The OCaml toplevel, version 5.2.0
2.2.0
2024-09-10 11:39.49 ---> using "122bbc3ca2d5d079e67c62df055dfe2029bb1467ac0b82961d95a877a82d7ad7" from cache


/src: (workdir /src)


/src: (run (shell "sudo chown opam /src"))
2024-09-10 11:39.49 ---> using "ea3d067661d07cb941931c0bd3d63b7212a0090aedfda056edf38cb8ce4f84dc" from cache


/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
           (network host)
           (shell "cd ~/opam-repository && (git cat-file -e b92ae980c0437e8cdeac9f8f2c24a7800f1ed171 || git fetch origin master) && git reset -q --hard b92ae980c0437e8cdeac9f8f2c24a7800f1ed171 && git log --no-decorate -n1 --oneline && opam update -u"))
From https://github.com/ocaml/opam-repository
 * branch                  master     -> FETCH_HEAD
   e2171914dc..16e8d80cc5  master     -> origin/master
b92ae980c0 Merge pull request #26439 from rgrinberg/release-re-1.12.0


<><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><>
[default] synchronised from git+file:///home/opam/opam-repository
default (at git+file:///home/opam/opam-repository): 
    [WARNING] opam is out-of-date. Please consider updating it (https://opam.ocaml.org/doc/Install.html)


Everything as up-to-date as possible (run with --verbose to show unavailable upgrades).


The following packages are not being upgraded because the new versions conflict with other installed packages:
  - ocaml.5.4.0
However, you may "opam upgrade" these packages explicitly, which will ask permission to downgrade or uninstall the conflicting packages.
Nothing to do.
2024-09-10 11:39.50 ---> using "f5fa129fd57918a6829ded3696ca0bc54325a9a989dedef7fd80b50b56accfd0" from cache


/src: (copy (src saturn_lockfree.opam saturn.opam) (dst ./))
2024-09-10 11:39.50 ---> using "5e698f9bece2a774c6199eff74d3cc6beafc5dada9a63deec3dd8aacaf9f32b9" from cache


/src: (run (network host)
           (shell  "opam pin add -yn saturn_lockfree.dev './' && \
                  \nopam pin add -yn saturn.dev './'"))
[saturn_lockfree.dev] synchronised (file:///src)
saturn_lockfree is now pinned to file:///src (version dev)
[saturn.dev] synchronised (file:///src)
saturn is now pinned to file:///src (version dev)
2024-09-10 11:39.50 ---> using "5406a46cab016ab7c002e113deb59e242c9f21e0be806b82faec892d2044b7bf" from cache


/src: (env DEPS "alcotest.1.8.0 astring.0.8.5 backoff.0.1.0 base-bigarray.base base-domains.base base-nnp.base base-threads.base base-unix.base cmdliner.1.3.0 containers.3.13.1 csexp.1.5.2 domain-local-await.1.0.1 domain_shims.0.1.0 dscheck.0.5.0 dune.3.16.0 dune-configurator.3.16.0 either.1.0.0 fmt.0.9.0 host-arch-x86_64.1 host-system-other.1 mtime.2.0.0 multicore-bench.0.1.4 multicore-magic.2.3.0 multicore-magic-dscheck.2.3.0 ocaml.5.2.0 ocaml-base-compiler.5.2.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocamlbuild.0.15.0 ocamlfind.1.9.6 oseq.0.5.1 ounit2.2.2.7 qcheck.0.22 qcheck-alcotest.0.22 qcheck-core.0.22 qcheck-multicoretests-util.0.3 qcheck-ounit.0.22 qcheck-stm.0.3 re.1.12.0 seq.base stdlib-shims.0.3.0 thread-table.1.0.0 topkg.1.0.7 tsort.2.1.0 uutf.1.0.3 yojson.2.2.2")


/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.2 --depext-only -y saturn_lockfree.dev saturn.dev $DEPS"))
[WARNING] Unknown update command for bsd, skipping system update


<><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><>
[saturn.dev] synchronised (no changes)
[saturn_lockfree.dev] synchronised (no changes)


[NOTE] Package ocaml-options-vanilla is already installed (current version is 1).
[NOTE] Package ocaml-config is already installed (current version is 3).
[NOTE] Package ocaml-base-compiler is already installed (current version is 5.2.0).
[NOTE] Package ocaml is already installed (current version is 5.2.0).
[NOTE] Package host-system-other is already installed (current version is 1).
[NOTE] Package host-arch-x86_64 is already installed (current version is 1).
[NOTE] Package base-unix is already installed (current version is base).
[NOTE] Package base-threads is already installed (current version is base).
[NOTE] Package base-nnp is already installed (current version is base).
[NOTE] Package base-domains is already installed (current version is base).
[NOTE] Package base-bigarray is already installed (current version is base).
2024-09-10 11:39.50 ---> using "5dd64d0f2e759a2006c3fecf9e927347bfe3335c9e5ed86b868100ade1d72083" from cache


/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
           (network host)
           (shell "opam install $DEPS"))
[NOTE] Package ocaml-options-vanilla is already installed (current version is 1).
[NOTE] Package ocaml-config is already installed (current version is 3).
[NOTE] Package ocaml-base-compiler is already installed (current version is 5.2.0).
[NOTE] Package ocaml is already installed (current version is 5.2.0).
[NOTE] Package host-system-other is already installed (current version is 1).
[NOTE] Package host-arch-x86_64 is already installed (current version is 1).
[NOTE] Package base-unix is already installed (current version is base).
[NOTE] Package base-threads is already installed (current version is base).
[NOTE] Package base-nnp is already installed (current version is base).
[NOTE] Package base-domains is already installed (current version is base).
[NOTE] Package base-bigarray is already installed (current version is base).
The following actions will be performed:
=== install 36 packages
   alcotest                   1.8.0
   astring                    0.8.5
   backoff                    0.1.0
   cmdliner                   1.3.0
   containers                 3.13.1
   csexp                      1.5.2
   domain-local-await         1.0.1
   domain_shims               0.1.0
   dscheck                    0.5.0
   dune                       3.16.0
   dune-configurator          3.16.0
   either                     1.0.0
   fmt                        0.9.0
   mtime                      2.0.0
   multicore-bench            0.1.4
   multicore-magic            2.3.0
   multicore-magic-dscheck    2.3.0
   ocaml-syntax-shims         1.0.0
   ocamlbuild                 0.15.0
   ocamlfind                  1.9.6
   oseq                       0.5.1
   ounit2                     2.2.7
   qcheck                     0.22
   qcheck-alcotest            0.22
   qcheck-core                0.22
   qcheck-multicoretests-util 0.3
   qcheck-ounit               0.22
   qcheck-stm                 0.3
   re                         1.12.0
   seq                        base
   stdlib-shims               0.3.0
   thread-table               1.0.0
   topkg                      1.0.7
   tsort                      2.1.0
   uutf                       1.0.3
   yojson                     2.2.2


<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
 retrieved backoff.0.1.0  (cached)
 retrieved astring.0.8.5  (cached)
 retrieved cmdliner.1.3.0  (cached)
 retrieved csexp.1.5.2  (cached)
 retrieved containers.3.13.1  (cached)
 retrieved domain-local-await.1.0.1  (cached)
 retrieved alcotest.1.8.0  (cached)
 retrieved dscheck.0.5.0  (cached)
 retrieved domain_shims.0.1.0  (cached)
 retrieved either.1.0.0  (cached)
 retrieved fmt.0.9.0  (cached)
 retrieved mtime.2.0.0  (cached)
 retrieved multicore-bench.0.1.4  (cached)
 retrieved multicore-magic.2.3.0, multicore-magic-dscheck.2.3.0  (cached)
 retrieved ocaml-syntax-shims.1.0.0  (cached)
 retrieved ocamlbuild.0.15.0  (cached)
 retrieved oseq.0.5.1  (cached)
 retrieved ocamlfind.1.9.6  (cached)
 retrieved qcheck.0.22, qcheck-alcotest.0.22, qcheck-core.0.22, qcheck-ounit.0.22  (cached)
 retrieved ounit2.2.2.7  (cached)
 retrieved qcheck-multicoretests-util.0.3, qcheck-stm.0.3  (cached)
 retrieved seq.base  (cached)
 installed seq.base
 retrieved re.1.12.0  (cached)
 retrieved stdlib-shims.0.3.0  (cached)
 retrieved thread-table.1.0.0  (cached)
 retrieved tsort.2.1.0  (cached)
 retrieved uutf.1.0.3  (cached)
 retrieved topkg.1.0.7  (cached)
 retrieved yojson.2.2.2  (cached)
 retrieved dune.3.16.0, dune-configurator.3.16.0  (cached)
 installed cmdliner.1.3.0
 installed ocamlbuild.0.15.0
 installed ocamlfind.1.9.6
 installed topkg.1.0.7
 installed uutf.1.0.3
 installed mtime.2.0.0
 installed fmt.0.9.0
 installed astring.0.8.5
 installed dune.3.16.0
 installed domain_shims.0.1.0
 installed csexp.1.5.2
 installed backoff.0.1.0
 installed oseq.0.5.1
 installed ocaml-syntax-shims.1.0.0
 installed multicore-magic.2.3.0
 installed either.1.0.0
 installed stdlib-shims.0.3.0
 installed tsort.2.1.0
 installed thread-table.1.0.0
 installed qcheck-core.0.22
 installed re.1.12.0
 installed domain-local-await.1.0.1
 installed qcheck-multicoretests-util.0.3
 installed yojson.2.2.2
 installed dune-configurator.3.16.0
 installed qcheck-stm.0.3
 installed ounit2.2.2.7
 installed qcheck-ounit.0.22
 installed multicore-bench.0.1.4
 installed alcotest.1.8.0
 installed qcheck.0.22
 installed qcheck-alcotest.0.22
 installed containers.3.13.1
 installed dscheck.0.5.0
 installed multicore-magic-dscheck.2.3.0
Done.
2024-09-10 11:39.51 ---> using "68809c4f06c0bc7c5518df2186873cb6bcc6e035d18f53cabef9e808c3163de2" from cache


/src: (copy (src .) (dst /src))
2024-09-10 11:39.51 ---> saved as "d413320e4a729c20c290b98ceacfe5e64b5dfab92f06eecd99186925d070a56e"


/src: (run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build"))
(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 = 100000)
test_Spsc_queue_unsafe_empty: ok
test_Spsc_queue_unsafe_full: ok
test_Spsc_queue_unsafe_parallel: ok (transferred = 100000)
(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 = 71691, stolen = 28309)
(cd _build/default/test/ws_deque && ./qcheck_ws_deque.exe)
qcheck random seed: 96644899
Testing `Ws_deque'.
This run has ID `VGXSP7AN'.


  [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 `/src/_build/default/test/ws_deque/_build/_tests/Ws_deque'.
Test Successful in 10.414s. 6 tests run.
(cd _build/default/test/treiber_stack && ./qcheck_treiber_stack.exe)
qcheck random seed: 788694954
Testing `Treiber_stack'.
This run has ID `2UOW3BS7'.


  [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 `/src/_build/default/test/treiber_stack/_build/_tests/Treiber_stack'.
Test Successful in 11.220s. 6 tests run.
(cd _build/default/test/spsc_queue && ./qcheck_spsc_queue.exe)
qcheck random seed: 407551958
Testing `Spsc_queues'.
This run has ID `KAGM2OE0'.


  [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 `/src/_build/default/test/spsc_queue/_build/_tests/Spsc_queues'.
Test Successful in 16.410s. 16 tests run.
(cd _build/default/test/mpsc_queue && ./qcheck_mpsc_queue.exe)
qcheck random seed: 633310358
Testing `Mpsc_queue'.
This run has ID `80QLH7NR'.


  [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 `/src/_build/default/test/mpsc_queue/_build/_tests/Mpsc_queue'.
Test Successful in 23.894s. 22 tests run.
(cd _build/default/test/michael_scott_queue && ./qcheck_michael_scott_queue.exe)
qcheck random seed: 893117945
Testing `Michael_scott_queue'.
This run has ID `YOXYG5DC'.


  [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 `/src/_build/default/test/michael_scott_queue/_build/_tests/Michael_scott_queue'.
Test Successful in 30.099s. 16 tests run.
(cd _build/default/test/ws_deque && ./stm_ws_deque.exe)
random seed: 1276904799994371827
generated error fail pass / total     time test name
[]   32    0    0   32 /   32     0.0s Saturn_lockfree.Ws_deque sequential
[]   32    0    0   32 /   32    18.9s Saturn_lockfree.Ws_deque parallel
[]    1    0    1    0 /   32    49.3s Saturn_lockfree.Ws_deque parallel, negative


--- Info -----------------------------------------------------------------------


Negative test Saturn_lockfree.Ws_deque parallel, negative failed as expected (8 shrink steps):


                        |                
                     Push 96             
                     Push 33             
                        |                
             .---------------------.
             |                     |                
            Pop                   Pop               


+++ Messages ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++


Messages for test Saturn_lockfree.Ws_deque parallel, negative:


  Results incompatible with linearized model


                              |                            
                        Push 96 : ()                       
                        Push 33 : ()                       
                              |                            
           .------------------------------------.
           |                                    |                            
     Pop : Ok (33)                        Pop : Ok (33)                      


================================================================================
success (ran 3 tests)
(cd _build/default/test/skiplist && ./stm_skiplist.exe)
random seed: 1788861011496649487
generated error fail pass / total     time test name
[]   32    0    0   32 /   32     0.0s Lockfree.Skiplist sequential
[]   32    0    0   32 /   32    20.0s Lockfree.Skiplist parallel
================================================================================
success (ran 2 tests)
random seed: 2098793775677299880
generated error fail pass / total     time test name
[]   63    0    0   63 /   63     0.0s Lockfree.Skiplist sequential
[]   63    0    0   63 /   63    28.0s Lockfree.Skiplist parallel
================================================================================
success (ran 2 tests)
random seed: 2027561434606292177
generated error fail pass / total     time test name
[]   32    0    0   32 /   32     0.0s Lockfree.Skiplist sequential
[]   32    0    0   32 /   32    13.9s Lockfree.Skiplist parallel
================================================================================
success (ran 2 tests)
(cd _build/default/test/treiber_stack && ./treiber_stack_dscheck.exe)
Testing `treiber_stack_dscheck'.
This run has ID `3G0HLXLX'.


  [OK]          basic          0   1-producer-1-consumer.
  [OK]          basic          1   2-producers.
  [OK]          basic          2   2-consumers.
  [OK]          basic          3   2-domains.
  [OK]          basic          4   2-domains-more-pops.


Full test results in `/src/_build/default/test/treiber_stack/_build/_tests/treiber_stack_dscheck'.
Test Successful in 0.218s. 5 tests run.
(cd _build/default/test/mpsc_queue && ./mpsc_queue_dscheck.exe)
Testing `mpsc_queue_dscheck'.
This run has ID `IETL287B'.


  [OK]          basic          0   1-producer-1-consumer.
  [OK]          basic          1   1-producer-1-consumer-peek.
  [OK]          basic          2   2-producers.


Full test results in `/src/_build/default/test/mpsc_queue/_build/_tests/mpsc_queue_dscheck'.
Test Successful in 0.024s. 3 tests run.
(cd _build/default/test/treiber_stack && ./stm_treiber_stack.exe)
random seed: 2829461798573967563
generated error fail pass / total     time test name
[]   32    0    0   32 /   32     0.0s Saturn_lockfree.Treiber_stack sequential
[]   32    0    0   32 /   32    14.2s Saturn_lockfree.Treiber_stack parallel
================================================================================
success (ran 2 tests)
random seed: 2345033175912333329
generated error fail pass / total     time test name
[]   64    0    0   64 /   64     0.0s Saturn_lockfree.Treiber_stack sequential
[]   64    0    0   64 /   64    22.2s Saturn_lockfree.Treiber_stack parallel
================================================================================
success (ran 2 tests)
random seed: 2432202440625506832
generated error fail pass / total     time test name
[]   62    0    0   62 /   62     0.0s Saturn_lockfree.Treiber_stack sequential
[]   62    0    0   62 /   62    27.7s Saturn_lockfree.Treiber_stack parallel
================================================================================
success (ran 2 tests)
(cd _build/default/test/spsc_queue && ./spsc_queue_dscheck.exe)
Testing `spsc_queue_dscheck'.
This run has ID `RL089JKW'.


  [OK]          basic_safe                   0   simple-test.
  [OK]          wrap-arounds_safe            0   shift-by-1.
  [OK]          wrap-arounds_safe            1   shift-by-6.
  [OK]          wrap-arounds_safe            2   shift-by-11.
  [OK]          size_safe                    0   linearizes-with-1-thr.
  [OK]          basic_unsafe                 0   simple-test.
  [OK]          wrap-arounds_unsafe          0   shift-by-1.
  [OK]          wrap-arounds_unsafe          1   shift-by-6.
  [OK]          wrap-arounds_unsafe          2   shift-by-11.
  [OK]          size_unsafe                  0   linearizes-with-1-thr.


Full test results in `/src/_build/default/test/spsc_queue/_build/_tests/spsc_queue_dscheck'.
Test Successful in 0.157s. 10 tests run.
(cd _build/default/test/size && ./dscheck_size.exe)
Testing `dscheck_size'.
This run has ID `5O7WJKP5'.


  [OK]          basic          0   underflow and overflow.
  [OK]          basic          1   2-mem.
  [OK]          basic          2   2-add-same.
  [OK]          basic          3   2-add.
  [OK]          basic          4   2-remove-same.
  [OK]          basic          5   2-remove.


Full test results in `/src/_build/default/test/size/_build/_tests/dscheck_size'.
Test Successful in 0.034s. 6 tests run.
(cd _build/default/test/ws_deque && ./ws_deque_dscheck.exe)
Testing `ws_deque_dscheck'.
This run has ID `RQ6J2P80'.


  [OK]          basic          0   1-owner-1-stealer.
  [OK]          basic          1   1-pusher-2-stealers.


Full test results in `/src/_build/default/test/ws_deque/_build/_tests/ws_deque_dscheck'.
Test Successful in 0.003s. 2 tests run.
(cd _build/default/test/michael_scott_queue && ./michael_scott_queue_dscheck.exe)
Testing `michael_scott_queue_dscheck'.
This run has ID `GREY54QR'.


  [OK]          basic_safe            0   1-producer-1-consumer.
  [OK]          basic_safe            1   1-producer-1-consumer-peek.
  [OK]          basic_safe            2   2-producers.
  [OK]          basic_safe            3   2-domains.
  [OK]          basic_unsafe          0   1-producer-1-consumer.
  [OK]          basic_unsafe          1   1-producer-1-consumer-peek.
  [OK]          basic_unsafe          2   2-producers.
  [OK]          basic_unsafe          3   2-domains.


Full test results in `/src/_build/default/test/michael_scott_queue/_build/_tests/michael_scott_queue_dscheck'.
Test Successful in 0.118s. 8 tests run.
(cd _build/default/test/skiplist && ./dscheck_skiplist.exe)
Testing `DSCheck Skiplist'.
This run has ID `QW85I1S0'.


  [OK]          basic          0   max_height_of.
  [OK]          basic          1   2-mem.
  [OK]          basic          2   2-add-same.
  [OK]          basic          3   2-add.
  [OK]          basic          4   2-remove-same.
  [OK]          basic          5   2-remove.


Full test results in `/src/_build/default/test/skiplist/_build/_tests/DSCheck Skiplist'.
Test Successful in 0.046s. 6 tests run.
(cd _build/default/test/mpmc_relaxed_queue && ./test_mpmc_relaxed_queue.exe)
Testing `Mpmc_queue'.
This run has ID `DWQQGBAC'.


  [OK]          single-thread                        0   is it a queue.
  [OK]          validate items                       0   1 prod. 1 cons.
  [OK]          validate indices under load          0    4 prod. 4 cons.
  [OK]          validate indices under load          1    8 prod. 1 cons.
  [OK]          validate indices under load          2    1 prod. 8 cons.
  [OK]          single-thread-CAS-intf               0   is it a queue.
  [OK]          validate items-CAS-intf              0   1 prod. 1 cons.
  [OK]          single-thread-spinning               0   is it a queue.
  [OK]          validate-items-spinning              0   1 prod. 1 cons.


Full test results in `/src/_build/default/test/mpmc_relaxed_queue/_build/_tests/Mpmc_queue'.
Test Successful in 84.436s. 9 tests run.
(cd _build/default/bench && ./main.exe -brief)
Saturn Relaxed_queue:
  time per message/1 adder, 1 taker (spin):
    308.23 ns
  messages over time/1 adder, 1 taker (spin):
    6.49 M/s
  time per message/1 adder, 2 takers (spin):
    768.79 ns
  messages over time/1 adder, 2 takers (spin):
    3.90 M/s
  time per message/2 adders, 1 taker (spin):
    353.72 ns
  messages over time/2 adders, 1 taker (spin):
    8.48 M/s
  time per message/2 adders, 2 takers (spin):
    517.24 ns
  messages over time/2 adders, 2 takers (spin):
    7.73 M/s
  time per message/1 adder, 1 taker (not lf):
    680.37 ns
  messages over time/1 adder, 1 taker (not lf):
    2.94 M/s
  time per message/1 adder, 2 takers (not lf):
    626.68 ns
  messages over time/1 adder, 2 takers (not lf):
    4.79 M/s
  time per message/2 adders, 1 taker (not lf):
    1233.01 ns
  messages over time/2 adders, 1 taker (not lf):
    2.43 M/s
  time per message/2 adders, 2 takers (not lf):
    1021.44 ns
  messages over time/2 adders, 2 takers (not lf):
    3.92 M/s
  time per message/1 adder, 1 taker (cas):
    509.66 ns
  messages over time/1 adder, 1 taker (cas):
    3.92 M/s
  time per message/1 adder, 2 takers (cas):
    962.98 ns
  messages over time/1 adder, 2 takers (cas):
    3.12 M/s
  time per message/2 adders, 1 taker (cas):
    1005.02 ns
  messages over time/2 adders, 1 taker (cas):
    2.99 M/s
  time per message/2 adders, 2 takers (cas):
    1313.77 ns
  messages over time/2 adders, 2 takers (cas):
    3.04 M/s
Saturn_lockfree Queue:
  time per message/one domain:
    141.82 ns
  messages over time/one domain:
    7.05 M/s
  time per message/1 nb adder, 1 nb taker:
    214.74 ns
  messages over time/1 nb adder, 1 nb taker:
    9.31 M/s
  time per message/1 nb adder, 2 nb takers:
    383.38 ns
  messages over time/1 nb adder, 2 nb takers:
    7.83 M/s
  time per message/2 nb adders, 1 nb taker:
    838.07 ns
  messages over time/2 nb adders, 1 nb taker:
    3.58 M/s
  time per message/2 nb adders, 2 nb takers:
    1441.95 ns
  messages over time/2 nb adders, 2 nb takers:
    2.77 M/s
Saturn_lockfree Single_prod_single_cons_queue:
  time per message/2 workers, capacity 1:
    1933.83 ns
  time per message/2 workers, capacity 1 (unsafe):
    874.43 ns
  messages over time/2 workers, capacity 1:
    1.03 M/s
  messages over time/2 workers, capacity 1 (unsafe):
    2.29 M/s
  time per message/2 workers, capacity 8:
    363.25 ns
  time per message/2 workers, capacity 8 (unsafe):
    495.41 ns
  messages over time/2 workers, capacity 8:
    5.51 M/s
  messages over time/2 workers, capacity 8 (unsafe):
    4.04 M/s
  time per message/2 workers, capacity 64:
    252.96 ns
  time per message/2 workers, capacity 64 (unsafe):
    473.87 ns
  messages over time/2 workers, capacity 64:
    7.91 M/s
  messages over time/2 workers, capacity 64 (unsafe):
    4.22 M/s
  time per message/2 workers, capacity 512:
    271.02 ns
  time per message/2 workers, capacity 512 (unsafe):
    341.31 ns
  messages over time/2 workers, capacity 512:
    7.38 M/s
  messages over time/2 workers, capacity 512 (unsafe):
    5.86 M/s
  time per message/2 workers, capacity 4096:
    105.62 ns
  time per message/2 workers, capacity 4096 (unsafe):
    57.59 ns
  messages over time/2 workers, capacity 4096:
    18.94 M/s
  messages over time/2 workers, capacity 4096 (unsafe):
    34.73 M/s
  time per message/2 workers, capacity 32768:
    139.47 ns
  time per message/2 workers, capacity 32768 (unsafe):
    63.25 ns
  messages over time/2 workers, capacity 32768:
    14.34 M/s
  messages over time/2 workers, capacity 32768 (unsafe):
    31.62 M/s
Saturn_lockfree Size:
  time per operation/1 worker:
    49.01 ns
  operations over time/1 worker:
    20.40 M/s
  time per operation/2 workers:
    44.63 ns
  operations over time/2 workers:
    44.81 M/s
  time per operation/4 workers:
    74.27 ns
  operations over time/4 workers:
    53.86 M/s
Saturn_lockfree Skiplist:
  time per operation/1 workers, 10% mem 45% add 45% rem:
    916.87 ns
  operations over time/1 workers, 10% mem 45% add 45% rem:
    1.09 M/s
  time per operation/2 workers, 10% mem 45% add 45% rem:
    1006.84 ns
  operations over time/2 workers, 10% mem 45% add 45% rem:
    1.99 M/s
  time per operation/4 workers, 10% mem 45% add 45% rem:
    973.45 ns
  operations over time/4 workers, 10% mem 45% add 45% rem:
    4.11 M/s
  time per operation/1 workers, 50% mem 25% add 25% rem:
    814.32 ns
  operations over time/1 workers, 50% mem 25% add 25% rem:
    1.23 M/s
  time per operation/2 workers, 50% mem 25% add 25% rem:
    792.71 ns
  operations over time/2 workers, 50% mem 25% add 25% rem:
    2.52 M/s
  time per operation/4 workers, 50% mem 25% add 25% rem:
    825.03 ns
  operations over time/4 workers, 50% mem 25% add 25% rem:
    4.85 M/s
  time per operation/1 workers, 90% mem 5% add 5% rem:
    621.68 ns
  operations over time/1 workers, 90% mem 5% add 5% rem:
    1.61 M/s
  time per operation/2 workers, 90% mem 5% add 5% rem:
    658.63 ns
  operations over time/2 workers, 90% mem 5% add 5% rem:
    3.04 M/s
  time per operation/4 workers, 90% mem 5% add 5% rem:
    662.09 ns
  operations over time/4 workers, 90% mem 5% add 5% rem:
    6.04 M/s
Saturn_lockfree Stack:
  time per message/one domain:
    55.39 ns
  messages over time/one domain:
    18.05 M/s
  time per message/1 adder, 1 taker:
    92.07 ns
  messages over time/1 adder, 1 taker:
    21.72 M/s
  time per message/1 adder, 2 takers:
    163.87 ns
  messages over time/1 adder, 2 takers:
    18.31 M/s
  time per message/2 adders, 1 taker:
    149.03 ns
  messages over time/2 adders, 1 taker:
    20.13 M/s
  time per message/2 adders, 2 takers:
    333.25 ns
  messages over time/2 adders, 2 takers:
    12.00 M/s
Saturn_lockfree Work_stealing_deque:
  time per spawn/1 worker:
    108.68 ns
  spawns over time/1 worker:
    9.20 M/s
  time per spawn/2 workers:
    124.06 ns
  spawns over time/2 workers:
    16.12 M/s
  time per spawn/4 workers:
    554.90 ns
  spawns over time/4 workers:
    7.21 M/s
  time per spawn/8 workers:
    3170.31 ns
  spawns over time/8 workers:
    2.52 M/s
  time per message/1 adder, 1 taker:
    330.99 ns
  messages over time/1 adder, 1 taker:
    6.04 M/s
  time per message/1 adder, 2 takers:
    734.94 ns
  messages over time/1 adder, 2 takers:
    4.08 M/s
  time per message/1 adder, 4 takers:
    1173.20 ns
  messages over time/1 adder, 4 takers:
    4.26 M/s
  time per message/one domain (FIFO):
    82.42 ns
  messages over time/one domain (FIFO):
    12.13 M/s
  time per message/one domain (LIFO):
    83.89 ns
  messages over time/one domain (LIFO):
    11.92 M/s
(cd _build/default/test/mpsc_queue && ./stm_mpsc_queue.exe)
random seed: 3541407942571042036
generated error fail pass / total     time test name
[]   32    0    0   32 /   32     0.0s Saturn_lockfree.Mpsc_queue sequential
[]   32    0    0   32 /   32    34.9s Saturn_lockfree.Mpsc_queue parallel
[]    3    0    1    2 /   32    47.9s Saturn_lockfree.Mpsc_queue parallel, negative


--- Info -----------------------------------------------------------------------


Negative test Saturn_lockfree.Mpsc_queue parallel, negative failed as expected (21 shrink steps):


                           |             
                     Push_head2626       
                           |             
                .---------------------.
                |                     |             
           Push_head8            Push_head0         


+++ Messages ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++


Messages for test Saturn_lockfree.Mpsc_queue parallel, negative:


  Results incompatible with linearized model


                                                                                                       |                                                 
                                                                                            Push_head2626 : Ok (())                                      
                                                                                                       |                                                 
                                                     .---------------------------------------------------------------------------------------------------.
                                                     |                                                                                                   |                                                 
     Push_head8 : Error (File "src_lockfree/mpsc_queue.ml", line 88, characters 4-10: Assertion failed)                                         Push_head0 : Ok (())                                       


================================================================================
success (ran 3 tests)
(cd _build/default/test/skiplist && ./qcheck_skiplist.exe)
qcheck random seed: 46997076
Testing `QCheck Skiplist'.
This run has ID `4MCIIWIA'.


  [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 `/src/_build/default/test/skiplist/_build/_tests/QCheck Skiplist'.
Test Successful in 107.169s. 7 tests run.
(cd _build/default/test/michael_scott_queue && ./stm_michael_scott_queue.exe)
random seed: 2915730839813846980
generated error fail pass / total     time test name
[]   32    0    0   32 /   32     0.0s Saturn_lockfree.michael_scott_queue_safe sequential
[]   32    0    0   32 /   32    16.9s Saturn_lockfree.michael_scott_queue_safe parallel
================================================================================
success (ran 2 tests)
random seed: 1217592464340767510
generated error fail pass / total     time test name
[]   64    0    0   64 /   64     0.0s Saturn_lockfree.michael_scott_queue_safe sequential
[]   64    0    0   64 /   64    25.2s Saturn_lockfree.michael_scott_queue_safe parallel
================================================================================
success (ran 2 tests)
random seed: 3880738548951318989
generated error fail pass / total     time test name
[]   40    0    0   40 /   40     0.0s Saturn_lockfree.michael_scott_queue_safe sequential
[]   40    0    0   40 /   40    18.2s Saturn_lockfree.michael_scott_queue_safe parallel
================================================================================
success (ran 2 tests)
random seed: 2273116190426587763
generated error fail pass / total     time test name
[]   32    0    0   32 /   32     0.0s Saturn_lockfree.michael_scott_queue_unsafe sequential
[]   32    0    0   32 /   32    20.7s Saturn_lockfree.michael_scott_queue_unsafe parallel
================================================================================
success (ran 2 tests)
random seed: 3305044803790913307
generated error fail pass / total     time test name
[]   60    0    0   60 /   60     0.0s Saturn_lockfree.michael_scott_queue_unsafe sequential
[]   60    0    0   60 /   60    15.0s Saturn_lockfree.michael_scott_queue_unsafe parallel
================================================================================
success (ran 2 tests)
random seed: 1031112650812944242
generated error fail pass / total     time test name
[]   62    0    0   62 /   62     0.0s Saturn_lockfree.michael_scott_queue_unsafe sequential
[ ]   10    0    0   10 /   62     0.4s Saturn_lockfree.michael_scott_queue_unsafe par[]   62    0    0   62 /   62     2.7s Saturn_lockfree.michael_scott_queue_unsafe parallel
================================================================================
success (ran 2 tests)
random seed: 1283915830115911488
generated error fail pass / total     time test name
[]   86    0    0   86 /   86     0.0s Saturn_lockfree.michael_scott_queue_unsafe sequential
[]   86    0    0   86 /   86     1.4s Saturn_lockfree.michael_scott_queue_unsafe parallel
================================================================================
success (ran 2 tests)
random seed: 502883038475649314
generated error fail pass / total     time test name
[]  121    0    0  121 /  121     0.0s Saturn_lockfree.michael_scott_queue_unsafe sequential
[]  121    0    0  121 /  121     3.0s Saturn_lockfree.michael_scott_queue_unsafe parallel
================================================================================
success (ran 2 tests)
random seed: 2879907754601172986
generated error fail pass / total     time test name
[]  144    0    0  144 /  144     0.0s Saturn_lockfree.michael_scott_queue_unsafe sequential
[]  144    0    0  144 /  144     2.6s Saturn_lockfree.michael_scott_queue_unsafe parallel
================================================================================
success (ran 2 tests)
random seed: 188637963761812396
generated error fail pass / total     time test name
[]  161    0    0  161 /  161     0.1s Saturn_lockfree.michael_scott_queue_unsafe sequential
[]  161    0    0  161 /  161     3.3s Saturn_lockfree.michael_scott_queue_unsafe parallel
================================================================================
success (ran 2 tests)
random seed: 2027792884656465726
generated error fail pass / total     time test name
[]  152    0    0  152 /  152     0.0s Saturn_lockfree.michael_scott_queue_unsafe sequential
[]  152    0    0  152 /  152     2.9s Saturn_lockfree.michael_scott_queue_unsafe parallel
================================================================================
success (ran 2 tests)
random seed: 225470118078449303
generated error fail pass / total     time test name
[]  130    0    0  130 /  130     0.0s Saturn_lockfree.michael_scott_queue_unsafe sequential
[]  130    0    0  130 /  130     2.5s Saturn_lockfree.michael_scott_queue_unsafe parallel
================================================================================
success (ran 2 tests)
random seed: 469523764544756207
generated error fail pass / total     time test name
[]   52    0    0   52 /   52     0.0s Saturn_lockfree.michael_scott_queue_unsafe sequential
[]   52    0    0   52 /   52     1.0s Saturn_lockfree.michael_scott_queue_unsafe parallel
================================================================================
success (ran 2 tests)
(cd _build/default/test/size && ./stm_size.exe)
random seed: 793881917403090528
generated error fail pass / total     time test name
[]   32    0    0   32 /   32     0.1s Saturn_lockfree.Size sequential
[]   32    0    0   32 /   32    17.5s Saturn_lockfree.Size parallel
================================================================================
success (ran 2 tests)
random seed: 3996127559193618950
generated error fail pass / total     time test name
[]   64    0    0   64 /   64     0.0s Saturn_lockfree.Size sequential
[]   64    0    0   64 /   64    19.5s Saturn_lockfree.Size parallel
================================================================================
success (ran 2 tests)
random seed: 3148909174017365649
generated error fail pass / total     time test name
[]   58    0    0   58 /   58     0.0s Saturn_lockfree.Size sequential
[]   58    0    0   58 /   58     1.7s Saturn_lockfree.Size parallel
================================================================================
success (ran 2 tests)
random seed: 501085397017360330
generated error fail pass / total     time test name
[]   83    0    0   83 /   83     0.0s Saturn_lockfree.Size sequential
[]   83    0    0   83 /   83     1.9s Saturn_lockfree.Size parallel
================================================================================
success (ran 2 tests)
random seed: 2304032827799244190
generated error fail pass / total     time test name
[]  111    0    0  111 /  111     0.0s Saturn_lockfree.Size sequential
[]  111    0    0  111 /  111     3.6s Saturn_lockfree.Size parallel
================================================================================
success (ran 2 tests)
random seed: 751572631697413674
generated error fail pass / total     time test name
[]  121    0    0  121 /  121     0.2s Saturn_lockfree.Size sequential
[]  121    0    0  121 /  121     3.4s Saturn_lockfree.Size parallel
================================================================================
success (ran 2 tests)
random seed: 303498693920896400
generated error fail pass / total     time test name
[]  115    0    0  115 /  115     0.1s Saturn_lockfree.Size sequential
[]  115    0    0  115 /  115     5.8s Saturn_lockfree.Size parallel
================================================================================
success (ran 2 tests)
random seed: 1721119017637780967
generated error fail pass / total     time test name
[]   64    0    0   64 /   64     0.0s Saturn_lockfree.Size sequential
[]   64    0    0   64 /   64     2.1s Saturn_lockfree.Size parallel
================================================================================
success (ran 2 tests)
random seed: 1445326660082045021
generated error fail pass / total     time test name
[]   44    0    0   44 /   44     0.1s Saturn_lockfree.Size sequential
[]   44    0    0   44 /   44     1.1s Saturn_lockfree.Size parallel
================================================================================
success (ran 2 tests)
random seed: 448017200121296958
generated error fail pass / total     time test name
[]   32    0    0   32 /   32     0.0s Saturn_lockfree.Size sequential
[]   32    0    0   32 /   32     1.5s Saturn_lockfree.Size parallel
================================================================================
success (ran 2 tests)
random seed: 619839731733801056
generated error fail pass / total     time test name
[]   32    0    0   32 /   32     0.0s Saturn_lockfree.Size sequential
[]   32    0    0   32 /   32     0.7s Saturn_lockfree.Size parallel
================================================================================
success (ran 2 tests)
random seed: 167700802809510549
generated error fail pass / total     time test name
[]   32    0    0   32 /   32     0.0s Saturn_lockfree.Size sequential
[]   32    0    0   32 /   32     1.7s Saturn_lockfree.Size parallel
================================================================================
success (ran 2 tests)
(cd _build/default/test/spsc_queue && ./stm_spsc_queue.exe)
random seed: 2619611161679288850
generated error fail pass / total     time test name
[]   32    0    0   32 /   32     0.0s Saturn_lockfree.Spsc_queue sequential
[]   32    0    0   32 /   32    12.3s Saturn_lockfree.Spsc_queue parallel
[]    1    0    1    0 /   32    63.9s Saturn_lockfree.Spsc_queue parallel, negative


--- Info -----------------------------------------------------------------------


Negative test Saturn_lockfree.Spsc_queue parallel, negative failed as expected (7 shrink steps):


                       |                 
                     Push 5              
                       |                 
            .---------------------.
            |                     |                 
           Peek                  Pop                


+++ Messages ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++


Messages for test Saturn_lockfree.Spsc_queue parallel, negative:


  Results incompatible with linearized model


                                                       |                        
                                               Push 5 : Ok (())                 
                                                       |                        
                             .--------------------------------------------------.
                             |                                                  |                        
     Peek : Error (Invalid_argument("option is None"))                    Pop : Ok (5)                   


================================================================================
success (ran 3 tests)
random seed: 3424152834975237182
generated error fail pass / total     time test name
[]   32    0    0   32 /   32     0.0s Saturn_lockfree.Spsc_queue_unsafe sequential
[]   32    0    0   32 /   32     2.1s Saturn_lockfree.Spsc_queue_unsafe parallel
[]    3    0    1    2 /   32     0.9s Saturn_lockfree.Spsc_queue_unsafe parallel, negative


--- Info -----------------------------------------------------------------------


Negative test Saturn_lockfree.Spsc_queue_unsafe parallel, negative failed as expected (17 shrink steps):


                        |                
                     Push 308            
                        |                
             .---------------------.
             |                     |                
            Peek                  Pop               


+++ Messages ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++


Messages for test Saturn_lockfree.Spsc_queue_unsafe parallel, negative:


  Results incompatible with linearized model


                                |                          
                        Push 308 : Ok (())                 
                                |                          
             .------------------------------------.
             |                                    |                          
       Peek : Ok (0)                        Pop : Ok (308)                   


================================================================================
success (ran 3 tests)
random seed: 723902623298216828
generated error fail pass / total     time test name
[]   64    0    0   64 /   64     0.0s Saturn_lockfree.Spsc_queue_unsafe sequential
[]   64    0    0   64 /   64     2.3s Saturn_lockfree.Spsc_queue_unsafe parallel
[]    1    0    1    0 /   64     1.4s Saturn_lockfree.Spsc_queue_unsafe parallel, negative


--- Info -----------------------------------------------------------------------


Negative test Saturn_lockfree.Spsc_queue_unsafe parallel, negative failed as expected (30 shrink steps):


                       |                 
                     Push 2              
                       |                 
            .---------------------.
            |                     |                 
           Pop                   Pop                


+++ Messages ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++


Messages for test Saturn_lockfree.Spsc_queue_unsafe parallel, negative:


  Results incompatible with linearized model


                               |                           
                        Push 2 : Ok (())                   
                               |                           
            .------------------------------------.
            |                                    |                           
       Pop : Ok (2)                         Pop : Ok (2)                     


================================================================================
success (ran 3 tests)
random seed: 1670547939379237469
generated error fail pass / total     time test name
[]  128    0    0  128 /  128     0.0s Saturn_lockfree.Spsc_queue_unsafe sequential
[]  128    0    0  128 /  128     4.1s Saturn_lockfree.Spsc_queue_unsafe parallel
[]    1    0    1    0 /  128     2.1s Saturn_lockfree.Spsc_queue_unsafe parallel, negative


--- Info -----------------------------------------------------------------------


Negative test Saturn_lockfree.Spsc_queue_unsafe parallel, negative failed as expected (33 shrink steps):


                        |                
                     Push 69             
                        |                
             .---------------------.
             |                     |                
           Peek                   Pop               


+++ Messages ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++


Messages for test Saturn_lockfree.Spsc_queue_unsafe parallel, negative:


  Results incompatible with linearized model


                                |                          
                        Push 69 : Ok (())                  
                                |                          
             .------------------------------------.
             |                                    |                          
       Peek : Ok (0)                        Pop : Ok (69)                    


================================================================================
success (ran 3 tests)
random seed: 3049610473304509844
generated error fail pass / total     time test name
[]  256    0    0  256 /  256     0.1s Saturn_lockfree.Spsc_queue_unsafe sequential
[]  256    0    0  256 /  256     8.6s Saturn_lockfree.Spsc_queue_unsafe parallel
[]    1    0    1    0 /  256     0.3s Saturn_lockfree.Spsc_queue_unsafe parallel, negative


--- Info -----------------------------------------------------------------------


Negative test Saturn_lockfree.Spsc_queue_unsafe parallel, negative failed as expected (9 shrink steps):


                        |                
                     Push 18             
                        |                
             .---------------------.
             |                     |                
            Pop                  Peek               


+++ Messages ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++


Messages for test Saturn_lockfree.Spsc_queue_unsafe parallel, negative:


  Results incompatible with linearized model


                                |                          
                        Push 18 : Ok (())                  
                                |                          
             .------------------------------------.
             |                                    |                          
       Pop : Ok (18)                        Peek : Ok (0)                    


================================================================================
success (ran 3 tests)
random seed: 3466074342641297951
generated error fail pass / total     time test name
[]  512    0    0  512 /  512     0.1s Saturn_lockfree.Spsc_queue_unsafe sequential
[]  512    0    0  512 /  512    17.9s Saturn_lockfree.Spsc_queue_unsafe parallel
[]    1    0    1    0 /  512     0.7s Saturn_lockfree.Spsc_queue_unsafe parallel, negative


--- Info -----------------------------------------------------------------------


Negative test Saturn_lockfree.Spsc_queue_unsafe parallel, negative failed as expected (8 shrink steps):


                        |                
                     Push 47             
                        |                
             .---------------------.
             |                     |                
           Peek                   Pop               


+++ Messages ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++


Messages for test Saturn_lockfree.Spsc_queue_unsafe parallel, negative:


  Results incompatible with linearized model


                                |                          
                        Push 47 : Ok (())                  
                                |                          
             .------------------------------------.
             |                                    |                          
       Peek : Ok (0)                        Pop : Ok (47)                    


================================================================================
success (ran 3 tests)
random seed: 4471799039089560681
generated error fail pass / total     time test name
[]   32    0    0   32 /   32     0.0s Saturn_lockfree.Spsc_queue_unsafe sequential
[]   32    0    0   32 /   32     1.2s Saturn_lockfree.Spsc_queue_unsafe parallel
[]    1    0    1    0 /   32     1.0s Saturn_lockfree.Spsc_queue_unsafe parallel, negative


--- Info -----------------------------------------------------------------------


Negative test Saturn_lockfree.Spsc_queue_unsafe parallel, negative failed as expected (32 shrink steps):


                       |                 
                     Push 7              
                       |                 
            .---------------------.
            |                     |                 
           Peek                  Pop                


+++ Messages ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++


Messages for test Saturn_lockfree.Spsc_queue_unsafe parallel, negative:


  Results incompatible with linearized model


                               |                           
                        Push 7 : Ok (())                   
                               |                           
            .------------------------------------.
            |                                    |                           
      Peek : Ok (0)                         Pop : Ok (7)                     


================================================================================
success (ran 3 tests)
2024-09-10 11:42.24 ---> saved as "b2e93c2b4852b0bc2b986c416d2b61ddf2429b844fa6b9892115640ac4045e3f"
Job succeeded
2024-09-10 11:51.27: Job succeeded