]> granicus.if.org Git - imagemagick/blob - Magick++/tests/tests.tap
Added new class to support multiple ChannelMoments.
[imagemagick] / Magick++ / tests / tests.tap
1 #!/bin/sh
2 #
3 # Copyright 2004 Bob Friesenhahn <bfriesen@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..12"
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 montageImages morphImages readWriteBlob readWriteImages
19 do
20   ./${mytest} && echo "ok" || echo "not ok"
21 done
22 :