Commit 0c35e3bd authored by Remington Brasga's avatar Remington Brasga Committed by Will Deacon

kselftest: missing arg in ptrace.c

The string passed to ksft_test_result_skip is missing the `type_name`
Signed-off-by: default avatarRemington Brasga <rbrasga@uci.edu>
Reviewed-by: default avatarDev Jain <dev.jain@arm.com>
Reviewed-by: default avatarAnshuman Khandual <anshuman.khandual@arm.com>
Link: https://lore.kernel.org/r/20240712231730.2794-1-rbrasga@uci.eduSigned-off-by: default avatarWill Deacon <will@kernel.org>
parent add6128f
......@@ -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);
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment