OUnitRunner.GenericWorkerSourceBuild worker based runner.
type message_from_worker = | AckExit| Log of OUnitTest.log_event_t| Lock of int| Unlock of int| TestDone of OUnitTest.result_full * OUnitTest.result_listtype map_test_cases =
(OUnitTest.path * OUnitTest.test_length * (OUnitTest.ctxt -> unit)) MapPath.tval main_worker_loop :
yield:(unit -> 'a) ->
shard_id:string ->
worker_log_file:bool ->
OUnitConf.conf ->
worker_channel ->
map_test_cases ->
unittype 'a worker = {channel : (message_to_worker, message_from_worker) channel;close_worker : unit -> string option;select_fd : 'a;shard_id : string;is_running : unit -> bool;}type 'a worker_creator =
shard_id:string ->
master_id:string ->
worker_log_file:bool ->
OUnitConf.conf ->
map_test_cases ->
'a worker