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 /tests | |
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 'tests')
-rw-r--r-- | tests/CMakeLists.txt | 2 | ||||
-rw-r--r-- | tests/Makefile.am | 2 | ||||
-rwxr-xr-x | tests/runtests.pl | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 70a153385..5771bd2c9 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -46,6 +46,6 @@ add_runtests(test-am "-a -am") add_runtests(test-full "-a -p -r") # !flaky means that it'll skip all tests using the flaky keyword add_runtests(test-nonflaky "-a -p !flaky") -add_runtests(test-ci "-a -p !flaky -r -rm -u") +add_runtests(test-ci "-a -p !flaky -r -rm") add_runtests(test-torture "-a -t") add_runtests(test-event "-a -e") diff --git a/tests/Makefile.am b/tests/Makefile.am index 5022ec117..7c6498183 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -73,7 +73,7 @@ TEST_E = -a -e TEST_NF = -a -p !flaky # special CI target derived from nonflaky with CI-specific flags -TEST_CI = $(TEST_NF) -r -rm -u +TEST_CI = $(TEST_NF) -r -rm endif # make sure that PERL is pointing to an executable diff --git a/tests/runtests.pl b/tests/runtests.pl index a8d597ccc..8b3ba67d8 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -6173,6 +6173,6 @@ else { } } -if(($total && (($ok+$ign) != $total)) || !$total) { +if(($total && (($ok+$ign) != $total)) || !$total || $unexpected) { exit 1; } |