Changeset 4691b48 in rtems
- Timestamp:
- 01/27/03 23:30:07 (20 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 25b957c1
- Parents:
- a4de0fc
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/tests/samples/ChangeLog
ra4de0fc r4691b48 1 2003-01-27 Joel Sherrill <joel@OARcorp.com> 2 3 * Makefile.am, configure.ac: Added new test loopback which shows how to 4 use the loopback interface. Thank you Eric Norum for a portable 5 target independent test which exercises the TCP/IP. This should 6 prevent massive failures in the TCP/IP stack from reaching the 7 street. 8 * loopback/.cvsignore, loopback/Makefile.am, loopback/README, 9 loopback/init.c, loopback/loopback.scn: New files. 10 1 11 2003-01-03 Joel Sherrill <joel@OARcorp.com> 2 12 -
c/src/tests/samples/Makefile.am
ra4de0fc r4691b48 12 12 FP_TESTS = paranoia 13 13 14 ## loopback tests a network loopback interface 15 NET_TESTS = loopback 16 14 17 SUBDIRS = hello ticker base_sp unlimited minimum $(MP_TESTS) \ 15 $(CPLUSPLUS_TESTS) $(FP_TESTS) 18 $(CPLUSPLUS_TESTS) $(FP_TESTS) $(NET_TESTS) 16 19 17 20 AUTOMAKE_FILES = sample.am -
c/src/tests/samples/configure.ac
ra4de0fc r4691b48 33 33 RTEMS_CHECK_MULTIPROCESSING(RTEMS_BSP) 34 34 RTEMS_CHECK_CXX(RTEMS_BSP) 35 RTEMS_CHECK_NETWORKING 35 36 37 AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes") 36 38 AM_CONDITIONAL(HAS_CXX,test "$HAS_CPLUSPLUS" = "yes") 37 39 AM_CONDITIONAL(HAS_MP,test "$HAS_MP" = "yes") … … 41 43 base_sp/Makefile 42 44 hello/Makefile 45 loopback/Makefile 43 46 minimum/Makefile 44 47 paranoia/Makefile -
testsuites/samples/ChangeLog
ra4de0fc r4691b48 1 2003-01-27 Joel Sherrill <joel@OARcorp.com> 2 3 * Makefile.am, configure.ac: Added new test loopback which shows how to 4 use the loopback interface. Thank you Eric Norum for a portable 5 target independent test which exercises the TCP/IP. This should 6 prevent massive failures in the TCP/IP stack from reaching the 7 street. 8 * loopback/.cvsignore, loopback/Makefile.am, loopback/README, 9 loopback/init.c, loopback/loopback.scn: New files. 10 1 11 2003-01-03 Joel Sherrill <joel@OARcorp.com> 2 12 -
testsuites/samples/Makefile.am
ra4de0fc r4691b48 12 12 FP_TESTS = paranoia 13 13 14 ## loopback tests a network loopback interface 15 NET_TESTS = loopback 16 14 17 SUBDIRS = hello ticker base_sp unlimited minimum $(MP_TESTS) \ 15 $(CPLUSPLUS_TESTS) $(FP_TESTS) 18 $(CPLUSPLUS_TESTS) $(FP_TESTS) $(NET_TESTS) 16 19 17 20 AUTOMAKE_FILES = sample.am -
testsuites/samples/configure.ac
ra4de0fc r4691b48 33 33 RTEMS_CHECK_MULTIPROCESSING(RTEMS_BSP) 34 34 RTEMS_CHECK_CXX(RTEMS_BSP) 35 RTEMS_CHECK_NETWORKING 35 36 37 AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes") 36 38 AM_CONDITIONAL(HAS_CXX,test "$HAS_CPLUSPLUS" = "yes") 37 39 AM_CONDITIONAL(HAS_MP,test "$HAS_MP" = "yes") … … 41 43 base_sp/Makefile 42 44 hello/Makefile 45 loopback/Makefile 43 46 minimum/Makefile 44 47 paranoia/Makefile
Note: See TracChangeset
for help on using the changeset viewer.