From: cristy Date: Tue, 21 Aug 2012 11:50:43 +0000 (+0000) Subject: (no commit message) X-Git-Tag: 7.0.1-0~5095 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f66ad0b4081b7018d8efb429acfa3e0bf3fe63f5;p=imagemagick --- diff --git a/Magick++/tests/tests.tap b/Magick++/tests/tests.tap new file mode 100755 index 000000000..aa0063dff --- /dev/null +++ b/Magick++/tests/tests.tap @@ -0,0 +1,22 @@ +#!/bin/sh +# +# Copyright 2004 Bob Friesenhahn +# +# 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 +: