diff options
author | Po-Hsu Lin <po-hsu.lin@canonical.com> | 2019-04-18 19:57:25 +0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-05-16 19:45:06 +0200 |
commit | 795c76f4e50f4e60955556e782858217586cb3a1 (patch) | |
tree | 67e993bea97dfd571e28871d82aa2002c3ba44f1 /tools/testing | |
parent | 83494cfb0d2930a48622d60ef0d0ad4e644aead0 (diff) | |
download | linux-stable-795c76f4e50f4e60955556e782858217586cb3a1.tar.gz linux-stable-795c76f4e50f4e60955556e782858217586cb3a1.tar.bz2 linux-stable-795c76f4e50f4e60955556e782858217586cb3a1.zip |
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 (limited to 'tools/testing')
-rwxr-xr-x | tools/testing/selftests/net/run_netsocktests | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/net/run_netsocktests b/tools/testing/selftests/net/run_netsocktests index 16058bbea7a8..c195b4478662 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 - |