(no commit message)
authorcristy <urban-warrior@git.imagemagick.org>
Tue, 21 Aug 2012 11:50:43 +0000 (11:50 +0000)
committercristy <urban-warrior@git.imagemagick.org>
Tue, 21 Aug 2012 11:50:43 +0000 (11:50 +0000)
Magick++/tests/tests.tap [new file with mode: 0755]

diff --git a/Magick++/tests/tests.tap b/Magick++/tests/tests.tap
new file mode 100755 (executable)
index 0000000..aa0063d
--- /dev/null
@@ -0,0 +1,22 @@
+#!/bin/sh
+#
+# Copyright 2004 Bob Friesenhahn <bfriesen@simple.dallas.tx.us>
+#
+# This file is part of Magick++, the C++ API for ImageMagick and
+# ImageMagick.  Please see the file "COPYING" included with Magick++
+# for usage and copying restrictions.
+#
+SRCDIR=`dirname $0`
+SRCDIR=`cd $SRCDIR && pwd`/
+echo "1..12"
+
+cd Magick++/tests || exit 1
+
+tests='appendImages attributes averageImages coalesceImages coderInfo color
+  colorHistogram exceptions montageImages morphImages readWriteBlob readWriteImages'
+
+for mytest in $tests
+do
+  ./mytest && echo "ok" || echo "not ok"
+done
+: