diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-03-16 22:21:37 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-03-17 09:55:35 +0100 |
commit | d83402813b624d9067416bea2e7feb70a358cf65 (patch) | |
tree | f5fdef70706ab5678f7e2e10bf4b085978d9321e /scripts | |
parent | 8a2b36df5be258db32d05a0466554150d3fabfb2 (diff) | |
download | curl-d83402813b624d9067416bea2e7feb70a358cf65.tar.gz |
CI: stop ignoring 323, it is disabled
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/travis/script.sh | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/scripts/travis/script.sh b/scripts/travis/script.sh index 3f587640d..5bfd84b84 100755 --- a/scripts/travis/script.sh +++ b/scripts/travis/script.sh @@ -28,12 +28,7 @@ if [ "$T" = "debug" ]; then make make examples 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 - fi + make TFLAGS=-n test-nonflaky fi fi |