From 4691b48d1dfcdb04737fb005de78e06eee107774 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 27 Jan 2003 23:30:07 +0000 Subject: 2003-01-27 Joel Sherrill * Makefile.am, configure.ac: Added new test loopback which shows how to use the loopback interface. Thank you Eric Norum for a portable target independent test which exercises the TCP/IP. This should prevent massive failures in the TCP/IP stack from reaching the street. * loopback/.cvsignore, loopback/Makefile.am, loopback/README, loopback/init.c, loopback/loopback.scn: New files. --- testsuites/samples/ChangeLog | 10 ++++++++++ testsuites/samples/Makefile.am | 5 ++++- testsuites/samples/configure.ac | 3 +++ 3 files changed, 17 insertions(+), 1 deletion(-) (limited to 'testsuites') diff --git a/testsuites/samples/ChangeLog b/testsuites/samples/ChangeLog index b26000131f..9243134587 100644 --- a/testsuites/samples/ChangeLog +++ b/testsuites/samples/ChangeLog @@ -1,3 +1,13 @@ +2003-01-27 Joel Sherrill + + * Makefile.am, configure.ac: Added new test loopback which shows how to + use the loopback interface. Thank you Eric Norum for a portable + target independent test which exercises the TCP/IP. This should + prevent massive failures in the TCP/IP stack from reaching the + street. + * loopback/.cvsignore, loopback/Makefile.am, loopback/README, + loopback/init.c, loopback/loopback.scn: New files. + 2003-01-03 Joel Sherrill * unlimited/system.h, unlimited/test1.c: Backed off previous diff --git a/testsuites/samples/Makefile.am b/testsuites/samples/Makefile.am index c94f2369ee..d10b81b308 100644 --- a/testsuites/samples/Makefile.am +++ b/testsuites/samples/Makefile.am @@ -11,8 +11,11 @@ MP_TESTS = base_mp FP_TESTS = paranoia +## loopback tests a network loopback interface +NET_TESTS = loopback + SUBDIRS = hello ticker base_sp unlimited minimum $(MP_TESTS) \ - $(CPLUSPLUS_TESTS) $(FP_TESTS) + $(CPLUSPLUS_TESTS) $(FP_TESTS) $(NET_TESTS) AUTOMAKE_FILES = sample.am diff --git a/testsuites/samples/configure.ac b/testsuites/samples/configure.ac index d5868df067..33319e5ed1 100644 --- a/testsuites/samples/configure.ac +++ b/testsuites/samples/configure.ac @@ -32,7 +32,9 @@ RTEMS_CANONICALIZE_TOOLS RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP) RTEMS_CHECK_MULTIPROCESSING(RTEMS_BSP) RTEMS_CHECK_CXX(RTEMS_BSP) +RTEMS_CHECK_NETWORKING +AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes") AM_CONDITIONAL(HAS_CXX,test "$HAS_CPLUSPLUS" = "yes") AM_CONDITIONAL(HAS_MP,test "$HAS_MP" = "yes") @@ -40,6 +42,7 @@ AM_CONDITIONAL(HAS_MP,test "$HAS_MP" = "yes") AC_CONFIG_FILES([Makefile base_sp/Makefile hello/Makefile +loopback/Makefile minimum/Makefile paranoia/Makefile ticker/Makefile -- cgit v1.2.3