From: Alexey Kodanev <alexey.kodanev@oracle.com>
To: ltp@lists.linux.it
Subject: [LTP] [PATCH 2/2] network/ping02: use tst_ping() from the library
Date: Tue, 8 Dec 2020 19:24:40 +0300 [thread overview]
Message-ID: <20201208162440.14538-2-alexey.kodanev@oracle.com> (raw)
In-Reply-To: <20201208162440.14538-1-alexey.kodanev@oracle.com>
Signed-off-by: Alexey Kodanev <alexey.kodanev@oracle.com>
---
testcases/network/tcp_cmds/ping/ping02.sh | 30 ++---------------------
1 file changed, 2 insertions(+), 28 deletions(-)
diff --git a/testcases/network/tcp_cmds/ping/ping02.sh b/testcases/network/tcp_cmds/ping/ping02.sh
index d4290c873..07a713531 100755
--- a/testcases/network/tcp_cmds/ping/ping02.sh
+++ b/testcases/network/tcp_cmds/ping/ping02.sh
@@ -2,41 +2,15 @@
# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (c) 2016-2019 Oracle and/or its affiliates. All Rights Reserved.
-TST_SETUP="do_setup"
TST_TESTFUNC="do_test"
TST_NEEDS_ROOT=1
. tst_net.sh
-do_setup()
-{
- COUNT=${COUNT:-3}
- PACKETSIZES=${PACKETSIZES:-"8 16 32 64 128 256 512 1024 2048 4064"}
-
- PING=ping${TST_IPV6}
-
- tst_require_cmds $PING
-
- ping_opts="-f -p 000102030405060708090a0b0c0d0e0f"
- ipaddr=$(tst_ipaddr rhost)
-
- if ! $PING -c 1 -f $ipaddr >/dev/null 2>&1; then
- ping_opts="-i 0.01 -p aa"
- if $PING -i 2>&1 | grep -q "invalid option"; then
- tst_brk TCONF "unsupported ping version (old busybox?)"
- fi
- fi
-}
-
do_test()
{
- local s
-
- tst_res TINFO "flood $PING: ICMP packets with options '$ping_opts'"
-
- for s in $PACKETSIZES; do
- EXPECT_PASS $PING -c $COUNT -s $s $ipaddr $ping_opts \>/dev/null
- done
+ tst_ping -s "${PACKETSIZES:-8 16 32 64 128 256 512 1024 2048 4064}" \
+ -p "000102030405060708090a0b0c0d0e0f" -c "${COUNT:-3}"
}
tst_run
--
2.20.1
next prev parent reply other threads:[~2020-12-08 16:24 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-12-08 16:24 [LTP] [PATCH 1/2] lib/tst_net.sh: add getopts to tst_ping() Alexey Kodanev
2020-12-08 16:24 ` Alexey Kodanev [this message]
2020-12-11 8:55 ` [LTP] [PATCH 2/2] network/ping02: use tst_ping() from the library Petr Vorel
2020-12-14 11:48 ` Alexey Kodanev
2020-12-11 8:54 ` [LTP] [PATCH 1/2] lib/tst_net.sh: add getopts to tst_ping() Petr Vorel
2020-12-11 9:15 ` Petr Vorel
2020-12-11 11:09 ` Alexey Kodanev
2020-12-11 12:21 ` Petr Vorel
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20201208162440.14538-2-alexey.kodanev@oracle.com \
--to=alexey.kodanev@oracle.com \
--cc=ltp@lists.linux.it \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox