The coming patch stack fixes some of the testcases sent earlier on the list by Veerendra and adds new testcases for testing network namespace. The patches provides infrastructure for tcp testcass and add one testcase for ping command test. Content-Disposition: inline; filename=add-makefile-in-tcp-dir.patch
This patch adds the Makefile in the tcp directory for all tcp command testcase for the network namespace. Signed-off-by: Sudhir Kumar <[EMAIL PROTECTED]> Index: containers/netns/tcp/Makefile =================================================================== --- /dev/null +++ containers/netns/tcp/Makefile @@ -0,0 +1,37 @@ +#*********************************************************************** +# +# Copyright (c) International Business Machines Corp., 2008 +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See +# the GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this pronram; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# +# Filename: Makefile +# Purpose: make support for all tcp testcases +# +# Author: Sudhir Kumar <[EMAIL PROTECTED]> +# Date: 25/08/08 +#*********************************************************************** + +SUBDIRS = `ls */Makefile | sed "s/Makefile//g"` + +all: + @set -e; for i in $(SUBDIRS); do $(MAKE) -C $$i ; done + +install: + @set -e; for i in $(SUBDIRS); do $(MAKE) -C $$i install ; done + +clean: + @set -e; for i in $(SUBDIRS); do $(MAKE) -C $$i clean ; done + + -- Regards Sudhir Kumar Linux Technology Center IBM, India. ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Ltp-list mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ltp-list
