public inbox for ltp@lists.linux.it
 help / color / mirror / Atom feed
* [LTP] [PATCH] netns_helper.sh: use 'ping -6' when ping6 is not avaliable
@ 2018-08-29  3:51 Lei Yang
  2018-08-31  9:27 ` Petr Vorel
  2018-10-08 10:07 ` Petr Vorel
  0 siblings, 2 replies; 3+ messages in thread
From: Lei Yang @ 2018-08-29  3:51 UTC (permalink / raw)
  To: ltp

ping6 has been merged into ping since 2015 by using "ping -6"
in some distrubiton like open embeded, they droped ping6 completely
this patch will let both "ping -6" and ping6 work

Signed-off-by: Lei Yang <Lei.Yang@windriver.com>
---
 testcases/kernel/containers/netns/netns_helper.sh | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/testcases/kernel/containers/netns/netns_helper.sh b/testcases/kernel/containers/netns/netns_helper.sh
index 6aea10b..e3f60e1 100755
--- a/testcases/kernel/containers/netns/netns_helper.sh
+++ b/testcases/kernel/containers/netns/netns_helper.sh
@@ -168,7 +168,12 @@ netns_setup()
 	ipv6)
 		IFCONF_IN6_ARG="inet6 add"
 		IP0=$6; IP1=$7;
-		tping="ping6"; NETMASK=64
+		if which ping6 >/dev/null 2>&1; then
+		    tping="ping6" 
+		else
+		    tping="ping -6"
+		fi
+		NETMASK=64
 		;;
 	*)
 		tst_brkm TBROK "second argument must be an ip version (ipv4|ipv6)"
-- 
1.9.1


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

end of thread, other threads:[~2018-10-08 10:07 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-08-29  3:51 [LTP] [PATCH] netns_helper.sh: use 'ping -6' when ping6 is not avaliable Lei Yang
2018-08-31  9:27 ` Petr Vorel
2018-10-08 10:07 ` Petr Vorel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox