aboutsummaryrefslogtreecommitdiff
path: root/bin/args.mli
diff options
context:
space:
mode:
authorChimrod <>2023-11-04 17:16:16 +0100
committerChimrod <>2023-11-04 17:16:16 +0100
commit6ada3862d96f82e44b3b19dd84d08cbb8c6a6006 (patch)
treee2fa4e223c4ce0f3945af76f9e82e887b307a95b /bin/args.mli
parent673da2554d3e667e0a62d5c7bbf30999f1295dc1 (diff)
Allow test to be enabled or disabled by command line
Diffstat (limited to 'bin/args.mli')
-rw-r--r--bin/args.mli5
1 files changed, 4 insertions, 1 deletions
diff --git a/bin/args.mli b/bin/args.mli
index cffd0d0..fb15542 100644
--- a/bin/args.mli
+++ b/bin/args.mli
@@ -3,4 +3,7 @@ type filters = { level : Qsp_syntax.Report.level option }
type t = { reset_line : bool; filters : filters }
(** All the arguments given from the command line *)
-val parse : list_tests:(Format.formatter -> unit) -> string list * t
+val parse :
+ modules:Qsp_syntax.Check.t list ->
+ list_tests:(Format.formatter -> unit) ->
+ string list * t