aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests
diff options
context:
space:
mode:
authorPo-Hsu Lin <po-hsu.lin@canonical.com>2019-04-18 19:57:25 +0800
committerDavid S. Miller <davem@davemloft.net>2019-04-19 14:39:51 -0700
commit30c04d796b693e22405c38e9b78e9a364e4c77e6 (patch)
tree7d3870cf115f90f444a0de8cd8c3680429e401b7 /tools/testing/selftests
parentof_net: Fix residues after of_get_nvmem_mac_address removal (diff)
downloadlinux-dev-30c04d796b693e22405c38e9b78e9a364e4c77e6.tar.xz
linux-dev-30c04d796b693e22405c38e9b78e9a364e4c77e6.zip
selftests/net: correct the return value for run_netsocktests
The run_netsocktests will be marked as passed regardless the actual test result from the ./socket: selftests: net: run_netsocktests ======================================== -------------------- running socket test -------------------- [FAIL] ok 1..6 selftests: net: run_netsocktests [PASS] This is because the test script itself has been successfully executed. Fix this by exit 1 when the test failed. Signed-off-by: Po-Hsu Lin <po-hsu.lin@canonical.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'tools/testing/selftests')
-rwxr-xr-xtools/testing/selftests/net/run_netsocktests2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/net/run_netsocktests b/tools/testing/selftests/net/run_netsocktests
index b093f39c298c..14e41faf2c57 100755
--- a/tools/testing/selftests/net/run_netsocktests
+++ b/tools/testing/selftests/net/run_netsocktests
@@ -7,7 +7,7 @@ echo "--------------------"
./socket
if [ $? -ne 0 ]; then
echo "[FAIL]"
+ exit 1
else
echo "[PASS]"
fi
-