X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=tests%2Ftest-getaddrinfo.c;h=bfdb9cf0e85cd1af517e6bb6613f322e9c4170b8;hb=77041ebc885b2af4e2d48fd49cf5529759351076;hp=2f42bde87347709b860dab058c99f0284b2e8f7c;hpb=cb5e025dd6fc3ff5888f138ce3dd7d94b5883358;p=gnulib.git diff --git a/tests/test-getaddrinfo.c b/tests/test-getaddrinfo.c index 2f42bde87..bfdb9cf0e 100644 --- a/tests/test-getaddrinfo.c +++ b/tests/test-getaddrinfo.c @@ -19,10 +19,20 @@ #include #include "getaddrinfo.h" -#include "inet_ntop.h" +#include +#include #include #include +/* Whether to print debugging messages. */ +#define ENABLE_DEBUGGING 0 + +#if ENABLE_DEBUGGING +# define dbgprintf printf +#else +# define dbgprintf if (0) printf +#endif + /* BeOS does not have AF_UNSPEC. */ #ifndef AF_UNSPEC # define AF_UNSPEC 0 @@ -39,7 +49,7 @@ int simple (char *host, char *service) struct addrinfo *ai0, *ai; int res; - printf ("Finding %s service %s...\n", host, service); + dbgprintf ("Finding %s service %s...\n", host, service); /* This initializes "hints" but does not use it. Is there a reason for this? If so, please fix this comment. */ @@ -50,7 +60,7 @@ int simple (char *host, char *service) res = getaddrinfo (host, service, 0, &ai0); - printf ("res %d: %s\n", res, gai_strerror (res)); + dbgprintf ("res %d: %s\n", res, gai_strerror (res)); if (res != 0) { @@ -62,24 +72,28 @@ int simple (char *host, char *service) fail the test merely because of this. */ if (res == EAI_SERVICE) return 0; + /* AIX reports EAI_NODATA for "https". Don't fail the test + merely because of this. */ + if (res == EAI_NODATA) + return 0; return 1; } for (ai = ai0; ai; ai = ai->ai_next) { - printf ("\tflags %x\n", ai->ai_flags); - printf ("\tfamily %x\n", ai->ai_family); - printf ("\tsocktype %x\n", ai->ai_socktype); - printf ("\tprotocol %x\n", ai->ai_protocol); - printf ("\taddrlen %ld: ", (unsigned long) ai->ai_addrlen); - printf ("\tFound %s\n", - inet_ntop (ai->ai_family, - &((struct sockaddr_in *) - ai->ai_addr)->sin_addr, - buf, sizeof (buf) - 1)); + dbgprintf ("\tflags %x\n", ai->ai_flags); + dbgprintf ("\tfamily %x\n", ai->ai_family); + dbgprintf ("\tsocktype %x\n", ai->ai_socktype); + dbgprintf ("\tprotocol %x\n", ai->ai_protocol); + dbgprintf ("\taddrlen %ld: ", (unsigned long) ai->ai_addrlen); + dbgprintf ("\tFound %s\n", + inet_ntop (ai->ai_family, + &((struct sockaddr_in *) + ai->ai_addr)->sin_addr, + buf, sizeof (buf) - 1)); if (ai->ai_canonname) - printf ("\tFound %s...\n", ai->ai_canonname); + dbgprintf ("\tFound %s...\n", ai->ai_canonname); { char ipbuf[BUFSIZ]; @@ -89,11 +103,11 @@ int simple (char *host, char *service) ipbuf, sizeof (ipbuf) - 1, portbuf, sizeof (portbuf) - 1, NI_NUMERICHOST|NI_NUMERICSERV); - printf ("\t\tgetnameinfo %d: %s\n", res, gai_strerror (res)); + dbgprintf ("\t\tgetnameinfo %d: %s\n", res, gai_strerror (res)); if (res == 0) { - printf ("\t\tip %s\n", ipbuf); - printf ("\t\tport %s\n", portbuf); + dbgprintf ("\t\tip %s\n", ipbuf); + dbgprintf ("\t\tport %s\n", portbuf); } }