26 lines
493 B
Bash
26 lines
493 B
Bash
|
|
#!/bin/sh
|
||
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
|
# Copyright (c) 2018-2022 Petr Vorel <pvorel@suse.cz>
|
||
|
|
# Copyright (c) 2016 Red Hat Inc., All Rights Reserved.
|
||
|
|
# Copyright (c) International Business Machines Corp., 2005
|
||
|
|
# Author: Hangbin Liu <haliu@redhat.com>
|
||
|
|
|
||
|
|
TST_TESTFUNC=do_test
|
||
|
|
TST_SETUP=do_setup
|
||
|
|
TST_CLEANUP=tst_ipsec_cleanup
|
||
|
|
|
||
|
|
do_setup()
|
||
|
|
{
|
||
|
|
tst_ipsec_setup
|
||
|
|
PING_MAX="$IPSEC_REQUESTS"
|
||
|
|
tst_res TINFO "Sending ICMP messages"
|
||
|
|
}
|
||
|
|
|
||
|
|
do_test()
|
||
|
|
{
|
||
|
|
tst_ping -s $2
|
||
|
|
}
|
||
|
|
|
||
|
|
. ipsec_lib.sh
|
||
|
|
tst_run
|