windows: run_tests: avoid running fontconfig & xpm

master
willson-chen 2019-10-11 16:33:53 +08:00 committed by Mike Frysinger
parent 6049895bf3
commit c12ce7f474
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ echo "Running tests:"
count=0
failures=0
compile_failures=0
for test in `find . \( -path ./xpm -o -path ./fontconfig \) -prune -o -type f -name \*.c | grep -v '^./gdtest'`; do
for test in `find . -name \*.c | grep -vE '^./(fontconfig|gdtest|gdhelpers|xpm)'`; do
count=`expr $count + 1`
exe=${test%.c}.exe