unit tests: test aligment by 8

This commit is contained in:
SG
2024-06-03 14:35:51 +01:00
parent 500afc67ba
commit 32a55f2575
3 changed files with 36 additions and 7 deletions

View File

@@ -10,6 +10,7 @@ void test_furi_pubsub(void);
void test_furi_memmgr(void);
void test_furi_memmgr_advanced(void);
void test_furi_memmgr_aligned8(void);
static int foo = 0;
@@ -39,6 +40,7 @@ MU_TEST(mu_test_furi_memmgr) {
// that memory management is working fine
test_furi_memmgr();
test_furi_memmgr_advanced();
test_furi_memmgr_aligned8();
}
MU_TEST_SUITE(test_suite) {