[rtems commit] POSIX Signature Test for arpa/inet.h (GCI2018)

Joel Sherrill joel at rtems.org
Sat Dec 8 16:52:28 UTC 2018


Module:    rtems
Branch:    master
Commit:    100d87fad8de4b22365be1058523ab101617076f
Changeset: http://git.rtems.org/rtems/commit/?id=100d87fad8de4b22365be1058523ab101617076f

Author:    ABR290B <abhimanyuraghuvanshi29 at gmail.com>
Date:      Sat Dec  8 09:38:49 2018 +0530

POSIX Signature Test for arpa/inet.h (GCI2018)

---

 testsuites/psxtests/Makefile.am                   |  6 +++-
 testsuites/psxtests/psxhdrs/arpa/inet/inet_addr.c | 40 ++++++++++++++++++++++
 testsuites/psxtests/psxhdrs/arpa/inet/inet_ntoa.c | 36 ++++++++++++++++++++
 testsuites/psxtests/psxhdrs/arpa/inet/inet_ntop.c | 41 +++++++++++++++++++++++
 testsuites/psxtests/psxhdrs/arpa/inet/inet_pton.c | 39 +++++++++++++++++++++
 5 files changed, 161 insertions(+), 1 deletion(-)

diff --git a/testsuites/psxtests/Makefile.am b/testsuites/psxtests/Makefile.am
index 62378f1..f49cb91 100644
--- a/testsuites/psxtests/Makefile.am
+++ b/testsuites/psxtests/Makefile.am
@@ -1602,7 +1602,11 @@ lib_a_SOURCES = psxhdrs/devctl/posix_devctl.c \
 	psxhdrs/netdb/getprotobynumber.c \
 	psxhdrs/netdb/getservbyname.c \
 	psxhdrs/netdb/getservbyport.c \
-	psxhdrs/netdb/h_errno.c
+	psxhdrs/netdb/h_errno.c \
+	psxhdrs/arpa/inet/inet_addr.c \
+	psxhdrs/arpa/inet/inet_ntop.c \
+	psxhdrs/arpa/inet/inet_ntoa.c \
+	psxhdrs/arpa/inet/inet_pton.c
 
 
 ## Not supported by RTEMS, but POSIX API Compliance tests exist.
diff --git a/testsuites/psxtests/psxhdrs/arpa/inet/inet_addr.c b/testsuites/psxtests/psxhdrs/arpa/inet/inet_addr.c
new file mode 100644
index 0000000..eb0ac7e
--- /dev/null
+++ b/testsuites/psxtests/psxhdrs/arpa/inet/inet_addr.c
@@ -0,0 +1,40 @@
+/**
+ *  @file
+ *  @brief inet_addr() API Conformance Test
+ */
+
+/*
+ *  COPYRIGHT (c) 2018.
+ *  Abhimanyu Raghuvanshi
+ *
+ *  Permission to use, copy, modify, and/or distribute this software
+ *  for any purpose with or without fee is hereby granted.
+ *
+ *  THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
+ *  WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
+ *  WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR
+ *  BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
+ *  OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
+ *  WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
+ *  ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <netinet/in.h>
+#include <arpa/inet.h>
+
+int test(void);
+
+int test(void)
+{
+  in_addr_t con;
+  const char *addr = "127.0.0.1";
+
+  con = inet_addr(addr);
+  (void) con;
+
+  return 0;
+}
diff --git a/testsuites/psxtests/psxhdrs/arpa/inet/inet_ntoa.c b/testsuites/psxtests/psxhdrs/arpa/inet/inet_ntoa.c
new file mode 100644
index 0000000..79917d1
--- /dev/null
+++ b/testsuites/psxtests/psxhdrs/arpa/inet/inet_ntoa.c
@@ -0,0 +1,36 @@
+/**
+ *  @file
+ *  @brief inet_ntoa() API Conformance Test
+ */
+
+/*
+ *  COPYRIGHT (c) 2018.
+ *  Abhimanyu Raghuvanshi
+ *
+ *  Permission to use, copy, modify, and/or distribute this software
+ *  for any purpose with or without fee is hereby granted.
+ *
+ *  THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
+ *  WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
+ *  WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR
+ *  BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
+ *  OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
+ *  WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
+ *  ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <netinet/in.h>
+#include <arpa/inet.h>
+
+int test(void);
+
+int test(void)
+{
+  struct in_addr addr;
+
+  return inet_ntoa(addr) != 0;
+}
\ No newline at end of file
diff --git a/testsuites/psxtests/psxhdrs/arpa/inet/inet_ntop.c b/testsuites/psxtests/psxhdrs/arpa/inet/inet_ntop.c
new file mode 100644
index 0000000..c3e3828
--- /dev/null
+++ b/testsuites/psxtests/psxhdrs/arpa/inet/inet_ntop.c
@@ -0,0 +1,41 @@
+/**
+ *  @file
+ *  @brief inet_ntop() API Conformance Test
+ */
+
+/*
+ *  COPYRIGHT (c) 2018.
+ *  Abhimanyu Raghuvanshi
+ *
+ *  Permission to use, copy, modify, and/or distribute this software
+ *  for any purpose with or without fee is hereby granted.
+ *
+ *  THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
+ *  WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
+ *  WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR
+ *  BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
+ *  OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
+ *  WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
+ *  ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <netinet/in.h>
+#include <arpa/inet.h>
+#include <sys/socket.h>
+
+int test(void);
+
+int test(void)
+{
+  int af = 0;
+  struct in_addr addr;
+  char *dst = "string";
+
+  const char *ret = inet_ntop(af, &addr, dst, sizeof(dst));
+
+  return *ret != '\0';
+}
diff --git a/testsuites/psxtests/psxhdrs/arpa/inet/inet_pton.c b/testsuites/psxtests/psxhdrs/arpa/inet/inet_pton.c
new file mode 100644
index 0000000..8fafd08
--- /dev/null
+++ b/testsuites/psxtests/psxhdrs/arpa/inet/inet_pton.c
@@ -0,0 +1,39 @@
+/**
+ *  @file
+ *  @brief inet_pton() API Conformance Test
+ */
+
+/*
+ *  COPYRIGHT (c) 2018.
+ *  Abhimanyu Raghuvanshi
+ *
+ *  Permission to use, copy, modify, and/or distribute this software
+ *  for any purpose with or without fee is hereby granted.
+ *
+ *  THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
+ *  WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
+ *  WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR
+ *  BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES
+ *  OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
+ *  WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
+ *  ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+ */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <netinet/in.h>
+#include <arpa/inet.h>
+
+int test(void);
+
+int test(void)
+{
+  int af = 0;
+  const char *src = "127.0.0.1";
+  int a = 1;
+
+  return inet_pton(af,src,&a);
+
+}



More information about the vc mailing list