aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEmilio Jesus Gallego Arias2019-03-01 19:32:08 +0100
committerEmilio Jesus Gallego Arias2019-03-01 19:32:08 +0100
commit53240d3248ce1fb36ab99036186eda9051fbb068 (patch)
tree9be346deef1c71458aab59da474a4eb2d8a19579 /lib
parent1e03d1e666e74b95b9936bfdd6f04d54c607c37f (diff)
parentf13a56cad95dae05b63b735fd6eb6bd4596f9a00 (diff)
Merge PR #9676: Move test_mode from Flags to Vernacentries (use point)
Reviewed-by: ejgallego
Diffstat (limited to 'lib')
-rw-r--r--lib/flags.ml2
-rw-r--r--lib/flags.mli4
2 files changed, 0 insertions, 6 deletions
diff --git a/lib/flags.ml b/lib/flags.ml
index 1195b8caf1..6718e7a954 100644
--- a/lib/flags.ml
+++ b/lib/flags.ml
@@ -43,8 +43,6 @@ let with_options ol f x =
let record_aux_file = ref false
-let test_mode = ref false
-
let async_proofs_worker_id = ref "master"
let async_proofs_is_worker () = !async_proofs_worker_id <> "master"
diff --git a/lib/flags.mli b/lib/flags.mli
index 2b4446a1db..bf8846417b 100644
--- a/lib/flags.mli
+++ b/lib/flags.mli
@@ -35,10 +35,6 @@
be eventually removed by cleanups such as PR#1103 *)
val record_aux_file : bool ref
-(* Flag set when the test-suite is called. Its only effect to display
- verbose information for `Fail` *)
-val test_mode : bool ref
-
(** Async-related flags *)
val async_proofs_worker_id : string ref
val async_proofs_is_worker : unit -> bool