blob: 45ea077c4cf9d1fc54944a6a3410417734406d36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/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
|