#!/bin/sh rm -f test/yellow_man_out.bmp ./imgsynth -i test/input if [ "$(md5sum < test/yellow_man_out.bmp)" != "$(md5sum < test/yellow_man_ref.bmp)" ] then echo "ERROR: test/yellow_man_ref.bmp and test/yellow_man_ref.bmp differ" exit 1 else echo "Test successful" fi