aboutsummaryrefslogtreecommitdiffstats
path: root/test/testheap.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/testheap.c')
-rw-r--r--test/testheap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/testheap.c b/test/testheap.c
index 698a01861..94fb87bb9 100644
--- a/test/testheap.c
+++ b/test/testheap.c
@@ -142,7 +142,7 @@ static void heap1_execute(void) {
test_assert(12, n == sz, "size changed");
}
-const struct testcase testheap1 = {
+ROMCONST struct testcase testheap1 = {
"Heap, allocation and fragmentation test",
heap1_setup,
NULL,
@@ -154,7 +154,7 @@ const struct testcase testheap1 = {
/**
* @brief Test sequence for heap.
*/
-const struct testcase * const patternheap[] = {
+ROMCONST struct testcase * ROMCONST patternheap[] = {
#if CH_USE_HEAP
&testheap1,
#endif