Skip to content

Commit

Permalink
Add script to run local tests using travis blacklist
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanW2 committed Jun 26, 2017
1 parent 9497f24 commit d88d52b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions scripts/runtests-local-travis-config.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
DIR=$(git rev-parse --show-toplevel)
cd $1
FOLDER=linux
if [[ "$OSTYPE" =~ darwin* ]]; then
GP=linux
fi
ctest -E "$(cat ${DIR}/.ci/travis/${FOLDER}/blacklist.txt | sed -r '/^(#.*?)?$/d' | paste -sd '|' -)" --output-on-failure
cd $DIR

0 comments on commit d88d52b

Please sign in to comment.