CI: stop ignoring 323, it is disabled

This commit is contained in:
Daniel Stenberg 2020-03-16 22:21:37 +01:00
parent 8a2b36df5b
commit d83402813b
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2
3 changed files with 10 additions and 15 deletions

View File

@ -43,7 +43,7 @@ stages:
displayName: 'test' displayName: 'test'
env: env:
AZURE_ACCESS_TOKEN: "$(System.AccessToken)" AZURE_ACCESS_TOKEN: "$(System.AccessToken)"
TFLAGS: "~323" TFLAGS: ""
- job: disable_ipv6 - job: disable_ipv6
displayName: ubuntu w/o IPv6 displayName: ubuntu w/o IPv6
@ -64,7 +64,7 @@ stages:
displayName: 'test' displayName: 'test'
env: env:
AZURE_ACCESS_TOKEN: "$(System.AccessToken)" AZURE_ACCESS_TOKEN: "$(System.AccessToken)"
TFLAGS: "~323" TFLAGS: ""
- job: disable_http_smtp_imap - job: disable_http_smtp_imap
displayName: ubuntu w/o HTTP/SMTP/IMAP displayName: ubuntu w/o HTTP/SMTP/IMAP
@ -105,7 +105,7 @@ stages:
displayName: 'test' displayName: 'test'
env: env:
AZURE_ACCESS_TOKEN: "$(System.AccessToken)" AZURE_ACCESS_TOKEN: "$(System.AccessToken)"
TFLAGS: "~323" TFLAGS: ""
- job: http_only - job: http_only
displayName: ubuntu HTTP only displayName: ubuntu HTTP only
@ -126,7 +126,7 @@ stages:
displayName: 'test' displayName: 'test'
env: env:
AZURE_ACCESS_TOKEN: "$(System.AccessToken)" AZURE_ACCESS_TOKEN: "$(System.AccessToken)"
TFLAGS: "~323" TFLAGS: ""
- stage: linux_torture - stage: linux_torture
dependsOn: linux dependsOn: linux
@ -149,7 +149,7 @@ stages:
- script: make test-nonflaky - script: make test-nonflaky
displayName: 'torture test' displayName: 'torture test'
env: env:
TFLAGS: "-n -t --shallow=40 !FTP ~323" TFLAGS: "-n -t --shallow=40 !FTP"
########################################## ##########################################
### macOS jobs below ### macOS jobs below
@ -261,7 +261,7 @@ stages:
displayName: 'test' displayName: 'test'
env: env:
AZURE_ACCESS_TOKEN: "$(System.AccessToken)" AZURE_ACCESS_TOKEN: "$(System.AccessToken)"
TFLAGS: "~323 ~1056 ~1299" TFLAGS: "~1056 ~1299"
- job: windows_msys2_mingw64_debug_openssl - job: windows_msys2_mingw64_debug_openssl
displayName: msys2 mingw64 debug openssl displayName: msys2 mingw64 debug openssl
@ -284,7 +284,7 @@ stages:
displayName: 'test' displayName: 'test'
env: env:
AZURE_ACCESS_TOKEN: "$(System.AccessToken)" AZURE_ACCESS_TOKEN: "$(System.AccessToken)"
TFLAGS: "~323 ~1056 ~1299" TFLAGS: "~1056 ~1299"
- job: windows_msys1_mingw_debug_openssl - job: windows_msys1_mingw_debug_openssl
displayName: msys1 mingw debug openssl displayName: msys1 mingw debug openssl

View File

@ -44,8 +44,8 @@ task:
- SKIP_TESTS='' - SKIP_TESTS=''
- uname -r - uname -r
- case `uname -r` in - case `uname -r` in
13.0*) SKIP_TESTS='!323 !1242 !1243 !2002 !2003';; 13.0*) SKIP_TESTS='!1242 !1243 !2002 !2003';;
12.1*) SKIP_TESTS='!323 !1242 !1243 !2002 !2003';; 12.1*) SKIP_TESTS='!1242 !1243 !2002 !2003';;
11.3*) SKIP_TESTS='!504 !1242 !1243 !2002 !2003';; 11.3*) SKIP_TESTS='!504 !1242 !1243 !2002 !2003';;
10.4*) SKIP_TESTS='!310 !311 !312 !313 !1082 !1242 !1243 !2002 !2003 !2034 !2035 !2037 !2038 !2041 !2042 !2048 !3000 !3001';; 10.4*) SKIP_TESTS='!310 !311 !312 !313 !1082 !1242 !1243 !2002 !2003 !2034 !2035 !2037 !2038 !2041 !2042 !2048 !3000 !3001';;
esac esac

View File

@ -28,13 +28,8 @@ if [ "$T" = "debug" ]; then
make make
make examples make examples
if [ -z $NOTESTS ]; then if [ -z $NOTESTS ]; then
if [ "$TRAVIS_ARCH" = "aarch64" ] ; then
# TODO: find out why this test is failing on arm64
make "TFLAGS=-n !323" test-nonflaky
else
make TFLAGS=-n test-nonflaky make TFLAGS=-n test-nonflaky
fi fi
fi
fi fi
if [ "$T" = "debug-wolfssl" ]; then if [ "$T" = "debug-wolfssl" ]; then