mirror of
http://git.haproxy.org/git/haproxy.git
synced 2026-02-04 08:43:40 +02:00
BUILD: Makefile: move REGTESTST_TYPE default setting
In patch3bad3d5("BUILD: Makefile: exclude broken tests by default"), the default setting of the REGTESTST_TYPE variable was set in the Makefile instead of the run-regtests.sh script. Doing it in the Makefile was breaking the use of this environment varible with make ( REGTESTS_TYPES=slow,default make reg-tests ) This patch move the default setting from the Makefile to run-regtests.sh. It also change the documentation in `make reg-tests-help` about the default value. This patch should be backported where3bad3d5is backported.
This commit is contained in:
@@ -128,7 +128,7 @@ _startswith() {
|
||||
_findtests() {
|
||||
set -f
|
||||
|
||||
REGTESTS_TYPES="${REGTESTS_TYPES:-any}"
|
||||
REGTESTS_TYPES="${REGTESTS_TYPES:-default,bug,devel,slow}"
|
||||
any_test=$(echo $REGTESTS_TYPES | grep -cw "any")
|
||||
for i in $( find "$1" -name *.vtc ); do
|
||||
skiptest=
|
||||
|
||||
Reference in New Issue
Block a user