3 # Weston IVI Plugin Test
5 # Remark: This examination premises that Weston does not run.
8 rm -fr ../tests/testlog
11 # 2 Start Pseudo event device (for Touch Panel)
12 ../tools/ico_send_inputevent -d -mq=5551 2> ../tests/testlog/event_log.log &
15 # 3 Set Environment for Test
16 export WESTON_IVI_PLUGIN_DIR="../src/.libs"
19 export XDG_CONFIG_HOME="../tests"
20 export XDG_RUNTIME_DIR="/run/user/5000"
21 MOD_DIR="$PWD/../src/.libs"
22 /usr/bin/weston --tty=2 --modules=$MOD_DIR/ico_plugin_loader.so --idle-time=0 $WESTON_BACKEND --log=../tests/testlog/weston.log &
26 export LD_LIBRARY_PATH=../src/.libs:$LD_LIBRARY_PATH
28 # 6 Start test-homescreen
29 ../tests/test-homescreen < ../tests/testdata/hs_inputtest.dat 2> ../tests/testlog/test-homescreen.log
33 /usr/bin/killall weston
34 /usr/bin/killall ico_send_inputevent
39 /bin/grep "ERR>" testlog/*
40 if [ "$?" != "1" ] ; then
43 /bin/grep "WRN>" testlog/*
44 if [ "$?" != "1" ] ; then
47 /bin/grep "Error" testlog/*
48 if [ "$?" != "1" ] ; then
51 /bin/grep "error" testlog/* | /bin/grep -v "error_but_no_problem_for_test" | /bin/grep -v "failed to restore kb mode:" | /bin/grep -v "failed to set KD_TEXT mode on tty:"
52 if [ "$?" != "1" ] ; then
55 /bin/grep "Fail" testlog/* | /bin/grep -v "error_but_no_problem_for_test" | /bin/grep -v "initialize backlight"
56 if [ "$?" != "1" ] ; then
60 if [ $FOUND_ERR = 0 ] ; then
61 echo "Weston IVI Plugin Test: OK"
63 echo "Weston IVI Plugin Test: ERROR"