source: rtems/testsuites/sptests/sp44/Makefile.am @ a7a9e193

4.8
Last change on this file since a7a9e193 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: 609 bytes
Line 
1##
2## $Id$
3##
4
5MANAGERS = all
6
7rtems_tests_PROGRAMS = sp44.exe
8sp44_exe_SOURCES = init.c
9
10dist_rtems_tests_DATA = sp44.scn
11
12include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
13include $(top_srcdir)/../automake/compile.am
14include $(top_srcdir)/../automake/leaf.am
15
16sp44_exe_LDADD = $(MANAGERS_NOT_WANTED:%=$(PROJECT_LIB)/no-%.rel)
17
18AM_CPPFLAGS += -I$(top_srcdir)/../support/include
19
20LINK_OBJS = $(sp44_exe_OBJECTS) $(sp44_exe_LDADD)
21LINK_LIBS = $(sp44_exe_LDLIBS)
22
23sp44.exe$(EXEEXT): $(sp44_exe_OBJECTS) $(sp44_exe_DEPENDENCIES)
24        @rm -f sp44.exe$(EXEEXT)
25        $(make-exe)
26
27include $(top_srcdir)/../automake/local.am
Note: See TracBrowser for help on using the repository browser.