Skip to content

Commit 8094344

Browse files
committed
reduce Bytes Thread test count
1 parent 6bb27f5 commit 8094344

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/bytes/lin_tests_dsl.ml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ module BConf = struct
99
open Lin_api
1010
let int = nat_small
1111
(*let int = int_bound 10*)
12+
1213
let api = [
1314
val_ "Bytes.length" Bytes.length (t @-> returning int);
1415
val_ "Bytes.get" Bytes.get (t @-> int @-> returning_or_exc char);
@@ -34,5 +35,5 @@ Util.set_ci_printing ()
3435
;;
3536
QCheck_base_runner.run_tests_main [
3637
BT.neg_lin_test `Domain ~count:1000 ~name:"Lin_api Bytes test with Domain";
37-
BT.lin_test `Thread ~count:1000 ~name:"Lin_api Bytes test with Thread";
38+
BT.lin_test `Thread ~count:250 ~name:"Lin_api Bytes test with Thread";
3839
]

0 commit comments

Comments
 (0)