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 /.azure-pipelines.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 '.azure-pipelines.yml')
-rw-r--r-- | .azure-pipelines.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 356d8bf45..639705587 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -203,4 +203,4 @@ stages: displayName: 'test' env: AZURE_ACCESS_TOKEN: "$(System.AccessToken)" - TFLAGS: "-vc /usr/bin/curl.exe -r -rm $(tests)" + TFLAGS: "-u -vc /usr/bin/curl.exe -r -rm $(tests)" |