]> Zhao Yanbai Git Server - minix.git/commitdiff
. changed MAXOPEN's from statics to (OPEN_MAX-3)
authorBen Gras <ben@minix3.org>
Mon, 13 Feb 2006 11:07:21 +0000 (11:07 +0000)
committerBen Gras <ben@minix3.org>
Mon, 13 Feb 2006 11:07:21 +0000 (11:07 +0000)
  (test broke after increasing OPEN_MAX)
. changed s_nokill to s_nokill_stop
  (test broken as SIGSTOP isn't maskable)

test/test17.c
test/test18.c
test/test37.c

index 71fe9e0f4496b7643c2310f8317731d2e2c341ef..bf0310aee74874fc9a2daf58abc62cc54d0cc845 100644 (file)
@@ -12,6 +12,7 @@
 #include <unistd.h>
 #include <utime.h>
 #include <stdio.h>
+#include <limits.h>
 
 #define NOCRASH 1              /* test11(), 2nd pipe */
 #define PDPNOHANG  1           /* test03(), write_standards() */
@@ -25,7 +26,7 @@
 
 #define ARSIZE   256           /* array size */
 #define PIPESIZE 3584          /* max number of bytes to be written on pipe */
-#define MAXOPEN  17            /* maximum number of extra open files */
+#define MAXOPEN  (OPEN_MAX-3)          /* maximum number of extra open files */
 #define MAXLINK 0177           /* maximum number of links per file */
 #define LINKCOUNT 5
 #define MASK    0777           /* selects lower nine bits */
index 4b9fc87e2a4e734117a07e8033e5f9883ce66ffd..246b1580601a171c8c9b5e11460b23089981863f 100644 (file)
@@ -13,6 +13,7 @@
 #include <unistd.h>
 #include <string.h>
 #include <stdio.h>
+#include <limits.h>
 
 #define NOCRASH 1              /* test11(), 2nd pipe */
 #define PDPNOHANG  1           /* test03(), write_standards() */
@@ -26,7 +27,7 @@
 
 #define ARSIZE   256           /* array size */
 #define PIPESIZE 3584          /* maxnumber of bytes to be written on pipe */
-#define MAXOPEN  17            /* maximum number of extra open files */
+#define MAXOPEN  (OPEN_MAX-3)  /* maximum number of extra open files */
 #define MAXLINK 0177           /* maximum number of links per file */
 #define MASK    0777           /* selects lower nine bits */
 #define READ_EOF 0             /* returned by read-call at eof */
index 90de497019c2b36e7e58ef6055587d0efbd66369..caefa074ab97c287ee2858ae2ffbcf67b5909580 100644 (file)
@@ -224,7 +224,7 @@ void test37b()
 /* Test sigprocmask and sigpending. */
   int i;
   pid_t p;
-  sigset_t s, s1, s_empty, s_full, s_ill, s_ill_pip, s_nokill;
+  sigset_t s, s1, s_empty, s_full, s_ill, s_ill_pip, s_nokill, s_nokill_stop;
   struct sigaction sa, osa;
 
   subtest = 2;
@@ -240,6 +240,8 @@ void test37b()
   if (sigfillset(&s_full) != 0) e(7);
   s_nokill = s_full;
   if (sigdelset(&s_nokill, SIGKILL) != 0) e(8);
+  s_nokill_stop = s_nokill;
+  if (sigdelset(&s_nokill_stop, SIGSTOP) != 0) e(8);
 #ifndef _MINIX /* XXX - should unsupported signals be <= _NSIG? */
   if (SIGSTOP > _NSIG) e(666);
   if (SIGSTOP <= _NSIG && sigdelset(&s_nokill, SIGSTOP) != 0) e(888);
@@ -295,9 +297,11 @@ void test37b()
   /* Test sigprocmask(SIG_SETMASK, ...). */
   if (sigprocmask(SIG_SETMASK, &s_full, &s1) != 0) e(18);    /* block all */
   if (sigemptyset(&s1) != 0) e(19);
+  errno = 0;
   if (sigprocmask(SIG_SETMASK, &s_empty, &s1) != 0) e(20);   /* block none */
-  if (s1 != s_nokill) e(21);
+  if (s1 != s_nokill_stop) e(21);
   if (sigprocmask(SIG_SETMASK, &s_ill, &s1) != 0) e(22);     /* block SIGILL */
+  errno = 0;
   if (s1 != s_empty) e(23);
   if (sigprocmask(SIG_SETMASK, &s_ill_pip, &s1) != 0) e(24); /* SIGILL+PIP */
   if (s1 != s_ill) e(25);
@@ -306,17 +310,17 @@ void test37b()
 
   /* Test sigprocmask(SIG_UNBLOCK, ...) */
   if (sigprocmask(SIG_UNBLOCK, &s_ill, &s1) != 0) e(28);
-  if (s1 != s_nokill) e(29);
+  if (s1 != s_nokill_stop) e(29);
   if (sigprocmask(SIG_UNBLOCK, &s_ill_pip, &s1) != 0) e(30);
-  s = s_nokill;
+  s = s_nokill_stop;
   if (sigdelset(&s, SIGILL) != 0) e(31);
   if (s != s1) e(32);
   if (sigprocmask(SIG_UNBLOCK, &s_empty, &s1) != 0) e(33);
-  s = s_nokill;
+  s = s_nokill_stop;
   if (sigdelset(&s, SIGILL) != 0) e(34);
   if (sigdelset(&s, SIGPIPE) != 0) e(35);
   if (s != s1) e(36);
-  s1 = s_nokill;
+  s1 = s_nokill_stop;
   if (sigprocmask(SIG_SETMASK, &s_empty, &s1) != 0) e(37);
   if (s != s1) e(38);
 
@@ -333,13 +337,13 @@ void test37b()
   if (sigprocmask(20000, &s_full, &s1) != -1) e(45);
   if (errno != EINVAL) e(46);
   if (sigprocmask(SIG_SETMASK, &s_full, &s1) != 0) e(47);
-  if (s1 != s_nokill) e(48);
+  if (s1 != s_nokill_stop) e(48);
 
   /* If second arg is 0, nothing is set. */
   if (sigprocmask(SIG_SETMASK, (sigset_t *) NULL, &s1) != 0) e(49);
-  if (s1 != s_nokill) e(50);
+  if (s1 != s_nokill_stop) e(50);
   if (sigprocmask(SIG_SETMASK, &s_ill_pip, &s1) != 0) e(51);
-  if (s1 != s_nokill) e(52);
+  if (s1 != s_nokill_stop) e(52);
   if (sigprocmask(SIG_SETMASK, (sigset_t *) NULL, &s1) != 0) e(53);
   if (s1 != s_ill_pip) e(54);
   if (sigprocmask(SIG_BLOCK, (sigset_t *) NULL, &s1) != 0) e(55);