diff options
author | Marc Hoersken <info@marc-hoersken.de> | 2021-06-02 20:57:44 +0200 |
---|---|---|
committer | Marc Hoersken <info@marc-hoersken.de> | 2021-09-09 21:28:26 +0200 |
commit | 60efeb1e0d99938013220550bef817771dd6d833 (patch) | |
tree | c3f8ef06b5790370ee0dd707579e041a010e91db /appveyor.yml | |
parent | 1fbd822b645563fa0f9422609c432743f012cd11 (diff) | |
download | curl-60efeb1e0d99938013220550bef817771dd6d833.tar.gz |
runtests: add option -u to error on server unexpectedly alive
Let's try to actually handle the server unexpectedly alive
case by first making them visible on CI builds as failures.
This is needed to detect issues with killing of the test
servers completely including nested process chains with
multiple PIDs per test server (including bash and perl).
On Windows/cygwin platforms this is especially helpful with
debugging PID mixups due to cygwin using its own PID space.
Reviewed-by: Daniel Stenberg
Closes #7180
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 6cbd5f844..255b436e4 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -303,7 +303,7 @@ test_script: cmake --build . --config %PRJ_CFG% --target test-nonflaky ) else ( echo APPVEYOR_API_URL=%APPVEYOR_API_URL% && - bash.exe -e -l -c "cd /c/projects/curl/tests && ./runtests.pl -a -p !flaky %DISABLED_TESTS%" )) + bash.exe -e -l -c "cd /c/projects/curl/tests && ./runtests.pl -a -p -u !flaky %DISABLED_TESTS%" )) # select branches to avoid testing feature branches twice (as branch and as pull request) branches: |