aboutsummaryrefslogtreecommitdiffstats
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-03-30 17:26:29 +0000
commitc8b411608bea2700e904141268f609eeee542ae2 (patch)
tree3b640d001dc3e1c30764a7ddf6816cbc596e6d36 /scripts
parent1347381b4f93b318fadc2360c4adf0c68b562b13 (diff)
downloadopenembedded-core-c8b411608bea2700e904141268f609eeee542ae2.tar.gz
qemuimage-testlib: Fix quoting issue
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()
# 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