diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-30 16:44:27 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-30 17:26:56 +0000 |
commit | 92aeb31341b28b193d616ab5cf38af1b9673e37d (patch) | |
tree | 65e7582fd036438edc2af2fa409d90bb55d63c36 /scripts/qemuimage-testlib | |
parent | cc7f542947fcbeed46593567b3931b09e89b5bfc (diff) | |
download | poky-92aeb31341b28b193d616ab5cf38af1b9673e37d.tar.gz |
qemuimage-testlib: Fix quoting issue
(From OE-Core rev: c8b411608bea2700e904141268f609eeee542ae2)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/qemuimage-testlib')
-rwxr-xr-x | scripts/qemuimage-testlib | 2 |
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 |