mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
scripts/checkpatch.pl: emit error when using assert(false)
This patch is part of a series that moves towards a consistent use of g_assert_not_reached() rather than an ad hoc mix of different assertion mechanisms. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Message-ID: <20240919044641.386068-35-pierrick.bouvier@linaro.org> [thuth: Split long line to avoid checkpatch error] Signed-off-by: Thomas Huth <thuth@redhat.com>
This commit is contained in:
parent
98da252c39
commit
2540a551d3
1 changed files with 4 additions and 0 deletions
|
@ -3102,6 +3102,10 @@ sub process {
|
|||
if ($line =~ /\b(g_)?assert\(0\)/) {
|
||||
ERROR("use g_assert_not_reached() instead of assert(0)\n" . $herecurr);
|
||||
}
|
||||
if ($line =~ /\b(g_)?assert\(false\)/) {
|
||||
ERROR("use g_assert_not_reached() instead of assert(false)\n" .
|
||||
$herecurr);
|
||||
}
|
||||
if ($line =~ /\bstrerrorname_np\(/) {
|
||||
ERROR("use strerror() instead of strerrorname_np()\n" . $herecurr);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue