Skip to content

Commit b238e38

Browse files
Ingo Molnarbp3tk0v
authored andcommitted
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 <[email protected]> Signed-off-by: Borislav Petkov (AMD) <[email protected]> Cc: Ard Biesheuvel <[email protected]> Cc: Arnd Bergmann <[email protected]> Cc: David Woodhouse <[email protected]> Cc: H. Peter Anvin <[email protected]> Cc: Jürgen Groß <[email protected]> Cc: Linus Torvalds <[email protected]> Cc: Masahiro Yamada <[email protected]> Cc: Michal Marek <[email protected]> Cc: Peter Zijlstra <[email protected]> Cc: Vitaly Kuznetsov <[email protected]> Link: https://lore.kernel.org/r/[email protected]
1 parent 6453e7c commit b238e38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/x86/tools/insn_decoder_test.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ int main(int argc, char **argv)
167167
pr_warn("Decoded and checked %d instructions with %d "
168168
"failures\n", insns, warnings);
169169
else
170-
fprintf(stdout, "%s: success: Decoded and checked %d"
170+
fprintf(stdout, " %s: success: Decoded and checked %d"
171171
" instructions\n", prog, insns);
172172
return 0;
173173
}

0 commit comments

Comments
 (0)