ocaml-containers/tests/thread/t.ml
Simon Cruanes 3e105434d9
add CCLocal_storage to containers-thread
Basic local storage emulation using an atomic-protected map. The goal
is for this to work both with 4.xx threads, 5.xx domains, and 5.xx
threads running on a given domain.
2022-09-14 18:49:46 -04:00

10 lines
245 B
OCaml

Containers_testlib.run_all ~descr:"containers-thread"
[
T_bq.Test.get ();
T_lock.Test.get ();
T_pool.Test.get ();
T_semaphore.Test.get ();
T_thread.Test.get ();
T_timer.Test.get ();
T_local_storage.Test.get ();
]