mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 01:49:46 +00:00
coccicheck: return proper error code on fail
[ Upstream commit 512ddf7d7d ]
If coccicheck fails, it should return an error code distinct from zero
to signal about an internal problem. Current code instead of exiting with
the tool's error code returns the error code of 'echo "coccicheck failed"'
which is almost always equals to zero, thus failing the original intention
of alerting about a problem. This patch fixes the code.
Found by Linux Driver Verification project (linuxtesting.org).
Signed-off-by: Denis Efremov <efremov@linux.com>
Acked-by: Julia Lawall <julia.lawall@lip6.fr>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
243b6c6a90
commit
6d39ab3401
@@ -128,9 +128,10 @@ run_cmd_parmap() {
|
||||
fi
|
||||
echo $@ >>$DEBUG_FILE
|
||||
$@ 2>>$DEBUG_FILE
|
||||
if [[ $? -ne 0 ]]; then
|
||||
err=$?
|
||||
if [[ $err -ne 0 ]]; then
|
||||
echo "coccicheck failed"
|
||||
exit $?
|
||||
exit $err
|
||||
fi
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user