Browse Source

Skip more tests on centos6 and centos7

pull/881/head
Tim Kimber 5 months ago
parent
commit
7adbfc660c
No known key found for this signature in database GPG Key ID: 3E1804964E76BD18
2 changed files with 6 additions and 0 deletions
  1. +2
    -0
      test/34-ftp-passive.bats
  2. +4
    -0
      test/34-ftp-ports.bats

+ 2
- 0
test/34-ftp-passive.bats View File

@ -230,6 +230,8 @@ EOF
@test "Use ftps (implicit ssl, port 990) to create challenge file" {
if [ -n "$STAGING" ]; then
skip "Using staging server, skipping internal test"
elif [ "$GETSSL_OS" == "centos6" ] || [ "$GETSSL_OS" == "centos7" ]; then
skip "centOS6 and centos7 failing on this test with ftp server certificate issues, skipping"
fi
if [[ ! -f /etc/vsftpd.pem ]]; then


+ 4
- 0
test/34-ftp-ports.bats View File

@ -40,6 +40,8 @@ teardown() {
@test "Use ftpes, FTP_PORT=1001 (explicit ssl, port 1001) to create challenge file" {
if [ -n "$STAGING" ]; then
skip "Using staging server, skipping internal test"
elif [ "$GETSSL_OS" == "centos6" ] || [ "$GETSSL_OS" == "centos7" ]; then
skip "centOS6 and centos7 failing on this test with ftp server certificate issues, skipping"
fi
if [[ ! -f /etc/vsftpd.pem ]]; then
@ -114,6 +116,8 @@ EOF
@test "Use ftps, FTP_PORT=2002 (implicit ssl, port 2002) to create challenge file" {
if [ -n "$STAGING" ]; then
skip "Using staging server, skipping internal test"
elif [ "$GETSSL_OS" == "centos6" ] || [ "$GETSSL_OS" == "centos7" ]; then
skip "centOS6 and centos7 failing on this test with ftp server certificate issues, skipping"
fi
if [[ ! -f /etc/vsftpd.pem ]]; then


Loading…
Cancel
Save