forked from pool/coreutils
d326a25e75
- Avoid segmentation fault in "join -i" with long line input (bnc#798541, VUL-1) - Avoid segmentation fault in "sort -d" and "sort -M" with long line input (bnc#798538, VUL-1) - Avoid segmentation fault in "uniq" with long line input (bnc#796243, VUL-1) - Fix test-suite errors (bnc#798261). OBS-URL: https://build.opensuse.org/request/show/149348 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/coreutils?expand=0&rev=84
18 lines
663 B
Diff
18 lines
663 B
Diff
Index: gnulib-tests/test-getaddrinfo.c
|
|
===================================================================
|
|
--- gnulib-tests/test-getaddrinfo.c.orig
|
|
+++ gnulib-tests/test-getaddrinfo.c
|
|
@@ -86,11 +86,7 @@ simple (char const *host, char const *se
|
|
the test merely because someone is down the country on their
|
|
in-law's farm. */
|
|
if (res == EAI_AGAIN)
|
|
- {
|
|
- skip++;
|
|
- fprintf (stderr, "skipping getaddrinfo test: no network?\n");
|
|
- return 77;
|
|
- }
|
|
+ return 0;
|
|
/* IRIX reports EAI_NONAME for "https". Don't fail the test
|
|
merely because of this. */
|
|
if (res == EAI_NONAME)
|