diff mbox series

[35/51] test-ipmi-hiomap: Add ack-error test

Message ID 20190215065708.6086-36-andrew@aj.id.au
State Changes Requested
Headers show
Series ipmi-hiomap: Tests and fixes for event handling | expand

Checks

Context Check Description
snowpatch_ozlabs/apply_patch success master/apply_patch Successfully applied
snowpatch_ozlabs/snowpatch_job_snowpatch-skiboot fail Test snowpatch/job/snowpatch-skiboot on branch master

Commit Message

Andrew Jeffery Feb. 15, 2019, 6:56 a.m. UTC
Signed-off-by: Andrew Jeffery <andrew@aj.id.au>
---
 libflash/test/test-ipmi-hiomap.c | 7 +++++++
 1 file changed, 7 insertions(+)
diff mbox series

Patch

diff --git a/libflash/test/test-ipmi-hiomap.c b/libflash/test/test-ipmi-hiomap.c
index 7c1a3c3b7140..485da9f3089a 100644
--- a/libflash/test/test-ipmi-hiomap.c
+++ b/libflash/test/test-ipmi-hiomap.c
@@ -1652,6 +1652,12 @@  static void test_hiomap_flush_error(void)
 	scenario_exit();
 }
 
+static void test_hiomap_ack_error(void)
+{
+	/* Same thing at the moment */
+	test_hiomap_protocol_action_error();
+}
+
 struct test_case {
 	const char *name;
 	void (*fn)(void);
@@ -1689,6 +1695,7 @@  struct test_case test_cases[] = {
 	TEST_CASE(test_hiomap_create_write_window_error),
 	TEST_CASE(test_hiomap_mark_dirty_error),
 	TEST_CASE(test_hiomap_flush_error),
+	TEST_CASE(test_hiomap_ack_error),
 	{ NULL, NULL },
 };