[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20231003-coccicheck-v1-2-07d2d900a52a@axis.com>
Date: Tue, 3 Oct 2023 16:25:15 +0200
From: Anton Eliasson <anton.eliasson@...s.com>
To: Julia Lawall <Julia.Lawall@...ia.fr>,
Nicolas Palix <nicolas.palix@...g.fr>
CC: <cocci@...ia.fr>, <linux-kernel@...r.kernel.org>,
Anton Eliasson <anton.eliasson@...s.com>, <kernel@...s.com>
Subject: [PATCH 2/2] scripts: coccicheck: Separate spatch stdout and stderr
This helps automating coccicheck runs by discarding stderr and only
looking at the output of stdout. In report mode the only remaining
output on stdout is the initial "Please check for false positives"
message followed by each spatch warning found.
Signed-off-by: Anton Eliasson <anton.eliasson@...s.com>
---
scripts/coccicheck | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/scripts/coccicheck b/scripts/coccicheck
index 95a312730e98..7e7c44125f47 100755
--- a/scripts/coccicheck
+++ b/scripts/coccicheck
@@ -146,8 +146,8 @@ run_cmd_parmap() {
echo $@>>$DEBUG_FILE
$@ 2>>$DEBUG_FILE
else
- echo $@
- $@ 2>&1
+ echo $@ >&2
+ $@
fi
err=$?
--
2.30.2
Powered by blists - more mailing lists