source: rtems/testsuites/samples/ChangeLog @ 3c55718

4.104.114.84.95
Last change on this file since 3c55718 was 3c55718, checked in by Ralf Corsepius <ralf.corsepius@…>, on 03/11/03 at 09:06:13

Merger from rtems-4-6-branch.

  • Property mode set to 100644
File size: 6.7 KB
Line 
12003-03-06      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2
3        * configure.ac: Remove AC_CONFIG_AUX_DIR.
4
52003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
6
7        * configure.ac: AM_INIT_AUTOMAKE([1.7.2]).
8
92003-02-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
10
11        * configure.ac: AC_PREREQ(2.57).
12
132003-01-27      Joel Sherrill <joel@OARcorp.com>
14
15        * Makefile.am, configure.ac: Added new test loopback which shows how to
16        use the loopback interface. Thank you Eric Norum for a portable
17        target independent test which exercises the TCP/IP. This should
18        prevent massive failures in the TCP/IP stack from reaching the
19        street.
20        * loopback/.cvsignore, loopback/Makefile.am, loopback/README,
21        loopback/init.c, loopback/loopback.scn: New files.
22
232003-01-03      Joel Sherrill <joel@OARcorp.com>
24
25        * unlimited/system.h, unlimited/test1.c: Backed off previous
26        modification as it does not compile.
27
282002-10-31      Chris Johns <ccj@acm.org>
29
30        * unlimited/test1.c: PR296. Only fails if more tasks than allowed
31        can be created. 
32        * unlimited/system.h: PR296. Reference the number of tasks in the
33        configuration table rather than a hardcoded number.
34
352002-11-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
36
37        * configure.ac: Unconditionally check for CXX (Hack to bug in
38        autoconf > 2.54).
39
402002-10-31      Joel Sherrill <joel@OARcorp.com>
41
42        * base_mp/apptask.c: Removed warning.
43
442002-10-28      Joel Sherrill <joel@OARcorp.com>
45
46        * base_mp/apptask.c: Add include of <unistd.h> to eliminate warning.
47
482002-10-21      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
49
50        * .cvsignore: Reformat.
51        Add autom4te*cache.
52        Remove autom4te.cache.
53
542002-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
55
56        * base_mp/node1/Makefile.am: Use .$(OBJEXT) instead of .o.
57        * base_mp/node2/Makefile.am: Use .$(OBJEXT) instead of .o.
58        * base_sp/Makefile.am: Use .$(OBJEXT) instead of .o.
59        * cdtest/Makefile.am: Use .$(OBJEXT) instead of .o.
60        * hello/Makefile.am: Use .$(OBJEXT) instead of .o.
61        * minimum/Makefile.am: Use .$(OBJEXT) instead of .o.
62        * paranoia/Makefile.am: Use .$(OBJEXT) instead of .o.
63        * ticker/Makefile.am: Use .$(OBJEXT) instead of .o.
64        * unlimited/Makefile.am: Use .$(OBJEXT) instead of .o.
65
662002-08-01      Joel Sherrill <joel@OARcorp.com>
67
68        * Per PR47 add support for buffered test output.  This involved
69        adding defines to redirect output to a buffer and dump it when
70        full, at "test pause", and at exit.  To avoid problems when redefining
71        exit(), all tests were modified to call rtems_test_exit().
72        Some tests, notable psxtests, had to be modified to include
73        the standard test macro .h file (pmacros.h or tmacros.h) to
74        enable this support.
75        * cdtest/init.c: Modified.
76
772002-07-01      Joel Sherrill <joel@OARcorp.com>
78
79        * unlimited/test1.c: Corrected use of _Objects_Information_table
80        now that it is a two dimensional array based upon API and class.
81
822002-04-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
83
84        * base_sp/apptask.c: Include <stdlib.h>.
85        * hello/init.c: Ditto.
86        * paranoia/init.c: Ditto.
87        * ticker/tasks.c: Ditto.
88        * unlimited/init.c: Ditto.
89        * unlimited/test1.c: Ditto.
90        * unlimited/test2.c: Ditto.
91        * unlimited/test3.c: Ditto.
92
932002-04-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
94
95        * configure.ac: Remove ENABLE_GCC28.
96
972002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
98
99        * configure.ac:
100        AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS).
101        AM_INIT_AUTOMAKE([no-define foreign 1.6]).
102        * base_mp/node1/Makefile.am: Remove AUTOMAKE_OPTIONS.
103        * base_mp/Makefile.am: Remove AUTOMAKE_OPTIONS.
104        * base_mp/node2/Makefile.am: Remove AUTOMAKE_OPTIONS.
105        * Makefile.am: Remove AUTOMAKE_OPTIONS.
106        * base_sp/Makefile.am: Remove AUTOMAKE_OPTIONS.
107        * cdtest/Makefile.am: Remove AUTOMAKE_OPTIONS.
108        * hello/Makefile.am: Remove AUTOMAKE_OPTIONS.
109        * minimum/Makefile.am: Remove AUTOMAKE_OPTIONS.
110        * paranoia/Makefile.am: Remove AUTOMAKE_OPTIONS.
111        * ticker/Makefile.am: Remove AUTOMAKE_OPTIONS.
112        * unlimited/Makefile.am: Remove AUTOMAKE_OPTIONS.
113
1142001-11-26      Ralf Corsepius
115
116        * cdtest/main.cc: Remove RTEMS_TEST_IO_STREAM.
117
1182001-10-25      Eric Norum <eric.norum@usask.ca>
119
120        * cdtest/system.h: Configure 1 semaphore.  This probably covers
121        up not defining one for the GCC C++ Run-Time Libraries.
122
1232001-10-17      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
124
125        * paranoia/Makefile.am: Use LD_LIBS = -lm to make automake-1.5 happy.
126
1272001-10-12      Joel Sherrill <joel@OARcorp.com>
128
129        * unlimited/init.c, unlimited/system.h, unlimited/test1.c,
130        unlimited/test2.c, unlimited/test3.c, unlimited/unlimited.doc:
131        Fixed typo.
132
1332001-10-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
134
135        * .cvsignore: Add autom4te.cache for autoconf > 2.52.
136        * configure.in: Remove.
137        * configure.ac: New file, generated from configure.in by autoupdate.
138
1392001-09-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
140
141        * minimum/Makefile.am: Fix comments to make automake-1.5 happy.
142        * sample.am: Use TMPINSTALL_FILES = to make automake-1.5 happy.
143        * cdtest/Makefile.am: Remove LD_LIBS.
144
1452001-09-19      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
146
147        * unlimited/Makefile.am: include leaf.am instead of leaf.cfg.
148        * base_mp/node2/Makefile.am: include leaf.am instead of leaf.cfg.
149        * base_mp/node1/Makefile.am: include leaf.am instead of leaf.cfg.
150        * hello/Makefile.am: include leaf.am instead of leaf.cfg.
151        * base_sp/Makefile.am: include leaf.am instead of leaf.cfg.
152        * paranoia/Makefile.am: include leaf.am instead of leaf.cfg.
153        * cdtest/Makefile.am: include leaf.am instead of leaf.cfg, use
154        make-cxx-exe.
155        * ticker/Makefile.am: include leaf.am instead of leaf.cfg.
156        * minimum/Makefile.am: include leaf.am instead of leaf.cfg.
157
1582001-06-14      Joel Sherrill <joel@OARcorp.com>
159
160        * cdtest/system.h: Removed configure of POSIX mutexes since
161        there do not appear to be any used in this test.
162
1632001-05-10      Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
164
165        * configure.in: Use RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm]).
166
1672000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
168
169        * Makefile.am: Use ... instead of RTEMS_TOPdir in ACLOCAL_AMFLAGS.
170
1712000-11-02      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
172
173        * Makefile.am: Switch to ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal.
174
1752000-10-30      Joel Sherrill <joel@OARcorp.com>
176
177        * POSIX include files merged into newlib.  This resulted in
178        some definitions moving to other files and thus some secondary
179        effects in RTEMS source code.
180        * paranoia/paranoia.c: Commented out incorrect and conflicting
181        prototype of read().
182
1832000-10-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
184
185        * Makefile.am: ACLOCAL_AMFLAGS= -I $(RTEMS_TOPdir)/macros.
186        Switch to GNU canonicalization.
187        * sample.am: Remove DEFS.
188
1892000-09-04      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
190
191        * base_mp/node1/Makefile.am, base_mp/node2/Makefile.am,
192        base_sp/Makefile.am, cdtest/Makefile.am, hello/Makefile.am,
193        minimum/Makefile.am, paranoia/Makefile.am, ticker/Makefile.am,
194        unlimited/Makefile.am: Include compile.am
195
1962000-08-10      Joel Sherrill <joel@OARcorp.com>
197
198        * ChangeLog: New file.
Note: See TracBrowser for help on using the repository browser.