diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-03-20 16:56:46 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-03-20 16:56:46 -0400 |
commit | 54490a29006529f7ceb4dc0514a075f9f4175621 (patch) | |
tree | 2362a394bce4f8b2b2b51ed16f835a4aa7d9ffba /tests/bfstd.c | |
parent | 745fd4be765407f7c56d61c281c28e2468ba25b5 (diff) | |
download | bfs-54490a29006529f7ceb4dc0514a075f9f4175621.tar.xz |
bfstd: Check that wcwidth() is positive
wcwidth() returns -1 for non-printable characters, but terminals
typically don't print anything for them, so treat them as 0.
Diffstat (limited to 'tests/bfstd.c')
-rw-r--r-- | tests/bfstd.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/bfstd.c b/tests/bfstd.c index 26abdb6..1351e11 100644 --- a/tests/bfstd.c +++ b/tests/bfstd.c @@ -69,5 +69,8 @@ bool check_bfstd(void) { ret &= check_wordesc("\xF0\x9F\x98\x80", "\xF0\x9F\x98\x80", WESC_SHELL | WESC_TTY); } + ret &= bfs_check(xstrwidth("Hello world") == 11); + ret &= bfs_check(xstrwidth("Hello\1world") == 10); + return ret; } |