forked from cory/tildefriends
libuv 1.43.0
git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@3735 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
deps/libuv
.github
.mailmapAUTHORSCMakeLists.txtChangeLogMakefile.amREADME.mdSUPPORTED_PLATFORMS.mdconfigure.acdocs
src
include
src
threadpool.c
unix
bsd-proctitle.cdarwin.cdl.cfs.ckqueue.clinux-core.cos390-syscalls.cos390-syscalls.hprocess.cstream.cudp.c
uv-common.cwin
test
benchmark-list.hdns-server.ctask.htest-fs-copyfile.ctest-fs-event.ctest-fs-open-flags.ctest-fs-readdir.ctest-fs.ctest-ip-name.ctest-ip6-addr.ctest-list.htest-ping-pong.ctest-pipe-connect-error.ctest-readable-on-eof.ctest-tcp-connect-timeout.ctest-thread-equal.ctest-tty-escape-sequence-processing.ctest-udp-connect.ctest-udp-connect6.c
@ -271,7 +271,7 @@ static void make_expect_screen_erase(struct captured_screen* cs,
|
||||
static void make_expect_screen_write(struct captured_screen* cs,
|
||||
COORD cursor_position,
|
||||
const char* text) {
|
||||
/* postion of cursor */
|
||||
/* position of cursor */
|
||||
char* start;
|
||||
start = cs->text + cs->si.width * (cursor_position.Y - 1) +
|
||||
cursor_position.X - 1;
|
||||
@ -1070,6 +1070,11 @@ TEST_IMPL(tty_set_style) {
|
||||
WORD attr;
|
||||
int i, length;
|
||||
|
||||
#if _MSC_VER >= 1920 && _MSC_VER <= 1929
|
||||
RETURN_SKIP("Broken on Microsoft Visual Studio 2019, to be investigated. "
|
||||
"See: https://github.com/libuv/libuv/issues/3304");
|
||||
#endif
|
||||
|
||||
loop = uv_default_loop();
|
||||
|
||||
initialize_tty(&tty_out);
|
||||
@ -1261,7 +1266,7 @@ TEST_IMPL(tty_save_restore_cursor_position) {
|
||||
cursor_pos.Y = si.height / 4;
|
||||
set_cursor_position(&tty_out, cursor_pos);
|
||||
|
||||
/* restore the cursor postion */
|
||||
/* restore the cursor position */
|
||||
snprintf(buffer, sizeof(buffer), "%su", CSI);
|
||||
write_console(&tty_out, buffer);
|
||||
get_cursor_position(&tty_out, &cursor_pos);
|
||||
@ -1280,7 +1285,7 @@ TEST_IMPL(tty_save_restore_cursor_position) {
|
||||
cursor_pos.Y = si.height / 4;
|
||||
set_cursor_position(&tty_out, cursor_pos);
|
||||
|
||||
/* restore the cursor postion */
|
||||
/* restore the cursor position */
|
||||
snprintf(buffer, sizeof(buffer), "%s8", ESC);
|
||||
write_console(&tty_out, buffer);
|
||||
get_cursor_position(&tty_out, &cursor_pos);
|
||||
@ -1348,6 +1353,11 @@ TEST_IMPL(tty_escape_sequence_processing) {
|
||||
struct captured_screen actual = {0}, expect = {0};
|
||||
int dir;
|
||||
|
||||
#if _MSC_VER >= 1920 && _MSC_VER <= 1929
|
||||
RETURN_SKIP("Broken on Microsoft Visual Studio 2019, to be investigated. "
|
||||
"See: https://github.com/libuv/libuv/issues/3304");
|
||||
#endif
|
||||
|
||||
loop = uv_default_loop();
|
||||
|
||||
initialize_tty(&tty_out);
|
||||
|
Reference in New Issue
Block a user