]> Zhao Yanbai Git Server - minix.git/commitdiff
Improved test constant
authorBen Gras <ben@minix3.org>
Tue, 7 Mar 2006 15:44:00 +0000 (15:44 +0000)
committerBen Gras <ben@minix3.org>
Tue, 7 Mar 2006 15:44:00 +0000 (15:44 +0000)
test/test41.c

index 8d44a5c6523d5f75955b203b86c7c0b797b3d4ca..bfd8cdab3a2abd6bb4d2aea91d244659e610fbd6 100644 (file)
@@ -1,6 +1,7 @@
 
 #include <stdio.h>
 #include <minix/endpoint.h>
+#include <minix/sys_config.h>
 
 int main(int argc, char *argv[])
 {
@@ -9,7 +10,7 @@ int main(int argc, char *argv[])
        printf("Test 41 ");
 
        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;
                        e = _ENDPOINT(g, p);
                        mg = _ENDPOINT_G(e);
@@ -18,9 +19,14 @@ int main(int argc, char *argv[])
                                printf("%d != %d || %d != %d\n", mg, g, mp, p);
                                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) {
-                               printf("endpoint is %d; ANY, SELF or NONE\n",
-                                       e);
+                               printf("endpoint (%d,%d) is %d; ANY, SELF or NONE\n",
+                                       g, p, e);
+                               return 1;
                        }
                }
        }