aboutsummaryrefslogtreecommitdiffstats
path: root/smoketest.sh
diff options
context:
space:
mode:
authorreinelt <>2006-06-25 14:58:38 +0000
committerreinelt <>2006-06-25 14:58:38 +0000
commit5f3a78f09d484f171ac0ad1102a7df9edb4a86f5 (patch)
tree1abb03a0c675239d5cff8963a89356c477e3cb63 /smoketest.sh
parent19a4d75fb8cf3162f1d22bd0f508cb4d93f3cdbd (diff)
downloadlcd4linux-5f3a78f09d484f171ac0ad1102a7df9edb4a86f5.tar.gz
[lcd4linux @ 2006-06-25 14:58:38 by reinelt]
switch to automake-1.9
Diffstat (limited to '')
-rwxr-xr-xsmoketest.sh23
1 files changed, 23 insertions, 0 deletions
diff --git a/smoketest.sh b/smoketest.sh
new file mode 100755
index 0000000..960d7e8
--- /dev/null
+++ b/smoketest.sh
@@ -0,0 +1,23 @@
+#! /bin/bash
+
+rm -f smoketest.log lcd4linux
+
+make distclean
+./bootstrap
+
+for driver in BeckmannEgle BWCT CrystalFontz Curses Cwlinux G15 HD44780 LCD2USB LCDLinux LCDTerm LPH7508 LUIse M50530 MatrixOrbital MilfordInstruments Noritake NULL PNG PPM RouterBoard Sample serdisplib SimpleLCD T6963 Trefon USBLCD WincorNixdorf X11; do
+
+ make distclean
+ ./configure --with-driver=$driver
+ make
+
+ if [ -x lcd4linux ]; then
+ echo "Success: $driver" >>smoketest.log
+ else
+ echo "FAILED: $driver" >>smoketest.log
+ fi
+
+done
+
+make distclean
+./configure