selftests: rtnetlink: hide complaint from terminated monitor
authorShannon Nelson <shannon.nelson@oracle.com>
Wed, 20 Jun 2018 05:42:42 +0000 (22:42 -0700)
committerDavid S. Miller <davem@davemloft.net>
Fri, 22 Jun 2018 04:47:55 +0000 (13:47 +0900)
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>
tools/testing/selftests/net/rtnetlink.sh

index 0d7a44f..4cd252f 100755 (executable)
@@ -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"