summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Philip <benjamin.philip495@gmail.com>2026-01-07 00:38:35 +0530
committerJulia Lawall <Julia.Lawall@inria.fr>2026-02-21 17:22:30 +0100
commitbb1c9ccf740eae3f116a2bb5d26c2bfb80cc8c7e (patch)
tree11fe19a116794621e68b937fa14cf0161c461dc2
parent8952cfe431cf5b1d615f054f698cd74034bd1385 (diff)
scripts: coccicheck: warn on unset debug file
coccicheck prints debug logs to stdout unless a debug file has been set. This makes it hard to read coccinelle's suggested changes, especially for someone new to coccicheck. From this commit, we warn about this behaviour from within the script on an unset debug file. Explicitly setting the debug file to /dev/null suppresses the warning while keeping the default. Signed-off-by: Benjamin Philip <benjamin.philip495@gmail.com> Signed-off-by: Julia Lawall <julia.lawall@inria.fr>
-rwxr-xr-xscripts/coccicheck5
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/coccicheck b/scripts/coccicheck
index 2efb74afef2b..8dd766009de1 100755
--- a/scripts/coccicheck
+++ b/scripts/coccicheck
@@ -260,6 +260,11 @@ coccinelle () {
}
if [ "$DEBUG_FILE" = "" ]; then
+ echo 'You have not explicitly specified the debug file to use.'
+ echo 'Using default "/dev/null" as debug file.'
+ echo 'Debug logs will be printed to stdout.'
+ echo 'You can specify the debug file with "make coccicheck DEBUG_FILE=<debug_file>"'
+ echo ''
DEBUG_FILE="/dev/null"
fi