Home | History | Annotate | Download | only in tests
      1 #!/bin/sh
      2 #
      3 # Copyright 2004 Bob Friesenhahn <bfriesen (at] simple.dallas.tx.us>
      4 #
      5 # This file is part of Magick++, the C++ API for ImageMagick and
      6 # ImageMagick.  Please see the file "COPYING" included with Magick++
      7 # for usage and copying restrictions.
      8 #
      9 subdir=Magick++/tests
     10 . ./common.shi
     11 echo "1..13"
     12 
     13 SRCDIR=${top_srcdir}/${subdir}/
     14 export SRCDIR
     15 
     16 cd ${subdir} || exit 1
     17 
     18 for mytest in appendImages attributes averageImages coalesceImages coderInfo color colorHistogram exceptions geometry montageImages morphImages readWriteBlob readWriteImages
     19 do
     20   ./${mytest} && echo "ok" || echo "not ok"
     21 done
     22 :
     23