2007-05-11 Joel Sherrill <joel.sherrill@OARcorp.com>

* sp01/Makefile.am, sp02/Makefile.am, sp03/Makefile.am,
	sp04/Makefile.am, sp05/Makefile.am, sp06/Makefile.am,
	sp07/Makefile.am, sp07/tdelete.c, sp08/Makefile.am, sp09/Makefile.am,
	sp11/Makefile.am, sp12/Makefile.am, sp13/Makefile.am,
	sp14/Makefile.am, sp15/Makefile.am, sp16/Makefile.am,
	sp17/Makefile.am, sp19/Makefile.am, sp20/Makefile.am,
	sp21/Makefile.am, sp22/Makefile.am, sp23/Makefile.am,
	sp24/Makefile.am, sp25/Makefile.am, sp26/Makefile.am,
	sp32/Makefile.am, sp33/Makefile.am, sp34/Makefile.am,
	sp35/Makefile.am, spfatal/Makefile.am, spsize/Makefile.am,
	spsize/size.c: Add optional managers to Makefiles. Clean up test
	cases so last output line follows END OF pattern. Make sure test case
	all run. All tests appeared ok on sis.
This commit is contained in:
Joel Sherrill
2007-05-11 19:44:27 +00:00
parent e02db20c46
commit e58077cb55
33 changed files with 53 additions and 33 deletions

View File

@@ -1,3 +1,19 @@
2007-05-11 Joel Sherrill <joel.sherrill@OARcorp.com>
* sp01/Makefile.am, sp02/Makefile.am, sp03/Makefile.am,
sp04/Makefile.am, sp05/Makefile.am, sp06/Makefile.am,
sp07/Makefile.am, sp07/tdelete.c, sp08/Makefile.am, sp09/Makefile.am,
sp11/Makefile.am, sp12/Makefile.am, sp13/Makefile.am,
sp14/Makefile.am, sp15/Makefile.am, sp16/Makefile.am,
sp17/Makefile.am, sp19/Makefile.am, sp20/Makefile.am,
sp21/Makefile.am, sp22/Makefile.am, sp23/Makefile.am,
sp24/Makefile.am, sp25/Makefile.am, sp26/Makefile.am,
sp32/Makefile.am, sp33/Makefile.am, sp34/Makefile.am,
sp35/Makefile.am, spfatal/Makefile.am, spsize/Makefile.am,
spsize/size.c: Add optional managers to Makefiles. Clean up test
cases so last output line follows END OF pattern. Make sure test case
all run. All tests appeared ok on sis.
2007-04-05 Joel Sherrill <joel@OARcorp.com>
* spsize/size.c: _TOD_Seconds_since_epoch eliminated as a variable.

View File

@@ -2,7 +2,7 @@
## $Id$
##
MANAGERS = io
MANAGERS = io semaphore clock
rtems_tests_PROGRAMS = sp01.exe
sp01_exe_SOURCES = init.c task1.c system.h

View File

@@ -2,7 +2,7 @@
## $Id$
##
MANAGERS = io
MANAGERS = io semaphore clock
rtems_tests_PROGRAMS = sp02.exe
sp02_exe_SOURCES = init.c task1.c task2.c task3.c preempt.c system.h

View File

@@ -2,7 +2,7 @@
## $Id$
##
MANAGERS = io
MANAGERS = io semaphore clock
rtems_tests_PROGRAMS = sp03.exe
sp03_exe_SOURCES = init.c task1.c task2.c system.h

View File

@@ -2,7 +2,7 @@
## $Id$
##
MANAGERS = io
MANAGERS = io semaphore clock extension
rtems_tests_PROGRAMS = sp04.exe
sp04_exe_SOURCES = init.c task1.c task2.c task3.c tswitch.c system.h

View File

@@ -2,7 +2,7 @@
## $Id$
##
MANAGERS = io
MANAGERS = io semaphore clock
rtems_tests_PROGRAMS = sp05.exe
sp05_exe_SOURCES = init.c task1.c task2.c task3.c system.h

View File

@@ -2,7 +2,7 @@
## $Id$
##
MANAGERS = io
MANAGERS = io semaphore clock
rtems_tests_PROGRAMS = sp06.exe
sp06_exe_SOURCES = init.c task1.c task2.c task3.c system.h

View File

@@ -2,11 +2,11 @@
## $Id$
##
MANAGERS = io
MANAGERS = io semaphore clock extension
rtems_tests_PROGRAMS = sp07.exe
sp07_exe_SOURCES = init.c buffered_io.c task1.c task2.c task3.c task4.c taskexit.c \
tcreate.c tdelete.c trestart.c tstart.c system.h
sp07_exe_SOURCES = init.c buffered_io.c task1.c task2.c task3.c task4.c \
taskexit.c tcreate.c tdelete.c trestart.c tstart.c system.h
dist_rtems_tests_DATA = sp07.scn
dist_rtems_tests_DATA += sp07.doc

View File

@@ -30,15 +30,13 @@ rtems_extension Task_delete_extension(
if ( task_number( running_task->Object.id ) > 0 ) {
name = Task_name[ task_number( running_task->Object.id ) ];
sprintf( line, "TASK_DELETE - %c%c%c%c",
sprintf( line, "TASK_DELETE - %c%c%c%c TASK_DELETE",
(name >> 24) & 0xff,
(name >> 16) & 0xff,
(name >> 8) & 0xff,
name & 0xff
);
buffered_io_add_string( line );
puts_nocr( "TASK_DELETE - " );
put_name( Task_name[ task_number( running_task->Object.id ) ], FALSE );
}
if ( task_number( deleted_task->Object.id ) > 0 ) {
name = Task_name[ task_number( deleted_task->Object.id ) ];

View File

@@ -2,7 +2,7 @@
## $Id$
##
MANAGERS = io
MANAGERS = io semaphore clock
rtems_tests_PROGRAMS = sp08.exe
sp08_exe_SOURCES = init.c task1.c system.h

View File

@@ -2,7 +2,7 @@
## $Id$
##
MANAGERS = io message dual_ported_memory event multi_processor region \
MANAGERS = io clock message dual_ported_memory event multi_processor region \
semaphore signal rate_monotonic timer partition
rtems_tests_PROGRAMS = sp09.exe

View File

@@ -2,7 +2,7 @@
## $Id$
##
MANAGERS = io event timer
MANAGERS = io event timer clock semaphore
rtems_tests_PROGRAMS = sp11.exe
sp11_exe_SOURCES = init.c task1.c task2.c timer.c system.h

View File

@@ -2,7 +2,7 @@
## $Id$
##
MANAGERS = io semaphore
MANAGERS = io semaphore clock
rtems_tests_PROGRAMS = sp12.exe
sp12_exe_SOURCES = init.c task1.c task2.c task3.c task4.c task5.c pridrv.c \

View File

@@ -2,7 +2,7 @@
## $Id$
##
MANAGERS = io message
MANAGERS = io message semaphore clock
rtems_tests_PROGRAMS = sp13.exe
sp13_exe_SOURCES = init.c fillbuff.c putbuff.c task1.c task2.c task3.c system.h

View File

@@ -2,7 +2,7 @@
## $Id$
##
MANAGERS = io signal timer
MANAGERS = io signal timer semaphore clock
rtems_tests_PROGRAMS = sp14.exe
sp14_exe_SOURCES = init.c asr.c task1.c task2.c system.h

View File

@@ -2,7 +2,7 @@
## $Id$
##
MANAGERS = io partition
MANAGERS = io partition semaphore clock
rtems_tests_PROGRAMS = sp15.exe
sp15_exe_SOURCES = init.c task1.c system.h

View File

@@ -2,7 +2,7 @@
## $Id$
##
MANAGERS = io region
MANAGERS = io region semaphore clock
rtems_tests_PROGRAMS = sp16.exe
sp16_exe_SOURCES = init.c task1.c task2.c task3.c task4.c task5.c system.h

View File

@@ -2,7 +2,7 @@
## $Id$
##
MANAGERS = io signal
MANAGERS = io signal semaphore clock
rtems_tests_PROGRAMS = sp17.exe
sp17_exe_SOURCES = init.c asr.c task1.c task2.c system.h

View File

@@ -2,7 +2,7 @@
## $Id$
##
MANAGERS = io
MANAGERS = io semaphore clock
rtems_tests_PROGRAMS = sp19.exe
sp19_exe_SOURCES = init.c first.c fptask.c task1.c system.h fptest.h inttest.h

View File

@@ -2,7 +2,7 @@
## $Id$
##
MANAGERS = io rate_monotonic
MANAGERS = io rate_monotonic semaphore clock
rtems_tests_PROGRAMS = sp20.exe
sp20_exe_SOURCES = init.c getall.c task1.c system.h

View File

@@ -2,7 +2,7 @@
## $Id$
##
MANAGERS = io
MANAGERS = io semaphore clock
rtems_tests_PROGRAMS = sp21.exe
sp21_exe_SOURCES = init.c task1.c system.h

View File

@@ -2,7 +2,7 @@
## $Id$
##
MANAGERS = io timer
MANAGERS = io timer semaphore clock
rtems_tests_PROGRAMS = sp22.exe
sp22_exe_SOURCES = init.c prtime.c delay.c task1.c system.h

View File

@@ -2,7 +2,7 @@
## $Id$
##
MANAGERS = io dual_ported_memory
MANAGERS = io dual_ported_memory semaphore clock
rtems_tests_PROGRAMS = sp23.exe
sp23_exe_SOURCES = init.c task1.c system.h

View File

@@ -2,7 +2,7 @@
## $Id$
##
MANAGERS = io event timer
MANAGERS = io event timer semaphore clock
rtems_tests_PROGRAMS = sp24.exe
sp24_exe_SOURCES = init.c resume.c task1.c system.h

View File

@@ -2,7 +2,7 @@
## $Id$
##
MANAGERS = io region
MANAGERS = io semaphore clock region
rtems_tests_PROGRAMS = sp25.exe
sp25_exe_SOURCES = init.c task1.c system.h

View File

@@ -2,7 +2,7 @@
## $Id$
##
MANAGERS = io region event
MANAGERS = io event semaphore clock
rtems_tests_PROGRAMS = sp26.exe
sp26_exe_SOURCES = init.c task1.c system.h

View File

@@ -2,7 +2,7 @@
## $Id$
##
MANAGERS = io rate_monotonic
MANAGERS = io rate_monotonic semaphore clock
rtems_tests_PROGRAMS = sp32.exe
sp32_exe_SOURCES = init.c

View File

@@ -2,7 +2,7 @@
## $Id$
##
MANAGERS = io barrier
MANAGERS = io barrier semaphore clock
rtems_tests_PROGRAMS = sp33.exe
sp33_exe_SOURCES = init.c

View File

@@ -2,6 +2,8 @@
## $Id$
##
MANAGERS = all
rtems_tests_PROGRAMS = sp34.exe
sp34_exe_SOURCES = changepri.c

View File

@@ -2,6 +2,8 @@
## $Id$
##
MANAGERS = all
rtems_tests_PROGRAMS = sp35.exe
sp35_exe_SOURCES = priinv.c

View File

@@ -2,7 +2,7 @@
## $Id$
##
MANAGERS = io
MANAGERS = all
rtems_tests_PROGRAMS = spfatal.exe
spfatal_exe_SOURCES = init.c puterr.c fatal.c task1.c system.h

View File

@@ -2,7 +2,7 @@
## $Id$
##
MANAGERS = io
MANAGERS = all
rtems_tests_PROGRAMS = spsize.exe
spsize_exe_SOURCES = init.c getint.c size.c system.h

View File

@@ -219,7 +219,9 @@ uninitialized =
/*clock.h*/ 0 +
/*config.h*/ (sizeof _Configuration_Table) +
#if defined(RTEMS_MULTIPROCESSING)
(sizeof _Configuration_MP_table) +
#endif
/*context.h*/ (sizeof _Context_Switch_necessary) +