From: Mark Brown Date: Mon, 17 Oct 2022 14:45:53 +0000 (+0100) Subject: kselftest/arm64: Provide progress messages when signalling children X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=3e02f57bcc6a34ab992c4027b6ef3f2916b20924;p=linux.git kselftest/arm64: Provide progress messages when signalling children Especially when the test is configured to run for a longer time it can be reassuring to users to see that the supervising program is running OK so provide a message every second when the output timer expires. Signed-off-by: Mark Brown Link: https://lore.kernel.org/r/20221017144553.773176-3-broonie@kernel.org Signed-off-by: Will Deacon --- diff --git a/tools/testing/selftests/arm64/fp/fp-stress.c b/tools/testing/selftests/arm64/fp/fp-stress.c index 35dc07648d52b..ccbfcf847d960 100644 --- a/tools/testing/selftests/arm64/fp/fp-stress.c +++ b/tools/testing/selftests/arm64/fp/fp-stress.c @@ -549,6 +549,9 @@ int main(int argc, char **argv) all_children_started = true; } + ksft_print_msg("Sending signals, timeout remaining: %d\n", + timeout); + for (i = 0; i < num_children; i++) child_tickle(&children[i]);