aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing
diff options
context:
space:
mode:
authorShannon Nelson <shannon.nelson@oracle.com>2018-06-26 10:07:52 -0700
committerDavid S. Miller <davem@davemloft.net>2018-06-28 16:10:07 +0900
commitfd0e418d6b1d6dfa193f2196534aef1c95c205fc (patch)
treedcc212b4cf8ebbb458a621051f40574a3a3d8840 /tools/testing
parentl2tp: define helper for parsing struct sockaddr_pppol2tp* (diff)
downloadlinux-dev-fd0e418d6b1d6dfa193f2196534aef1c95c205fc.tar.xz
linux-dev-fd0e418d6b1d6dfa193f2196534aef1c95c205fc.zip
selftests: rtnetlink: clear the return code at start of ipsec test
Following the custom from the other functions, clear the global ret code before starting the test so as to not have previously failed tests cause us to thing this test has failed. Reported-by: Anders Roxell <anders.roxell@linaro.org> Signed-off-by: Shannon Nelson <shannon.nelson@oracle.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'tools/testing')
-rwxr-xr-xtools/testing/selftests/net/rtnetlink.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/testing/selftests/net/rtnetlink.sh b/tools/testing/selftests/net/rtnetlink.sh
index a90eb31abd59..a80a489a7296 100755
--- a/tools/testing/selftests/net/rtnetlink.sh
+++ b/tools/testing/selftests/net/rtnetlink.sh
@@ -525,6 +525,8 @@ kci_test_macsec()
#-------------------------------------------------------------------
kci_test_ipsec()
{
+ ret=0
+
# find an ip address on this machine and make up a destination
srcip=`ip -o addr | awk '/inet / { print $4; }' | grep -v "^127" | head -1 | cut -f1 -d/`
net=`echo $srcip | cut -f1-3 -d.`