summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--testsuites/sptests/ChangeLog6
-rw-r--r--testsuites/sptests/sp09/screen01.c6
-rw-r--r--testsuites/sptests/sp09/screen14.c2
-rw-r--r--testsuites/sptests/sp28/init.c8
4 files changed, 12 insertions, 10 deletions
diff --git a/testsuites/sptests/ChangeLog b/testsuites/sptests/ChangeLog
index 0c3830f86e..0be2f185cf 100644
--- a/testsuites/sptests/ChangeLog
+++ b/testsuites/sptests/ChangeLog
@@ -1,3 +1,9 @@
+2008-02-22 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * sp09/screen01.c: Correct test.
+ * sp09/screen14.c: Update copyright.
+ * sp28/init.c: Correct end of test messages.
+
2008-02-04 Joel Sherrill <joel.sherrill@oarcorp.com>
* sp43/init.c, sp43/sp43.scn: Exercise passing as object Id of SELF.
diff --git a/testsuites/sptests/sp09/screen01.c b/testsuites/sptests/sp09/screen01.c
index 6fcafe5569..3c0b864e6e 100644
--- a/testsuites/sptests/sp09/screen01.c
+++ b/testsuites/sptests/sp09/screen01.c
@@ -89,11 +89,7 @@ void Screen1()
RTEMS_NOTEPAD_LAST,
&notepad_value
);
- #ifdef RTEMS_ITRON_API
- directive_failed( status,
- #else
- fatal_directive_status( status, RTEMS_INVALID_ID,
- #endif
+ fatal_directive_status( status, RTEMS_INVALID_ID,
"rtems_task_get_note with no tasks in API"
);
diff --git a/testsuites/sptests/sp09/screen14.c b/testsuites/sptests/sp09/screen14.c
index 20ffe24093..534316eb7a 100644
--- a/testsuites/sptests/sp09/screen14.c
+++ b/testsuites/sptests/sp09/screen14.c
@@ -6,7 +6,7 @@
*
* Output parameters: NONE
*
- * COPYRIGHT (c) 1989-1999.
+ * COPYRIGHT (c) 1989-2008.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
diff --git a/testsuites/sptests/sp28/init.c b/testsuites/sptests/sp28/init.c
index ebd1d6a0ae..6feb34d1ec 100644
--- a/testsuites/sptests/sp28/init.c
+++ b/testsuites/sptests/sp28/init.c
@@ -18,6 +18,7 @@ rtems_task Init(rtems_task_argument argument);
#define CONFIGURE_MAXIMUM_TASKS 4
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
#define CONFIGURE_MICROSECONDS_PER_TICK 52429
+#define CONFIGURE_INIT_TASK_STACK_SIZE (4*RTEMS_MINIMUM_STACK_SIZE)
#define CONFIGURE_MICROSECONDS_INIT
@@ -214,18 +215,17 @@ void test_multiple_taskvars(void)
}
#define MAX_VARS 4096
+void *Pointers[MAX_VARS];
void test_out_of_memory(void)
{
int i;
int max;
- void *wkspace_base;
- void **base;
rtems_status_code sc;
int ran_out = 0;
+ void **base;
- wkspace_base = rtems_configuration_get_work_space_start();
- base = (void **)wkspace_base;
+ base = Pointers;
for (i=0 ; i<MAX_VARS ; i++ ) {
sc = rtems_task_variable_add(RTEMS_SELF, &base[i], NULL);