summaryrefslogtreecommitdiff
path: root/windows
diff options
context:
space:
mode:
authorwillson-chen <willson.chenwx@gmail.com>2019-09-30 16:32:49 +0800
committerMike Frysinger <vapier@gmail.com>2019-10-09 23:51:35 -0700
commit4d7b598863270187be8bbbe3f636cb946a3d27b9 (patch)
tree7fe758f3031d103909caa6dff8b237b0d2c92c4e /windows
parent84c49063f9a5c1c4e7492c4b7d2d56cc9b8cbf0f (diff)
downloadlibgd-4d7b598863270187be8bbbe3f636cb946a3d27b9.tar.gz
windows/msys/run_tests.sh: skip fontconfig and xpm test cases
libxpm and libfontconfig are unavaible in windows. So skip fontconfig and xpm test cases by excluding their test path
Diffstat (limited to 'windows')
-rwxr-xr-xwindows/msys/run_tests.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/windows/msys/run_tests.sh b/windows/msys/run_tests.sh
index 594fd07..22c720b 100755
--- a/windows/msys/run_tests.sh
+++ b/windows/msys/run_tests.sh
@@ -38,7 +38,7 @@ echo "Running tests:"
count=0
failures=0
compile_failures=0
-for test in `find . -name \*.c | grep -v '^./gdtest'`; do
+for test in `find . \( -path ./xpm -o -path ./fontconfig \) -prune -o -type f -name \*.c | grep -v '^./gdtest'`; do
count=`expr $count + 1`
exe=${test%.c}.exe