aboutsummaryrefslogtreecommitdiffstats
path: root/smoketest.sh
diff options
context:
space:
mode:
authorReinhard Tartler <siretart@tauware.de>2011-04-27 19:28:49 +0200
committerReinhard Tartler <siretart@tauware.de>2011-04-27 19:28:49 +0200
commit4cd9f4d9071a672debd83b4cc1c5d57dc63b8549 (patch)
tree095c755ba2cc77198dfc85b45afd129b1e638d56 /smoketest.sh
parent18590c85ce8d68b155828a4aa400105812aeb75d (diff)
parent181cec4348da40331b3e8ab365732c025ec149b2 (diff)
downloadlcd4linux-4cd9f4d9071a672debd83b4cc1c5d57dc63b8549.tar.gz
New upstream snapshot
Diffstat (limited to 'smoketest.sh')
-rwxr-xr-xsmoketest.sh41
1 files changed, 41 insertions, 0 deletions
diff --git a/smoketest.sh b/smoketest.sh
new file mode 100755
index 0000000..274cf78
--- /dev/null
+++ b/smoketest.sh
@@ -0,0 +1,41 @@
+#! /bin/bash
+
+# $Id: smoketest.sh 1137 2011-01-02 00:39:10Z michael $
+# $URL: https://ssl.bulix.org/svn/lcd4linux/trunk/smoketest.sh $
+
+
+rm -f smoketest.log lcd4linux
+
+make distclean
+./bootstrap
+
+for driver in ASTUSB BeckmannEgle BWCT CrystalFontz Curses Cwlinux D4D EA232graphic EFN G15 GLCD2USB HD44780 IRLCD LCD2USB LCDLinux LCDTerm LEDMatrix LPH7508 LUIse LW_ABP M50530 MatrixOrbital MatrixOrbitalGX MilfordInstruments Noritake NULL Pertelian PHAnderson picoLCD picoLCDGraphic PNG PPM RouterBoard Sample serdisplib SimpleLCD T6963 Trefon ULA200 USBHUB USBLCD WincorNixdorf X11; do
+
+ make distclean
+ ./configure --with-drivers=$driver
+ make -s -j 2
+
+ if [ -x lcd4linux ]; then
+ echo "Success: drv_$driver" >>smoketest.log
+ else
+ echo "FAILED: drv_$driver" >>smoketest.log
+ fi
+
+done
+
+for plugin in apm asterisk button_exec cpuinfo dbus diskstats dvb exec event fifo file gps hddtemp huawei i2c_sensors iconv imon isdn kvv loadavg meminfo mpd mpris_dbus mysql netdev netinfo pop3 ppp proc_stat python qnaplog sample seti statfs uname uptime w1retap wireless xmms; do
+
+ make distclean
+ ./configure --with-drivers=NULL --with-plugins=$plugin
+ make -s -j 2
+
+ if [ -x lcd4linux ]; then
+ echo "Success: plugin_$plugin" >>smoketest.log
+ else
+ echo "FAILED: plugin_$plugin" >>smoketest.log
+ fi
+
+done
+
+make distclean
+./configure