Delete invalid energy scale test
Energy scale (power) settings are not reset after system
reflash. This is by design. They reset only after
manufacturing reset. Thus this particular test, which
tests the defaults after reflash, is invalid.
Resolves openbmc/openbmc-test-automation#1175
Change-Id: I4619499742482c31a62462e484629a6be7aff17a
Signed-off-by: Steven Sombar <ssombar@us.ibm.com>
diff --git a/tests/test_escale_activation.robot b/tests/test_escale_activation.robot
deleted file mode 100644
index a115625..0000000
--- a/tests/test_escale_activation.robot
+++ /dev/null
@@ -1,33 +0,0 @@
-*** Settings ***
-Documentation Test the default value of power management enablement.
-
-Resource ../lib/openbmc_ffdc.robot
-
-Test Teardown Test Teardown Execution
-
-
-*** Test Cases ***
-
-Verify Powercap Disabled By Default
- [Documentation] Powercap is disabled by default.
- [Tags] Verify_Powercap_Disabled_By_Default
-
- # Example:
- # /xyz/openbmc_project/control/host0/power_cap:
- # {
- # "PowerCap": 0,
- # "PowerCapEnable": 0
- # },
-
- ${powercap}= Read Attribute ${CONTROL_HOST_URI}power_cap PowerCapEnable
- Should Be True ${powercap} == ${0}
- ... msg=Default PowerCapEnable should be off.
-
-
-*** Keywords ***
-
-
-Test Teardown Execution
- [Documentation] Do the post test teardown.
-
- FFDC On Test Case Fail