summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-03-30 16:44:27 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-04-23 13:00:53 +0100
commit57ad24d06210527bab7b291a9ff4132d8e1f04d4 (patch)
tree1efc743344852d0fc7102557552b9fc1e850a795 /scripts
parent73a7838a52b9e1cd0e6af46b8558baf69fc684f3 (diff)
downloadpoky-57ad24d06210527bab7b291a9ff4132d8e1f04d4.tar.gz
qemuimage-testlib: Fix quoting issue
(From OE-Core rev: f8628a0649a56c5caae45d1320cf970eb83bcc1c) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-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()
446 # Parse IP address of target from the qemu command line 446 # Parse IP address of target from the qemu command line
447 TARGET_IPADDR=`Test_Fetch_Target_IP $QEMUPID` 447 TARGET_IPADDR=`Test_Fetch_Target_IP $QEMUPID`
448 echo "Target IP is ${TARGET_IPADDR}" 448 echo "Target IP is ${TARGET_IPADDR}"
449 if [ ${TARGET_IPADDR} = "" -o "${TARGET_IPADDR}" = "0" ]; then 449 if [ "${TARGET_IPADDR}" = "" -o "${TARGET_IPADDR}" = "0" ]; then
450 Test_Info "There is no qemu process or qemu ip address found, return failed" 450 Test_Info "There is no qemu process or qemu ip address found, return failed"
451 ps -wwf 451 ps -wwf
452 ps axww -O ppid 452 ps axww -O ppid