aboutsummaryrefslogtreecommitdiff
path: root/libflash
diff options
context:
space:
mode:
authorAndrew Jeffery <andrew@aj.id.au>2019-02-21 16:58:28 +1030
committerStewart Smith <stewart@linux.ibm.com>2019-02-24 17:43:37 -0600
commitecf6430d1ee99368bfdacc808cabfec5e515610b (patch)
treea9bced5ff1b5648fbb26a35b99aac340e058a579 /libflash
parent077d19d8240552153688bef86a5f08c76197ed46 (diff)
downloadskiboot-ecf6430d1ee99368bfdacc808cabfec5e515610b.zip
skiboot-ecf6430d1ee99368bfdacc808cabfec5e515610b.tar.gz
skiboot-ecf6430d1ee99368bfdacc808cabfec5e515610b.tar.bz2
test-ipmi-hiomap: Add action-error test
Cc: stable Signed-off-by: Andrew Jeffery <andrew@aj.id.au> Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
Diffstat (limited to 'libflash')
-rw-r--r--libflash/test/test-ipmi-hiomap.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/libflash/test/test-ipmi-hiomap.c b/libflash/test/test-ipmi-hiomap.c
index 6e9d8e7..7e76891 100644
--- a/libflash/test/test-ipmi-hiomap.c
+++ b/libflash/test/test-ipmi-hiomap.c
@@ -1326,6 +1326,35 @@ static void test_hiomap_protocol_bad_sequence(void)
scenario_exit();
}
+static const struct scenario_event scenario_hiomap_protocol_action_error[] = {
+ {
+ .type = scenario_cmd,
+ .c = {
+ /* Ack is legitimate, but we'll pretend it's invalid */
+ .req = {
+ .cmd = HIOMAP_C_ACK,
+ .seq = 1,
+ .args = { [0] = 0x3 },
+ },
+ .cc = IPMI_INVALID_COMMAND_ERR,
+ .resp = {
+ .cmd = HIOMAP_C_ACK,
+ .seq = 1,
+ },
+ },
+ },
+ SCENARIO_SENTINEL,
+};
+
+static void test_hiomap_protocol_action_error(void)
+{
+ struct blocklevel_device *bl;
+
+ scenario_enter(scenario_hiomap_protocol_action_error);
+ assert(ipmi_hiomap_init(&bl) > 0);
+ scenario_exit();
+}
+
static const struct scenario_event
scenario_hiomap_protocol_persistent_error[] = {
{ .type = scenario_event_p, .p = &hiomap_ack_call, },
@@ -1382,6 +1411,7 @@ struct test_case test_cases[] = {
TEST_CASE(test_hiomap_protocol_event_before_erase),
TEST_CASE(test_hiomap_protocol_event_during_erase),
TEST_CASE(test_hiomap_protocol_bad_sequence),
+ TEST_CASE(test_hiomap_protocol_action_error),
TEST_CASE(test_hiomap_protocol_persistent_error),
{ NULL, NULL },
};