diff options
author | Joe Mason <jmason@rim.com> | 2012-08-01 13:22:02 -0400 |
---|---|---|
committer | Joe Mason <jmason@rim.com> | 2012-08-02 17:34:45 -0400 |
commit | 76ba5919573c1f75ebae60c6e6fa5d7d6f5cf98d (patch) | |
tree | a6d1a17c9abb7730239c57cd2e2e5fee8b6abbf1 /tests/runtests.pl | |
parent | 1f8518c5d9aaa369dae85620973f9b5c1add3277 (diff) |
Remove the --fork option of sws, since it makes refactoring to use poll more complicated and should
be redundant once we poll
Diffstat (limited to 'tests/runtests.pl')
-rwxr-xr-x | tests/runtests.pl | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl index 461efe420..6f8a51751 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -187,7 +187,6 @@ my $memanalyze="$perl $srcdir/memanalyze.pl"; my $pwd = getcwd(); # current working directory my $start; -my $forkserver=0; my $ftpchecktime=1; # time it took to verify our test FTP server my $stunnel = checkcmd("stunnel4") || checkcmd("stunnel"); @@ -1198,7 +1197,6 @@ sub runhttpserver { $logfile = server_logfilename($LOGDIR, $proto, $ipvnum, $idnum); - $flags .= "--fork " if($forkserver); $flags .= "--gopher " if($proto eq "gopher"); $flags .= "--connect $HOSTIP " if($alt eq "proxy"); $flags .= "--verbose " if($debugprotocol); @@ -4270,12 +4268,6 @@ while(@ARGV) { # have the servers display protocol output $debugprotocol=1; } - elsif ($ARGV[0] eq "-f") { - # run fork-servers, which makes the server fork for all new - # connections This is NOT what you wanna do without knowing exactly - # why and for what - $forkserver=1; - } elsif ($ARGV[0] eq "-g") { # run this test with gdb $gdbthis=1; |