include/assert.h: Use mock_assert() for ENV_TEST targets

Some tests have to be able to catch assertion errors.
Adding CMocka mock_assert() enables that.

Additionally fix test_imd_create_tiered_empty(),
test_full_stack() and test_incorrectly_initialized_stack()
by adding missing expect_assert_failure().

Signed-off-by: Jakub Czapiga <jacz@semihalf.com>
Change-Id: I5e8dd1b198ee6fab61e2be3f92baf1178f79bf18
Reviewed-on: https://review.coreboot.org/c/coreboot/+/51804
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Fagerburg <pfagerburg@chromium.org>
This commit is contained in:
Jakub Czapiga
2021-03-25 14:28:29 +01:00
committed by Patrick Georgi
parent 70fe2707ba
commit 45d37d5cb8
3 changed files with 20 additions and 5 deletions

View File

@ -73,7 +73,7 @@ static void test_full_stack(void **state)
/* Expect failure when checking full stack as absence of guard value at the end of
the stack indicates stack overrun. */
assert_int_equal(-1, checkstack(top_of_stack, 0));
expect_assert_failure(checkstack(top_of_stack, 0));
}
static void test_partialy_filled_stack(void **state)
@ -115,7 +115,7 @@ static void test_incorrectly_initialized_stack(void **state)
/* Expect failure when there is no last stack guard value even if no other value was
changed. */
assert_int_equal(-1, checkstack(top_of_stack, 0));
expect_assert_failure(checkstack(top_of_stack, 0));
}
int main(void)