source: rtems/c/src/tests/support/include/Makefile.am @ cd9396e

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

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/buffer_test_io.h: New file.
  • Property mode set to 100644
File size: 644 bytes
RevLine 
[811804fe]1##
2##  $Id$
3##
[908436c1]4
5
[df49c60]6project_bspdir = $(PROJECT_ROOT)/@RTEMS_BSP@
[908436c1]7
8noinst_HEADERS = tmacros.h
9
[df49c60]10TMPINSTALLFILES = $(project_bspdir)/lib/include \
[cd9396e]11    $(project_bspdir)/lib/include/tmacros.h \
12    $(project_bspdir)/lib/include/buffer_test_io.h
[908436c1]13
[df49c60]14$(project_bspdir)/lib/include:
[908436c1]15        $(mkinstalldirs) $@
16$(project_bspdir)/lib/include/tmacros.h: tmacros.h
17        $(INSTALL_DATA) $< $@
[cd9396e]18$(project_bspdir)/lib/include/buffer_test_io.h: buffer_test_io.h
19        $(INSTALL_DATA) $< $@
[908436c1]20
[cd9396e]21CLEANFILES = $(project_bspdir)/lib/include/tmacros.h \
22    $(project_bspdir)/lib/include/buffer_test_io.h
[908436c1]23
[df49c60]24all-local: $(TMPINSTALLFILES)
[908436c1]25
26include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.