#!/bin/sh

echo Testing ImageMagick for a PNG-related problem
convert test1.ps test1.png || exit 1
rm test1.png || exit 1
echo Seems to be O.K.
