diff options
author | Shannon Nelson <shannon.nelson@oracle.com> | 2018-06-20 08:42:42 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-06-22 07:47:55 +0300 |
commit | 1599b218d511afad570be6048108d0746f78bfe9 (patch) | |
tree | fba62443ee99039cc1be4d107718d186f6c996f7 | |
parent | 3f6c65d6255a872846c44182c82c78d3dc6239f5 (diff) | |
download | linux-1599b218d511afad570be6048108d0746f78bfe9.tar.xz |
selftests: rtnetlink: hide complaint from terminated monitor
Set up the "ip xfrm monitor" subprogram so as to not see
a "Terminated" message when the subprogram is killed.
Fixes: 5e596ee171ba ("selftests: add xfrm state-policy-monitor to rtnetlink.sh")
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>
-rwxr-xr-x | tools/testing/selftests/net/rtnetlink.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/testing/selftests/net/rtnetlink.sh b/tools/testing/selftests/net/rtnetlink.sh index 0d7a44fa30af..4cd252f4e077 100755 --- a/tools/testing/selftests/net/rtnetlink.sh +++ b/tools/testing/selftests/net/rtnetlink.sh @@ -535,8 +535,7 @@ kci_test_ipsec() # start the monitor in the background tmpfile=`mktemp ipsectestXXX` - ip x m > $tmpfile & - mpid=$! + mpid=`(ip x m > $tmpfile & echo $!) 2>/dev/null` sleep 0.2 ipsecid="proto esp src $srcip dst $dstip spi 0x07" |