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

@@ -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;