diff options
Diffstat (limited to 'scripts/qemuimage-tests/sanity/ssh')
-rwxr-xr-x | scripts/qemuimage-tests/sanity/ssh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/scripts/qemuimage-tests/sanity/ssh b/scripts/qemuimage-tests/sanity/ssh index 3c7638cc2..f9143d055 100755 --- a/scripts/qemuimage-tests/sanity/ssh +++ b/scripts/qemuimage-tests/sanity/ssh @@ -12,16 +12,15 @@ . $POKYBASE/scripts/qemuimage-testlib TIMEOUT=360 -QEMU_IPADDR="192.168.7.2" RET=1 # Start qemu and check its network -Test_Create_Qemu ${QEMU_IPADDR} ${TIMEOUT} +Test_Create_Qemu ${TIMEOUT} # If qemu network is up, check ssh service in qemu if [ $? -eq 0 ]; then Test_Info "Begin to Test SSH Service in Qemu" - Test_SSH_UP ${QEMU_IPADDR} ${TIMEOUT} + Test_SSH_UP ${TARGET_IPADDR} ${TIMEOUT} RET=$? else RET=1 |