diff options
author | Yang Tse <yangsita@gmail.com> | 2007-04-04 06:39:03 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2007-04-04 06:39:03 +0000 |
commit | 8a529bd98764f023680d750d76e138bc644e50a6 (patch) | |
tree | 55984c3006bfba90aa9d3e43385b6d2d3102ad08 /tests/libtest/lib518.c | |
parent | 8fe9376d542ef4f11b2049190de363f7b79436ec (diff) | |
download | curl-8a529bd98764f023680d750d76e138bc644e50a6.tar.gz |
test can be allowed to run if fopen() is capable of fopen()ing
three additional files once that we have already open()ed the
big bunch of file descriptors.
Diffstat (limited to 'tests/libtest/lib518.c')
-rw-r--r-- | tests/libtest/lib518.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/libtest/lib518.c b/tests/libtest/lib518.c index 30de15ef3..1997b2f9e 100644 --- a/tests/libtest/lib518.c +++ b/tests/libtest/lib518.c @@ -67,21 +67,21 @@ static void close_file_descriptors(void) static int fopen_works(void) { - FILE *fpa[SAFETY_MARGIN]; + FILE *fpa[3]; int i; int ret = 1; - for (i = 0; i < SAFETY_MARGIN; i++) { + for (i = 0; i < 3; i++) { fpa[i] = NULL; } - for (i = 0; i < SAFETY_MARGIN; i++) { + for (i = 0; i < 3; i++) { fpa[i] = fopen(DEV_NULL, "r"); if (fpa[i] == NULL) { ret = 0; break; } } - for (i = 0; i < SAFETY_MARGIN; i++) { + for (i = 0; i < 3; i++) { if (fpa[i] != NULL) fclose(fpa[i]); } |