scripts/qemuimage-testlib: Output a slightly better error if expect is missing

(From OE-Core rev: bfbbb420c0a6b315f73d3d5e463a518098ca6ef0)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2011-11-08 17:55:50 +00:00
parent b6bc04dfeb
commit a3b987a2f7
1 changed files with 14 additions and 0 deletions

View File

@ -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