aboutsummaryrefslogtreecommitdiff
path: root/tests/runtests.pl
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2006-11-01 18:33:50 +0000
committerYang Tse <yangsita@gmail.com>2006-11-01 18:33:50 +0000
commit905ca77c9ed0edac993c0f9bd9dac36253d96dd5 (patch)
tree1c08de2cea2714889cdd56f6ed89e3ddcf70e56c /tests/runtests.pl
parent61043c7e74da4b0f8ff7bfb0cf5be6dab2cab144 (diff)
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.
Diffstat (limited to 'tests/runtests.pl')
-rwxr-xr-xtests/runtests.pl4
1 files changed, 2 insertions, 2 deletions
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";