diff options
author | Yang Tse <yangsita@gmail.com> | 2008-01-17 18:57:50 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2008-01-17 18:57:50 +0000 |
commit | 0530b0a5ca5e5a21054d7ba83354a230a76eab5b (patch) | |
tree | 2166d4cfad278da335b6829d2950c474f698bf6b /tests/libtest/lib537.c | |
parent | 5396121595acc9c346ecd211263db50a879d6927 (diff) | |
download | curl-0530b0a5ca5e5a21054d7ba83354a230a76eab5b.tar.gz |
Don't abort tests 518 and 537 when unable to raise the open-file soft limit
Diffstat (limited to 'tests/libtest/lib537.c')
-rw-r--r-- | tests/libtest/lib537.c | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/tests/libtest/lib537.c b/tests/libtest/lib537.c index b4b2b7a93..1f5a34221 100644 --- a/tests/libtest/lib537.c +++ b/tests/libtest/lib537.c @@ -148,12 +148,27 @@ static int rlimit(int keep_open) if (rl.rlim_cur != rl.rlim_max) { +#ifdef OPEN_MAX + if ((rl.rlim_cur > 0) && + (rl.rlim_cur < OPEN_MAX)) { + fprintf(stderr, "raising soft limit up to OPEN_MAX\n"); + rl.rlim_cur = OPEN_MAX; + if (setrlimit(RLIMIT_NOFILE, &rl) != 0) { + /* on failure don't abort just issue a warning */ + store_errmsg("setrlimit() failed", ERRNO); + fprintf(stderr, "%s\n", msgbuff); + msgbuff[0] = '\0'; + } + } +#endif + fprintf(stderr, "raising soft limit up to hard limit\n"); rl.rlim_cur = rl.rlim_max; if (setrlimit(RLIMIT_NOFILE, &rl) != 0) { + /* on failure don't abort just issue a warning */ store_errmsg("setrlimit() failed", ERRNO); fprintf(stderr, "%s\n", msgbuff); - return -2; + msgbuff[0] = '\0'; } /* get current open file limits */ |