Skip to content

Commit 90eabb3

Browse files
authored
Merge pull request #282 from ocaml-multicore/stm-reduce-retries
Reduce STM_domain retries
2 parents b6a8575 + 606fa88 commit 90eabb3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/STM_domain.ml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,15 @@ module Make (Spec: Spec) = struct
3939
let rep_count = 25 in
4040
let seq_len,par_len = 20,12 in
4141
let max_gen = 3*count in (* precond filtering may require extra generation: max. 3*count though *)
42-
Test.make ~retries:15 ~max_gen ~count ~name
42+
Test.make ~retries:10 ~max_gen ~count ~name
4343
(arb_cmds_triple seq_len par_len)
4444
(repeat rep_count agree_prop_par) (* 25 times each, then 25 * 15 times when shrinking *)
4545

4646
let neg_agree_test_par ~count ~name =
4747
let rep_count = 25 in
4848
let seq_len,par_len = 20,12 in
4949
let max_gen = 3*count in (* precond filtering may require extra generation: max. 3*count though *)
50-
Test.make_neg ~retries:15 ~max_gen ~count ~name
50+
Test.make_neg ~retries:10 ~max_gen ~count ~name
5151
(arb_cmds_triple seq_len par_len)
5252
(repeat rep_count agree_prop_par) (* 25 times each, then 25 * 15 times when shrinking *)
5353
end

0 commit comments

Comments
 (0)