#! /bin/sh # There should be a supplied bitmap file test-coupler1.bmp # We will generate all the bitmaps and check they # are all okay. touch $top_builddir/tmp/test-coupler1.V.odd.bmp MD5SUM=`$top_builddir/tools/src/mymd5sum $top_builddir/tmp/test-coupler1.V.odd.bmp` rm $top_builddir/tmp/test-coupler1.V.odd.bmp if [ $MD5SUM != 5039cb92032f6ec654a4476896461e7a ]; then echo "FAILED:" $0 >> tests.log exit 1 else echo "PASSED:" $0 >> tests.log exit 0 fi