about summary refs log tree commit diff
path: root/posix
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-04-18 07:56:20 +0000
committerUlrich Drepper <drepper@redhat.com>2000-04-18 07:56:20 +0000
commitcd43f797c473dbb5f6f4031e4abb784719e64c93 (patch)
tree3a32b3a0aefa3ee4f6525d42052b567d649e48aa /posix
parentdbacafe52e30710b5ec8707f60c531e6aeb857ed (diff)
downloadglibc-cd43f797c473dbb5f6f4031e4abb784719e64c93.tar.gz
glibc-cd43f797c473dbb5f6f4031e4abb784719e64c93.tar.xz
glibc-cd43f797c473dbb5f6f4031e4abb784719e64c93.zip
Update.
2000-04-18  Ulrich Drepper  <drepper@redhat.com>

	* posix/Makefile (tests): Add tst-getaddrinfo.
	* posix/tst-getaddrinfo.c: New file.

	and setresuid from sysdep_routines.
Diffstat (limited to 'posix')
-rw-r--r--posix/Makefile3
-rw-r--r--posix/tst-getaddrinfo.c67
2 files changed, 69 insertions, 1 deletions
diff --git a/posix/Makefile b/posix/Makefile
index c988027e1f..509cc7033d 100644
--- a/posix/Makefile
+++ b/posix/Makefile
@@ -64,7 +64,8 @@ include ../Makeconfig
 
 aux		:= init-posix environ
 tests		:= tstgetopt testfnm runtests runptests	     \
-		   tst-preadwrite test-vfork regexbug1 tst-getlogin tst-mmap
+		   tst-preadwrite test-vfork regexbug1 tst-getlogin tst-mmap  \
+		   tst-getaddrinfo
 ifeq (yes,$(build-shared))
 test-srcs	:= globtest
 tests           += wordexp-test
diff --git a/posix/tst-getaddrinfo.c b/posix/tst-getaddrinfo.c
new file mode 100644
index 0000000000..f954506824
--- /dev/null
+++ b/posix/tst-getaddrinfo.c
@@ -0,0 +1,67 @@
+/* Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Library General Public License as
+   published by the Free Software Foundation; either version 2 of the
+   License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Library General Public License for more details.
+
+   You should have received a copy of the GNU Library General Public
+   License along with the GNU C Library; see the file COPYING.LIB.  If not,
+   write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+   Boston, MA 02111-1307, USA.  */
+
+#include <stdio.h>
+#include <sys/types.h>
+#include <sys/socket.h>
+#include <netinet/in.h>
+#include <netdb.h>
+
+int
+do_test (void)
+{
+  const int family[3] = { AF_INET, AF_INET6, AF_UNIX };
+  int result = 0;
+  int gaierr, index;
+  struct addrinfo hints, *ai, *aitop;
+
+  for (index = 0; index < sizeof (family) / sizeof (family[0]); ++index)
+    {
+      memset (&hints, '\0', sizeof (hints));
+      hints.ai_family = family[index];
+      hints.ai_socktype = SOCK_STREAM;
+
+      gaierr = getaddrinfo (NULL, "54321", &hints, &aitop);
+      if (gaierr != 0)
+	{
+	  gai_strerror (gaierr);
+	  result = 1;
+	}
+      else
+	{
+	  for (ai = aitop; ai != NULL; ai = ai->ai_next)
+	    {
+	      printf ("Should return family: %d. Returned: %d\n",
+		      family[index], ai->ai_family);
+	      result |= family[index] != ai->ai_family;
+	    }
+
+	  while (aitop != NULL)
+	    {
+	      ai = aitop;
+	      aitop = aitop->ai_next;
+	      freeaddrinfo (ai);
+	    }
+	}
+    }
+
+  return result;
+}
+#define TEST_FUNCTION do_test ()
+
+#include "../test-skeleton.c"