commit ece7fade7d459523af266428e95b4f587a2f0ba9 parent 361a63ace0c9cec71586b8c6f79397a981c32589 Author: Roberto E. Vargas Caballero <k0ga@shike2.net> Date: Mon, 5 Jan 2026 21:33:03 +0100 tests/libc: Add 0067-wcwidth Diffstat:
| M | tests/libc/execute/.gitignore | | | 1 | + |
| A | tests/libc/execute/0067-wcwidth.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 @@ -65,3 +65,4 @@ test.log 0065-btowc 0066-wctob +0067-wcwidth diff --git a/tests/libc/execute/0067-wcwidth.c b/tests/libc/execute/0067-wcwidth.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 @@ -63,3 +63,4 @@ 0064-wcstok 0065-btowc 0066-wctob +0067-wcwidth [TODO]