QGIS/scripts/runtests_local_travis_config.sh
Nyall Dawson 561a8326c5 Modernize language
And avoid insensitive/trigger words (as far as possible -- some are
coming from Qt or other external APIs)
2020-06-13 16:48:38 +10:00

7 lines
222 B
Bash
Executable File

#!/usr/bin/env bash
DIR=$(git rev-parse --show-toplevel)
cd $1 || exit
FOLDER=linux
ctest -E "$(cat ${DIR}/.ci/travis/${FOLDER}/blocklist.txt | sed -r '/^(#.*?)?$/d' | paste -sd '|' -)" --output-on-failure
cd $DIR || exit