summaryrefslogtreecommitdiff
path: root/tests/Test-https-weboftrust.px
diff options
context:
space:
mode:
authorTim Rühsen <tim.ruehsen@gmx.de>2017-05-08 10:57:41 +0200
committerTim Rühsen <tim.ruehsen@gmx.de>2017-05-09 11:08:32 +0200
commitb9fb74ddfa4e3ce0758401b3871a2e9ea4899b47 (patch)
tree4b8c5d29bcf4dd7278fd8f7fb2ee4d6d417b2c91 /tests/Test-https-weboftrust.px
parent3132049ae4f054b85bc8bd1a0850160dcb4ecd00 (diff)
downloadwget-b9fb74ddfa4e3ce0758401b3871a2e9ea4899b47.tar.gz
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
Diffstat (limited to 'tests/Test-https-weboftrust.px')
-rwxr-xr-xtests/Test-https-weboftrust.px4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Test-https-weboftrust.px b/tests/Test-https-weboftrust.px
index 0d37f993..4e0c40c0 100755
--- a/tests/Test-https-weboftrust.px
+++ b/tests/Test-https-weboftrust.px
@@ -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";