Changeset 4295


Ignore:
Timestamp:
01/24/10 02:47:14 (3 years ago)
Author:
sam
Message:

Add a test to check that all fonts can be loaded.

Location:
toilet/trunk
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • toilet/trunk/fonts/Makefile.am

    r4276 r4295  
    1212fontdir = $(datadir)/figlet 
    1313 
     14echo-fonts: ; echo $(allfonts) 
     15 
  • toilet/trunk/test/Makefile.am

    r4136 r4295  
    11# $Id$ 
    22 
    3 EXTRA_DIST = check-build 
     3EXTRA_DIST = check-build check-fonts 
    44 
    5 TESTS = check-build 
     5TESTS = check-build check-fonts 
    66 
  • toilet/trunk/test/check-build

    r4136 r4295  
    99for dir in src tools; do 
    1010  pushd ../$dir >/dev/null 
    11   for x in $(make echo-sources); do 
     11  for x in $(make -s echo-sources); do 
     12    case "$x" in 
     13     *.c|*.cpp|*.h|*.m) ;; 
     14     *) continue ;; 
     15    esac 
    1216    if grep '[[:space:]]$' "$x" >/dev/null 2>&1; then 
    1317      echo "error: $dir/$x contains trailing spaces" 
Note: See TracChangeset for help on using the changeset viewer.