diff options
author | Marc Hoersken <info@marc-hoersken.de> | 2021-09-27 21:17:29 +0200 |
---|---|---|
committer | Marc Hoersken <info@marc-hoersken.de> | 2021-10-08 20:16:15 +0200 |
commit | ab1671cafefcaf19ff6ac00a6cc7b36dfe16adcd (patch) | |
tree | e7b57626ec198036af2f0f562e994182c1df2909 /appveyor.yml | |
parent | aceff6088cef70843de1da1dd7cc03c37c094d99 (diff) | |
download | curl-ab1671cafefcaf19ff6ac00a6cc7b36dfe16adcd.tar.gz |
CI/makefiles: introduce dedicated test target
Make it easy to use the same set of test flags
throughout all current and future CI builds.
Reviewed-by: Jay Satiro
Follow up to #7690
Closes #7785
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/appveyor.yml b/appveyor.yml index 023588332..d3c48a92a 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -299,11 +299,11 @@ build_script: test_script: - if %TESTING%==ON ( if %BUILD_SYSTEM%==CMake ( - set TFLAGS=-r -rm -u %DISABLED_TESTS% && - cmake --build . --config %PRJ_CFG% --target test-nonflaky + set TFLAGS=%DISABLED_TESTS% && + cmake --build . --config %PRJ_CFG% --target test-ci ) else ( if %BUILD_SYSTEM%==autotools ( - bash.exe -e -l -c "cd /c/projects/curl && make V=1 TFLAGS='-r -rm -u %DISABLED_TESTS%' test-nonflaky" + bash.exe -e -l -c "cd /c/projects/curl && make V=1 TFLAGS='%DISABLED_TESTS%' test-ci" ) else ( bash.exe -e -l -c "cd /c/projects/curl/tests && ./runtests.pl -a -p !flaky -r -rm -u %DISABLED_TESTS%" )) |