projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
87b9fa6
)
selftests/nolibc: print name instead of number for EOVERFLOW
author
Zhangjin Wu
<falcon@tinylab.org>
Wed, 24 May 2023 17:46:54 +0000
(
01:46
+0800)
committer
Paul E. McKenney
<paulmck@kernel.org>
Fri, 9 Jun 2023 18:46:09 +0000
(11:46 -0700)
EOVERFLOW will be used in the coming time64 syscalls support.
Signed-off-by: Zhangjin Wu <falcon@tinylab.org>
Reviewed-by: Thomas Weißschuh <linux@weissschuh.net>
Signed-off-by: Willy Tarreau <w@1wt.eu>
Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
tools/testing/selftests/nolibc/nolibc-test.c
patch
|
blob
|
history
diff --git
a/tools/testing/selftests/nolibc/nolibc-test.c
b/tools/testing/selftests/nolibc/nolibc-test.c
index 0d76790ffb0d8155c6a2c2332f9b09610ffe5e06..ffdf1e8c305cafcf00de784a7c3698996ea20048 100644
(file)
--- a/
tools/testing/selftests/nolibc/nolibc-test.c
+++ b/
tools/testing/selftests/nolibc/nolibc-test.c
@@
-107,6
+107,7
@@
const char *errorname(int err)
CASE_ERR(EDOM);
CASE_ERR(ERANGE);
CASE_ERR(ENOSYS);
+ CASE_ERR(EOVERFLOW);
default:
return itoa(err);
}