1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00

test: remove bad tty window size assumption (#3895)

Fixes: https://github.com/libuv/libuv/issues/3894
This commit is contained in:
Ben Noordhuis 2023-01-31 18:35:18 +01:00 committed by GitHub
parent ee206367d4
commit f1b4c76648
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -116,12 +116,8 @@ TEST_IMPL(tty) {
return TEST_SKIP;
}
/*
* Is it a safe assumption that most people have terminals larger than
* 10x10?
*/
ASSERT(width > 10);
ASSERT(height > 10);
ASSERT_GT(width, 0);
ASSERT_GT(height, 0);
/* Turn on raw mode. */
r = uv_tty_set_mode(&tty_in, UV_TTY_MODE_RAW);