custom message for vm_update
[minix3.git] / test / test39.c
blobc1f4cb0330e822e3d05e11c0efd27d522a61075f
2 #define _MINIX_SYSTEM
4 #include <stdio.h>
5 #include <minix/endpoint.h>
6 #include <minix/sys_config.h>
7 int max_error = 1;
8 #include "common.h"
11 void test39a(void);
13 int main(int argc, char *argv[])
15 start(39);
16 test39a();
17 quit();
18 return(-1); /* Unreachable */
21 void test39a()
23 int g, p;
25 subtest = 1;
27 for (g = 0; g <= _ENDPOINT_MAX_GENERATION; g++) {
28 for (p = -MAX_NR_TASKS; p < MAX_NR_PROCS; p++) {
29 endpoint_t ept;
30 int mg, mp;
31 ept = _ENDPOINT(g, p);
32 mg = _ENDPOINT_G(ept);
33 mp = _ENDPOINT_P(ept);
34 if (mg != g || mp != p) e(1);
35 if (g == 0 && ept != p) e(2);
36 if (ept == ANY || ept == SELF || ept == NONE) e(3);