File: pyml_tests_common.mli

package info (click to toggle)
pyml 20220905-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 624 kB
  • sloc: ml: 7,531; ansic: 1,793; makefile: 327; sh: 13
file content (14 lines) | stat: -rw-r--r-- 287 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
type status =
  | Passed
  | Failed of string
  | Disabled of string

val add_test: title:string -> (unit -> status) -> unit

val use_version: (int option * int option) ref

val enable_only_on_unix: ('a -> status) -> 'a -> status

val launch_tests : unit -> unit

val main: unit -> unit