summaryrefslogtreecommitdiff
path: root/tests/lib/imd-test.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/imd-test.c')
-rw-r--r--tests/lib/imd-test.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/lib/imd-test.c b/tests/lib/imd-test.c
index dce542cf8f..c2bcf0cd2d 100644
--- a/tests/lib/imd-test.c
+++ b/tests/lib/imd-test.c
@@ -176,9 +176,10 @@ static void test_imd_create_tiered_empty(void **state)
/* Fail when large region doesn't have capacity for more than 1 entry */
lg_region_wrong_size = sizeof(struct imd_root_pointer) + sizeof(struct imd_root) +
sizeof(struct imd_entry);
- assert_int_equal(-1, imd_create_tiered_empty(&imd, lg_region_wrong_size,
- LG_ENTRY_ALIGN, SM_ROOT_SIZE,
- SM_ENTRY_ALIGN));
+ expect_assert_failure(
+ imd_create_tiered_empty(&imd, lg_region_wrong_size, LG_ENTRY_ALIGN,
+ SM_ROOT_SIZE, SM_ENTRY_ALIGN)
+ );
assert_int_equal(0, imd_create_tiered_empty(&imd, LG_ROOT_SIZE, LG_ENTRY_ALIGN,
SM_ROOT_SIZE, SM_ENTRY_ALIGN));