mirror of
git://git.yoctoproject.org/poky
synced 2026-08-12 17:03:23 +00:00
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:
parent
b6bc04dfeb
commit
a3b987a2f7
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user