Skip to content

Commit fd1e200

Browse files
committed
Rename "Lin_api" into "Lin DSL" in test descriptions
1 parent 0ddb5a9 commit fd1e200

File tree

13 files changed

+29
-29
lines changed

13 files changed

+29
-29
lines changed

src/array/lin_tests_dsl.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ end
2929
module AT_domain = Lin_domain.Make(AConf)
3030
;;
3131
QCheck_base_runner.run_tests_main [
32-
AT_domain.neg_lin_test ~count:1000 ~name:"Lin_api Array test with Domain";
32+
AT_domain.neg_lin_test ~count:1000 ~name:"Lin DSL Array test with Domain";
3333
]

src/atomic/lin_tests_dsl.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ module Lin_atomic_domain = Lin_domain.Make (Atomic_spec)
1717

1818
let () =
1919
QCheck_base_runner.run_tests_main
20-
[ Lin_atomic_domain.lin_test ~count:1000 ~name:"Lin_api Atomic test with Domain";
20+
[ Lin_atomic_domain.lin_test ~count:1000 ~name:"Lin DSL Atomic test with Domain";
2121
]

src/bigarray/lin_tests_dsl.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ module BA1T = Lin_domain.Make(BA1Conf)
2929

3030
let _ =
3131
QCheck_base_runner.run_tests_main [
32-
BA1T.neg_lin_test ~count:5000 ~name:"Lin_api Bigarray.Array1 (of ints) test with Domain";
32+
BA1T.neg_lin_test ~count:5000 ~name:"Lin DSL Bigarray.Array1 (of ints) test with Domain";
3333
]

src/bytes/lin_tests_dsl.ml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ module BT_domain = Lin_domain.Make(BConf)
2121
module BT_thread = Lin_thread.Make(BConf)
2222
;;
2323
QCheck_base_runner.run_tests_main [
24-
BT_domain.lin_test ~count:1000 ~name:"Lin_api Bytes test with Domain";
25-
BT_thread.lin_test ~count:1000 ~name:"Lin_api Bytes test with Thread";
24+
BT_domain.lin_test ~count:1000 ~name:"Lin DSL Bytes test with Domain";
25+
BT_thread.lin_test ~count:1000 ~name:"Lin DSL Bytes test with Thread";
2626
]

src/ephemeron/lin_tests_dsl.ml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@ module ET_domain = Lin_domain.Make(EConf)
4242
module ET_thread = Lin_thread.Make(EConf)
4343
;;
4444
QCheck_base_runner.run_tests_main [
45-
ET_domain.neg_lin_test ~count:1000 ~name:"Lin_api Ephemeron test with Domain";
46-
ET_thread.lin_test ~count:250 ~name:"Lin_api Ephemeron test with Thread";
45+
ET_domain.neg_lin_test ~count:1000 ~name:"Lin DSL Ephemeron test with Domain";
46+
ET_thread.lin_test ~count:250 ~name:"Lin DSL Ephemeron test with Thread";
4747
]

src/floatarray/lin_tests_dsl.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@ module FAT = Lin_domain.Make(FAConf)
3737

3838
let _ =
3939
QCheck_base_runner.run_tests_main [
40-
FAT.neg_lin_test ~count:1000 ~name:"Lin_api Float.Array test with Domain";
40+
FAT.neg_lin_test ~count:1000 ~name:"Lin DSL Float.Array test with Domain";
4141
]

src/hashtbl/lin_tests_dsl.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ end
2626
module HT_domain = Lin_domain.Make(HConf)
2727
;;
2828
QCheck_base_runner.run_tests_main [
29-
HT_domain.neg_lin_test ~count:1000 ~name:"Lin_api Hashtbl test with Domain";
29+
HT_domain.neg_lin_test ~count:1000 ~name:"Lin DSL Hashtbl test with Domain";
3030
]

src/lazy/lin_tests_dsl.ml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ module LTfromfun_domain = Lin_domain.Make(LTfromfunAPI)
6767
;;
6868
QCheck_base_runner.run_tests_main
6969
(let count = 100 in
70-
[LTlazy_domain.neg_lin_test ~count ~name:"Lin_api Lazy test with Domain";
71-
LTfromval_domain.lin_test ~count ~name:"Lin_api Lazy test with Domain from_val";
72-
LTfromfun_domain.neg_lin_test ~count ~name:"Lin_api Lazy test with Domain from_fun";
70+
[LTlazy_domain.neg_lin_test ~count ~name:"Lin DSL Lazy test with Domain";
71+
LTfromval_domain.lin_test ~count ~name:"Lin DSL Lazy test with Domain from_val";
72+
LTfromfun_domain.neg_lin_test ~count ~name:"Lin DSL Lazy test with Domain from_fun";
7373
])

src/neg_tests/dune

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
lin_tests_effect.exe ;; currently not run on CI
1616
lin_tests_thread_ref.exe ;; currently disabled under bytecode mode
1717
lin_tests_thread_conclist.exe
18-
;; Lin_api tests
18+
;; Lin DSL tests
1919
lin_tests_dsl_domain.exe
2020
lin_tests_dsl_effect.exe
2121
lin_tests_dsl_thread.exe)) ;; currently not run on CI

src/neg_tests/lin_tests_dsl_domain.ml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ open Lin_tests_dsl_common
55
;;
66
QCheck_base_runner.run_tests_main
77
(let count = 10000 in
8-
[RT_int_domain.neg_lin_test ~count ~name:"Lin_api ref int test with Domain";
9-
RT_int64_domain.neg_lin_test ~count ~name:"Lin_api ref int64 test with Domain";
10-
CLT_int_domain.neg_lin_test ~count ~name:"Lin_api CList int test with Domain";
11-
CLT_int64_domain.neg_lin_test ~count ~name:"Lin_api CList int64 test with Domain"])
8+
[RT_int_domain.neg_lin_test ~count ~name:"Lin DSL ref int test with Domain";
9+
RT_int64_domain.neg_lin_test ~count ~name:"Lin DSL ref int64 test with Domain";
10+
CLT_int_domain.neg_lin_test ~count ~name:"Lin DSL CList int test with Domain";
11+
CLT_int64_domain.neg_lin_test ~count ~name:"Lin DSL CList int64 test with Domain"])

src/neg_tests/lin_tests_dsl_effect.ml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -83,13 +83,13 @@ module CLT_int64'_effect = Lin_effect.Make(CList_spec_int64')
8383
QCheck_base_runner.run_tests_main
8484
(let count = 20_000 in [
8585
(* We don't expect the first four tests to fail as each `cmd` is completed before a `Yield` *)
86-
RT_int_effect.lin_test ~count ~name:"Lin_api ref int test with Effect";
87-
RT_int64_effect.lin_test ~count ~name:"Lin_api ref int64 test with Effect";
88-
CLT_int_effect.lin_test ~count ~name:"Lin_api CList int test with Effect";
89-
CLT_int64_effect.lin_test ~count ~name:"Lin_api CList int64 test with Effect";
86+
RT_int_effect.lin_test ~count ~name:"Lin DSL ref int test with Effect";
87+
RT_int64_effect.lin_test ~count ~name:"Lin DSL ref int64 test with Effect";
88+
CLT_int_effect.lin_test ~count ~name:"Lin DSL CList int test with Effect";
89+
CLT_int64_effect.lin_test ~count ~name:"Lin DSL CList int64 test with Effect";
9090
(* These next four tests are negative - and are expected to fail with exception `Unhandled` *)
91-
RT_int'_effect.neg_lin_test ~count ~name:"negative Lin_api ref int test with Effect";
92-
RT_int64'_effect.neg_lin_test ~count ~name:"negative Lin_api ref int64 test with Effect";
93-
CLT_int'_effect.neg_lin_test ~count ~name:"negative Lin_api CList int test with Effect";
94-
CLT_int64'_effect.neg_lin_test ~count ~name:"negative Lin_api CList int64 test with Effect"
91+
RT_int'_effect.neg_lin_test ~count ~name:"negative Lin DSL ref int test with Effect";
92+
RT_int64'_effect.neg_lin_test ~count ~name:"negative Lin DSL ref int64 test with Effect";
93+
CLT_int'_effect.neg_lin_test ~count ~name:"negative Lin DSL CList int test with Effect";
94+
CLT_int64'_effect.neg_lin_test ~count ~name:"negative Lin DSL CList int64 test with Effect"
9595
])

src/queue/lin_tests_dsl.ml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ module Lin_queue_thread = Lin_thread.Make(Queue_spec)
2222

2323
let () =
2424
QCheck_base_runner.run_tests_main [
25-
Lin_queue_domain.neg_lin_test ~count:1000 ~name:"Lin_api Queue test with Domain";
26-
Lin_queue_thread.lin_test ~count:250 ~name:"Lin_api Queue test with Thread";
25+
Lin_queue_domain.neg_lin_test ~count:1000 ~name:"Lin DSL Queue test with Domain";
26+
Lin_queue_thread.lin_test ~count:250 ~name:"Lin DSL Queue test with Thread";
2727
]

src/stack/lin_tests_dsl.ml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ module Stack_thread = Lin_thread.Make(Stack_spec)
2222

2323
let () =
2424
QCheck_base_runner.run_tests_main [
25-
Stack_domain.neg_lin_test ~count:1000 ~name:"Lin_api Stack test with Domain";
26-
Stack_thread.lin_test ~count:250 ~name:"Lin_api Stack test with Thread";
25+
Stack_domain.neg_lin_test ~count:1000 ~name:"Lin DSL Stack test with Domain";
26+
Stack_thread.lin_test ~count:250 ~name:"Lin DSL Stack test with Thread";
2727
]

0 commit comments

Comments
 (0)