mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-14 06:24:53 +08:00
selftests/nolibc: fix testcase status alignment
[ Upstream commit 07f679b502
]
Center-align all possible status reports.
Before OK and FAIL were center-aligned in relation to each other but
SKIPPED and FAILED would be left-aligned.
Before:
7 environ_addr = <0x7fffef3e7c50> [OK]
8 environ_envp = <0x7fffef3e7c58> [FAIL]
9 environ_auxv [SKIPPED]
10 environ_total [SKIPPED]
11 environ_HOME = <0x7fffef3e99bd> [OK]
12 auxv_addr [SKIPPED]
13 auxv_AT_UID = 1000 [OK]
After:
7 environ_addr = <0x7ffff13b00a0> [OK]
8 environ_envp = <0x7ffff13b00a8> [FAIL]
9 environ_auxv [SKIPPED]
10 environ_total [SKIPPED]
11 environ_HOME = <0x7ffff13b19bd> [OK]
12 auxv_addr [SKIPPED]
13 auxv_AT_UID = 1000 [OK]
Signed-off-by: Thomas Weißschuh <linux@weissschuh.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
f066171de3
commit
a95c77f936
@ -145,11 +145,11 @@ static void result(int llen, enum RESULT r)
|
||||
const char *msg;
|
||||
|
||||
if (r == OK)
|
||||
msg = " [OK]";
|
||||
msg = " [OK]";
|
||||
else if (r == SKIPPED)
|
||||
msg = "[SKIPPED]";
|
||||
else
|
||||
msg = "[FAIL]";
|
||||
msg = " [FAIL]";
|
||||
|
||||
if (llen < 64)
|
||||
putcharn(' ', 64 - llen);
|
||||
|
Loading…
Reference in New Issue
Block a user