source: rtems/testsuites/psxtests/psx13/Makefile.am @ d802489

4.104.114.84.95
Last change on this file since d802489 was d802489, checked in by Joel Sherrill <joel.sherrill@…>, on 08/02/02 at 00:53:21

2002-08-01 Joel Sherrill <joel@…>

  • Per PR47 add support for buffered test output. This involved adding defines to redirect output to a buffer and dump it when full, at "test pause", and at exit. To avoid problems when redefining exit(), all tests were modified to call rtems_test_exit(). Some tests, notable psxtests, had to be modified to include the standard test macro .h file (pmacros.h or tmacros.h) to enable this support.
  • include/pmacros.h, psx01/task.c, psx02/init.c, psx02/task.c, psx03/init.c, psx04/init.c, psx05/init.c, psx06/init.c, psx07/init.c, psx08/task3.c, psx09/init.c, psx10/init.c, psx11/init.c, psx12/init.c, psx13/Makefile.am, psx13/main.c, psx13/test.c, psxcancel/init.c, psxchroot01/Makefile.am, psxchroot01/main.c, psxchroot01/test.c, psxfile01/Makefile.am, psxfile01/main.c, psxfile01/test.c, psxfile01/test_cat.c, psxfile01/test_extend.c, psxfile01/test_write.c, psxmount/Makefile.am, psxmount/main.c, psxmount/test.c, psxmsgq01/init.c, psxreaddir/Makefile.am, psxreaddir/main.c, psxreaddir/test.c, psxsem01/init.c, psxstat/Makefile.am, psxstat/main.c, psxstat/test.c, psxtime/main.c, psxtime/test.c, psxtimer/psxtimer.c: Modified.
  • Property mode set to 100644
File size: 711 bytes
Line 
1##
2## $Id$
3##
4
5
6TEST = psx13
7
8MANAGERS = all
9
10C_FILES = main.c test.c
11C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
12
13DOCTYPES = scn
14DOCS = $(DOCTYPES:%=$(TEST).%)
15
16SRCS = $(DOCS) $(C_FILES) $(H_FILES)
17OBJS = $(C_O_FILES)
18
19PRINT_SRCS = $(DOCS)
20
21PGM = ${ARCH}/$(TEST).exe
22
23include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
24include $(top_srcdir)/../../../../automake/compile.am
25include $(top_srcdir)/../../../../automake/leaf.am
26include $(top_srcdir)/psxtests.am
27
28#
29# (OPTIONAL) Add local stuff here using +=
30#
31
32AM_CPPFLAGS += -I$(top_srcdir)/include
33
34${PGM}: $(OBJS) $(LINK_FILES)
35        $(make-exe)
36
37all-local: $(ARCH) $(TMPINSTALL_FILES)
38
39EXTRA_DIST = $(C_FILES) $(DOCS)
40
41include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.