X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=scripts%2Flttng-tools%2Fbuild.sh;h=243e647090cc5c992687723ea0ea5778d1a137ca;hb=3249749d9bb19a5379d6a6e9edb5b1c507277e54;hp=8542adc73030a2caffa31dc8da6beeb994256405;hpb=2c34ea1488ea3241038be5ef41a099ea14d42041;p=lttng-ci.git diff --git a/scripts/lttng-tools/build.sh b/scripts/lttng-tools/build.sh index 8542adc..243e647 100755 --- a/scripts/lttng-tools/build.sh +++ b/scripts/lttng-tools/build.sh @@ -228,18 +228,12 @@ macos*) export LDFLAGS="-L/opt/local/lib $LDFLAGS" export PYTHON="python3" export PYTHON_CONFIG="python3-config" - - LTTNG_TOOLS_RUN_TESTS="no" - LTTNG_TOOLS_RUN_TESTS_LONG_REGRESSION="no" ;; cygwin|cygwin64|msys32|msys64) export MAKE=make export TAR=tar export NPROC=nproc - - LTTNG_TOOLS_RUN_TESTS="no" - LTTNG_TOOLS_RUN_TESTS_LONG_REGRESSION="no" ;; *) @@ -494,8 +488,8 @@ if [ "$LTTNG_TOOLS_CLANG_TIDY" = "yes" ]; then fi fi -# Run tests for all configs except 'no-ust' -if [ "$LTTNG_TOOLS_RUN_TESTS" = "yes" ] && [ "$conf" != "no-ust" ]; then +# Run tests for all configs except 'no-ust' / 'relayd-only' +if [ "$LTTNG_TOOLS_RUN_TESTS" = "yes" ] && [[ ! "$conf" =~ (no-ust|relayd-only) ]]; then print_header "Run test suite" # Allow core dumps @@ -542,7 +536,7 @@ if [ "$LTTNG_TOOLS_RUN_TESTS" = "yes" ] && [ "$conf" != "no-ust" ]; then fi fi -if [ "$LTTNG_TOOLS_RUN_TESTS" = "yes" ] && [ "$conf" = "no-ust" ]; then +if [ "$LTTNG_TOOLS_RUN_TESTS" = "yes" ] && [[ "$conf" =~ (no-ust|relayd-only) ]]; then # The TAP plugin will fail the job if no test logs are present mkdir -p "$TAPDIR/no-tests" echo "1..1" > "$TAPDIR/no-tests/tests.log"