[tip: timers/core] selftests: timers: nanosleep: Drop output alignment

From: tip-bot2 for Thomas Weißschuh (Schneider Electric)

Date: Tue Aug 11 2026 - 12:27:07 EST


The following commit has been merged into the timers/core branch of tip:

Commit-ID: 142a2d312e7bb8e5ad524a4f2115523cf4904732
Gitweb: https://git.kernel.org/tip/142a2d312e7bb8e5ad524a4f2115523cf4904732
Author: Thomas Weißschuh (Schneider Electric) <thomas.weissschuh@xxxxxxxxxxxxx>
AuthorDate: Mon, 03 Aug 2026 12:04:39 +02:00
Committer: Thomas Gleixner <tglx@xxxxxxxxxx>
CommitterDate: Tue, 11 Aug 2026 18:11:20 +02:00

selftests: timers: nanosleep: Drop output alignment

The padding of the clock name is pointless as nothing else is printed.

Signed-off-by: Thomas Weißschuh (Schneider Electric) <thomas.weissschuh@xxxxxxxxxxxxx>
Signed-off-by: Thomas Gleixner <tglx@xxxxxxxxxx>
Link: https://patch.msgid.link/20260803-auxclock-nanosleep-prep-v2-8-910cbd485390@xxxxxxxxxxxxx
---
tools/testing/selftests/timers/nanosleep.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/tools/testing/selftests/timers/nanosleep.c b/tools/testing/selftests/timers/nanosleep.c
index 7df86df..629e800 100644
--- a/tools/testing/selftests/timers/nanosleep.c
+++ b/tools/testing/selftests/timers/nanosleep.c
@@ -152,7 +152,7 @@ int main(int argc, char **argv)
if (clockid == CLOCK_PROCESS_CPUTIME_ID ||
clockid == CLOCK_THREAD_CPUTIME_ID ||
clockid == CLOCK_HWSPECIFIC) {
- ksft_test_result_skip("%-31s\n", clock_name(clockid));
+ ksft_test_result_skip("%s\n", clock_name(clockid));
continue;
}

@@ -162,21 +162,21 @@ int main(int argc, char **argv)
while (length <= (NSEC_PER_SEC * 10)) {
ret = nanosleep_test(clockid, length);
if (ret == UNSUPPORTED) {
- ksft_test_result_skip("%-31s\n", clock_name(clockid));
+ ksft_test_result_skip("%s\n", clock_name(clockid));
goto next;
}
if (ret < 0) {
- ksft_test_result_fail("%-31s\n", clock_name(clockid));
+ ksft_test_result_fail("%s\n", clock_name(clockid));
ksft_exit_fail();
}
length *= 100;
}
ret = nanosleep_test_remaining(clockid);
if (ret < 0) {
- ksft_test_result_fail("%-31s\n", clock_name(clockid));
+ ksft_test_result_fail("%s\n", clock_name(clockid));
ksft_exit_fail();
}
- ksft_test_result_pass("%-31s\n", clock_name(clockid));
+ ksft_test_result_pass("%s\n", clock_name(clockid));
next:
ret = 0;
}