commit 63e5f14bd7ab8c139c9d7ba6c27e47fd56ef4286 parent e3ca3473ebbafdcbf01c0a59a9db06027be90b95 Author: Roberto E. Vargas Caballero <k0ga@shike2.net> Date: Thu, 30 Apr 2026 21:46:25 +0200 tests/libc: Add placeholder for 0079-atof Diffstat:
| M | tests/libc/execute/.gitignore | | | 1 | + |
| A | tests/libc/execute/0079-atof.c | | | 17 | +++++++++++++++++ |
| M | tests/libc/execute/libc-tests.lst | | | 1 | + |
3 files changed, 19 insertions(+), 0 deletions(-)
diff --git a/tests/libc/execute/.gitignore b/tests/libc/execute/.gitignore @@ -77,3 +77,4 @@ test.log 0076-localeconv 0077-setlocale 0078-time +0079-atof diff --git a/tests/libc/execute/0079-atof.c b/tests/libc/execute/0079-atof.c @@ -0,0 +1,17 @@ +/* + * TODO: Just a placeholder to remember that our wcwidth() + * is only a mock of the actual implementation. + */ + +/* +output: +testing +done +end: +*/ + +int +main(void) +{ + return 0; +} diff --git a/tests/libc/execute/libc-tests.lst b/tests/libc/execute/libc-tests.lst @@ -75,3 +75,4 @@ 0076-localeconv 0077-setlocale 0078-time +0079-atof [TODO]