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 <rbrasga@uci.edu> Reviewed-by: Dev Jain <dev.jain@arm.com> Reviewed-by: Anshuman Khandual <anshuman.khandual@arm.com> Link: https://lore.kernel.org/r/20240712231730.2794-1-rbrasga@uci.edu Signed-off-by: Will Deacon <will@kernel.org>
1 parent add6128 commit 0c35e3b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • tools/testing/selftests/arm64/abi

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)