diff options
author | polwex <polwex@sortug.com> | 2025-10-06 04:03:14 +0700 |
---|---|---|
committer | polwex <polwex@sortug.com> | 2025-10-06 04:03:14 +0700 |
commit | 24eac75c69b3d74388bbbc8ee2b6792e7590e4c6 (patch) | |
tree | 3e3a22dde0d977dca4b28fc92ada0faea24990f7 /ocaml/test/dune | |
parent | fd51dfdccf7b565e4214fe47a1420a9990fab342 (diff) |
did this madman really implement parallelism on urbit
Diffstat (limited to 'ocaml/test/dune')
-rw-r--r-- | ocaml/test/dune | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/ocaml/test/dune b/ocaml/test/dune index b8cde90..ff3f67c 100644 --- a/ocaml/test/dune +++ b/ocaml/test/dune @@ -41,3 +41,28 @@ (executable (name test_hex) (libraries nock_lib)) + +(executable + (name test_eventlog) + (modules test_eventlog) + (libraries nock_lib eio_main)) + +(executable + (name test_state) + (modules test_state) + (libraries nock_lib eio_main unix)) + +(executable + (name test_multicore) + (modules test_multicore) + (libraries nock_lib eio_main unix)) + +(executable + (name test_runtime) + (modules test_runtime) + (libraries nock_lib io_drivers eio_main unix)) + +(executable + (name test_parallel_nock) + (modules test_parallel_nock) + (libraries nock_lib eio_main unix domainslib)) |