add a couple more of debugging messages
authorYang Tse <yangsita@gmail.com>
Fri, 3 Nov 2006 14:13:25 +0000 (14:13 +0000)
committerYang Tse <yangsita@gmail.com>
Fri, 3 Nov 2006 14:13:25 +0000 (14:13 +0000)
tests/libtest/lib518.c
tests/libtest/lib537.c

index d91625f..3f5ac11 100644 (file)
@@ -311,7 +311,16 @@ static int rlimit(int keep_open)
 
       fd[num_open.rlim_cur] = -1;
 
+      sprintf(strbuff1, fmt, num_open.rlim_cur);
+      sprintf(strbuff, "dup() attempt %s failed", strbuff1);
+      fprintf(stderr, "%s\n", strbuff);
+
+      sprintf(strbuff1, fmt, num_open.rlim_cur);
+      sprintf(strbuff, "fds system limit seems close to %s", strbuff1);
+      fprintf(stderr, "%s\n", strbuff);
+
       num_open.rlim_max = NUM_NEEDED;
+
       sprintf(strbuff2, fmt, num_open.rlim_max);
       sprintf(strbuff1, fmt, num_open.rlim_cur);
       sprintf(strbuff, "fds needed %s > system limit %s",
index 08bf120..fd030dd 100644 (file)
@@ -303,7 +303,7 @@ static int rlimit(int keep_open)
       fprintf(stderr, "%s\n", strbuff);
 
       sprintf(strbuff1, fmt, num_open.rlim_cur);
-      sprintf(strbuff, "fd system limit seems close to %s", strbuff1);
+      sprintf(strbuff, "fds system limit seems close to %s", strbuff1);
       fprintf(stderr, "%s\n", strbuff);
 
       num_open.rlim_max = num_open.rlim_cur - SAFETY_MARGIN;