Added a check for reset reload verification with host running.
Resolves openbmc/openbmc-test-automation#533
Change-Id: Ic5ef6a108d76d744726abc0f1b3328f320afaee3
Signed-off-by: Rahul Maheshwari <rahulmaheshwari@in.ibm.com>
diff --git a/test_lists/skip_test_witherspoon b/test_lists/skip_test_witherspoon
index af17dc2..c632653 100644
--- a/test_lists/skip_test_witherspoon
+++ b/test_lists/skip_test_witherspoon
@@ -44,8 +44,8 @@
#https://github.com/openbmc/openbmc-test-automation/issues/546
-e CPU_Present
-e DIMM3_Present
-#https://github.com/openbmc/openbmc/issues/1521
--e Verify_Reset_Reload_With_Chassis_State_On
+#https://github.com/openbmc/openbmc/issues/1322
+-e Verify_BMC_Reset_Reload_With_System_On
#https://github.com/openbmc/openbmc/issues/1461
-e Verify_FRU_Properties
#https://github.com/openbmc/openbmc/issues/1357
diff --git a/tests/test_reset_reload.robot b/tests/test_reset_reload.robot
index 5d852b3..179a481 100644
--- a/tests/test_reset_reload.robot
+++ b/tests/test_reset_reload.robot
@@ -14,10 +14,10 @@
*** Test Cases ***
-Verify Reset Reload With Chassis State On
- [Documentation] Validate chassis "ON" state is unchanged after
- ... reset reload.
- [Tags] Verify_Reset_Reload_With_Chassis_State_On
+Verify BMC Reset Reload With System On
+ [Documentation] Validate chassis "ON" and host "Running" state is
+ ... unchanged after BMC reset reload.
+ [Tags] Verify_BMC_Reset_Reload_With_System_On
Initiate Host Boot
Wait Until Keyword Succeeds 5 min 10 sec Is Chassis On
@@ -31,6 +31,9 @@
Should Be Equal ${chassis_state_before} ${chassis_state_after}
Should Be Equal ${rr_status} Yes
+ ${host_state}= Run Keyword Get Host State
+ Should Be Equal ${host_state} Running
+
*** Keywords ***