aboutsummaryrefslogtreecommitdiff
path: root/tests/libtest/lib518.c
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2006-11-03 14:13:25 +0000
committerYang Tse <yangsita@gmail.com>2006-11-03 14:13:25 +0000
commit318a7584f360306ed39ad46c05217a428a978fff (patch)
tree0cc56e0d9f90d62c4f74fc04b15c986ff3324bb0 /tests/libtest/lib518.c
parent961ec228d468e302c94ba16c161aaefb1b725acd (diff)
add a couple more of debugging messages
Diffstat (limited to 'tests/libtest/lib518.c')
-rw-r--r--tests/libtest/lib518.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/libtest/lib518.c b/tests/libtest/lib518.c
index d91625f98..3f5ac11a6 100644
--- a/tests/libtest/lib518.c
+++ b/tests/libtest/lib518.c
@@ -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",