Files
archived-lcd4linux/smoketest.sh
michael b1255305ba ported changeset 778 from branches/0.10.1
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@779 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
2007-03-05 05:53:11 +00:00

28 lines
624 B
Bash
Executable File

#! /bin/bash
# $Id$
# $URL$
rm -f smoketest.log lcd4linux
make distclean
./bootstrap
for driver in BeckmannEgle BWCT CrystalFontz Curses Cwlinux EA232graphic G15 HD44780 LCD2USB LCDLinux LCDTerm LEDMatrix LPH7508 LUIse M50530 MatrixOrbital MilfordInstruments Noritake NULL picoLCD PNG PPM RouterBoard Sample serdisplib SimpleLCD T6963 Trefon USBHUB USBLCD WincorNixdorf X11; do
make distclean
./configure --with-drivers=$driver
make
if [ -x lcd4linux ]; then
echo "Success: $driver" >>smoketest.log
else
echo "FAILED: $driver" >>smoketest.log
fi
done
make distclean
./configure