summaryrefslogtreecommitdiffstats
path: root/libflash
diff options
context:
space:
mode:
authorAndrew Jeffery <andrew@aj.id.au>2019-02-21 16:58:25 +1030
committerStewart Smith <stewart@linux.ibm.com>2019-02-24 17:43:37 -0600
commit410b80725ad266026e89b664b957e56e28b95660 (patch)
tree84237de6fd860e0d6119b02227da5acd9a13b3cc /libflash
parent275b3d12af39a469f45db6dc5187382ca037a4ac (diff)
downloadblackbird-skiboot-410b80725ad266026e89b664b957e56e28b95660.tar.gz
blackbird-skiboot-410b80725ad266026e89b664b957e56e28b95660.zip
test-ipmi-hiomap: Add event-before-erase 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.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/libflash/test/test-ipmi-hiomap.c b/libflash/test/test-ipmi-hiomap.c
index 99b2902b..c00c30f6 100644
--- a/libflash/test/test-ipmi-hiomap.c
+++ b/libflash/test/test-ipmi-hiomap.c
@@ -1243,6 +1243,23 @@ static void test_hiomap_protocol_erase_one_block(void)
scenario_exit();
}
+static void test_hiomap_protocol_event_before_erase(void)
+{
+ struct blocklevel_device *bl;
+ struct ipmi_hiomap *ctx;
+ size_t len;
+ int rc;
+
+ scenario_enter(scenario_hiomap_protocol_event_before_action);
+ assert(!ipmi_hiomap_init(&bl));
+ ctx = container_of(bl, struct ipmi_hiomap, bl);
+ len = 1 << ctx->block_size_shift;
+ rc = bl->erase(bl, 0, len);
+ assert(rc == FLASH_ERR_AGAIN);
+ ipmi_hiomap_exit(bl);
+ scenario_exit();
+}
+
static const struct scenario_event
scenario_hiomap_protocol_persistent_error[] = {
{ .type = scenario_event_p, .p = &hiomap_ack_call, },
@@ -1296,6 +1313,7 @@ struct test_case test_cases[] = {
TEST_CASE(test_hiomap_protocol_event_during_write),
TEST_CASE(test_hiomap_protocol_erase_one_block),
TEST_CASE(test_hiomap_protocol_erase_two_blocks),
+ TEST_CASE(test_hiomap_protocol_event_before_erase),
TEST_CASE(test_hiomap_protocol_persistent_error),
{ NULL, NULL },
};
OpenPOWER on IntegriCloud