aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-03-30 16:44:27 +0000
committerRoss Burton <ross.burton@intel.com>2013-04-23 11:07:45 +0100
commitf8628a0649a56c5caae45d1320cf970eb83bcc1c (patch)
tree9cee93c0c4c3375c6ff46f9f8c35ba4272b335ba
parentc7a6d7fa5032a16a9e1f8fa5a563802f9d9fe607 (diff)
downloadopenembedded-core-f8628a0649a56c5caae45d1320cf970eb83bcc1c.tar.gz
qemuimage-testlib: Fix quoting issue
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-xscripts/qemuimage-testlib2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/qemuimage-testlib b/scripts/qemuimage-testlib
index 8fb2538490..f791c527ab 100755
--- a/scripts/qemuimage-testlib
+++ b/scripts/qemuimage-testlib
@@ -446,7 +446,7 @@ Test_Create_Qemu()
# Parse IP address of target from the qemu command line
TARGET_IPADDR=`Test_Fetch_Target_IP $QEMUPID`
echo "Target IP is ${TARGET_IPADDR}"
- if [ ${TARGET_IPADDR} = "" -o "${TARGET_IPADDR}" = "0" ]; then
+ if [ "${TARGET_IPADDR}" = "" -o "${TARGET_IPADDR}" = "0" ]; then
Test_Info "There is no qemu process or qemu ip address found, return failed"
ps -wwf
ps axww -O ppid