From: Ingo Molnar Date: Thu, 15 May 2025 13:27:10 +0000 (+0200) Subject: x86/tools: insn_decoder_test.c: Emit standard build success messages X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b238e382bb140ead4fddc8e0de9c30e6c3381799;p=thirdparty%2Flinux.git x86/tools: insn_decoder_test.c: Emit standard build success messages The standard 'success' output of insn_decoder_test spams build logs with: arch/x86/tools/insn_decoder_test: success: Decoded and checked 8258521 instructions Prefix the message with the standard ' ' (two spaces) used by kbuild to denote regular build messages, making it easier for tools to filter out warnings and errors. Signed-off-by: Ingo Molnar Signed-off-by: Borislav Petkov (AMD) Cc: Ard Biesheuvel Cc: Arnd Bergmann Cc: David Woodhouse Cc: H. Peter Anvin Cc: Jürgen Groß Cc: Linus Torvalds Cc: Masahiro Yamada Cc: Michal Marek Cc: Peter Zijlstra Cc: Vitaly Kuznetsov Link: https://lore.kernel.org/r/20250515132719.31868-5-mingo@kernel.org --- diff --git a/arch/x86/tools/insn_decoder_test.c b/arch/x86/tools/insn_decoder_test.c index 08cd913cbd4e9..8bf15c4aefa9e 100644 --- a/arch/x86/tools/insn_decoder_test.c +++ b/arch/x86/tools/insn_decoder_test.c @@ -167,7 +167,7 @@ int main(int argc, char **argv) pr_warn("Decoded and checked %d instructions with %d " "failures\n", insns, warnings); else - fprintf(stdout, "%s: success: Decoded and checked %d" + fprintf(stdout, " %s: success: Decoded and checked %d" " instructions\n", prog, insns); return 0; }