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
|
/** Test framework support functions.
*/
#include <testfwk.h>
#ifndef NO_VARARGS
#include <stdarg.h>
#endif
#ifdef __SDCC_ds390
#include <tinibios.h> /* main() must see the ISR declarations */
#endif
#ifdef __SDCC_mcs51
/* until changed, isr's must have a prototype in the module containing main */
void T2_isr (void) __interrupt (5);
#define MEMSPACE_BUF __idata
#else
#define MEMSPACE_BUF
#endif
extern void _putchar(char c);
extern void _initEmu(void);
extern void _exitEmu(void);
int __numTests = 0;
static int __numFailures = 0;
#define __div(num, denom) ((num) / (denom))
#define __mod(num, denom) ((num) % (denom))
void
__prints (const char *s)
{
char c;
while ('\0' != (c = *s))
{
_putchar(c);
++s;
}
}
#ifdef TARGET_VERY_LOW_MEMORY
static void
__printNibble (unsigned char c)
{
c &= 0x0F;
if (c <= 9 )
c += '0';
else
c += 'A' - 10;
_putchar(c);
}
void
__printu (unsigned int n)
{
unsigned char chr;
#define SWAP_BYTE(x) ((x) >> 4 | (x) << 4)
_putchar('x');
// This seems to be the most efficient way to do it for PDK (both in RAM & ROM)
chr = n >> 8;
chr = SWAP_BYTE(chr);
__printNibble(chr);
chr = SWAP_BYTE(chr);
__printNibble(chr);
chr = n & 0xFF;
chr = SWAP_BYTE(chr);
__printNibble(chr);
chr = SWAP_BYTE(chr);
__printNibble(chr);
}
#else
void
__printu (unsigned int n)
{
if (0 == n)
{
_putchar('0');
}
else
{
static char MEMSPACE_BUF buf[6];
char MEMSPACE_BUF *p = &buf[sizeof (buf) - 1];
buf[sizeof(buf) - 1] = '\0';
while (0 != n)
{
*--p = '0' + __mod (n, 10);
n = __div (n, 10);
}
__prints(p);
}
}
#endif
#ifndef NO_VARARGS
void
__printf (const char *szFormat, ...)
{
va_list ap;
va_start (ap, szFormat);
while (*szFormat)
{
if (*szFormat == '%')
{
switch (*++szFormat)
{
case 's':
{
char *sz = va_arg (ap, char *);
__prints(sz);
break;
}
case 'd':
{
int i = va_arg (ap, int);
__printd (i);
break;
}
case 'u':
{
unsigned int i = va_arg (ap, unsigned int);
__printu (i);
break;
}
case '%':
_putchar ('%');
break;
default:
break;
}
}
else
{
_putchar (*szFormat);
}
szFormat++;
}
va_end (ap);
}
void
__fail (__code const char *szMsg, __code const char *szCond, __code const char *szFile, int line)
{
__printf("--- FAIL: \"%s\" on %s at %s:%u\n", szMsg, szCond, szFile, line);
__numFailures++;
}
int
main (void)
{
_initEmu();
__printf("--- Running: %s\n", __getSuiteName());
__runSuite();
__printf("--- Summary: %u/%u/%u: %u failed of %u tests in %u cases.\n",
__numFailures, __numTests, __numCases,
__numFailures, __numTests, __numCases
);
_exitEmu();
return 0;
}
#else
void
__fail (__code const char *szMsg, __code const char *szCond, __code const char *szFile, int line)
{
__prints("--- FAIL: \"");
__prints(szMsg);
__prints("\" on ");
__prints(szCond);
__prints(" at ");
__prints(szFile);
_putchar(':');
__printu(line);
_putchar('\n');
__numFailures++;
}
int
main (void)
{
_initEmu();
__prints("--- Running: ");
__prints(__getSuiteName());
_putchar('\n');
__runSuite();
__prints("--- Summary: ");
__printu(__numFailures);
_putchar('/');
__printu(__numTests);
_putchar('/');
__printu(__numCases);
#ifndef TARGET_VERY_LOW_MEMORY
__prints(": ");
__printu(__numFailures);
__prints(" failed of ");
__printu(__numTests);
__prints(" tests in ");
__printu(__numCases);
__prints(" cases.\n");
#else
_putchar('\n');
#endif
_exitEmu();
return 0;
}
#endif
|