summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-02-22 06:55:27 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-02-22 06:55:27 +0100
commit5774b7527967979732bce9862feb196d8a58c4a4 (patch)
treea3b33e6d475cd5e253dcce8ccf033ef7f5ad3136
parent_ARMV7M_Is_vector_an_irq: Use ARMV7M_VECTOR_SYSTICK instead of hardcoded 16 (diff)
downloadrtems-5774b7527967979732bce9862feb196d8a58c4a4.tar.bz2
sptests/sp65: Fix test names
-rw-r--r--testsuites/sptests/sp65/init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/sptests/sp65/init.c b/testsuites/sptests/sp65/init.c
index 7c6d8d3bef..72f5212eae 100644
--- a/testsuites/sptests/sp65/init.c
+++ b/testsuites/sptests/sp65/init.c
@@ -14,8 +14,6 @@
#include <tmacros.h>
#include <unistd.h>
-const char rtems_test_name[] = "SP 65";
-
/* forward declarations to avoid warnings */
rtems_task Init(rtems_task_argument argument);
rtems_task Task_1(rtems_task_argument arg);
@@ -28,6 +26,8 @@ rtems_task Task_1(rtems_task_argument arg);
#define TASK_PRIORITY 1
#endif
+const char rtems_test_name[] = "SP " TEST_NAME;
+
static void assert_priority(rtems_task_priority expected)
{
rtems_status_code sc;