forked from pool/libuv
- Update to version 1.24.0: * unix: do not require PATH_MAX to be defined (Brad King) * win,doc: path encoding in uv_fs_XX is UTF-8 (hitesh) * unix: add missing link dependency on kFreeBSD (Svante Signell) * unix: add support for GNU/Hurd (Samuel Thibault) * test: avoid memory leak for test_output (Carlo Marcelo Arenas Belón) * doc: add vtjnash to maintainers (Jameson Nash) * unix: restore skipping of phys_addr copy (cjihrig) * unix,win: make uv_interface_addresses() consistent (cjihrig) * unix: remove unnecessary linebreaks (cjihrig) * unix,win: handle zero-sized allocations uniformly (Ben Noordhuis) * unix: remove unused uv__dup() function (Ben Noordhuis) * core,bsd: refactor process_title functions (Santiago Gimeno) * test: make sure that reading a directory fails (Sakthipriyan Vairamani) * win, tty: remove zero-size read callbacks (Bartosz Sosnowski) * test: fix test runner getenv async-signal-safety (Ben Noordhuis) * test: fix test runner execvp async-signal-safety (Ben Noordhuis) * test,unix: fix race in test runner (Ben Noordhuis) * unix,win: support IDNA 2008 in uv_getaddrinfo() (Ben Noordhuis) OBS-URL: https://build.opensuse.org/request/show/651055 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/libuv?expand=0&rev=27
27 lines
1.0 KiB
Diff
27 lines
1.0 KiB
Diff
Index: libuv-1.24.0/test/test-getnameinfo.c
|
|
===================================================================
|
|
--- libuv-1.24.0.orig/test/test-getnameinfo.c
|
|
+++ libuv-1.24.0/test/test-getnameinfo.c
|
|
@@ -39,6 +39,8 @@ static void getnameinfo_req(uv_getnamein
|
|
const char* hostname,
|
|
const char* service) {
|
|
ASSERT(handle != NULL);
|
|
+ if (status != 0)
|
|
+ fprintf(stderr, " status: %d\n", status);
|
|
ASSERT(status == 0);
|
|
ASSERT(hostname != NULL);
|
|
ASSERT(service != NULL);
|
|
Index: libuv-1.24.0/test/test-list.h
|
|
===================================================================
|
|
--- libuv-1.24.0.orig/test/test-list.h
|
|
+++ libuv-1.24.0/test/test-list.h
|
|
@@ -750,7 +750,7 @@ TASK_LIST_START
|
|
|
|
TEST_ENTRY (getnameinfo_basic_ip4)
|
|
TEST_ENTRY (getnameinfo_basic_ip4_sync)
|
|
- TEST_ENTRY (getnameinfo_basic_ip6)
|
|
+// TEST_ENTRY (getnameinfo_basic_ip6) // broken on OBS because no network to resolve ::1 => hostname
|
|
|
|
TEST_ENTRY (getsockname_tcp)
|
|
TEST_ENTRY (getsockname_udp)
|