diff options
Diffstat (limited to 'test/testpools.c')
-rw-r--r-- | test/testpools.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/testpools.c b/test/testpools.c index 2ed0e6b35..c503ecbda 100644 --- a/test/testpools.c +++ b/test/testpools.c @@ -90,7 +90,7 @@ static void pools1_execute(void) { test_assert(3, chPoolAlloc(&mp1) == NULL, "provider returned memory");
}
-const struct testcase testpools1 = {
+ROMCONST struct testcase testpools1 = {
"Memory Pools, queue/dequeue",
pools1_setup,
NULL,
@@ -102,7 +102,7 @@ const struct testcase testpools1 = { /*
* @brief Test sequence for pools.
*/
-const struct testcase * const patternpools[] = {
+ROMCONST struct testcase * ROMCONST patternpools[] = {
#if CH_USE_MEMPOOLS
&testpools1,
#endif
|