1#!/bin/sh 2# SPDX-License-Identifier: GPL-2.0-or-later 3# Copyright (c) 2018-2022 Petr Vorel <[email protected]> 4# Copyright (c) 2017 Oracle and/or its affiliates. All Rights Reserved. 5# Author: Alexey Kodanev <[email protected]> 6 7TST_NEEDS_TMPDIR=1 8TST_TESTFUNC=do_test 9TST_SETUP=tst_ipsec_setup 10TST_CNT=2 11TST_CLEANUP=tst_ipsec_cleanup 12 13do_test() 14{ 15 local opts="-n $2 -N $2" 16 local rand_opt="$(echo $2 | cut -d'R' -f2)" 17 local type="udp" 18 19 [ $1 -eq 2 ] && type="udp_lite" 20 [ "$2" != "$rand_opt" ] && opts="-A $rand_opt" 21 tst_netload -H $(tst_ipaddr rhost) -T $type $opts -r $IPSEC_REQUESTS 22} 23 24. ipsec_lib.sh 25tst_run 26