comparison riviera/tests/rv/rv_test_filter_redirect.h @ 0:75a11d740a02

initial import of gsm-fw from freecalypso-sw rev 1033:5ab737ac3ad7
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 09 Jun 2016 00:02:41 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:75a11d740a02
1 /**
2 * DEPRECATED: USE env_test.mak instead
3 *
4 * SWEs should not use XXX_REGR, XXX_MISC... anymore.
5 * The tests are now included/excluded at makefile level, specified
6 * by env.mak.
7 */
8
9
10 #ifndef _RV_TEST_FILTER_REDIRECT_H_
11 #define _RV_TEST_FILTER_REDIRECT_H_
12
13 #include "tests/rv/rv_test_filter.h"
14
15 /*
16 * HCI SWE
17 */
18 #if ((HCI_MISC == SW_COMPILED) || (L2CAP_REGR == SW_COMPILED) || \
19 (L2CAP_CERTIF == SW_COMPILED) || (SPP_CERTIF == SW_COMPILED))
20 #define HCI_TEST (SW_COMPILED)
21 #else
22 #define HCI_TEST (SW_NOT_COMPILED)
23 #endif
24 /*
25 * L2CAP SWE
26 */
27 #if ((L2CAP_REGR == SW_COMPILED) || (L2CAP_CERTIF == SW_COMPILED) || (L2CAP_UPF4 == SW_COMPILED) || \
28 (SDP_REGR == SW_COMPILED) || (SDP_CERTIF == SW_COMPILED) || (SDP_MISC == SW_COMPILED) || (SDP_UPF4 == SW_COMPILED) || \
29 (RFCOMM_REGR == SW_COMPILED) || (RFCOMM_UPF4 == SW_COMPILED) || \
30 (SPP_CERTIF == SW_COMPILED))
31 #define L2CAP_TEST (SW_COMPILED)
32 #else
33 #define L2CAP_TEST (SW_NOT_COMPILED)
34 #endif
35 /*
36 * RFCOMM SWE
37 */
38 #if ((RFCOMM_REGR == SW_COMPILED) || (RFCOMM_UPF4 == SW_COMPILED) || \
39 (SPP_CERTIF == SW_COMPILED))
40 #define RFC_TEST (SW_COMPILED)
41 #else
42 #define RFC_TEST (SW_NOT_COMPILED)
43 #endif
44 /*
45 * SPP SWE
46 */
47 #if ((SPP_REGR == SW_COMPILED) || (SPP_CERTIF == SW_COMPILED) || (SPP_MISC == SW_COMPILED) || \
48 (RFCOMM_UPF4 == SW_COMPILED))
49 #define SPP_TEST (SW_COMPILED)
50 #else
51 #define SPP_TEST (SW_NOT_COMPILED)
52 #endif
53 /*
54 * SDP-SDAP SWE
55 */
56 #if ((SDP_REGR == SW_COMPILED) || (SDP_CERTIF == SW_COMPILED) || (SDP_MISC == SW_COMPILED) || (SDP_UPF4 == SW_COMPILED) || \
57 (SPP_CERTIF == SW_COMPILED))
58 #define SDP_TEST (SW_COMPILED)
59 #else
60 #define SDP_TEST (SW_NOT_COMPILED)
61 #endif
62 #if (SDAP_REGR == SW_COMPILED)
63 #define SDAP_TEST (SW_COMPILED)
64 #else
65 #define SDAP_TEST (SW_NOT_COMPILED)
66 #endif
67 /*
68 * ATP SWE
69 */
70 #if ((ATP_REGR == SW_COMPILED) || (ATP_MISC == SW_COMPILED) || (HS_REGR == SW_COMPILED))
71 #define ATP_TEST (SW_COMPILED)
72 #else
73 #define ATP_TEST (SW_NOT_COMPILED)
74 #endif
75 /*
76 * HS SWE
77 */
78 #if ((HS_REGR == SW_COMPILED) || (HS_DEMO == SW_COMPILED))
79 #define HS_TEST (SW_COMPILED)
80 #else
81 #define HS_TEST (SW_NOT_COMPILED)
82 #endif
83 /*
84 * EXPL SWE
85 */
86 #if ((EXPL_REGR == SW_COMPILED) || (EXPL_DEMO == SW_COMPILED))
87 #define EXPL_TEST (SW_COMPILED)
88 #else
89 #define EXPL_TEST (SW_NOT_COMPILED)
90 #endif
91 /*
92 * BTCTRL-SCM SWE
93 */
94 #if ((BTCTRL_MISC == SW_COMPILED) || (BTCTRL_UPF4 == SW_COMPILED))
95 #define BTCTRL_TEST (SW_COMPILED)
96 #else
97 #define BTCTRL_TEST (SW_NOT_COMPILED)
98 #endif
99 #if (SCM_MISC == SW_COMPILED)
100 #define SCM_TEST (SW_COMPILED)
101 #else
102 #define SCM_TEST (SW_NOT_COMPILED)
103 #endif
104 /*
105 * DUN-GW SWE
106 */
107 #if ((DUN_MISC == SW_COMPILED) || (DUN_UPF4 == SW_COMPILED))
108 #define DUN_TEST (SW_COMPILED)
109 #else
110 #define DUN_TEST (SW_NOT_COMPILED)
111 #endif
112 /*
113 * FAX-GW SWE
114 */
115 #if (FAX_UPF4 == SW_COMPILED)
116 #define FAX_TEST (SW_COMPILED)
117 #else
118 #define FAX_TEST (SW_NOT_COMPILED)
119 #endif
120 /*
121 * OBX SWE
122 */
123 #if (OBX_REGR == SW_COMPILED)
124 #define OBX_TEST (SW_COMPILED)
125 #else
126 #define OBX_TEST (SW_NOT_COMPILED)
127 #endif
128 /*
129 * OPP SWE
130 */
131 #if ((OPP_REGR == SW_COMPILED) || (OPP_UPF4 == SW_COMPILED))
132 #define OPP_TEST (SW_COMPILED)
133 #else
134 #define OPP_TEST (SW_NOT_COMPILED)
135 #endif
136 /*
137 * FFS SWE
138 */
139 #if (FFS_MISC == SW_COMPILED)
140 #define FFS_TEST (SW_COMPILED)
141 #else
142 #define FFS_TEST (SW_NOT_COMPILED)
143 #endif
144 /*
145 * BMI SWE
146 */
147 #if (BMI_MISC == SW_COMPILED)
148 #define BMI_TEST (SW_COMPILED)
149 #else
150 #define BMI_TEST (SW_NOT_COMPILED)
151 #endif
152 /*
153 * SYN SWE
154 */
155 #if (SYN_REGR == SW_COMPILED)
156 #define SYN_TEST (SW_COMPILED)
157 #else
158 #define SYN_TEST (SW_NOT_COMPILED)
159 #endif
160 /*
161 * RTC SWE
162 */
163 #if (RTC_REGR == SW_COMPILED) || (RTC_MISC == SW_COMPILED)
164 #define RTC_TEST (SW_COMPILED)
165 #else
166 #define RTC_TEST (SW_NOT_COMPILED)
167 #endif
168 /*
169 * AUDIO SWE
170 */
171 #if ((AUDIO_REGR == SW_COMPILED) || (AUDIO_MISC == SW_COMPILED))
172 #define AUDIO_TEST (SW_COMPILED)
173 #else
174 #define AUDIO_TEST (SW_NOT_COMPILED)
175 #endif
176 /*
177 * R2D SWE
178 */
179 #if ((R2D_MISC == SW_COMPILED) || (R2D_DEMO == SW_COMPILED))
180 #define R2D_TEST (SW_COMPILED)
181 #else
182 #define R2D_TEST (SW_NOT_COMPILED)
183 #endif
184 /*
185 * RGUI SWE
186 */
187 #if (RGUI_MISC == SW_COMPILED)
188 #define RGUI_TEST (SW_COMPILED)
189 #else
190 #define RGUI_TEST (SW_NOT_COMPILED)
191 #endif
192 /*
193 * DAR SWE
194 */
195 #if ((DAR_REGR == SW_COMPILED) || (DAR_MISC == SW_COMPILED))
196 #define DAR_TEST (SW_COMPILED)
197 #else
198 #define DAR_TEST (SW_NOT_COMPILED)
199 #endif
200 /*
201 * POWER SWE
202 */
203 #if ((PWR_REGR == SW_COMPILED) || (PWR_MISC == SW_COMPILED))
204 #define PWR_TEST (SW_COMPILED)
205 #else
206 #define PWR_TEST (SW_NOT_COMPILED)
207 #endif
208 /*
209 * KPD SWE
210 */
211 #if (KPD_MISC == SW_COMPILED)
212 #define KPD_TEST (SW_COMPILED)
213 #else
214 #define KPD_TEST (SW_NOT_COMPILED)
215 #endif
216 /*
217 * MKS SWE
218 */
219 #if (MKS_MISC == SW_COMPILED)
220 #define MKS_TEST (SW_COMPILED)
221 #else
222 #define MKS_TEST (SW_NOT_COMPILED)
223 #endif
224 /* SWE below is still not included in current Workspace */
225 #if ((FTP_REGR == SW_COMPILED)|| (FTP_UPF4 == SW_COMPILED))
226 #define FTP_TEST (SW_COMPILED)
227 #else
228 #define FTP_TEST (SW_NOT_COMPILED)
229 #endif
230 /*
231 * DEV1, DEV2, DEV3 SWE
232 */
233 #if (DEV1_MISC == SW_COMPILED)
234 #define DEV1_TEST (SW_COMPILED)
235 #else
236 #define DEV1_TEST (SW_NOT_COMPILED)
237 #endif
238 #if (DEV2_MISC == SW_COMPILED)
239 #define DEV2_TEST (SW_COMPILED)
240 #else
241 #define DEV2_TEST (SW_NOT_COMPILED)
242 #endif
243 #if (DEV3_MISC == SW_COMPILED)
244 #define DEV3_TEST (SW_COMPILED)
245 #else
246 #define DEV3_TEST (SW_NOT_COMPILED)
247 #endif
248 /*
249 * LLS SWE
250 */
251 #if (LLS_MISC == SW_COMPILED)
252 #define LLS_TEST (SW_COMPILED)
253 #else
254 #define LLS_TEST (SW_NOT_COMPILED)
255 #endif
256 /*
257 * MPM SWE
258 */
259 #if ((MPM_MISC == SW_COMPILED) || (MPM_DEMO == SW_COMPILED))
260 #define MPM_TEST (SW_COMPILED)
261 #else
262 #define MPM_TEST (SW_NOT_COMPILED)
263 #endif
264
265 /*
266 * MDC SWE
267 */
268 #if ((MDC_MISC == SW_COMPILED) || (MDC_REGR == SW_COMPILED))
269 #define MDC_TEST (SW_COMPILED)
270 #else
271 #define MDC_TEST (SW_NOT_COMPILED)
272 #endif
273
274 /*
275 * MDL SWE
276 */
277 #if ((MDL_MISC == SW_COMPILED) || (MDL_REGR == SW_COMPILED))
278 #define MDL_TEST (SW_COMPILED)
279 #else
280 #define MDL_TEST (SW_NOT_COMPILED)
281 #endif
282
283 #endif /* _RV_TEST_FILTER_REDIRECT_H_ */