From 905ca77c9ed0edac993c0f9bd9dac36253d96dd5 Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Wed, 1 Nov 2006 18:33:50 +0000 Subject: test 518 is all about testing libcurl functionality when more than FD_SETSIZE file descriptors are open. This means that if for any reason we are not able to open more than FD_SETSIZE file descriptors then test 518 should not be run. test 537 is all about testing libcurl functionality when the system has nearly exhausted the number of free file descriptors. Test 537 will try to run with very few free file descriptors. --- tests/runtests.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/runtests.pl') diff --git a/tests/runtests.pl b/tests/runtests.pl index f2170e629..85501a4d0 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -1217,7 +1217,7 @@ sub singletest { chomp $cmd; if($cmd) { my @o; - if($testnum == 518) { + if(($testnum == 518) || ($testnum == 537)) { @o = `$cmd 2>"$LOGDIR/stderr$testnum"`; } else { @@ -1231,7 +1231,7 @@ sub singletest { } } - if($testnum == 518) { + if(($testnum == 518) || ($testnum == 537)) { logmsg "== Start of file $LOGDIR/stderr$testnum\n"; displaylogcontent("$LOGDIR/stderr$testnum"); logmsg "== End of file $LOGDIR/stderr$testnum\n"; -- cgit v1.2.3