source: rtems/testsuites/sptests/ChangeLog @ eab373a

4.8
Last change on this file since eab373a was a7a9e193, checked in by Joel Sherrill <joel.sherrill@…>, on 08/05/08 at 13:11:09

2008-08-05 Xudong Guan <xudong.guan@…>

PR 1212/cpukit

  • Makefile.am, configure.ac: Time slicing will not happen if the task mode is changed from a non-timeslicing mode to timeslicing mode if it is done by the executing thread (e.g. in its task body). This change includes sp44 to demonstrate the problem and verify the correction.
  • sp44/.cvsignore, sp44/Makefile.am, sp44/init.c, sp44/sp44.scn: New files.
  • Property mode set to 100644
File size: 36.3 KB
Line 
12008-08-05      Xudong Guan <xudong.guan@criticalsoftware.com>
2
3        PR 1212/cpukit
4        * Makefile.am, configure.ac: Time slicing will not happen if the task
5        mode is changed from a non-timeslicing mode to timeslicing mode if it
6        is done by the executing thread (e.g. in its task body). This change
7        includes sp44 to demonstrate the problem and verify the correction.
8        * sp44/.cvsignore, sp44/Makefile.am, sp44/init.c, sp44/sp44.scn: New files.
9
102007-11-27      Glenn Humphrey <glenn.humphrey@OARcorp.com>
11
12        * sp33/init.c, sp33/sp33.scn: Added several test cases to improve test
13        coverage.
14
152007-11-06      Joel Sherrill <joel.sherrill@OARcorp.com>
16
17        * sp13/system.h: We need 32K of message buffer memory not 32 bytes.
18
192007-06-20      Joel Sherrill <joel.sherrill@oarcorp.com>
20
21        * sp20/task1.c, sp34/changepri.c, sp35/priinv.c: Build when using
22        buffered test IO.
23
242007-05-29      Joel Sherrill <joel.sherrill@OARcorp.com>
25
26        * sp21/sp21.scn, sp21/task1.c: rtems_io_register_driver and
27        rtems_io_unregister_driver did not have any test code.
28
292007-05-28      Joel Sherrill <joel.sherrill@OARcorp.com>
30
31        * spsize/size.c: Eliminate maximum_drivers configuration parameter
32        since it was used to configure a no longer used feature. Device names
33        are now part of the filesystem not in a table. This also eliminated
34        the variables _IO_Number_of_devices and _IO_Driver_name_table from
35        RTEMS as well as the memory allocation used to populate
36        _IO_Driver_name_table.
37
382007-05-23      Joel Sherrill <joel.sherrill@OARcorp.com>
39
40        * sp13/system.h, sp34/changepri.c, sp35/priinv.c: Avoid using
41        CONFIGURE_MEMORY_OVERHEAD and try to really account for the memory
42        properly.
43
442007-05-21      Joel Sherrill <joel.sherrill@oarcorp.com>
45
46        * spsize/size.c: Eliminated the variables
47        _RTEMS_tasks_User_initialization_tasks and
48        _RTEMS_tasks_Number_of_initialization_tasks because they were only
49        used in one place after initialized. It was a waste of space.
50
512007-05-11      Joel Sherrill <joel.sherrill@OARcorp.com>
52
53        * sp01/Makefile.am, sp02/Makefile.am, sp03/Makefile.am,
54        sp04/Makefile.am, sp05/Makefile.am, sp06/Makefile.am,
55        sp07/Makefile.am, sp07/tdelete.c, sp08/Makefile.am, sp09/Makefile.am,
56        sp11/Makefile.am, sp12/Makefile.am, sp13/Makefile.am,
57        sp14/Makefile.am, sp15/Makefile.am, sp16/Makefile.am,
58        sp17/Makefile.am, sp19/Makefile.am, sp20/Makefile.am,
59        sp21/Makefile.am, sp22/Makefile.am, sp23/Makefile.am,
60        sp24/Makefile.am, sp25/Makefile.am, sp26/Makefile.am,
61        sp32/Makefile.am, sp33/Makefile.am, sp34/Makefile.am,
62        sp35/Makefile.am, spfatal/Makefile.am, spsize/Makefile.am,
63        spsize/size.c: Add optional managers to Makefiles. Clean up test
64        cases so last output line follows END OF pattern. Make sure test case
65        all run. All tests appeared ok on sis.
66
672007-04-05      Joel Sherrill <joel@OARcorp.com>
68
69        * spsize/size.c: _TOD_Seconds_since_epoch eliminated as a variable.
70
712007-04-05      Joel Sherrill <joel@OARcorp.com>
72
73        * sp34/changepri.c, sp35/priinv.c: Change all obsoleted
74        CONFIGURE_TEST_NEEDS_XXX configuration constants to
75        CONFIGURE_APPLICATION_NEEDS_XXX.
76
772007-04-02      Joel Sherrill <joel@OARcorp.com>
78
79        * spsize/size.c: Eliminate TOD_Ticks_per_second variable.
80
812007-04-02      Joel Sherrill <joel@OARcorp.com>
82
83        * spsize/size.c: Convert from Classic API style TOD_Control as
84        fundamental time structure to POSIX struct timespec. Add
85        clock_get_uptime().
86
872007-03-29      Ralf Corsépius <ralf.corsepius@rtems.org>
88
89        * sp06/task1.c, sp20/task1.c: Use rtems_task_argument.
90
912007-03-26      Joel Sherrill <joel@OARcorp.com>
92
93        * sp35/priinv.c: Remove warning.
94
952007-03-10      Joel Sherrill <joel@OARcorp.com>
96
97        * sp26/system.h: Remove incorrect and duplicate
98        CONFIGURE_EXTRA_TASK_STACKS.
99
1002007-03-05      Joel Sherrill <joel@OARcorp.com>
101
102        PR 1222/cpukit
103        * Makefile.am, configure.ac: Enhance so that when the prioirity of a
104        thread that is blocked on a priority based thread queue is changed,
105        that its placement in the queue is reevaluated based upon the new
106        priority. This enhancement includes modifications to the SuperCore as
107        well as new test cases.
108        * sp34/.cvsignore, sp34/Makefile.am, sp34/changepri.c, sp34/sp34.doc,
109        sp34/sp34.scn, sp35/.cvsignore, sp35/Makefile.am, sp35/priinv.c,
110        sp35/sp35.doc, sp35/sp35.scn: New files.
111
1122007-03-05      Joel Sherrill <joel@OARcorp.com>
113
114        * sp26/system.h: Correct memory required for stack sizes.
115
1162007-02-06      Joel Sherrill <joel@OARcorp.com>
117
118        * sp09/screen07.c, sp09/task3.c, sp13/task1.c, sp13/task2.c,
119        sp13/task3.c: Address size_t/uint32_t typing issues in message queue
120        tests.
121
1222006-12-04      Joel Sherrill <joel.sherrill@oarcorp.com>
123
124        * sp33/init.c: Improve barrier test to include normal blocking with
125        manual release and unblocking in barrier deletion.
126
1272006-12-02      Ralf Corsépius <ralf.corsepius@rtems.org>
128
129        * configure.ac: New BUG-REPORT address.
130
1312006-11-20      Joel Sherrill <joel@OARcorp.com>
132
133        * sp27/init.c, sp27/sp27.scn: Correct configured number of semaphores
134        and make output more compliant with other tests.
135
1362006-11-17      Joel Sherrill <joel@OARcorp.com>
137
138        * sp09/screen12.c, sp16/task2.c, sp16/task3.c: Ensure tests generate
139        cases intended on all targets possible with new heap algorithm.
140
1412006-11-15      Joel Sherrill <joel.sherrill@oarcorp.com>
142
143        * Makefile.am, configure.ac: Adding Classic API Barriers.
144        * sp33/.cvsignore, sp33/Makefile.am, sp33/init.c, sp33/sp33.scn:
145        New files.
146
1472006-10-17      Ralf Corsépius <ralf.corsepius@rtems.org>
148
149        * configure.ac: Require autoconf-2.60. Require automake-1.10.
150
1512006-07-11      Ralf Corsépius <ralf.corsepius@rtems.org>
152
153        * sp01/Makefile.am, sp02/Makefile.am, sp03/Makefile.am,
154        sp04/Makefile.am, sp05/Makefile.am, sp06/Makefile.am,
155        sp07/Makefile.am, sp08/Makefile.am, sp09/Makefile.am,
156        sp11/Makefile.am, sp12/Makefile.am, sp13/Makefile.am,
157        sp14/Makefile.am, sp15/Makefile.am, sp16/Makefile.am,
158        sp17/Makefile.am, sp19/Makefile.am, sp20/Makefile.am,
159        sp21/Makefile.am, sp22/Makefile.am, sp23/Makefile.am,
160        sp24/Makefile.am, sp25/Makefile.am, sp26/Makefile.am,
161        sp27/Makefile.am, sp28/Makefile.am, sp29/Makefile.am,
162        sp30/Makefile.am, sp31/Makefile.am, sp32/Makefile.am,
163        spfatal/Makefile.am, spsize/Makefile.am: Eliminate scndir, docdir.
164        Use rtems_testsdir instead.
165
1662006-04-05      Joel Sherrill <joel@OARcorp.com>
167                Victor V. Vengerov <Victor.Vengerov@oktetlabs.ru>
168
169        * spsize/size.c: Victor spotted the problem that
170        _MPCI_Receive_server_tcb and _Thread_MP_Receive were duplicate
171        variables and needed to be set to the same value.  I took that
172        idea and just removed _Thread_MP_Receive.  All uses are now
173        _MPCI_Receive_server_tcb.
174
1752005-11-22      Ralf Corsepius <ralf.corsepius@rtems.org>
176
177        * configure.ac: Remove RTEMS_ENABLE_BARE,
178        BARE_CPU_CFLAGS, BARE_CPU_MODEL.
179
1802005-11-13      Ralf Corsepius <ralf.corsepius@rtems.org>
181
182        * sp01/Makefile.am, sp02/Makefile.am, sp03/Makefile.am,
183        sp04/Makefile.am, sp05/Makefile.am, sp06/Makefile.am,
184        sp07/Makefile.am, sp08/Makefile.am, sp09/Makefile.am,
185        sp11/Makefile.am, sp12/Makefile.am, sp13/Makefile.am,
186        sp14/Makefile.am, sp15/Makefile.am, sp16/Makefile.am,
187        sp17/Makefile.am, sp19/Makefile.am, sp20/Makefile.am,
188        sp21/Makefile.am, sp22/Makefile.am, sp23/Makefile.am,
189        sp24/Makefile.am, sp25/Makefile.am, sp26/Makefile.am,
190        sp27/Makefile.am, sp28/Makefile.am, sp29/Makefile.am,
191        sp30/Makefile.am, sp31/Makefile.am, sp32/Makefile.am,
192        spfatal/Makefile.am, spsize/Makefile.am:
193        Convert to use *_PROGRAMS.
194
1952005-11-11      Ralf Corsepius <ralf.corsepius@rtems.org>
196
197        * sp01/Makefile.am, sp02/Makefile.am,
198        sp03/Makefile.am, sp04/Makefile.am,
199        sp05/Makefile.am, sp06/Makefile.am,
200        sp07/Makefile.am, sp08/Makefile.am,
201        sp09/Makefile.am, sp11/Makefile.am,
202        sp12/Makefile.am, sp13/Makefile.am,
203        sp14/Makefile.am, sp15/Makefile.am,
204        sp16/Makefile.am, sp17/Makefile.am,
205        sp19/Makefile.am, sp20/Makefile.am,
206        sp21/Makefile.am, sp22/Makefile.am,
207        sp23/Makefile.am, sp24/Makefile.am,
208        sp25/Makefile.am, sp26/Makefile.am,
209        sp27/Makefile.am, sp28/Makefile.am,
210        sp29/Makefile.am, sp30/Makefile.am,
211        sp31/Makefile.am, sp32/Makefile.am,
212        spfatal/Makefile.am, spsize/Makefile.am: Rework.
213
2142005-11-11      Ralf Corsepius <ralf.corsepius@rtems.org>
215
216        * sp01/Makefile.am, sp02/Makefile.am, sp03/Makefile.am,
217        sp04/Makefile.am, sp05/Makefile.am, sp06/Makefile.am,
218        sp07/Makefile.am, sp08/Makefile.am, sp09/Makefile.am,
219        sp11/Makefile.am, sp12/Makefile.am, sp13/Makefile.am,
220        sp14/Makefile.am, sp15/Makefile.am, sp16/Makefile.am,
221        sp17/Makefile.am, sp19/Makefile.am, sp20/Makefile.am,
222        sp21/Makefile.am, sp22/Makefile.am, sp23/Makefile.am,
223        sp24/Makefile.am, sp25/Makefile.am, sp26/Makefile.am,
224        sp27/Makefile.am, sp28/Makefile.am, sp29/Makefile.am,
225        sp30/Makefile.am, sp31/Makefile.am, sp32/Makefile.am,
226        spfatal/Makefile.am, spsize/Makefile.am: Expand sptests.am.
227        * sptests.am: Remove.
228
2292005-11-09      Ralf Corsepius <ralf.corsepius@rtems.org>
230
231        * sp01/Makefile.am, sp02/Makefile.am, sp03/Makefile.am,
232        sp04/Makefile.am, sp05/Makefile.am, sp06/Makefile.am,
233        sp07/Makefile.am, sp08/Makefile.am, sp09/Makefile.am,
234        sp11/Makefile.am, sp12/Makefile.am, sp13/Makefile.am,
235        sp14/Makefile.am, sp15/Makefile.am, sp16/Makefile.am,
236        sp17/Makefile.am, sp19/Makefile.am, sp20/Makefile.am,
237        sp21/Makefile.am, sp22/Makefile.am, sp23/Makefile.am,
238        sp24/Makefile.am, sp25/Makefile.am, sp26/Makefile.am,
239        sp28/Makefile.am, sp29/Makefile.am, sp30/Makefile.am,
240        sp31/Makefile.am, sp32/Makefile.am, spfatal/Makefile.am,
241        spsize/Makefile.am: AM_CPPFLAGS += -I..../support/include.
242
2432005-11-09      Ralf Corsepius <ralf.corsepius@rtems.org>
244
245        * sptests.am: Set project_bspdir=$(PROJECT_ROOT)
246
2472005-11-07      Ralf Corsepius <ralf.corsepius@rtems.org>
248
249        * spsize/Makefile.am: Rename TEST to spsize.
250        * spsize/size.scn: Remove.
251        * spsize/spsize.scn: New (renamed from size.scn).
252
2532005-11-07      Ralf Corsepius <ralf.corsepius@rtems.org>
254
255        * configure.ac: Add spfatal/Makefile.
256        * Makefile.am: Add spfatal to DIST_SUBDIRS.
257        * sp27/Makefile.am, sp28/Makefile.am, sp29/Makefile.am,
258        sp30/Makefile.am, sp31/Makefile.am: Misc. bugfixes.
259        * sptests.am: Remove LIB_VARIANT.
260
2612005-11-07      Ralf Corsepius <ralf.corsepius@rtems.org>
262
263        * sp01/Makefile.am, sp02/Makefile.am, sp03/Makefile.am,
264        sp04/Makefile.am, sp05/Makefile.am, sp06/Makefile.am,
265        sp07/Makefile.am, sp08/Makefile.am, sp09/Makefile.am,
266        sp11/Makefile.am, sp12/Makefile.am, sp13/Makefile.am,
267        sp14/Makefile.am, sp15/Makefile.am, sp16/Makefile.am,
268        sp17/Makefile.am, sp19/Makefile.am, sp20/Makefile.am,
269        sp21/Makefile.am, sp22/Makefile.am, sp23/Makefile.am,
270        sp24/Makefile.am, sp25/Makefile.am, sp26/Makefile.am,
271        sp27/Makefile.am, sp28/Makefile.am, sp29/Makefile.am,
272        sp30/Makefile.am, sp31/Makefile.am, sp32/Makefile.am,
273        spfatal/Makefile.am, spsize/Makefile.am: Remove SRC, PRINT_SRC.
274
2752005-11-07      Ralf Corsepius <ralf.corsepius@rtems.org>
276
277        * Makefile.am: Cleanup.
278
2792005-11-07      Ralf Corsepius <ralf.corsepius@rtems.org>
280
281        * sptests.am: Add $(PGM): ${ARCH}/$(dirstamp).
282        * sp01/Makefile.am, sp02/Makefile.am, sp03/Makefile.am,
283        sp04/Makefile.am, sp05/Makefile.am, sp06/Makefile.am,
284        sp07/Makefile.am, sp08/Makefile.am, sp09/Makefile.am,
285        sp11/Makefile.am, sp12/Makefile.am, sp13/Makefile.am,
286        sp14/Makefile.am, sp15/Makefile.am, sp16/Makefile.am,
287        sp17/Makefile.am, sp19/Makefile.am, sp20/Makefile.am,
288        sp21/Makefile.am, sp22/Makefile.am, sp23/Makefile.am,
289        sp24/Makefile.am, sp25/Makefile.am, sp26/Makefile.am,
290        sp27/Makefile.am, sp28/Makefile.am, sp29/Makefile.am,
291        sp30/Makefile.am, sp31/Makefile.am, sp32/Makefile.am,
292        spfatal/Makefile.am, spsize/Makefile.am:
293        Partial conversion to automake.
294
2952005-03-07      Joel Sherrill <joel@OARcorp.com>
296
297        * sp13/task1.c: Removed warnings.
298
2992004-09-29      Joel Sherrill <joel@OARcorp.com>
300
301        * spsize/size.c: i960 obsoleted and all references removed.
302
3032004-09-24      Ralf Corsepius <ralf.corsepius@rtems.org>
304
305        * configure.ac: Require automake > 1.9.
306
3072004-04-01      Ralf Corsepius <ralf.corsepius@rtems.org>
308
309        * sp01/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
310        * sp02/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
311        * sp03/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
312        * sp04/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
313        * sp05/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
314        * sp06/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
315        * sp07/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
316        * sp08/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
317        * sp09/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
318        * sp11/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
319        * sp12/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
320        * sp13/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
321        * sp14/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
322        * sp15/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
323        * sp16/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
324        * sp17/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
325        * sp19/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
326        * sp20/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
327        * sp21/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
328        * sp22/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
329        * sp23/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
330        * sp24/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
331        * sp25/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
332        * sp26/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
333        * sp27/init.c: Include <rtems/confdefs.h> instead of <confdefs.h>.
334        * sp28/init.c: Include <rtems/confdefs.h> instead of <confdefs.h>.
335        * sp29/init.c: Include <rtems/confdefs.h> instead of <confdefs.h>.
336        * sp30/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
337        * sp31/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
338        * sp32/init.c: Include <rtems/confdefs.h> instead of <confdefs.h>.
339        * spfatal/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
340        * spsize/system.h: Include <rtems/confdefs.h> instead of <confdefs.h>.
341
3422004-04-01      Ralf Corsepius <ralf.corsepius@rtems.org>
343
344        * sp07/buffered_io.c: Include <rtems/ringbuf.h> instead of <ringbuf.h>.
345
3462004-03-30      David Querbach <querbach@realtime.bc.ca>
347
348        PR 595/tests
349        * sp13/fillbuff.c, sp13/init.c, sp13/putbuff.c, sp13/system.h,
350        sp13/task1.c, sp13/task2.c: Fill_buffer() in fillbuff.c overruns the
351        supplied buffer due to confusion in the definition of MESSAGE_SIZE.
352        Some files in the sp13 test treat MESSAGE_SIZE as a count of bytes,
353        others treat it as a count of longs.
354
3552004-03-30      David Querbach <querbach@realtime.bc.ca>
356
357        PR 596/tests
358        * sp32/init.c: A missing definition of TEST_INIT before including
359        <tmacros.h> means that buffered output will not work even if selected
360        in buffer_test_io.h.
361
3622004-03-30      Ralf Corsepius <ralf.corsepius@rtems.org>
363
364        * sp02/task1.c, sp04/system.h, sp04/task1.c, sp04/tswitch.c,
365        sp05/task1.c, sp06/task1.c, sp09/screen01.c, sp09/screen07.c,
366        sp09/screen12.c, sp09/system.h, sp09/task3.c, sp11/task1.c,
367        sp12/pridrv.c, sp12/pritask.c, sp12/system.h, sp13/task1.c,
368        sp13/task2.c, sp13/task3.c, sp14/system.h, sp15/system.h,
369        sp16/system.h, sp17/system.h, sp19/first.c, sp19/fptask.c,
370        sp19/inttest.h, sp19/system.h, sp19/task1.c, sp20/init.c,
371        sp20/system.h, sp20/task1.c, sp23/system.h, sp24/init.c,
372        sp25/system.h, sp30/init.c, spfatal/fatal.c, spfatal/puterr.c,
373        spfatal/system.h, spsize/size.c: Convert to using c99 fixed size
374        types.
375
3762004-03-25      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
377
378        * configure.ac: Add 2nd arg to RTEMS_TOP.
379
3802004-03-05      Joel Sherrill <joel@OARcorp.com>
381
382        * sp07/buffered_io.c: Remove warning.
383
3842004-01-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
385
386        * sp01/Makefile.am: Re-add dirstamps to PRE/TMPINSTALL_FILES.
387        Add PRE/TMPINSTALL_FILES to CLEANFILES.
388        * sp02/Makefile.am: Ditto.
389        * sp03/Makefile.am: Ditto.
390        * sp04/Makefile.am: Ditto.
391        * sp05/Makefile.am: Ditto.
392        * sp06/Makefile.am: Ditto.
393        * sp07/Makefile.am: Ditto.
394        * sp08/Makefile.am: Ditto.
395        * sp09/Makefile.am: Ditto.
396        * sp11/Makefile.am: Ditto.
397        * sp12/Makefile.am: Ditto.
398        * sp13/Makefile.am: Ditto.
399        * sp14/Makefile.am: Ditto.
400        * sp15/Makefile.am: Ditto.
401        * sp16/Makefile.am: Ditto.
402        * sp17/Makefile.am: Ditto.
403        * sp19/Makefile.am: Ditto.
404        * sp20/Makefile.am: Ditto.
405        * sp21/Makefile.am: Ditto.
406        * sp22/Makefile.am: Ditto.
407        * sp23/Makefile.am: Ditto.
408        * sp24/Makefile.am: Ditto.
409        * sp25/Makefile.am: Ditto.
410        * sp26/Makefile.am: Ditto.
411        * sp27/Makefile.am: Ditto.
412        * sp28/Makefile.am: Ditto.
413        * sp29/Makefile.am: Ditto.
414        * sp30/Makefile.am: Ditto.
415        * sp31/Makefile.am: Ditto.
416        * sp32/Makefile.am: Ditto.
417        * spfatal/Makefile.am: Ditto.
418        * spsize/Makefile.am: Ditto.
419
4202003-12-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
421
422        * sptests.am: Add dirstamp support.
423
4242003-12-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
425
426        * sptests.am: Use $(mkdir_p) instead of $(mkinstalldirs).
427
4282003-12-16      Joel Sherrill <joel@OARcorp.com>
429
430        PR 544/tests
431        * sp07/Makefile.am, sp07/init.c, sp07/system.h, sp07/task4.c,
432        sp07/tcreate.c, sp07/tdelete.c, sp07/trestart.c, sp07/tstart.c,
433        sp09/system.h, sp19/system.h, sp20/system.h: Various modifications to
434        make tests account for resources and not print at inappropriate
435        times.
436        * sp07/buffered_io.c: New file.
437
4382003-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
439
440        * configure.ac: Require automake >= 1.8, autoconf >= 2.59.
441
4422003-12-01      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
443
444        * sp01/Makefile.am: Remove all-local: $(ARCH).
445        * sp02/Makefile.am: Remove all-local: $(ARCH).
446        * sp03/Makefile.am: Remove all-local: $(ARCH).
447        * sp04/Makefile.am: Remove all-local: $(ARCH).
448        * sp05/Makefile.am: Remove all-local: $(ARCH).
449        * sp06/Makefile.am: Remove all-local: $(ARCH).
450        * sp07/Makefile.am: Remove all-local: $(ARCH).
451        * sp08/Makefile.am: Remove all-local: $(ARCH).
452        * sp09/Makefile.am: Remove all-local: $(ARCH).
453        * sp11/Makefile.am: Remove all-local: $(ARCH).
454        * sp12/Makefile.am: Remove all-local: $(ARCH).
455        * sp13/Makefile.am: Remove all-local: $(ARCH).
456        * sp14/Makefile.am: Remove all-local: $(ARCH).
457        * sp15/Makefile.am: Remove all-local: $(ARCH).
458        * sp16/Makefile.am: Remove all-local: $(ARCH).
459        * sp17/Makefile.am: Remove all-local: $(ARCH).
460        * sp19/Makefile.am: Remove all-local: $(ARCH).
461        * sp20/Makefile.am: Remove all-local: $(ARCH).
462        * sp21/Makefile.am: Remove all-local: $(ARCH).
463        * sp22/Makefile.am: Remove all-local: $(ARCH).
464        * sp23/Makefile.am: Remove all-local: $(ARCH).
465        * sp24/Makefile.am: Remove all-local: $(ARCH).
466        * sp25/Makefile.am: Remove all-local: $(ARCH).
467        * sp26/Makefile.am: Remove all-local: $(ARCH).
468        * sp27/Makefile.am: Remove all-local: $(ARCH).
469        * sp28/Makefile.am: Remove all-local: $(ARCH).
470        * sp29/Makefile.am: Remove all-local: $(ARCH).
471        * sp30/Makefile.am: Remove all-local: $(ARCH).
472        * sp31/Makefile.am: Remove all-local: $(ARCH).
473        * sp32/Makefile.am: Remove all-local: $(ARCH).
474        * spfatal/Makefile.am: Remove all-local: $(ARCH).
475        * spsize/Makefile.am: Remove all-local: $(ARCH).
476
4772003-11-10      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
478
479        * configure.ac: Reflect having moved to testsuites/.
480
4812003-10-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
482
483        * configure.ac: Remove RTEMS_CANONICAL_HOST.
484
4852003-10-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
486
487        * configure.ac:Remove RTEMS_CHECK_CPU.
488
4892003-09-04      Joel Sherrill <joel@OARcorp.com>
490
491        * sp01/init.c, sp01/sp01.doc, sp01/system.h, sp01/task1.c, sp02/init.c,
492        sp02/preempt.c, sp02/sp02.doc, sp02/system.h, sp02/task1.c,
493        sp02/task2.c, sp02/task3.c, sp03/init.c, sp03/sp03.doc,
494        sp03/system.h, sp03/task1.c, sp03/task2.c, sp04/init.c,
495        sp04/sp04.doc, sp04/system.h, sp04/task1.c, sp04/task2.c,
496        sp04/task3.c, sp04/tswitch.c, sp05/init.c, sp05/sp05.doc,
497        sp05/system.h, sp05/task1.c, sp05/task2.c, sp05/task3.c, sp06/init.c,
498        sp06/sp06.doc, sp06/system.h, sp06/task1.c, sp06/task2.c,
499        sp06/task3.c, sp07/init.c, sp07/sp07.doc, sp07/system.h,
500        sp07/task1.c, sp07/task2.c, sp07/task3.c, sp07/task4.c,
501        sp07/taskexit.c, sp07/tcreate.c, sp07/tdelete.c, sp07/trestart.c,
502        sp07/tstart.c, sp08/init.c, sp08/sp08.doc, sp08/system.h,
503        sp08/task1.c, sp09/delay.c, sp09/init.c, sp09/isr.c, sp09/screen01.c,
504        sp09/screen02.c, sp09/screen03.c, sp09/screen04.c, sp09/screen05.c,
505        sp09/screen06.c, sp09/screen07.c, sp09/screen08.c, sp09/screen09.c,
506        sp09/screen10.c, sp09/screen11.c, sp09/screen12.c, sp09/screen13.c,
507        sp09/screen14.c, sp09/sp09.doc, sp09/system.h, sp09/task1.c,
508        sp09/task2.c, sp09/task3.c, sp09/task4.c, sp11/init.c, sp11/sp11.doc,
509        sp11/system.h, sp11/task1.c, sp11/task2.c, sp11/timer.c, sp12/init.c,
510        sp12/pridrv.c, sp12/pritask.c, sp12/sp12.doc, sp12/system.h,
511        sp12/task1.c, sp12/task2.c, sp12/task3.c, sp12/task4.c, sp12/task5.c,
512        sp13/fillbuff.c, sp13/init.c, sp13/putbuff.c, sp13/sp13.doc,
513        sp13/system.h, sp13/task1.c, sp13/task2.c, sp13/task3.c, sp14/asr.c,
514        sp14/init.c, sp14/sp14.doc, sp14/system.h, sp14/task1.c,
515        sp14/task2.c, sp15/init.c, sp15/sp15.doc, sp15/system.h,
516        sp15/task1.c, sp16/init.c, sp16/sp16.doc, sp16/system.h,
517        sp16/task1.c, sp16/task2.c, sp16/task3.c, sp16/task4.c, sp16/task5.c,
518        sp17/asr.c, sp17/init.c, sp17/sp17.doc, sp17/system.h, sp17/task1.c,
519        sp17/task2.c, sp19/first.c, sp19/fptask.c, sp19/fptest.h,
520        sp19/init.c, sp19/inttest.h, sp19/sp19.doc, sp19/system.h,
521        sp19/task1.c, sp20/getall.c, sp20/init.c, sp20/sp20.doc,
522        sp20/system.h, sp20/task1.c, sp21/init.c, sp21/sp21.doc,
523        sp21/system.h, sp21/task1.c, sp22/delay.c, sp22/init.c,
524        sp22/prtime.c, sp22/sp22.doc, sp22/system.h, sp22/task1.c,
525        sp23/init.c, sp23/sp23.doc, sp23/system.h, sp23/task1.c, sp24/init.c,
526        sp24/resume.c, sp24/sp24.doc, sp24/system.h, sp24/task1.c,
527        sp25/init.c, sp25/sp25.doc, sp25/system.h, sp25/task1.c, sp26/init.c,
528        sp26/sp26.doc, sp26/system.h, sp26/task1.c, sp30/init.c,
529        sp30/resume.c, sp30/sp30.doc, sp30/system.h, sp30/task1.c,
530        sp31/delay.c, sp31/init.c, sp31/prtime.c, sp31/sp31.doc,
531        sp31/system.h, sp31/task1.c, sp32/init.c, spfatal/fatal.c,
532        spfatal/init.c, spfatal/puterr.c, spfatal/spfatal.doc,
533        spfatal/system.h, spfatal/task1.c, spsize/getint.c, spsize/init.c,
534        spsize/size.c, spsize/system.h: URL for license changed.
535
5362003-08-18      Eiichiro Kawaguchi <e-kawaguchi@ct.jp.nec.com>
537
538        PR 458/tests
539        * sp30/task1.c: Correct indexing problem.
540
5412003-08-18      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
542
543        * Makefile.am: Reflect having moved aclocal/.
544
5452003-08-16      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
546
547        * Makefile.am: Reflect having moved automake/.
548        * sp01/Makefile.am: Reflect having moved automake/.
549        * sp02/Makefile.am: Reflect having moved automake/.
550        * sp03/Makefile.am: Reflect having moved automake/.
551        * sp04/Makefile.am: Reflect having moved automake/.
552        * sp05/Makefile.am: Reflect having moved automake/.
553        * sp06/Makefile.am: Reflect having moved automake/.
554        * sp07/Makefile.am: Reflect having moved automake/.
555        * sp08/Makefile.am: Reflect having moved automake/.
556        * sp09/Makefile.am: Reflect having moved automake/.
557        * sp11/Makefile.am: Reflect having moved automake/.
558        * sp12/Makefile.am: Reflect having moved automake/.
559        * sp13/Makefile.am: Reflect having moved automake/.
560        * sp14/Makefile.am: Reflect having moved automake/.
561        * sp15/Makefile.am: Reflect having moved automake/.
562        * sp16/Makefile.am: Reflect having moved automake/.
563        * sp17/Makefile.am: Reflect having moved automake/.
564        * sp19/Makefile.am: Reflect having moved automake/.
565        * sp20/Makefile.am: Reflect having moved automake/.
566        * sp21/Makefile.am: Reflect having moved automake/.
567        * sp22/Makefile.am: Reflect having moved automake/.
568        * sp23/Makefile.am: Reflect having moved automake/.
569        * sp24/Makefile.am: Reflect having moved automake/.
570        * sp25/Makefile.am: Reflect having moved automake/.
571        * sp26/Makefile.am: Reflect having moved automake/.
572        * sp27/Makefile.am: Reflect having moved automake/.
573        * sp28/Makefile.am: Reflect having moved automake/.
574        * sp29/Makefile.am: Reflect having moved automake/.
575        * sp30/Makefile.am: Reflect having moved automake/.
576        * sp31/Makefile.am: Reflect having moved automake/.
577        * sp32/Makefile.am: Reflect having moved automake/.
578        * spfatal/Makefile.am: Reflect having moved automake/.
579        * spsize/Makefile.am: Reflect having moved automake/.
580
5812003-08-14      Joel Sherrill <joel@OARcorp.com>
582
583        * sp02/task1.c: Added ID to name lookup service and changed name of
584        id/name translation status code. This propagated to multiple
585        functions. The user API service added was rtems_object_id_to_name()
586
5872003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
588
589        * configure.ac: Use rtems-bugs@rtems.com as bug report email address.
590
5912003-05-29      Joel Sherrill <joel@OARcorp.com>
592
593        * sp27/init.c, sp29/init.c, spsize/size.c: Removed warnings.
594
5952003-05-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
596
597        * configure.ac: Remove CC_CFLAGS_DEBUG_V.
598        CC_CFLAGS_DEFAULT (obsolete).
599
6002003-05-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
601
602        * configure.ac: Remove CC_CFLAGS_PROFILE_V.
603        Remove CC_LDFLAGS_PROFILE_V.
604
6052003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
606
607        * configure.ac: Remove AC_CONFIG_AUX_DIR.
608
6092003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
610
611        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
612
6132003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
614
615        * configure.ac: AC_PREREQ(2.57).
616
6172002-11-14      Joel Sherrill <joel@OARcorp.com>
618
619        * sp02/sp02.scn, sp15/sp15.scn, sp16/sp16.scn, sp20/sp20.scn,
620        sp22/sp22.scn, sp23/sp23.scn, sp25/sp25.scn, sp31/sp31.scn: Per PR239
621        update the IDs in the screens.
622
6232002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
624
625        * .cvsignore: Reformat.
626        Add autom4te*cache.
627        Remove autom4te.cache.
628
6292002-09-14      Joel Sherrill <joel@OARcorp.com>
630
631        * sp32/.cvsignore: New file.
632
6332002-09-14      Aaron J. Grier <aaron@frye.com>
634
635        * PR271 was not applicable against the current source but included
636        a nice test that Joel decided to add to the tree as sp32.
637        * sp32/Makefile.am, sp32/init.c, sp32/sp32.scn: New file.
638        * Makefile.am, configure.ac: Modified to reflect addition.
639
6402002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
641
642        * sp01/Makefile.am: Use $(OBJEXT) instead of .o.
643        * sp02/Makefile.am: Use $(OBJEXT) instead of .o.
644        * sp03/Makefile.am: Use $(OBJEXT) instead of .o.
645        * sp04/Makefile.am: Use $(OBJEXT) instead of .o.
646        * sp05/Makefile.am: Use $(OBJEXT) instead of .o.
647        * sp06/Makefile.am: Use $(OBJEXT) instead of .o.
648        * sp07/Makefile.am: Use $(OBJEXT) instead of .o.
649        * sp08/Makefile.am: Use $(OBJEXT) instead of .o.
650        * sp09/Makefile.am: Use $(OBJEXT) instead of .o.
651        * sp11/Makefile.am: Use $(OBJEXT) instead of .o.
652        * sp12/Makefile.am: Use $(OBJEXT) instead of .o.
653        * sp13/Makefile.am: Use $(OBJEXT) instead of .o.
654        * sp14/Makefile.am: Use $(OBJEXT) instead of .o.
655        * sp15/Makefile.am: Use $(OBJEXT) instead of .o.
656        * sp16/Makefile.am: Use $(OBJEXT) instead of .o.
657        * sp17/Makefile.am: Use $(OBJEXT) instead of .o.
658        * sp19/Makefile.am: Use $(OBJEXT) instead of .o.
659        * sp20/Makefile.am: Use $(OBJEXT) instead of .o.
660        * sp21/Makefile.am: Use $(OBJEXT) instead of .o.
661        * sp22/Makefile.am: Use $(OBJEXT) instead of .o.
662        * sp23/Makefile.am: Use $(OBJEXT) instead of .o.
663        * sp24/Makefile.am: Use $(OBJEXT) instead of .o.
664        * sp25/Makefile.am: Use $(OBJEXT) instead of .o.
665        * sp26/Makefile.am: Use $(OBJEXT) instead of .o.
666        * sp27/Makefile.am: Use $(OBJEXT) instead of .o.
667        * sp28/Makefile.am: Use $(OBJEXT) instead of .o.
668        * sp29/Makefile.am: Use $(OBJEXT) instead of .o.
669        * sp30/Makefile.am: Use $(OBJEXT) instead of .o.
670        * sp31/Makefile.am: Use $(OBJEXT) instead of .o.
671        * spfatal/Makefile.am: Use $(OBJEXT) instead of .o.
672        * spsize/Makefile.am: Use $(OBJEXT) instead of .o.
673
6742002-08-01      Joel Sherrill <joel@OARcorp.com>
675
676        * Per PR47 add support for buffered test output.  This involved
677        adding defines to redirect output to a buffer and dump it when
678        full, at "test pause", and at exit.  To avoid problems when redefining
679        exit(), all tests were modified to call rtems_test_exit().
680        Some tests, notable psxtests, had to be modified to include
681        the standard test macro .h file (pmacros.h or tmacros.h) to
682        enable this support.
683        * sp01/task1.c, sp02/task1.c, sp03/task2.c, sp04/task1.c, sp05/task1.c,
684        sp06/task1.c, sp07/taskexit.c, sp08/task1.c, sp09/task1.c,
685        sp11/task1.c, sp12/pritask.c, sp12/task5.c, sp13/task1.c,
686        sp14/task2.c, sp15/task1.c, sp16/task1.c, sp17/task1.c,
687        sp19/fptask.c, sp20/task1.c, sp21/task1.c, sp22/task1.c,
688        sp23/task1.c, sp24/task1.c, sp25/task1.c, sp26/init.c, sp26/task1.c,
689        sp30/task1.c, sp31/task1.c, spsize/init.c, spsize/size.c: Modified.
690
6912002-07-30      Joel Sherrill <joel@OARcorp.com>
692
693        * spsize/size.c: Don't reference the RTEMS allocated interrupt
694        stack if the port doesn't configure using it.
695
6962002-07-04      Joel Sherrill <joel@OARcorp.com>
697
698        * Jump table for single entry point removed.
699        * spsize/size.c:  Modified to reflect above.
700
7012002-07-01      Joel Sherrill <joel@OARcorp.com>
702
703        * sp29/init.c: Corrected definitions for task stack usage.
704
7052002-07-01      Joel Sherrill <joel@OARcorp.com>
706
707        * spsize/size.c: _Thread_queue_Extract_table removed.
708
7092001-05-17      Joel Sherrill <joel@OARcorp.com>
710
711        * sp21/task1.c (INVALID_DRIVER_MAJOR): Change definition to reflect
712        number of staticly configured device drivers.
713
7142001-05-14      Joel Sherrill <joel@OARcorp.com>
715
716        * sp21/task1.c: Correct INVALID_DRIVER_MAJOR so it is precisely 1 more
717        than the configured number of drivers.
718 
7192002-04-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
720
721        * configure.ac: Remove ENABLE_GCC28.
722
7232001-04-04      Joel Sherrill <joel@OARcorp.com>
724
725        * spsize/size.c: Reflect SPARC modifcation to get rid of
726        NO_TABLE_MOVE and references to  _CPU_Trap_Table_area.
727 
7282001-03-29      Joel Sherrill <joel@OARcorp.com>
729
730        * Per PR147 addressed problems when reseting and inserting a timer
731        into a timer chain that did not honor time passage since the last
732        time the timer server was scheduled and the new insertion.
733        * sp31/sp31.scn, sp31/task1.c: Added test code to detect this case.
734
7352001-03-28      Joel Sherrill <joel@OARcorp.com>
736
737        * Side-effect of PR132.
738        * sp21/system.h: Now must explicitly request NULL driver.
739
7402002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
741
742        * configure.ac:
743        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
744        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
745        * sp01/Makefile.am: Remove AUTOMAKE_OPTIONS.
746        * sp02/Makefile.am: Remove AUTOMAKE_OPTIONS.
747        * Makefile.am: Remove AUTOMAKE_OPTIONS.
748        * sp03/Makefile.am: Remove AUTOMAKE_OPTIONS.
749        * sp04/Makefile.am: Remove AUTOMAKE_OPTIONS.
750        * sp05/Makefile.am: Remove AUTOMAKE_OPTIONS.
751        * sp06/Makefile.am: Remove AUTOMAKE_OPTIONS.
752        * sp07/Makefile.am: Remove AUTOMAKE_OPTIONS.
753        * sp08/Makefile.am: Remove AUTOMAKE_OPTIONS.
754        * sp09/Makefile.am: Remove AUTOMAKE_OPTIONS.
755        * sp11/Makefile.am: Remove AUTOMAKE_OPTIONS.
756        * sp12/Makefile.am: Remove AUTOMAKE_OPTIONS.
757        * sp13/Makefile.am: Remove AUTOMAKE_OPTIONS.
758        * sp14/Makefile.am: Remove AUTOMAKE_OPTIONS.
759        * sp15/Makefile.am: Remove AUTOMAKE_OPTIONS.
760        * sp16/Makefile.am: Remove AUTOMAKE_OPTIONS.
761        * sp17/Makefile.am: Remove AUTOMAKE_OPTIONS.
762        * sp19/Makefile.am: Remove AUTOMAKE_OPTIONS.
763        * sp20/Makefile.am: Remove AUTOMAKE_OPTIONS.
764        * sp21/Makefile.am: Remove AUTOMAKE_OPTIONS.
765        * sp22/Makefile.am: Remove AUTOMAKE_OPTIONS.
766        * sp23/Makefile.am: Remove AUTOMAKE_OPTIONS.
767        * sp24/Makefile.am: Remove AUTOMAKE_OPTIONS.
768        * sp25/Makefile.am: Remove AUTOMAKE_OPTIONS.
769        * sp26/Makefile.am: Remove AUTOMAKE_OPTIONS.
770        * sp27/Makefile.am: Remove AUTOMAKE_OPTIONS.
771        * sp28/Makefile.am: Remove AUTOMAKE_OPTIONS.
772        * sp29/Makefile.am: Remove AUTOMAKE_OPTIONS.
773        * sp30/Makefile.am: Remove AUTOMAKE_OPTIONS.
774        * sp31/Makefile.am: Remove AUTOMAKE_OPTIONS.
775        * spfatal/Makefile.am: Remove AUTOMAKE_OPTIONS.
776        * spsize/Makefile.am: Remove AUTOMAKE_OPTIONS.
777
7782002-03-20      Chris Johns <ccj@acm.org>
779
780        * PR145.
781        * sp04/task1.c, sp04/tswitch.c: Test fails if other tasks present
782        in system (e.g. driver tasks).  Also exit on minimum number of
783        switches not precise number.
784
7852001-01-29      Joel Sherrill <joel@OARcorp.com>
786
787        * Fixed bug where resetting a timer that was not at the head
788        of one of the task timer chains resulted in the Timer Server
789        task waking up too far in the future.
790        * Added rtems_timer_get_information() directive to support testing.
791        * sp31/init.c, sp31/system.h, sp31/task1.c: Modified to test for
792        above condition.
793
7942001-01-22      Joel Sherrill <joel@OARcorp.com>
795
796        * sp09/screen14.c, sp09/sp09.scn, sp30/init.c, sp31/init.c: Modified
797        because priority added as argument to rtems_timer_initiate_server().
798
7992001-01-16      Joel Sherrill <joel@OARcorp.com>
800
801        * Added tests for task-based timers.  This included the new tests
802        sp30 and sp31.
803        * Makefile.am, configure.ac: Modified to reflect new tests and files.
804        * sp09/screen14.c, sp09/sp09.scn: Modified to add error checks
805        for task-based timer services.
806        * sp30/.cvsignore, sp30/Makefile.am, sp30/init.c, sp30/resume.c,
807        sp30/sp30.doc, sp30/sp30.scn, sp30/system.h, sp30/task1.c,
808        sp31/.cvsignore, sp31/Makefile.am, sp31/delay.c, sp31/init.c,
809        sp31/prtime.c, sp31/sp31.doc, sp31/sp31.scn, sp31/system.h,
810        sp31/task1.c: New files.
811
8122001-11-01      Joel Sherrill <joel@OARcorp.com>
813
814        * sp26/system.h: Properly account for stack memory used by
815        this test. Reported by Jerry Needell <jerry.needell@unh.edu>
816        and processed as PR78.
817
8182001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
819
820        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
821        * configure.in: Remove.
822        * configure.ac: New file, generated from configure.in by autoupdate.
823
8242001-09-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
825
826        * sptests.am: Use TMPINSTALL_FILES = to make automake-1.5 happy.
827
8282001-09-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
829
830        * sp20/Makefile.am: include leaf.am instead of leaf.cfg.
831        * sp02/Makefile.am: include leaf.am instead of leaf.cfg.
832        * sp19/Makefile.am: include leaf.am instead of leaf.cfg.
833        * sp11/Makefile.am: include leaf.am instead of leaf.cfg.
834        * sp25/Makefile.am: include leaf.am instead of leaf.cfg.
835        * sp04/Makefile.am: include leaf.am instead of leaf.cfg.
836        * spsize/Makefile.am: include leaf.am instead of leaf.cfg.
837        * sp01/Makefile.am: include leaf.am instead of leaf.cfg.
838        * sp16/Makefile.am: include leaf.am instead of leaf.cfg.
839        * sp05/Makefile.am: include leaf.am instead of leaf.cfg.
840        * sp09/Makefile.am: include leaf.am instead of leaf.cfg.
841        * spfatal/Makefile.am: include leaf.am instead of leaf.cfg.
842        * sp06/Makefile.am: include leaf.am instead of leaf.cfg.
843        * sp23/Makefile.am: include leaf.am instead of leaf.cfg.
844        * sp28/Makefile.am: include leaf.am instead of leaf.cfg.
845        * sp03/Makefile.am: include leaf.am instead of leaf.cfg.
846        * sp29/Makefile.am: include leaf.am instead of leaf.cfg.
847        * sp13/Makefile.am: include leaf.am instead of leaf.cfg.
848        * sp27/Makefile.am: include leaf.am instead of leaf.cfg.
849        * sp14/Makefile.am: include leaf.am instead of leaf.cfg.
850        * sp07/Makefile.am: include leaf.am instead of leaf.cfg.
851        * sp15/Makefile.am: include leaf.am instead of leaf.cfg.
852        * sp17/Makefile.am: include leaf.am instead of leaf.cfg.
853        * sp22/Makefile.am: include leaf.am instead of leaf.cfg.
854        * sp12/Makefile.am: include leaf.am instead of leaf.cfg.
855        * sp26/Makefile.am: include leaf.am instead of leaf.cfg.
856        * sp21/Makefile.am: include leaf.am instead of leaf.cfg.
857        * sp24/Makefile.am: include leaf.am instead of leaf.cfg.
858        * sp08/Makefile.am: include leaf.am instead of leaf.cfg.
859
8602001-08-16      Joel Sherrill <joel@OARcorp.com>
861
862        * sp20/system.h: Account for extra task stacks properly.
863
8642001-08-16      Joel Sherrill <joel@OARcorp.com>
865
866        * sp13/sp13.scn: Id in screen had wrong class field value.
867        * sp13/system.h: Account for message buffer memory.
868        * sp13/task2.c: Remove unnecessary check for failure.
869
8702001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
871
872        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]).
873
8742001-04-20      Joel Sherrill <joel@OARcorp.com>
875
876        * sp298/sp28.scn: Minor adjustment so test output matches the screen
877        file.
878
8792001-02-07      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
880
881        * spsize/size.c: Use #if !defined(RTEMS_UNIX).
882
8832001-01-26      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
884
885        * sp21/Makefile.am: Remove libtest.
886
8872000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
888
889        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
890
8912000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
892
893        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
894
8952000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
896
897        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
898        Switch to GNU canonicalization.
899        * sptests.am: Remove DEFS.
900
9012000-09-29      Joel Sherrill <joel@OARcorp.com>
902
903        * sp20/sp20.scn: Corrected to reflect new addition.
904        * sp20/system.h: Removed comment reflecting history.
905
9062000-09-29      Stephan Merker <merker@decrc.abb.de>
907
908        * sp20/getall.c, sp20/init.c, sp20/system.h, sp20/task1.c:
909        Added new task to test sequence of altering a period's length
910        while it is still active.
911
9122000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
913
914        * sp01/Makefile.am, sp02/Makefile.am, sp03/Makefile.am,
915        sp04/Makefile.am, sp05/Makefile.am, sp06/Makefile.am,
916        sp07/Makefile.am, sp08/Makefile.am, sp09/Makefile.am,
917        sp11/Makefile.am, sp12/Makefile.am, sp13/Makefile.am,
918        sp14/Makefile.am, sp15/Makefile.am, sp16/Makefile.am,
919        sp17/Makefile.am, sp19/Makefile.am, sp20/Makefile.am,
920        sp21/Makefile.am, sp22/Makefile.am, sp23/Makefile.am,
921        sp24/Makefile.am, sp25/Makefile.am, sp26/Makefile.am,
922        sp27/Makefile.am, sp28/Makefile.am, sp29/Makefile.am,
923        spfatal/Makefile.am, spsize/Makefile.am: Include compile.am
924
9252000-08-10      Joel Sherrill <joel@OARcorp.com>
926
927        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.