diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-03-20 23:59:13 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-03-23 09:21:22 +0100 |
commit | 3d1fcf6cd8f9044e55288dbd6754589faeb933fc (patch) | |
tree | 0207e9724ad9949f48839c16b2d50cdf9e776136 /.cirrus.yml | |
parent | e3d1700cce7fc6bfeb7883ad9f6677a5f3c80e55 (diff) | |
download | curl-3d1fcf6cd8f9044e55288dbd6754589faeb933fc.tar.gz |
cirrus: make freebsd ignore the tests instead of skipping
To allow us to see in the CI logs how they actually behave
Closes #5091
Diffstat (limited to '.cirrus.yml')
-rw-r--r-- | .cirrus.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index 7f9a0d1ec..d458be3e7 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -48,9 +48,9 @@ task: - SKIP_TESTS='' - uname -r - case `uname -r` in - 13.0*) SKIP_TESTS='!1242 !1243 !2002 !2003';; - 12.1*) SKIP_TESTS='!1242 !1243 !2002 !2003';; - 11.3*) SKIP_TESTS='!504 !1242 !1243 !2002 !2003';; + 13.0*) SKIP_TESTS='~1242 ~1243 ~2002 ~2003';; + 12.1*) SKIP_TESTS='~1242 ~1243 ~2002 ~2003';; + 11.3*) SKIP_TESTS='~504 ~1242 ~1243 ~2002 ~2003';; esac - sudo -u nobody make V=1 TFLAGS="-n -a -p !flaky ${SKIP_TESTS}" test-nonflaky install_script: |