From 8a529bd98764f023680d750d76e138bc644e50a6 Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Wed, 4 Apr 2007 06:39:03 +0000 Subject: 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. --- tests/libtest/lib537.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tests/libtest/lib537.c') diff --git a/tests/libtest/lib537.c b/tests/libtest/lib537.c index 29de30818..d59957430 100644 --- a/tests/libtest/lib537.c +++ b/tests/libtest/lib537.c @@ -68,21 +68,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]); } -- cgit v1.2.3