diff options
author | Yang Tse <yangsita@gmail.com> | 2006-10-31 01:24:03 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2006-10-31 01:24:03 +0000 |
commit | 9b2acca63e6d386cb5ddb248648fec4e856905e7 (patch) | |
tree | 32469e8410a27d6a18130ab6ef683d08b8194c9e /tests/libtest/lib518.c | |
parent | afcd9f1b1c403936a423e9b27d267bd4ad9286bd (diff) | |
download | curl-9b2acca63e6d386cb5ddb248648fec4e856905e7.tar.gz |
Sync comment with code and add three messages more
Diffstat (limited to 'tests/libtest/lib518.c')
-rw-r--r-- | tests/libtest/lib518.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/tests/libtest/lib518.c b/tests/libtest/lib518.c index e64ef7d59..875ddc206 100644 --- a/tests/libtest/lib518.c +++ b/tests/libtest/lib518.c @@ -70,12 +70,14 @@ static int our_errno(void) static void close_file_descriptors(void) { + fprintf(stderr, "closing file descriptors\n"); for (num_open.rlim_cur = 0; num_open.rlim_cur < num_open.rlim_max; num_open.rlim_cur++) close(fd[num_open.rlim_cur]); free(fd); fd = NULL; + fprintf(stderr, "file descriptors closed\n"); } static int rlimit(int keep_open) @@ -252,6 +254,9 @@ static int rlimit(int keep_open) } } + sprintf(strbuff, fmt, num_open.rlim_max); + fprintf(stderr, "%s file descriptors open\n", strbuff); + /* close file descriptors unless instructed to keep them */ if (!keep_open) { close_file_descriptors(); @@ -281,8 +286,8 @@ int test(char *URL) return TEST_ERR_MAJOR_BAD; } - /* now run the test with NUM_OPEN open file descriptors - and close them all once this test is over */ + /* run the test with more than FD_SETSIZE or max allowed open + file descriptors and close them all once the test is over */ if (curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) { fprintf(stderr, "curl_global_init() failed\n"); |