Skip to content

Commit 460e462

Browse files
brooniectmarinas
authored andcommitted
kselftest/arm64: Fix output formatting for za-fork
The za-fork test does not output a newline when reporting the result of the one test it runs, causing the counts printed by kselftest to be included in the test name. Add the newline. Fixes: 266679f ("kselftest/arm64: Convert za-fork to use kselftest.h") Cc: <[email protected]> # 6.4.x Signed-off-by: Mark Brown <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Catalin Marinas <[email protected]>
1 parent acfa60d commit 460e462

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/testing/selftests/arm64/fp/za-fork.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ int main(int argc, char **argv)
8585
*/
8686
ret = open("/proc/sys/abi/sme_default_vector_length", O_RDONLY, 0);
8787
if (ret >= 0) {
88-
ksft_test_result(fork_test(), "fork_test");
88+
ksft_test_result(fork_test(), "fork_test\n");
8989

9090
} else {
9191
ksft_print_msg("SME not supported\n");

0 commit comments

Comments
 (0)