Move https test server ports from >32767 to <= 32767

* Test-https-badcerts.px: Change port
* Test-https-crl.px: Likewise
* Test-https-weboftrust.px: Likewise
This commit is contained in:
Tim Rühsen 2017-05-08 10:57:41 +02:00
parent 3132049ae4
commit b9fb74ddfa
3 changed files with 4 additions and 4 deletions

View File

@ -80,7 +80,7 @@ unless(-e $servercrt && -e $serverkey && $servercheck == 1)
}
# Try Wget using SSL with expired cert. Expect Failure.
my $port = 60443;
my $port = 30443;
my $cmdline = $WgetTest::WGETPATH . " --ca-certificate=$cacrt".
" https://$testhostname:$port/somefile.txt";
my $expected_error_code = 5;

View File

@ -81,7 +81,7 @@ unless(-e $servercrt && -e $serverkey && $servercheck == 1)
}
# Try Wget using SSL first without --no-check-certificate. Expect Success.
my $port = 62443;
my $port = 32443;
my $cmdline = $WgetTest::WGETPATH . " --ca-certificate=$cacrt".
" https://$testhostname:$port/somefile.txt";
my $expected_error_code = 0;

View File

@ -115,7 +115,7 @@ unless(-e $usrcrt && -e $ikeyfile && $usrcheck == 1)
}
# Try Wget using SSL using certificate signed by intermediate CA. Expect error.
my $port = 60443;
my $port = 30443;
my $cmdline = $WgetTest::WGETPATH . " --ca-certificate=$cdir/certs/".
"test-ca-cert.pem https://$testhostname:$port/somefile.txt";
my $expected_error_code = 5;
@ -142,7 +142,7 @@ if ($sslsock->run() == 0)
}
# Retry the test with --no-check-certificate. expect success
$port = 61443;
$port = 31443;
$cmdline = $WgetTest::WGETPATH . " --ca-certificate=$cdir/certs/wotca.pem".
" https://$testhostname:$port/somefile.txt";