From d64c7ae88ca29def7dd2869acaa0e2ec047bd153 Mon Sep 17 00:00:00 2001 From: Jiajun Xu Date: Wed, 10 Nov 2010 22:58:52 +0800 Subject: imagetest-qemu: Add sanity test cases for scp/shutdown in target scp test is to check if file copying via network work or not in target. shutdown test is to check if target can be poweroff with qemu process off. Signed-off-by Jiajun Xu --- scripts/qemuimage-testlib | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'scripts/qemuimage-testlib') diff --git a/scripts/qemuimage-testlib b/scripts/qemuimage-testlib index 3ebf5ffd2a..c2c394d5ed 100644 --- a/scripts/qemuimage-testlib +++ b/scripts/qemuimage-testlib @@ -151,7 +151,8 @@ Test_Print_Result() NORESULT=1 fi - echo -e "\t$1\t\t$PASS\t$FAIL\t$NORESULT" >> $TEST_RESULT/testresult.log + # Format the output of the test result + echo -e "$1 $PASS $FAIL $NORESULT" | awk '{printf("\t"); for(i=1;i<=NF;i++) printf("%-15s",$i); printf("\n");}' >> $TEST_RESULT/testresult.log } # Test_Kill_Qemu to kill child pid with parent pid given @@ -399,6 +400,7 @@ Test_Create_Qemu() # Parse IP address of target from the qemu command line if [ ${up_time} -lt ${timeout} ]; then + sleep 5 TARGET_IPADDR=`Test_Fetch_Target_IP $PID` fi -- cgit 1.2.3-korg