Skip to content

Commit 0c35e3b

Browse files
rbrasgawilldeacon
authored andcommitted
kselftest: missing arg in ptrace.c
The string passed to ksft_test_result_skip is missing the `type_name` Signed-off-by: Remington Brasga <[email protected]> Reviewed-by: Dev Jain <[email protected]> Reviewed-by: Anshuman Khandual <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Will Deacon <[email protected]>
1 parent add6128 commit 0c35e3b

File tree

1 file changed

+1
-1
lines changed
  • tools/testing/selftests/arm64/abi

1 file changed

+1
-1
lines changed

tools/testing/selftests/arm64/abi/ptrace.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ static void test_hw_debug(pid_t child, int type, const char *type_name)
156156
/* Zero is not currently architecturally valid */
157157
ksft_test_result(arch, "%s_arch_set\n", type_name);
158158
} else {
159-
ksft_test_result_skip("%s_arch_set\n");
159+
ksft_test_result_skip("%s_arch_set\n", type_name);
160160
}
161161
}
162162

0 commit comments

Comments
 (0)