1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
|
/*
Program to test linking between C and pascal units.
Copyright (c) 2002, Carl Eric Codere
*/
/*
Note : Arrays seem to always be passed by reference
in the C language. Therefore, no testing is required
to use them.
*/
unsigned char global_u8bit;
unsigned short global_u16bit;
unsigned int global_u32bit;
short global_s16bit;
int global_s32bit;
long long global_s64bit;
unsigned long long global_u64bit;
float global_float;
double global_double;
long double global_long_double;
#define RESULT_U8BIT 0x55
#define RESULT_U16BIT 0x500F
#define RESULT_U32BIT 0x500F0000
#define RESULT_S16BIT -12
#define RESULT_S32BIT -120
#define RESULT_S64BIT -12000
#define RESULT_U64BIT 0x1BCDABCD
#define RESULT_PCHAR "Hello world"
#define RESULT_FLOAT 14.54
#define RESULT_DOUBLE 15.54
#define RESULT_LONGDOUBLE 16.54
struct _1BYTE_
{
unsigned char u8;
};
struct _3BYTE_
{
unsigned char u8;
unsigned short u16;
};
struct _3BYTE_S
{
unsigned short u16;
unsigned char w8;
};
struct _5BYTE_
{
unsigned char u8;
unsigned int u32;
};
struct _7BYTE_
{
unsigned char u8;
long long s64;
unsigned short u16;
};
struct _7BYTE_ test_struct;
/* simple parameter testing */
void test_param_u8(unsigned char v)
{
global_u8bit = v;
}
void test_param_u16(unsigned short v)
{
global_u16bit = v;
}
void test_param_u32(unsigned int v)
{
global_u32bit = v;
}
void test_param_s16(short v)
{
global_s16bit = v;
}
void test_param_s32(int v)
{
global_s32bit = v;
}
void test_param_s64(long long v)
{
global_s64bit = v;
}
void test_param_u64(unsigned long long v)
{
global_u64bit = v;
}
void test_param_float(float v)
{
global_float = v;
}
void test_param_double(double v)
{
global_double = v;
}
void test_param_longdouble(long double v)
{
global_long_double = v;
}
/* simple array parameter testing */
void test_array_param_u8(unsigned char v[2])
{
global_u8bit = v[1];
}
void test_array_param_u16(unsigned short v[2])
{
global_u16bit = v[1];
}
void test_array_param_u32(unsigned int v[2])
{
global_u32bit = v[1];
}
void test_array_param_s16(short v[2])
{
global_s16bit = v[1];
}
void test_array_param_s32(int v[2])
{
global_s32bit = v[1];
}
void test_array_param_s64(long long v[2])
{
global_s64bit = v[1];
}
void test_array_param_u64(unsigned long long v[2])
{
global_u64bit = v[1];
}
void test_array_param_float(float v[2])
{
global_float = v[1];
}
void test_array_param_double(double v[2])
{
global_double = v[1];
}
void test_array_param_longdouble(long double v[2])
{
global_long_double = v[1];
}
/* if this one works, others should also automatically */
void test_param_var_u8(unsigned char *x)
{
*x = RESULT_U8BIT;
}
/* mixed parameter testing */
void test_param_mixed_u16(unsigned char z, unsigned short x, unsigned char y)
{
global_u16bit = x;
global_u8bit = y;
}
void test_param_mixed_u32(unsigned char z, unsigned int x, unsigned char y)
{
global_u32bit = x;
global_u8bit = y;
}
void test_param_mixed_s64(unsigned char z, long long x, unsigned char y)
{
global_s64bit = x;
global_u8bit = y;
}
void test_param_mixed_var_u8(unsigned char *x, unsigned char y)
{
global_u8bit = y;
*x = RESULT_U8BIT;
}
/* mixed parameter testing with floating point args */
void test_param_mixed_float(float x, unsigned char y)
{
global_float = x;
global_u8bit = y;
}
void test_param_mixed_double(double x, unsigned char y)
{
global_double = x;
global_u8bit = y;
}
void test_param_mixed_long_double(long double x, unsigned char y)
{
global_long_double = x;
global_u8bit = y;
}
/* simple record testing */
void test_param_struct_tiny(struct _1BYTE_ buffer)
{
global_u8bit = buffer.u8;
}
void test_param_struct_small(struct _3BYTE_ buffer)
{
global_u8bit = buffer.u8;
global_u16bit = buffer.u16;
}
void test_param_struct_small_s(struct _3BYTE_S buffer)
{
global_u8bit = buffer.w8;
global_u16bit = buffer.u16;
}
void test_param_struct_medium(struct _5BYTE_ buffer)
{
global_u8bit = buffer.u8;
global_u32bit = buffer.u32;
}
void test_param_struct_large(struct _7BYTE_ buffer)
{
global_u8bit = buffer.u8;
global_u16bit = buffer.u16;
global_s64bit = buffer.s64;
}
/* record+char testing */
void test_param_mixed_struct_tiny(struct _1BYTE_ buffer, unsigned char y)
{
global_u8bit = y;
}
void test_param_mixed_struct_small(struct _3BYTE_ buffer, unsigned char y)
{
global_u8bit = y;
global_u16bit = buffer.u16;
}
void test_param_mixed_struct_small_s(struct _3BYTE_S buffer, unsigned char y)
{
global_u8bit = y;
global_u16bit = buffer.u16;
}
void test_param_mixed_struct_medium(struct _5BYTE_ buffer, unsigned char y)
{
global_u8bit = y;
global_u32bit = buffer.u32;
}
void test_param_mixed_struct_large(struct _7BYTE_ buffer, unsigned char y)
{
global_u8bit = y;
global_u16bit = buffer.u16;
global_s64bit = buffer.s64;
}
/* function result testing */
unsigned char test_function_u8()
{
return RESULT_U8BIT;
}
unsigned short test_function_u16()
{
return RESULT_U16BIT;
}
unsigned int test_function_u32()
{
return RESULT_U32BIT;
}
unsigned long long test_function_u64()
{
return RESULT_U64BIT;
}
unsigned short test_function_s16()
{
return RESULT_S16BIT;
}
unsigned int test_function_s32()
{
return RESULT_S32BIT;
}
unsigned long long test_function_s64()
{
return RESULT_S64BIT;
}
char* test_function_pchar()
{
return RESULT_PCHAR;
}
float test_function_float()
{
return RESULT_FLOAT;
}
double test_function_double()
{
return RESULT_DOUBLE;
}
long double test_function_longdouble()
{
return RESULT_LONGDOUBLE;
}
struct _1BYTE_ test_function_tiny_struct()
{
struct _1BYTE_ test_struct;
test_struct.u8 = RESULT_U8BIT;
return test_struct;
}
struct _3BYTE_ test_function_small_struct()
{
struct _3BYTE_ test_struct;
test_struct.u8 = RESULT_U8BIT;
test_struct.u16 = RESULT_U16BIT;
return test_struct;
}
struct _3BYTE_S test_function_small_struct_s()
{
struct _3BYTE_S test_struct;
test_struct.u16 = RESULT_U16BIT;
test_struct.w8 = RESULT_U8BIT;
return test_struct;
}
struct _5BYTE_ test_function_medium_struct()
{
struct _5BYTE_ test_struct;
test_struct.u8 = RESULT_U8BIT;
test_struct.u32 = RESULT_U32BIT;
return test_struct;
}
struct _7BYTE_ test_function_struct()
{
test_struct.u8 = RESULT_U8BIT;
test_struct.s64 = RESULT_S64BIT;
test_struct.u16 = RESULT_U16BIT;
return test_struct;
}
/*
$Log: ctest.c,v $
Revision 1.7 2005/02/06 20:00:41 peter
* use int for 32bit types
Revision 1.6 2002/11/18 00:42:16 pierre
+ records with really 3 byte size tests added
Revision 1.5 2002/11/04 15:17:45 pierre
* compatibility with C checks improved
Revision 1.4 2002/09/07 15:40:56 peter
* old logs removed and tabs fixed
Revision 1.3 2002/05/04 16:57:23 carl
+ var parameter testing
+ function result testing
+ floating point testing
Revision 1.2 2002/04/22 19:09:12 carl
+ added structure testing
Revision 1.1 2002/04/13 21:06:39 carl
+ c module testing
*/
|