All of lore.kernel.org
 help / color / mirror / Atom feed
* [LTP]  [PATCH] network: Fix ip_tests error
@ 2009-09-07 11:20 Hushan Jia
  2009-09-07 11:38 ` Subrata Modak
  0 siblings, 1 reply; 6+ messages in thread
From: Hushan Jia @ 2009-09-07 11:20 UTC (permalink / raw)
  To: ltp-list

Hi,

This patch fix several errors of testcases/network/iproute/ip_test.sh case:

1. Teset #1:
ip01        0  TINFO  :  Test #1: changing mtu size of eth0:1 device.
/mnt/ltp/ltp-full-20090731/testcases/bin/ip_tests.sh: line 198: [: -eq: unary operator expected.

The output of
ifconfig eth0:1 | grep -i MTU | sed "s/^.*MTU://"
is like:
1500  Metric:1
so should print field 1 instead of field 5.

2. Test #4:
ip tools now print nud state as follows:
REACHABLE, STALE, FAILED, etc.

3. Test #3, #4, #5:
If delete entry successfully, grep will return 1,
indicating test PASS, so return code RC should be set to 0.

Thanks&  Regards,
Hushan

---

network: Fix ip_tests test case error

Signed-off-by: Hushan Jia<hjia@redhat.com>

--- ltp-full-20090831/testcases/network/iproute/ip_tests.sh.orig	2009-09-07 15:20:29.000000000 +0800
+++ ltp-full-20090831/testcases/network/iproute/ip_tests.sh	2009-09-07 15:32:43.000000000 +0800
@@ -194,7 +194,7 @@ test01()
  			"Test #1: ip command failed. Reason: "
  		return $RC
  	else
-		MTUSZ=`ifconfig eth0:1 | grep -i MTU | sed "s/^.*MTU://" | awk '{print $5}'`
+		MTUSZ=`ifconfig eth0:1 | grep -i MTU | sed "s/^.*MTU://" | awk '{print $1}'`
  		if [ $MTUSZ -eq 300 ]
  		then
  			tst_resm TPASS "Test #1: changing mtu size success"
@@ -310,7 +310,9 @@ test03()
  				tst_res TFAIL $LTPTMP/tst_ip.err \
  				"Test #3: ip addr del command failed. Reason: "
  				return $(($RC+1))
-		fi
+			else
+				RC=0
+			fi
  		
  		tst_resm TPASS \
  			"Test #3: ip addr command tests successful"
@@ -354,7 +356,7 @@ test04()
  		 "Test #4: ip neigh show - shows all neighbour entries in arp tables."

  		cat>  $LTPTMP/tst_ip.exp<<-EOF
-		127.0.0.1 dev lo lladdr 00:00:00:00:00:00 nud reachable
+		127.0.0.1 dev lo lladdr 00:00:00:00:00:00 REACHABLE
  		EOF

  		ip neigh show 127.0.0.1 | head -n1>$LTPTMP/tst_ip.out 2>&1 || RC=$?
@@ -384,12 +386,14 @@ test04()
  				"Test #4: ip neigh del command failed return = $RC. Reason: "
  			return $RC
  		else
-			ip neigh show | grep 127.0.0.1 grep -v "nud failed$">$LTPTMP/tst_ip.err 2>&1 || RC=$?
+			ip neigh show | grep 127.0.0.1 | grep -v " FAILED$">$LTPTMP/tst_ip.err 2>&1 || RC=$?
  			if [ $RC -eq 0 ]
  			then
  				tst_res TFAIL $LTPTMP/tst_ip.err \
  				"Test #4: 127.0.0.1 still listed in arp. ip cmd Error Message:"
  				return $(($RC+1))
+			else
+				RC=0
  			fi
  		fi
  		
@@ -482,6 +486,8 @@ test05()
  				tst_res TFAIL $LTPTMP/tst_ip.err \
  				"Test #5: route not deleted. ip route show:"
  				return $(($RC+1))
+			else
+				RC=0
  			fi
  		fi
  		
@@ -570,6 +576,8 @@ test06()
  				tst_res TFAIL $LTPTMP/tst_ip.err \
  				"Test #6: 66:66:00:00:00:66 is not deleted. Details:"
  				return $(($RC+1))
+			else
+				RC=0
  			fi
  		fi
  		



------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [LTP] [PATCH] network: Fix ip_tests error
  2009-09-07 11:20 [LTP] [PATCH] network: Fix ip_tests error Hushan Jia
@ 2009-09-07 11:38 ` Subrata Modak
  2009-09-08  1:22   ` [LTP] [PATCH] network: Fix ip_tests error 2 Hushan Jia
  0 siblings, 1 reply; 6+ messages in thread
From: Subrata Modak @ 2009-09-07 11:38 UTC (permalink / raw)
  To: Hushan Jia; +Cc: ltp-list

This has to be remade as i have already applied your previous patch.

Regards--
Subrata

On Mon, 2009-09-07 at 19:20 +0800, Hushan Jia wrote:
> Hi,
> 
> This patch fix several errors of testcases/network/iproute/ip_test.sh case:
> 
> 1. Teset #1:
> ip01        0  TINFO  :  Test #1: changing mtu size of eth0:1 device.
> /mnt/ltp/ltp-full-20090731/testcases/bin/ip_tests.sh: line 198: [: -eq: unary operator expected.
> 
> The output of
> ifconfig eth0:1 | grep -i MTU | sed "s/^.*MTU://"
> is like:
> 1500  Metric:1
> so should print field 1 instead of field 5.
> 
> 2. Test #4:
> ip tools now print nud state as follows:
> REACHABLE, STALE, FAILED, etc.
> 
> 3. Test #3, #4, #5:
> If delete entry successfully, grep will return 1,
> indicating test PASS, so return code RC should be set to 0.
> 
> Thanks&  Regards,
> Hushan
> 
> ---
> 
> network: Fix ip_tests test case error
> 
> Signed-off-by: Hushan Jia<hjia@redhat.com>
> 
> --- ltp-full-20090831/testcases/network/iproute/ip_tests.sh.orig	2009-09-07 15:20:29.000000000 +0800
> +++ ltp-full-20090831/testcases/network/iproute/ip_tests.sh	2009-09-07 15:32:43.000000000 +0800
> @@ -194,7 +194,7 @@ test01()
>   			"Test #1: ip command failed. Reason: "
>   		return $RC
>   	else
> -		MTUSZ=`ifconfig eth0:1 | grep -i MTU | sed "s/^.*MTU://" | awk '{print $5}'`
> +		MTUSZ=`ifconfig eth0:1 | grep -i MTU | sed "s/^.*MTU://" | awk '{print $1}'`
>   		if [ $MTUSZ -eq 300 ]
>   		then
>   			tst_resm TPASS "Test #1: changing mtu size success"
> @@ -310,7 +310,9 @@ test03()
>   				tst_res TFAIL $LTPTMP/tst_ip.err \
>   				"Test #3: ip addr del command failed. Reason: "
>   				return $(($RC+1))
> -		fi
> +			else
> +				RC=0
> +			fi
>   		
>   		tst_resm TPASS \
>   			"Test #3: ip addr command tests successful"
> @@ -354,7 +356,7 @@ test04()
>   		 "Test #4: ip neigh show - shows all neighbour entries in arp tables."
> 
>   		cat>  $LTPTMP/tst_ip.exp<<-EOF
> -		127.0.0.1 dev lo lladdr 00:00:00:00:00:00 nud reachable
> +		127.0.0.1 dev lo lladdr 00:00:00:00:00:00 REACHABLE
>   		EOF
> 
>   		ip neigh show 127.0.0.1 | head -n1>$LTPTMP/tst_ip.out 2>&1 || RC=$?
> @@ -384,12 +386,14 @@ test04()
>   				"Test #4: ip neigh del command failed return = $RC. Reason: "
>   			return $RC
>   		else
> -			ip neigh show | grep 127.0.0.1 grep -v "nud failed$">$LTPTMP/tst_ip.err 2>&1 || RC=$?
> +			ip neigh show | grep 127.0.0.1 | grep -v " FAILED$">$LTPTMP/tst_ip.err 2>&1 || RC=$?
>   			if [ $RC -eq 0 ]
>   			then
>   				tst_res TFAIL $LTPTMP/tst_ip.err \
>   				"Test #4: 127.0.0.1 still listed in arp. ip cmd Error Message:"
>   				return $(($RC+1))
> +			else
> +				RC=0
>   			fi
>   		fi
>   		
> @@ -482,6 +486,8 @@ test05()
>   				tst_res TFAIL $LTPTMP/tst_ip.err \
>   				"Test #5: route not deleted. ip route show:"
>   				return $(($RC+1))
> +			else
> +				RC=0
>   			fi
>   		fi
>   		
> @@ -570,6 +576,8 @@ test06()
>   				tst_res TFAIL $LTPTMP/tst_ip.err \
>   				"Test #6: 66:66:00:00:00:66 is not deleted. Details:"
>   				return $(($RC+1))
> +			else
> +				RC=0
>   			fi
>   		fi
>   		
> 
> 
> 
> ------------------------------------------------------------------------------
> Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
> trial. Simplify your report design, integration and deployment - and focus on 
> what you do best, core application coding. Discover what's new with 
> Crystal Reports now.  http://p.sf.net/sfu/bobj-july
> _______________________________________________
> Ltp-list mailing list
> Ltp-list@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/ltp-list


------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [LTP] [PATCH] network: Fix ip_tests error 2
  2009-09-07 11:38 ` Subrata Modak
@ 2009-09-08  1:22   ` Hushan Jia
  2009-09-09  6:49     ` Subrata Modak
  0 siblings, 1 reply; 6+ messages in thread
From: Hushan Jia @ 2009-09-08  1:22 UTC (permalink / raw)
  To: subrata; +Cc: ltp-list

Hi Subrata,
I have remade the patch based on the first ip_tests.sh patch, changes:

1. Test #4:
ip tools now print nud state as follows:
REACHABLE, STALE, FAILED, etc.

2. Test #3, #4, #5:
If delete entry succefully, grep will return 1,
indicating test PASS, so return code RC should be set to 0.

Thanks&  Regards,
Hushan

---
network: Fix iproute test case error 2

Signed-off-by: Hushan Jia<hjia@redhat.com>

--- ltp-full-20090831/testcases/network/iproute/ip_tests.sh.orig	2009-09-08 09:04:54.000000000 +0800
+++ ltp-full-20090831/testcases/network/iproute/ip_tests.sh	2009-09-08 09:11:21.000000000 +0800
@@ -310,7 +310,9 @@ test03()
  				tst_res TFAIL $LTPTMP/tst_ip.err \
  				"Test #3: ip addr del command failed. Reason: "
  				return $(($RC+1))
-		fi
+			else
+				RC=0
+			fi
  		
  		tst_resm TPASS \
  			"Test #3: ip addr command tests successful"
@@ -354,7 +356,7 @@ test04()
  		 "Test #4: ip neigh show - shows all neighbour entries in arp tables."

  		cat>  $LTPTMP/tst_ip.exp<<-EOF
-		127.0.0.1 dev lo lladdr 00:00:00:00:00:00 nud reachable
+		127.0.0.1 dev lo lladdr 00:00:00:00:00:00 REACHABLE
  		EOF

  		ip neigh show 127.0.0.1 | head -n1>$LTPTMP/tst_ip.out 2>&1 || RC=$?
@@ -384,12 +386,14 @@ test04()
  				"Test #4: ip neigh del command failed return = $RC. Reason: "
  			return $RC
  		else
-			ip neigh show | grep 127.0.0.1 grep -v "nud failed$">$LTPTMP/tst_ip.err 2>&1 || RC=$?
+			ip neigh show | grep 127.0.0.1 | grep -v " FAILED$">$LTPTMP/tst_ip.err 2>&1 || RC=$?
  			if [ $RC -eq 0 ]
  			then
  				tst_res TFAIL $LTPTMP/tst_ip.err \
  				"Test #4: 127.0.0.1 still listed in arp. ip cmd Error Message:"
  				return $(($RC+1))
+			else
+				RC=0
  			fi
  		fi
  		
@@ -482,6 +486,8 @@ test05()
  				tst_res TFAIL $LTPTMP/tst_ip.err \
  				"Test #5: route not deleted. ip route show:"
  				return $(($RC+1))
+			else
+				RC=0
  			fi
  		fi
  		
@@ -570,6 +576,8 @@ test06()
  				tst_res TFAIL $LTPTMP/tst_ip.err \
  				"Test #6: 66:66:00:00:00:66 is not deleted. Details:"
  				return $(($RC+1))
+			else
+				RC=0
  			fi
  		fi
  		



------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [LTP] [PATCH] network: Fix ip_tests error 2
  2009-09-08  1:22   ` [LTP] [PATCH] network: Fix ip_tests error 2 Hushan Jia
@ 2009-09-09  6:49     ` Subrata Modak
  0 siblings, 0 replies; 6+ messages in thread
From: Subrata Modak @ 2009-09-09  6:49 UTC (permalink / raw)
  To: Hushan Jia; +Cc: ltp-list

On Tue, 2009-09-08 at 09:22 +0800, Hushan Jia wrote: 
> Hi Subrata,
> I have remade the patch based on the first ip_tests.sh patch, changes:
> 
> 1. Test #4:
> ip tools now print nud state as follows:
> REACHABLE, STALE, FAILED, etc.
> 
> 2. Test #3, #4, #5:
> If delete entry succefully, grep will return 1,
> indicating test PASS, so return code RC should be set to 0.
> 
> Thanks&  Regards,
> Hushan
> 
> ---
> network: Fix iproute test case error 2
> 
> Signed-off-by: Hushan Jia<hjia@redhat.com>

Sorry, this fail to apply too:

patching file testcases/network/iproute/ip_tests.sh
Hunk #1 FAILED at 310.
Hunk #2 FAILED at 356.
Hunk #3 FAILED at 386.
Hunk #4 FAILED at 486.
Hunk #5 FAILED at 576.
5 out of 5 hunks FAILED -- saving rejects to file
testcases/network/iproute/ip_tests.sh.rej

Regards--
Subrata

> 
> --- ltp-full-20090831/testcases/network/iproute/ip_tests.sh.orig	2009-09-08 09:04:54.000000000 +0800
> +++ ltp-full-20090831/testcases/network/iproute/ip_tests.sh	2009-09-08 09:11:21.000000000 +0800
> @@ -310,7 +310,9 @@ test03()
>   				tst_res TFAIL $LTPTMP/tst_ip.err \
>   				"Test #3: ip addr del command failed. Reason: "
>   				return $(($RC+1))
> -		fi
> +			else
> +				RC=0
> +			fi
>   		
>   		tst_resm TPASS \
>   			"Test #3: ip addr command tests successful"
> @@ -354,7 +356,7 @@ test04()
>   		 "Test #4: ip neigh show - shows all neighbour entries in arp tables."
> 
>   		cat>  $LTPTMP/tst_ip.exp<<-EOF
> -		127.0.0.1 dev lo lladdr 00:00:00:00:00:00 nud reachable
> +		127.0.0.1 dev lo lladdr 00:00:00:00:00:00 REACHABLE
>   		EOF
> 
>   		ip neigh show 127.0.0.1 | head -n1>$LTPTMP/tst_ip.out 2>&1 || RC=$?
> @@ -384,12 +386,14 @@ test04()
>   				"Test #4: ip neigh del command failed return = $RC. Reason: "
>   			return $RC
>   		else
> -			ip neigh show | grep 127.0.0.1 grep -v "nud failed$">$LTPTMP/tst_ip.err 2>&1 || RC=$?
> +			ip neigh show | grep 127.0.0.1 | grep -v " FAILED$">$LTPTMP/tst_ip.err 2>&1 || RC=$?
>   			if [ $RC -eq 0 ]
>   			then
>   				tst_res TFAIL $LTPTMP/tst_ip.err \
>   				"Test #4: 127.0.0.1 still listed in arp. ip cmd Error Message:"
>   				return $(($RC+1))
> +			else
> +				RC=0
>   			fi
>   		fi
>   		
> @@ -482,6 +486,8 @@ test05()
>   				tst_res TFAIL $LTPTMP/tst_ip.err \
>   				"Test #5: route not deleted. ip route show:"
>   				return $(($RC+1))
> +			else
> +				RC=0
>   			fi
>   		fi
>   		
> @@ -570,6 +576,8 @@ test06()
>   				tst_res TFAIL $LTPTMP/tst_ip.err \
>   				"Test #6: 66:66:00:00:00:66 is not deleted. Details:"
>   				return $(($RC+1))
> +			else
> +				RC=0
>   			fi
>   		fi
>   		
> 
> 


------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [LTP] [PATCH] network: Fix ip_tests error 2
  2009-09-11  1:58 Hushan Jia
@ 2009-09-13 13:17 ` Subrata Modak
  0 siblings, 0 replies; 6+ messages in thread
From: Subrata Modak @ 2009-09-13 13:17 UTC (permalink / raw)
  To: Hushan Jia; +Cc: ltp-list

On Fri, 2009-09-11 at 09:58 +0800, Hushan Jia wrote: 
> Hello,
> 
> Repost the ip tests patch:
> 
> 1. Test #4:
> ip tools now print nud state as follows:
> REACHABLE, STALE, FAILED, etc.
> 
> 2. Test #3, #4, #5:
> If delete entry succefully, grep will return 1,
> indicating test PASS, so return code RC should be set to 0.
> 
> Thanks & Regards,
> Hushan
> 
> ---
> 
> network: Fix iproute test case error 2
> 
> Signed-off-by: Hushan Jia <hjia@redhat.com>

Thanks.

Regards--
Subrata

> 
> 
> --- ltp/testcases/network/iproute/ip_tests.sh.orig	2009-09-09 18:31:31.000000000 +0800
> +++ ltp/testcases/network/iproute/ip_tests.sh	2009-09-09 18:32:43.000000000 +0800
> @@ -310,7 +310,9 @@ test03()
>  				tst_res TFAIL $LTPTMP/tst_ip.err \
>  				"Test #3: ip addr del command failed. Reason: "
>  				return $(($RC+1))
> -		fi
> +			else
> +				RC=0
> +			fi
>  		
>  		tst_resm TPASS \
>  			"Test #3: ip addr command tests successful"
> @@ -354,7 +356,7 @@ test04()
>  		 "Test #4: ip neigh show - shows all neighbour entries in arp tables."
> 
>  		cat > $LTPTMP/tst_ip.exp <<-EOF
> -		127.0.0.1 dev lo lladdr 00:00:00:00:00:00 nud reachable
> +		127.0.0.1 dev lo lladdr 00:00:00:00:00:00 REACHABLE
>  		EOF
> 
>  		ip neigh show 127.0.0.1 | head -n1 >$LTPTMP/tst_ip.out 2>&1 || RC=$?
> @@ -384,12 +386,14 @@ test04()
>  				"Test #4: ip neigh del command failed return = $RC. Reason: "
>  			return $RC
>  		else
> -			ip neigh show | grep 127.0.0.1 grep -v "nud failed$" >$LTPTMP/tst_ip.err 2>&1 || RC=$?
> +			ip neigh show | grep 127.0.0.1 | grep -v " FAILED$" >$LTPTMP/tst_ip.err 2>&1 || RC=$?
>  			if [ $RC -eq 0 ]
>  			then
>  				tst_res TFAIL $LTPTMP/tst_ip.err \
>  				"Test #4: 127.0.0.1 still listed in arp. ip cmd Error Message:"
>  				return $(($RC+1))
> +			else
> +				RC=0
>  			fi
>  		fi
>  		
> @@ -482,6 +486,8 @@ test05()
>  				tst_res TFAIL $LTPTMP/tst_ip.err \
>  				"Test #5: route not deleted. ip route show:"
>  				return $(($RC+1))
> +			else
> +				RC=0
>  			fi
>  		fi
>  		
> @@ -570,6 +576,8 @@ test06()
>  				tst_res TFAIL $LTPTMP/tst_ip.err \
>  				"Test #6: 66:66:00:00:00:66 is not deleted. Details:"
>  				return $(($RC+1))
> +			else
> +				RC=0
>  			fi
>  		fi
>  		


------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [LTP]  [PATCH] network: Fix ip_tests error 2
@ 2009-09-11  1:58 Hushan Jia
  2009-09-13 13:17 ` Subrata Modak
  0 siblings, 1 reply; 6+ messages in thread
From: Hushan Jia @ 2009-09-11  1:58 UTC (permalink / raw)
  To: ltp-list


Hello,

Repost the ip tests patch:

1. Test #4:
ip tools now print nud state as follows:
REACHABLE, STALE, FAILED, etc.

2. Test #3, #4, #5:
If delete entry succefully, grep will return 1,
indicating test PASS, so return code RC should be set to 0.

Thanks & Regards,
Hushan

---

network: Fix iproute test case error 2

Signed-off-by: Hushan Jia <hjia@redhat.com>


--- ltp/testcases/network/iproute/ip_tests.sh.orig	2009-09-09 18:31:31.000000000 +0800
+++ ltp/testcases/network/iproute/ip_tests.sh	2009-09-09 18:32:43.000000000 +0800
@@ -310,7 +310,9 @@ test03()
 				tst_res TFAIL $LTPTMP/tst_ip.err \
 				"Test #3: ip addr del command failed. Reason: "
 				return $(($RC+1))
-		fi
+			else
+				RC=0
+			fi
 		
 		tst_resm TPASS \
 			"Test #3: ip addr command tests successful"
@@ -354,7 +356,7 @@ test04()
 		 "Test #4: ip neigh show - shows all neighbour entries in arp tables."
 
 		cat > $LTPTMP/tst_ip.exp <<-EOF
-		127.0.0.1 dev lo lladdr 00:00:00:00:00:00 nud reachable
+		127.0.0.1 dev lo lladdr 00:00:00:00:00:00 REACHABLE
 		EOF
 
 		ip neigh show 127.0.0.1 | head -n1 >$LTPTMP/tst_ip.out 2>&1 || RC=$?
@@ -384,12 +386,14 @@ test04()
 				"Test #4: ip neigh del command failed return = $RC. Reason: "
 			return $RC
 		else
-			ip neigh show | grep 127.0.0.1 grep -v "nud failed$" >$LTPTMP/tst_ip.err 2>&1 || RC=$?
+			ip neigh show | grep 127.0.0.1 | grep -v " FAILED$" >$LTPTMP/tst_ip.err 2>&1 || RC=$?
 			if [ $RC -eq 0 ]
 			then
 				tst_res TFAIL $LTPTMP/tst_ip.err \
 				"Test #4: 127.0.0.1 still listed in arp. ip cmd Error Message:"
 				return $(($RC+1))
+			else
+				RC=0
 			fi
 		fi
 		
@@ -482,6 +486,8 @@ test05()
 				tst_res TFAIL $LTPTMP/tst_ip.err \
 				"Test #5: route not deleted. ip route show:"
 				return $(($RC+1))
+			else
+				RC=0
 			fi
 		fi
 		
@@ -570,6 +576,8 @@ test06()
 				tst_res TFAIL $LTPTMP/tst_ip.err \
 				"Test #6: 66:66:00:00:00:66 is not deleted. Details:"
 				return $(($RC+1))
+			else
+				RC=0
 			fi
 		fi
 		

------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2009-09-13 13:19 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-09-07 11:20 [LTP] [PATCH] network: Fix ip_tests error Hushan Jia
2009-09-07 11:38 ` Subrata Modak
2009-09-08  1:22   ` [LTP] [PATCH] network: Fix ip_tests error 2 Hushan Jia
2009-09-09  6:49     ` Subrata Modak
2009-09-11  1:58 Hushan Jia
2009-09-13 13:17 ` Subrata Modak

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.