package ounit

  1. Overview
  2. Docs

Use processes to run several tests in parallel. * * Run processes that handle running tests. The processes read test, execute * it, and communicate back to the master the log. * * This need to be done in another process because ocaml Threads are not truly * concurrent. Moreover we cannot use Unix.fork because it's not portable

val make_channel : string -> ('a -> string) -> ('b -> string) -> Unix.file_descr -> Unix.file_descr -> ('b, 'a) OUnitRunner.GenericWorker.channel
val processes_grace_period : (int, unit -> unit) Hashtbl.t -> float
val processes_kill_period : (int, unit -> unit) Hashtbl.t -> float
val init : unit -> unit