]> Zhao Yanbai Git Server - minix.git/commitdiff
test76: increase alarm times 90/2890/1
authorDavid van Moolenbroek <david@minix3.org>
Wed, 12 Nov 2014 12:11:32 +0000 (12:11 +0000)
committerDavid van Moolenbroek <david@minix3.org>
Wed, 12 Nov 2014 12:12:40 +0000 (12:12 +0000)
The test would sometimes fail because an alarm triggered before the
system call to be interrupted by the alarm could be started.

Change-Id: Ia507720a1f2d259afde1f97b7edd03f22cbd4810

minix/tests/test76.c

index c7268329a3232691f05472fb226f566843e6d9a8..7b41d18a3537194b72e3c8ef69b7dfc25fde25aa 100644 (file)
@@ -48,7 +48,7 @@ test76a(void)
 
        memset(&it, 0, sizeof(it));
        it.it_value.tv_sec = 0;
-       it.it_value.tv_usec = 10000;
+       it.it_value.tv_usec = 100000;
        if (setitimer(ITIMER_REAL, &it, NULL) < 0) e(2);
 
        /* First try without any file descriptors. */
@@ -125,7 +125,7 @@ test76b(void)
 
        memset(&it, 0, sizeof(it));
        it.it_value.tv_sec = 0;
-       it.it_value.tv_usec = 10000;
+       it.it_value.tv_usec = 100000;
        if (setitimer(ITIMER_REAL, &it, NULL) < 0) e(4);
 
        /*
@@ -146,7 +146,7 @@ test76b(void)
 
        memset(&it, 0, sizeof(it));
        it.it_value.tv_sec = 0;
-       it.it_value.tv_usec = 10000;
+       it.it_value.tv_usec = 100000;
        if (setitimer(ITIMER_REAL, &it, NULL) < 0) e(8);
 
        /* Now interrupt a write attempt on a full pipe. */
@@ -158,7 +158,7 @@ test76b(void)
 
        memset(&it, 0, sizeof(it));
        it.it_value.tv_sec = 0;
-       it.it_value.tv_usec = 10000;
+       it.it_value.tv_usec = 100000;
        if (setitimer(ITIMER_REAL, &it, NULL) < 0) e(12);
 
        /* Now interrupt a read on an empty pipe. */
@@ -205,7 +205,7 @@ test76c(void)
 
        memset(&it, 0, sizeof(it));
        it.it_value.tv_sec = 0;
-       it.it_value.tv_usec = 10000;
+       it.it_value.tv_usec = 100000;
        if (setitimer(ITIMER_REAL, &it, NULL) < 0) e(5);
 
        /* This will block until the timer fires. */