scripts/qemuimage-testlib: Output a slightly better error if expect is missing
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 8 Nov 2011 17:55:50 +0000 (17:55 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 10 Nov 2011 11:51:17 +0000 (11:51 +0000)
(From OE-Core rev: bfbbb420c0a6b315f73d3d5e463a518098ca6ef0)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
scripts/qemuimage-testlib

index 6a1b900..d0d1b74 100755 (executable)
@@ -96,6 +96,13 @@ expect {
     eof          { exit [ lindex [wait] 3 ] }
 }
 EOF`
+
+       expect=`which expect`
+       if [ ! -x "$expect" ]; then
+               Test_Error "ERROR: Please install expect"
+               return 1
+       fi
+
        expect -c "$exp_cmd"
        ret=$?
        rm -rf $tmpfile
@@ -120,6 +127,13 @@ expect {
     eof          { exit [ lindex [wait] 3 ] }
 }
 EOF`
+
+       expect=`which expect`
+       if [ ! -x "$expect" ]; then
+               Test_Error "ERROR: Please install expect"
+               return 1
+       fi
+
        expect -c "$exp_cmd"
        ret=$?
        rm -rf $tmpfile