Skip to content

Commit e8f5b03

Browse files
committed
Merge branch 'ipsec-selftests-fixes'
Shannon Nelson says: ==================== fixes for ipsec selftests A couple of bad behaviors in the ipsec selftest were pointed out by Anders Roxell <anders.roxell@linaro.org> and are addressed here. ==================== Signed-off-by: David S. Miller <davem@davemloft.net>
2 parents 3f6c65d + 7000d53 commit e8f5b03

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

tools/testing/selftests/net/rtnetlink.sh

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -525,8 +525,12 @@ kci_test_macsec()
525525
#-------------------------------------------------------------------
526526
kci_test_ipsec()
527527
{
528-
srcip="14.0.0.52"
529-
dstip="14.0.0.70"
528+
# find an ip address on this machine and make up a destination
529+
srcip=`ip -o addr | awk '/inet / { print $4; }' | grep -v "^127" | head -1 | cut -f1 -d/`
530+
net=`echo $srcip | cut -f1-3 -d.`
531+
base=`echo $srcip | cut -f4 -d.`
532+
dstip="$net."`expr $base + 1`
533+
530534
algo="aead rfc4106(gcm(aes)) 0x3132333435363738393031323334353664636261 128"
531535

532536
# flush to be sure there's nothing configured
@@ -535,8 +539,7 @@ kci_test_ipsec()
535539

536540
# start the monitor in the background
537541
tmpfile=`mktemp ipsectestXXX`
538-
ip x m > $tmpfile &
539-
mpid=$!
542+
mpid=`(ip x m > $tmpfile & echo $!) 2>/dev/null`
540543
sleep 0.2
541544

542545
ipsecid="proto esp src $srcip dst $dstip spi 0x07"

0 commit comments

Comments
 (0)