From: Remington Brasga Date: Fri, 12 Jul 2024 23:17:30 +0000 (+0000) Subject: kselftest: missing arg in ptrace.c X-Git-Tag: v6.11-rc1~35^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0c35e3bd412a6a2676adc35df950cfbb9f464b0c;p=thirdparty%2Fkernel%2Flinux.git kselftest: missing arg in ptrace.c The string passed to ksft_test_result_skip is missing the `type_name` Signed-off-by: Remington Brasga Reviewed-by: Dev Jain Reviewed-by: Anshuman Khandual Link: https://lore.kernel.org/r/20240712231730.2794-1-rbrasga@uci.edu Signed-off-by: Will Deacon --- diff --git a/tools/testing/selftests/arm64/abi/ptrace.c b/tools/testing/selftests/arm64/abi/ptrace.c index 4c941270d8de0..e4fa507cbdd0e 100644 --- a/tools/testing/selftests/arm64/abi/ptrace.c +++ b/tools/testing/selftests/arm64/abi/ptrace.c @@ -156,7 +156,7 @@ static void test_hw_debug(pid_t child, int type, const char *type_name) /* Zero is not currently architecturally valid */ ksft_test_result(arch, "%s_arch_set\n", type_name); } else { - ksft_test_result_skip("%s_arch_set\n"); + ksft_test_result_skip("%s_arch_set\n", type_name); } }