diff options
author | michael <michael@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2008-12-27 08:06:57 +0000 |
---|---|---|
committer | michael <michael@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2008-12-27 08:06:57 +0000 |
commit | 86bd0d06e81a18de3e5d330eae4ebddcb756d8c3 (patch) | |
tree | d8bdc32bdd9ca6f822aaf8cf38db6612a2755807 /smoketest.sh | |
parent | 0d315ad93204252fb69e0fed101a51b8c027d096 (diff) | |
download | lcd4linux-86bd0d06e81a18de3e5d330eae4ebddcb756d8c3.tar.gz |
ported and modified r818 from volker_dev
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@914 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'smoketest.sh')
-rwxr-xr-x | smoketest.sh | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/smoketest.sh b/smoketest.sh index 02c1170..3f0f123 100755 --- a/smoketest.sh +++ b/smoketest.sh @@ -16,9 +16,23 @@ for driver in BeckmannEgle BWCT CrystalFontz Curses Cwlinux D4D EA232graphic G15 make -s -j 2 if [ -x lcd4linux ]; then - echo "Success: $driver" >>smoketest.log + echo "Success: drv_$driver" >>smoketest.log else - echo "FAILED: $driver" >>smoketest.log + echo "FAILED: drv_$driver" >>smoketest.log + fi + +done + +for plugin in apm asterisk button_exec cpuinfo diskstats dvb exec fifo file hddtemp i2c_sensors iconv imon isdn kvv loadavg meminfo mpd mysql netdev pop3 ppp proc_stat python 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 |