From: Willy Tarreau Date: Wed, 16 Dec 2020 09:39:20 +0000 (+0100) Subject: REGTESTS: make use of HAPROXY_ARGS and pass -dM by default X-Git-Tag: v2.3.3~34 X-Git-Url: http://git.haproxy.org/?a=commitdiff_plain;h=f13c7dbe51f3eda453c6aa596b3b56e2274c106d;p=haproxy-2.3.git REGTESTS: make use of HAPROXY_ARGS and pass -dM by default Enabling memory poisonning is often pretty effective for detecting uninitialized structure fields. Let's enable it by default and let the user change the arguments at will (e.g. forcing some memory limits or disabling a poller). This will work with the latest vtest version to date (02a9bc1). (cherry picked from commit a4009cd6103a92752db27c3a85051c6adcc832c1) Signed-off-by: Christopher Faulet --- diff --git a/scripts/run-regtests.sh b/scripts/run-regtests.sh index 7bcc394..da20ae3 100755 --- a/scripts/run-regtests.sh +++ b/scripts/run-regtests.sh @@ -69,9 +69,11 @@ _help() Configure environment variables to set the haproxy and vtest binaries to use setenv HAPROXY_PROGRAM /usr/local/sbin/haproxy setenv VTEST_PROGRAM /usr/local/bin/vtest + setenv HAPROXY_ARGS "-dM -de -m 50" or export HAPROXY_PROGRAM=/usr/local/sbin/haproxy export VTEST_PROGRAM=/usr/local/bin/vtest + export HAPROXY_ARGS="-dM -de -m 50" EOF exit 0 } @@ -290,6 +292,7 @@ _version() { HAPROXY_PROGRAM="${HAPROXY_PROGRAM:-${PWD}/haproxy}" +HAPROXY_ARGS="${HAPROXY_ARGS--dM}" VTEST_PROGRAM="${VTEST_PROGRAM:-vtest}" TESTDIR="${TMPDIR:-/tmp}" REGTESTS="" @@ -320,7 +323,7 @@ if [ $preparefailed ]; then fi { read HAPROXY_VERSION; read TARGET; read FEATURES; } << EOF -$($HAPROXY_PROGRAM -vv |grep 'HA-Proxy version\|TARGET.*=\|^Feature' | sed 's/.* [:=] //') +$($HAPROXY_PROGRAM $HAPROXY_ARGS -vv |grep 'HA-Proxy version\|TARGET.*=\|^Feature' | sed 's/.* [:=] //') EOF HAPROXY_VERSION=$(echo $HAPROXY_VERSION | cut -d " " -f 3) @@ -333,6 +336,9 @@ TESTDIR=$(mktemp -d "$TESTDIR/haregtests-$TESTRUNDATETIME.XXXXXX") || exit 1 export TMPDIR="$TESTDIR" export HAPROXY_PROGRAM="$HAPROXY_PROGRAM" +if [ -n "$HAPROXY_ARGS" ]; then + export HAPROXY_ARGS +fi echo "Target : $TARGET" echo "Options : $FEATURES"