mesg0.c
6.74 KB
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
#include <os.h>
#include <rmon.h>
#include "corefunc.h"
/*
* mesg0
*
* Tests for:
* osCreateMesgQueue
* osSendMesg
* osRecvMesg
*
* Assumed working:
* osGetIntMask
* osSetIntMask
*
* Description:
* Check that osCreateMesgQueue does not affect interrupt mask
* Check that osSendMesg does not affect interrupt mask
* Check that osRecvMesg does not affect interrupt mask
* Create a number of message queues of length 1-255. For each:
* Send 1 through <message queue length> messages.
* Attempt to send one more and check for overflow.
* Receive 1 through <message queue length> messages and check.
* Attempt to receive 1 more and check for error return.
* Try all combinations of blocking/nonblocking flags and verify
* that they have no effect when blocking would not occur.
*/
#define MAX_MESSAGE 256
static int mesgLoopUp(int, int);
static int mesgLoopDown(int, int);
static OSMesgQueue mesgQueue;
static OSMesg mesgBuf[MAX_MESSAGE];
int
mesg0(void)
{
OSIntMask savedMask, currentMask;
int numFailures = 0;
savedMask = osSetIntMask(OS_IM_ALL);
/*
* Try each combination of blocking/nonblock sends and receives
* in turn. Loop and and loop down the message values to deliberately
* cause stale data in message buffer to change.
*/
numFailures += mesgLoopUp(OS_MESG_NOBLOCK, OS_MESG_NOBLOCK);
numFailures += mesgLoopDown(OS_MESG_NOBLOCK, OS_MESG_BLOCK);
numFailures += mesgLoopUp(OS_MESG_BLOCK, OS_MESG_NOBLOCK);
numFailures += mesgLoopDown(OS_MESG_BLOCK, OS_MESG_BLOCK);
/*
* Restore original interrupt mask and check it once more.
*/
currentMask = osSetIntMask(savedMask);
if (currentMask != OS_IM_ALL) {
osSyncPrintf("mesg0: expected interrupt mask 0x%x, actual 0x%x\n",
OS_IM_ALL, currentMask);
numFailures++;
}
return(numFailures);
}
static int
mesgLoopUp(int sendFlag, int recvFlag)
{
int retValue;
int i, j;
OSMesg expectedMesg, actualMesg;
OSIntMask currentMask;
int numFailures = 0;
for (i = 1; i < MAX_MESSAGE; i++) {
/*
* Create message queue of length i.
*/
osCreateMesgQueue(&mesgQueue, mesgBuf, i);
currentMask = osGetIntMask();
if (currentMask != OS_IM_ALL) {
osSyncPrintf("mesg0: expected interrupt mask 0x%x, actual 0x%x\n",
OS_IM_ALL, currentMask);
numFailures++;
}
/*
* Fill up the message queue with distinct messages.
*/
for (j = 0; j < i; j++) {
expectedMesg = (OSMesg)((j<<24)|(j<<16)|(j<<8)|j);
retValue = osSendMesg(&mesgQueue, expectedMesg, sendFlag);
if (retValue != 0) {
osSyncPrintf(
"mesg0: expected osSendMesg ret value %d, actual %d\n",
0, retValue);
numFailures++;
}
currentMask = osGetIntMask();
if (currentMask != OS_IM_ALL) {
osSyncPrintf("mesg0: expected interrupt mask 0x%x, actual 0x%x\n",
OS_IM_ALL, currentMask);
numFailures++;
}
}
/*
* Attempt to send one more.
*/
retValue = osSendMesg(&mesgQueue, expectedMesg, OS_MESG_NOBLOCK);
if (retValue != -1) {
osSyncPrintf(
"mesg0: expected osSendMesg return value %d, actual %d\n",
-1, retValue);
numFailures++;
}
if (currentMask != OS_IM_ALL) {
osSyncPrintf("mesg0: expected interrupt mask 0x%x, actual 0x%x\n",
OS_IM_ALL, currentMask);
numFailures++;
}
/*
* Read and check all messages.
*/
for (j = 0; j < i; j++) {
expectedMesg = (OSMesg)((j<<24)|(j<<16)|(j<<8)|j);
(void)osRecvMesg(&mesgQueue, &actualMesg, recvFlag);
if (expectedMesg != actualMesg) {
osSyncPrintf("mesg0: expected message 0x%x, actual 0x%x\n",
expectedMesg, actualMesg);
numFailures++;
}
currentMask = osGetIntMask();
if (currentMask != OS_IM_ALL) {
osSyncPrintf("mesg0: expected interrupt mask 0x%x, actual 0x%x\n",
OS_IM_ALL, currentMask);
numFailures++;
}
}
/*
* Attempt to read one more.
*/
retValue = osRecvMesg(&mesgQueue, &actualMesg, OS_MESG_NOBLOCK);
if (retValue != -1) {
osSyncPrintf("mesg0: return value %d, actual %d\n",
-1, retValue);
numFailures++;
}
if (currentMask != OS_IM_ALL) {
osSyncPrintf("mesg0: expected interrupt mask 0x%x, actual 0x%x\n",
OS_IM_ALL, currentMask);
numFailures++;
}
}
return(numFailures);
}
static int
mesgLoopDown(int sendFlag, int recvFlag)
{
int retValue;
int i, j;
OSMesg expectedMesg, actualMesg;
OSIntMask currentMask;
int numFailures = 0;
for (i = 1; i < MAX_MESSAGE; i++) {
/*
* Create message queue of length i.
*/
osCreateMesgQueue(&mesgQueue, mesgBuf, i);
currentMask = osGetIntMask();
if (currentMask != OS_IM_ALL) {
osSyncPrintf("mesg0: expected interrupt mask 0x%x, actual 0x%x\n",
OS_IM_ALL, currentMask);
numFailures++;
}
/*
* Fill up the message queue with distinct messages.
*/
for (j = i; j > 0; j--) {
expectedMesg = (OSMesg)((j<<24)|(j<<16)|(j<<8)|j);
retValue = osSendMesg(&mesgQueue, expectedMesg, sendFlag);
if (retValue != 0) {
osSyncPrintf(
"mesg0: expected osSendMesg ret value %d, actual %d\n",
0, retValue);
numFailures++;
}
currentMask = osGetIntMask();
if (currentMask != OS_IM_ALL) {
osSyncPrintf("mesg0: expected interrupt mask 0x%x, actual 0x%x\n",
OS_IM_ALL, currentMask);
numFailures++;
}
}
/*
* Attempt to send one more.
*/
retValue = osSendMesg(&mesgQueue, expectedMesg, OS_MESG_NOBLOCK);
if (retValue != -1) {
osSyncPrintf(
"mesg0: expected osSendMesg return value %d, actual %d\n",
-1, retValue);
numFailures++;
}
currentMask = osGetIntMask();
if (currentMask != OS_IM_ALL) {
osSyncPrintf("mesg0: expected interrupt mask 0x%x, actual 0x%x\n",
OS_IM_ALL, currentMask);
numFailures++;
}
/*
* Read and check all messages.
*/
for (j = i; j > 0; j--) {
expectedMesg = (OSMesg)((j<<24)|(j<<16)|(j<<8)|j);
(void)osRecvMesg(&mesgQueue, &actualMesg, recvFlag);
if (expectedMesg != actualMesg) {
osSyncPrintf("mesg0: expected message 0x%x, actual 0x%x\n",
expectedMesg, actualMesg);
numFailures++;
}
currentMask = osGetIntMask();
if (currentMask != OS_IM_ALL) {
osSyncPrintf("mesg0: expected interrupt mask 0x%x, actual 0x%x\n",
OS_IM_ALL, currentMask);
numFailures++;
}
}
/*
* Attempt to read one more.
*/
retValue = osRecvMesg(&mesgQueue, &actualMesg, OS_MESG_NOBLOCK);
if (retValue != -1) {
osSyncPrintf("mesg0: expected return value %d, actual %d\n",
-1, retValue);
numFailures++;
}
currentMask = osGetIntMask();
if (currentMask != OS_IM_ALL) {
osSyncPrintf("mesg0: expected interrupt mask 0x%x, actual 0x%x\n",
OS_IM_ALL, currentMask);
numFailures++;
}
}
return(numFailures);
}