Skip to content

Commit

Permalink
[tests] Ignore *.dfont files
Browse files Browse the repository at this point in the history
It seems that Travis has fc-list installed and we end up with *.dfont
files in the system list of fonts, but we don’t support these.
  • Loading branch information
khaledhosny committed Mar 31, 2017
1 parent 98c80ea commit 534144d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/test_good_fonts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ if [ $# -eq 0 ] ; then
FAILS=0
IFS=$'\n'
for f in $FONTS; do
if [[ $f == *.dfont ]]; then continue; fi # Ignore .dfont’s
$0 "$f"
FAILS=$((FAILS+$?))
done
Expand Down

0 comments on commit 534144d

Please sign in to comment.