|
6 | 6 | (package multicoretests) |
7 | 7 | (deps |
8 | 8 | ;; STM tests |
9 | | - ref_stm_seq_tests.exe |
10 | | - ref_stm_dom_tests.exe |
11 | | - ref_stm_thread_tests.exe |
12 | | - conclist_stm_tests.exe |
| 9 | + stm_tests_sequential_ref.exe |
| 10 | + stm_tests_domain_ref.exe |
| 11 | + stm_tests_thread_ref.exe ;; currently disabled under bytecode mode |
| 12 | + stm_tests_conclist.exe |
13 | 13 | ;; Lin tests |
14 | | - domain_lin_tests.exe ;; currently not run on CI |
15 | | - effect_lin_tests.exe ;; currently not run on CI |
16 | | - thread_lin_tests.exe |
| 14 | + lin_tests_domain.exe ;; currently not run on CI |
| 15 | + lin_tests_effect.exe ;; currently not run on CI |
| 16 | + lin_tests_thread_ref.exe ;; currently disabled under bytecode mode |
| 17 | + lin_tests_thread_conclist.exe |
17 | 18 | ;; Lin_api tests |
18 | | - domain_lin_tests_dsl.exe |
19 | | - effect_lin_tests_dsl.exe |
20 | | - thread_lin_tests_dsl.exe)) ;; currently not run on CI |
| 19 | + lin_tests_dsl_domain.exe |
| 20 | + lin_tests_dsl_effect.exe |
| 21 | + lin_tests_dsl_thread.exe)) ;; currently not run on CI |
21 | 22 |
|
22 | 23 | (library |
23 | | - (name ref_stm_spec) |
24 | | - (modules ref_stm_spec) |
| 24 | + (name stm_tests_spec_ref) |
| 25 | + (modules stm_tests_spec_ref) |
25 | 26 | (libraries qcheck qcheck-stm.base) |
26 | 27 | (preprocess (pps ppx_deriving.show ppx_deriving.eq))) |
27 | 28 |
|
28 | 29 | (executable |
29 | | - (name ref_stm_seq_tests) |
30 | | - (modules ref_stm_seq_tests) |
31 | | - (libraries ref_stm_spec qcheck-stm.sequential)) |
| 30 | + (name stm_tests_sequential_ref) |
| 31 | + (modules stm_tests_sequential_ref) |
| 32 | + (libraries stm_tests_spec_ref qcheck-stm.sequential)) |
32 | 33 |
|
33 | 34 | (executable |
34 | | - (name ref_stm_dom_tests) |
35 | | - (modules ref_stm_dom_tests) |
36 | | - (libraries ref_stm_spec qcheck-stm.domain)) |
| 35 | + (name stm_tests_domain_ref) |
| 36 | + (modules stm_tests_domain_ref) |
| 37 | + (libraries stm_tests_spec_ref qcheck-stm.domain)) |
37 | 38 |
|
38 | 39 | (executable |
39 | | - (name ref_stm_thread_tests) |
40 | | - (modules ref_stm_thread_tests) |
41 | | - (libraries ref_stm_spec qcheck-stm.thread)) |
| 40 | + (name stm_tests_thread_ref) |
| 41 | + (modules stm_tests_thread_ref) |
| 42 | + (libraries stm_tests_spec_ref qcheck-stm.thread)) |
42 | 43 |
|
43 | 44 | (rule |
44 | 45 | (alias runtest) |
45 | 46 | (package multicoretests) |
46 | | - (deps ref_stm_seq_tests.exe) |
| 47 | + (deps stm_tests_sequential_ref.exe) |
47 | 48 | (action (run ./%{deps} --verbose))) |
48 | 49 |
|
49 | 50 | (rule |
50 | 51 | (alias runtest) |
51 | 52 | (package multicoretests) |
52 | | - (deps ref_stm_dom_tests.exe) |
| 53 | + (deps stm_tests_domain_ref.exe) |
53 | 54 | (action (run ./%{deps} --verbose))) |
54 | 55 |
|
55 | 56 | (rule |
56 | 57 | (alias runtest) |
57 | 58 | (package multicoretests) |
58 | | - (deps ref_stm_thread_tests.exe) |
| 59 | + (deps stm_tests_thread_ref.exe) |
59 | 60 | (action (run ./%{deps} --verbose))) |
60 | 61 |
|
61 | 62 | (library |
62 | 63 | (name CList) |
63 | 64 | (modules CList)) |
64 | 65 |
|
65 | 66 | (executable |
66 | | - (name conclist_stm_tests) |
67 | | - (modules conclist_stm_tests) |
| 67 | + (name stm_tests_conclist) |
| 68 | + (modules stm_tests_conclist) |
68 | 69 | (libraries CList qcheck-stm.sequential qcheck-stm.domain) |
69 | 70 | (preprocess (pps ppx_deriving.show))) |
70 | 71 |
|
71 | 72 | (rule |
72 | 73 | (alias runtest) |
73 | 74 | (package multicoretests) |
74 | | - (deps conclist_stm_tests.exe) |
| 75 | + (deps stm_tests_conclist.exe) |
75 | 76 | (action (run ./%{deps} --verbose))) |
76 | 77 |
|
77 | 78 |
|
78 | 79 | ;; Linearizability tests of ref and Clist |
79 | 80 |
|
80 | 81 |
|
81 | 82 | (library |
82 | | - (name lin_tests_common_dsl) |
83 | | - (modules lin_tests_common_dsl) |
| 83 | + (name lin_tests_dsl_common) |
| 84 | + (modules lin_tests_dsl_common) |
84 | 85 | (libraries lin CList)) |
85 | 86 |
|
86 | 87 | (library |
|
90 | 91 | (preprocess (pps ppx_deriving_qcheck ppx_deriving.show ppx_deriving.eq))) |
91 | 92 |
|
92 | 93 | (executables |
93 | | - (names domain_lin_tests_dsl thread_lin_tests_dsl) |
94 | | - (modules domain_lin_tests_dsl thread_lin_tests_dsl) |
| 94 | + (names lin_tests_dsl_domain lin_tests_dsl_thread) |
| 95 | + (modules lin_tests_dsl_domain lin_tests_dsl_thread) |
95 | 96 | (flags (:standard -w -27)) |
96 | | - (libraries lin_tests_common_dsl)) |
| 97 | + (libraries lin_tests_dsl_common)) |
97 | 98 |
|
98 | 99 | (executable |
99 | | - (name effect_lin_tests_dsl) |
100 | | - (modules effect_lin_tests_dsl) |
| 100 | + (name lin_tests_dsl_effect) |
| 101 | + (modules lin_tests_dsl_effect) |
101 | 102 | (flags (:standard -w -27)) |
102 | | - (libraries lin_tests_common_dsl)) |
| 103 | + (libraries lin_tests_dsl_common)) |
103 | 104 |
|
104 | 105 | (rule |
105 | 106 | (alias runtest) |
106 | 107 | (package multicoretests) |
107 | | - (deps domain_lin_tests_dsl.exe) |
| 108 | + (deps lin_tests_dsl_domain.exe) |
108 | 109 | (action (run ./%{deps} --verbose))) |
109 | 110 |
|
110 | 111 | ; (rule |
111 | 112 | ; (alias runtest) |
112 | 113 | ; (package multicoretests) |
113 | | -; (deps thread_lin_tests_dsl.exe) |
| 114 | +; (deps lin_tests_dsl_thread.exe) |
114 | 115 | ; (action (run ./%{deps} --verbose))) |
115 | 116 |
|
116 | 117 | (rule |
117 | 118 | (alias runtest) |
118 | 119 | (package multicoretests) |
119 | | - (deps effect_lin_tests_dsl.exe) |
| 120 | + (deps lin_tests_dsl_effect.exe) |
120 | 121 | (action (run ./%{deps} --verbose))) |
121 | 122 |
|
122 | 123 | (executables |
123 | | - (names domain_lin_tests thread_lin_tests) |
124 | | - (modules domain_lin_tests thread_lin_tests) |
| 124 | + (names lin_tests_domain lin_tests_thread_ref lin_tests_thread_conclist) |
| 125 | + (modules lin_tests_domain lin_tests_thread_ref lin_tests_thread_conclist) |
125 | 126 | (flags (:standard -w -27)) |
126 | 127 | (libraries lin_tests_common)) |
127 | 128 |
|
128 | 129 | (executable |
129 | | - (name effect_lin_tests) |
130 | | - (modules effect_lin_tests) |
| 130 | + (name lin_tests_effect) |
| 131 | + (modules lin_tests_effect) |
131 | 132 | (flags (:standard -w -27)) |
132 | 133 | (libraries lin_tests_common) |
133 | 134 | (preprocess (pps ppx_deriving.show ppx_deriving.eq))) |
134 | 135 |
|
135 | 136 | ; (rule |
136 | 137 | ; (alias runtest) |
137 | 138 | ; (package multicoretests) |
138 | | -; (deps domain_lin_tests.exe) |
| 139 | +; (deps lin_tests_domain.exe) |
139 | 140 | ; (action (run ./%{deps} --verbose))) |
140 | 141 |
|
141 | 142 | (rule |
142 | 143 | (alias runtest) |
143 | 144 | (package multicoretests) |
144 | | - (deps thread_lin_tests.exe) |
| 145 | + (deps lin_tests_thread_ref.exe) |
| 146 | + (action (run ./%{deps} --verbose))) |
| 147 | + |
| 148 | +(rule |
| 149 | + (alias runtest) |
| 150 | + (package multicoretests) |
| 151 | + (deps lin_tests_thread_conclist.exe) |
145 | 152 | (action (run ./%{deps} --verbose))) |
146 | 153 |
|
147 | 154 | ; (rule |
148 | 155 | ; (alias runtest) |
149 | 156 | ; (package multicoretests) |
150 | | -; (deps effect_lin_tests.exe) |
| 157 | +; (deps lin_tests_effect.exe) |
151 | 158 | ; (action (run ./%{deps} --verbose))) |
0 commit comments