From 88bea4b8c200fad936c063718289250ce49cda61 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Fri, 25 Jun 2010 08:55:40 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2038 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- test/testthd.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'test/testthd.c') diff --git a/test/testthd.c b/test/testthd.c index 232ea7008..b12378320 100644 --- a/test/testthd.c +++ b/test/testthd.c @@ -77,7 +77,7 @@ static void thd1_execute(void) { test_assert_sequence(1, "ABCDE"); } -const struct testcase testthd1 = { +ROMCONST struct testcase testthd1 = { "Threads, enqueuing test #1", NULL, NULL, @@ -105,7 +105,7 @@ static void thd2_execute(void) { test_assert_sequence(1, "ABCDE"); } -const struct testcase testthd2 = { +ROMCONST struct testcase testthd2 = { "Threads, enqueuing test #2", NULL, NULL, @@ -170,7 +170,7 @@ static void thd3_execute(void) { #endif } -const struct testcase testthd3 = { +ROMCONST struct testcase testthd3 = { "Threads, priority change", NULL, NULL, @@ -211,7 +211,7 @@ static void thd4_execute(void) { test_assert_time_window(4, time, time + 1); } -const struct testcase testthd4 = { +ROMCONST struct testcase testthd4 = { "Threads, delays", NULL, NULL, @@ -221,7 +221,7 @@ const struct testcase testthd4 = { /** * @brief Test sequence for threads. */ -const struct testcase * const patternthd[] = { +ROMCONST struct testcase * ROMCONST patternthd[] = { &testthd1, &testthd2, &testthd3, -- cgit v1.2.3