diff options
author | Marc Hoersken <info@marc-hoersken.de> | 2021-10-29 12:04:25 +0200 |
---|---|---|
committer | Marc Hoersken <info@marc-hoersken.de> | 2021-10-31 11:28:25 +0100 |
commit | 9121032fe3ee8cbe811985f3d50b79d94edbeb7d (patch) | |
tree | 471afcceb7e83a4af39dc71b4b35e68bd19c702d /appveyor.yml | |
parent | dd77ccd87c5bd8713eb1184e9e004b8d76b693cd (diff) | |
download | curl-9121032fe3ee8cbe811985f3d50b79d94edbeb7d.tar.gz |
CI/runtests.pl: restore -u flag, but remove it from CI runs
This makes it possible to use -u again for local testing,
but removes the flag from CI config files and make targets.
Reviewed-by: Daniel Stenberg
Partially reverts #7841
Closes #7921
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml index 9cfa67b03..149da9414 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -305,7 +305,7 @@ test_script: if %BUILD_SYSTEM%==autotools ( 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%" + bash.exe -e -l -c "cd /c/projects/curl/tests && ./runtests.pl -a -p !flaky -r -rm %DISABLED_TESTS%" )) ) |