Improved test constant
This commit is contained in:
parent
7d95abb072
commit
18df4cb859
1 changed files with 9 additions and 3 deletions
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <minix/endpoint.h>
|
#include <minix/endpoint.h>
|
||||||
|
#include <minix/sys_config.h>
|
||||||
|
|
||||||
int main(int argc, char *argv[])
|
int main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
|
@ -9,7 +10,7 @@ int main(int argc, char *argv[])
|
||||||
printf("Test 41 ");
|
printf("Test 41 ");
|
||||||
|
|
||||||
for(g = 0; g <= _ENDPOINT_MAX_GENERATION; g++) {
|
for(g = 0; g <= _ENDPOINT_MAX_GENERATION; g++) {
|
||||||
for(p = -NR_TASKS; p <= _ENDPOINT_MAX_PROC; p++) {
|
for(p = -NR_TASKS; p < _NR_PROCS; p++) {
|
||||||
int e, mg, mp;
|
int e, mg, mp;
|
||||||
e = _ENDPOINT(g, p);
|
e = _ENDPOINT(g, p);
|
||||||
mg = _ENDPOINT_G(e);
|
mg = _ENDPOINT_G(e);
|
||||||
|
@ -18,9 +19,14 @@ int main(int argc, char *argv[])
|
||||||
printf("%d != %d || %d != %d\n", mg, g, mp, p);
|
printf("%d != %d || %d != %d\n", mg, g, mp, p);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
if(g == 0 && e != p) {
|
||||||
|
printf("%d != %d and g=0\n", e, p);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
if(e == ANY || e == SELF || e == NONE) {
|
if(e == ANY || e == SELF || e == NONE) {
|
||||||
printf("endpoint is %d; ANY, SELF or NONE\n",
|
printf("endpoint (%d,%d) is %d; ANY, SELF or NONE\n",
|
||||||
e);
|
g, p, e);
|
||||||
|
return 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue