Skip to content

Commit

Permalink
selftests: rtnetlink: clear the return code at start of ipsec test
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Shannon Nelson authored and David S. Miller committed Jun 28, 2018
1 parent a408194 commit fd0e418
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tools/testing/selftests/net/rtnetlink.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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.`
Expand Down

0 comments on commit fd0e418

Please sign in to comment.