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# 9subdir=Magick++/tests 10. ./common.shi 11echo "1..13" 12 13SRCDIR=${top_srcdir}/${subdir}/ 14export SRCDIR 15 16cd ${subdir} || exit 1 17 18for mytest in appendImages attributes averageImages coalesceImages coderInfo color colorHistogram exceptions geometry montageImages morphImages readWriteBlob readWriteImages 19do 20 ./${mytest} && echo "ok" || echo "not ok" 21done 22: 23