Files
b2d/tests/test.sh
Dagen Brock 8ee13530c5 working mac version
- note that this is the beginning of clang-formatting the code so you'll want to look at this diff with whitespace ignored
2020-05-03 14:35:20 -05:00

23 lines
397 B
Bash
Executable File

B2D="../b2d"
echo " --- Super High-Tech Test Suite v0.1234zaxxon ---"
#####################################
# LORES
echo "LORES TEST START"
$B2D black-40x48.bmp L N
$B2D white-40x48.bmp L N
diff BLACK-40X48.SLO BLACK.LORES
if [ $? -ne 0 ] ; then
echo "LORES FAIL!"
exit 1
fi
diff WHITE-40X48.SLO WHITE.LORES
if [ $? -ne 0 ] ; then
echo "LORES FAIL!"
exit 1
fi
echo "LORES TEST PASSED"