浏览代码

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>
Shannon Nelson 7 年之前
父节点
当前提交
fd0e418d6b
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      tools/testing/selftests/net/rtnetlink.sh

+ 2 - 0
tools/testing/selftests/net/rtnetlink.sh

@@ -525,6 +525,8 @@ kci_test_macsec()
 #-------------------------------------------------------------------
 #-------------------------------------------------------------------
 kci_test_ipsec()
 kci_test_ipsec()
 {
 {
+	ret=0
+
 	# find an ip address on this machine and make up a destination
 	# 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/`
 	srcip=`ip -o addr | awk '/inet / { print $4; }' | grep -v "^127" | head -1 | cut -f1 -d/`
 	net=`echo $srcip | cut -f1-3 -d.`
 	net=`echo $srcip | cut -f1-3 -d.`