Compare commits
2 Commits
master
...
dfandrich/
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c7b989e6d6 | ||
|
|
7e515e6094 |
@ -137,6 +137,7 @@ if [[ "${TFLAGS}" != 'skipall' ]] && \
|
|||||||
elif [ -x "$(cygpath 'C:/msys64/usr/bin/curl.exe')" ]; then
|
elif [ -x "$(cygpath 'C:/msys64/usr/bin/curl.exe')" ]; then
|
||||||
TFLAGS+=" -ac $(cygpath 'C:/msys64/usr/bin/curl.exe')"
|
TFLAGS+=" -ac $(cygpath 'C:/msys64/usr/bin/curl.exe')"
|
||||||
fi
|
fi
|
||||||
|
TFLAGS+=' -j0'
|
||||||
if [ "${BUILD_SYSTEM}" = 'CMake' ]; then
|
if [ "${BUILD_SYSTEM}" = 'CMake' ]; then
|
||||||
cmake --build _bld --config "${PRJ_CFG}" --target test-ci
|
cmake --build _bld --config "${PRJ_CFG}" --target test-ci
|
||||||
else
|
else
|
||||||
|
|||||||
@ -88,6 +88,6 @@ add_runtests(test-am "-a -am")
|
|||||||
add_runtests(test-full "-a -p -r")
|
add_runtests(test-full "-a -p -r")
|
||||||
# ~flaky means that it'll ignore results of tests using the flaky keyword
|
# ~flaky means that it'll ignore results of tests using the flaky keyword
|
||||||
add_runtests(test-nonflaky "-a -p ~flaky ~timing-dependent")
|
add_runtests(test-nonflaky "-a -p ~flaky ~timing-dependent")
|
||||||
add_runtests(test-ci "-a -p ~flaky ~timing-dependent -r -rm")
|
add_runtests(test-ci "-a -p ~flaky ~timing-dependent -r -rm -j2")
|
||||||
add_runtests(test-torture "-a -t")
|
add_runtests(test-torture "-a -t")
|
||||||
add_runtests(test-event "-a -e")
|
add_runtests(test-event "-a -e")
|
||||||
|
|||||||
@ -133,7 +133,7 @@ TEST_E = -a -e
|
|||||||
TEST_NF = -a -p ~flaky ~timing-dependent
|
TEST_NF = -a -p ~flaky ~timing-dependent
|
||||||
|
|
||||||
# special CI target derived from nonflaky with CI-specific flags
|
# special CI target derived from nonflaky with CI-specific flags
|
||||||
TEST_CI = $(TEST_NF) -r -rm
|
TEST_CI = $(TEST_NF) -r -rm -j2
|
||||||
endif
|
endif
|
||||||
|
|
||||||
CD2NROFF = $(top_srcdir)/scripts/cd2nroff $< >$@
|
CD2NROFF = $(top_srcdir)/scripts/cd2nroff $< >$@
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user