diff options
author | Peter Wu <peter@lekensteyn.nl> | 2014-11-27 23:59:16 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2014-11-28 23:49:10 +0100 |
commit | bb6047cd649a47798b0af9c39f7be00e84117e71 (patch) | |
tree | db4bf73b5353db1f3f34d0461f26fcf6a59c5d2c /tests | |
parent | 93e080cbaa80760400cf14be199feb74e894e6a1 (diff) |
runtests.pl: fix warning message, remove duplicate value
Signed-off-by: Peter Wu <peter@lekensteyn.nl>
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/runtests.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl index 2cdaf9058..3059a6202 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -357,7 +357,7 @@ delete $ENV{'CURL_CA_BUNDLE'} if($ENV{'CURL_CA_BUNDLE'}); # Load serverpidfile hash with pidfile names for all possible servers. # sub init_serverpidfile_hash { - for my $proto (('ftp', 'http', 'imap', 'pop3', 'smtp', 'http')) { + for my $proto (('ftp', 'http', 'imap', 'pop3', 'smtp')) { for my $ssl (('', 's')) { for my $ipvnum ((4, 6)) { for my $idnum ((1, 2, 3)) { @@ -2764,7 +2764,7 @@ sub singletest { $timeprepini{$testnum} = Time::HiRes::time() if($timestats); if($disttests !~ /test$testnum\W/ ) { - logmsg "Warning: test$testnum not present in tests/data/Makefile.am\n"; + logmsg "Warning: test$testnum not present in tests/data/Makefile.inc\n"; } if($disabled{$testnum}) { logmsg "Warning: test$testnum is explicitly disabled\n"; |