summaryrefslogtreecommitdiff
authorPo-Hsu Lin <po-hsu.lin@canonical.com>2019-04-18 11:57:25 (GMT)
committer Greg Kroah-Hartman <gregkh@linuxfoundation.org>2019-05-16 17:43:43 (GMT)
commit46965077b9dcf18947ba6f41464747d127e6f241 (patch)
treef3bce02b3f310cb5e26936b1940cb1b85e9b663e
parentcd7e3fd25e4bb6a3f337ed45e1614b8a069434ce (diff)
downloadcommon-46965077b9dcf18947ba6f41464747d127e6f241.zip
common-46965077b9dcf18947ba6f41464747d127e6f241.tar.gz
common-46965077b9dcf18947ba6f41464747d127e6f241.tar.bz2
selftests/net: correct the return value for run_netsocktests
[ Upstream commit 30c04d796b693e22405c38e9b78e9a364e4c77e6 ] 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> Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat
-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 16058bb..c195b44 100755
--- a/tools/testing/selftests/net/run_netsocktests
+++ b/tools/testing/selftests/net/run_netsocktests
@@ -6,7 +6,7 @@ echo "--------------------"
./socket
if [ $? -ne 0 ]; then
echo "[FAIL]"
+ exit 1
else
echo "[PASS]"
fi
-