Changeset a3ac20f in rtems
- Timestamp:
- 09/13/01 13:24:29 (21 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- a8bd1de
- Parents:
- bc51d7e9
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/tests/ChangeLog
rbc51d7e9 ra3ac20f 1 2001-09-13 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * configure.in: autoupdate to autoconf-2.52, new CONFIG_SUBDIRS 4 handling. 5 1 6 2001-05-10 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 7 -
c/src/tests/configure.in
rbc51d7e9 ra3ac20f 3 3 dnl $Id$ 4 4 5 AC_PREREQ(2.13) 6 AC_INIT(samples) 5 AC_PREREQ(2.52) 6 AC_INIT 7 AC_CONFIG_SRCDIR([samples]) 7 8 RTEMS_TOP(../../..) 8 9 AC_CONFIG_AUX_DIR(../../..) … … 32 33 RTEMS_CHECK_ITRON_API(RTEMS_BSP) 33 34 35 AC_CONFIG_SUBDIRS(tools) 36 AC_CONFIG_SUBDIRS(support) 37 AC_CONFIG_SUBDIRS(samples) 38 34 39 if test "$tests_enabled" = "yes"; then 35 40 # do functionality tests first, then performance tests 36 cfg_subdirs="libtests sptests"41 AC_CONFIG_SUBDIRS(libtests sptests) 37 42 if test "$HAS_MP" = "yes"; then 38 cfg_subdirs="$cfg_subdirs mptests"43 AC_CONFIG_SUBDIRS(mptests) 39 44 fi 40 45 if test "$HAS_POSIX_API" = "yes"; then 41 cfg_subdirs="$cfg_subdirs psxtests"46 AC_CONFIG_SUBDIRS(psxtests) 42 47 fi 43 48 if test "$HAS_ITRON_API" = "yes"; then 44 cfg_subdirs="$cfg_subdirs itrontests"49 AC_CONFIG_SUBDIRS(itrontests) 45 50 fi 46 51 # Now do performance tests 47 cfg_subdirs="$cfg_subdirs tmtests"52 AC_CONFIG_SUBDIRS(tmtests) 48 53 if test "$HAS_ITRON_API" = "yes"; then 49 cfg_subdirs="$cfg_subdirs tmitrontests"54 AC_CONFIG_SUBDIRS(tmitrontests) 50 55 fi 51 56 fi … … 54 59 AC_SUBST(BARE_CPU_MODEL) 55 60 56 AC_CONFIG_SUBDIRS(tools)57 AC_CONFIG_SUBDIRS(support)58 AC_CONFIG_SUBDIRS(samples)59 AC_CONFIG_SUBDIRS($cfg_subdirs)60 61 61 # Explicitly list all Makefiles here 62 AC_ OUTPUT(63 Makefile 64 ) 62 AC_CONFIG_FILES([Makefile 63 ]) 64 AC_OUTPUT -
testsuites/ChangeLog
rbc51d7e9 ra3ac20f 1 2001-09-13 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * configure.in: autoupdate to autoconf-2.52, new CONFIG_SUBDIRS 4 handling. 5 1 6 2001-05-10 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 7
Note: See TracChangeset
for help on using the changeset viewer.