Skip to content

Commit 8b8fc3d

Browse files
committed
network/ping02: add new flood ping test
* test sends packets without delay; * packets filled out with a predefined pattern. Signed-off-by: Alexey Kodanev <alexey.kodanev@oracle.com> Reviewed-by: Cyril Hrubis <chrubis@suse.cz>
1 parent 86cfd98 commit 8b8fc3d

File tree

4 files changed

+51
-1
lines changed

4 files changed

+51
-1
lines changed

runtest/net.ipv6

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#DESCRIPTION:IPV6 related tests
22
ping601 ping01.sh -6
3+
ping602 ping02.sh -6
34
sendfile601 sendfile01 -6
45
tcpdump601 tcpdump01 -6
56
tracepath601 tracepath01.sh -6

runtest/net.tcp_cmds

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ ftp export TCbin=$LTPROOT/testcases/network/tcp_cmds/ftp; ftp01
1111
host host01
1212
netstat netstat01
1313
ping01 ping01.sh
14+
ping02 ping02.sh
1415
rcp export TCbin=$LTPROOT/testcases/network/tcp_cmds/rcp; rcp01
1516
rdist export TCbin=$LTPROOT/testcases/network/tcp_cmds/rdist; rdist01
1617
rlogin rlogin01

testcases/network/tcp_cmds/ping/Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ top_srcdir ?= ../../../..
2424

2525
include $(top_srcdir)/include/mk/env_pre.mk
2626

27-
INSTALL_TARGETS := ping01.sh
27+
INSTALL_TARGETS := ping01.sh \
28+
ping02.sh
2829

2930
MAKE_TARGETS :=
3031

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
#! /bin/sh
2+
# Copyright (c) 2016 Oracle and/or its affiliates. All Rights Reserved.
3+
#
4+
# This program is free software; you can redistribute it and/or
5+
# modify it under the terms of the GNU General Public License as
6+
# published by the Free Software Foundation; either version 2 of
7+
# the License, or (at your option) any later version.
8+
#
9+
# This program is distributed in the hope that it would be useful,
10+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
# GNU General Public License for more details.
13+
#
14+
# You should have received a copy of the GNU General Public License
15+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
16+
17+
TST_TOTAL=10
18+
TCID="ping02"
19+
20+
. test_net.sh
21+
22+
do_setup()
23+
{
24+
COUNT=${COUNT:-3}
25+
PACKETSIZES=${PACKETSIZES:-"8 16 32 64 128 256 512 1024 2048 4064"}
26+
27+
PING=ping${TST_IPV6}
28+
29+
tst_check_cmds $PING
30+
}
31+
32+
do_test()
33+
{
34+
local pat="000102030405060708090a0b0c0d0e0f"
35+
36+
tst_resm TINFO "flood $PING: ICMP packets filled with pattern '$pat'"
37+
38+
local ipaddr=$(tst_ipaddr rhost)
39+
for psize in $PACKETSIZES; do
40+
EXPECT_PASS $PING -c $COUNT -f -s $psize $ipaddr -p "$pat" \>/dev/null
41+
done
42+
}
43+
44+
do_setup
45+
do_test
46+
47+
tst_exit

0 commit comments

Comments
 (0)