<div dir="ltr"><div>Thank you! </div><div><br></div><div>I had to make two changes:</div><div><br></div><div>  + NULL -> (void *) 0 since NULL is not necessarily defined without including another .h</div><div> + two spaces not a tab<br></div><div><br></div><div>This is now merged.<br></div></div><br><div class="gmail_quote"><div dir="ltr">On Tue, Dec 11, 2018 at 6:30 PM Jacob Shin <<a href="mailto:jacobshin313@gmail.com">jacobshin313@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">---<br>
 testsuites/psxtests/Makefile.am                    |  6 ++-<br>
 .../psxtests/psxhdrs/net/if/if_freenameindex.c     | 47 +++++++++++++++++++++<br>
 .../psxtests/psxhdrs/net/if/if_indextoname.c       | 49 ++++++++++++++++++++++<br>
 testsuites/psxtests/psxhdrs/net/if/if_nameindex.c  | 47 +++++++++++++++++++++<br>
 .../psxtests/psxhdrs/net/if/if_nametoindex.c       | 48 +++++++++++++++++++++<br>
 5 files changed, 196 insertions(+), 1 deletion(-)<br>
 create mode 100755 testsuites/psxtests/psxhdrs/net/if/if_freenameindex.c<br>
 create mode 100755 testsuites/psxtests/psxhdrs/net/if/if_indextoname.c<br>
 create mode 100755 testsuites/psxtests/psxhdrs/net/if/if_nameindex.c<br>
 create mode 100755 testsuites/psxtests/psxhdrs/net/if/if_nametoindex.c<br>
<br>
diff --git a/testsuites/psxtests/Makefile.am b/testsuites/psxtests/Makefile.am<br>
index a2b04caf33..3f64ebca32 100644<br>
--- a/testsuites/psxtests/Makefile.am<br>
+++ b/testsuites/psxtests/Makefile.am<br>
@@ -1809,7 +1809,11 @@ lib_a_SOURCES = psxhdrs/devctl/posix_devctl.c \<br>
        psxhdrs/stdlib/wcstombs.c \<br>
        psxhdrs/stdlib/wctomb.c \<br>
        psxhdrs/sys/times/times.c \<br>
-       psxhdrs/sys/resource/getrusage.c<br>
+       psxhdrs/sys/resource/getrusage.c \<br>
+       psxhdrs/net/if/if_freenameindex.c \<br>
+       psxhdrs/net/if/if_indextoname.c \<br>
+       psxhdrs/net/if/if_nameindex.c \<br>
+       psxhdrs/net/if/if_nametoindex.c<br>
<br>
 ## Not supported by RTEMS, but POSIX API Compliance tests exist.<br>
 ## lib_a_SOURCES += psxhdrs/ulimit/ulimit.c<br>
diff --git a/testsuites/psxtests/psxhdrs/net/if/if_freenameindex.c b/testsuites/psxtests/psxhdrs/net/if/if_freenameindex.c<br>
new file mode 100755<br>
index 0000000000..e1792e1f80<br>
--- /dev/null<br>
+++ b/testsuites/psxtests/psxhdrs/net/if/if_freenameindex.c<br>
@@ -0,0 +1,47 @@<br>
+/**<br>
+ *  @file<br>
+ *  @brief if_freenameindex() API Conformance Test<br>
+ */<br>
+<br>
+/*<br>
+ * SPDX-License-Identifier: BSD-2-Clause<br>
+ * <br>
+ * Copyright (C) 2018 Jacob Shin<br>
+ * <br>
+ * Redistribution and use in source and binary forms, with or without<br>
+ * modification, are permitted provided that the following conditions<br>
+ * are met:<br>
+ * 1. Redistributions of source code must retain the above copyright<br>
+ *    notice, this list of conditions and the following disclaimer.<br>
+ * 2. Redistributions in binary form must reproduce the above copyright<br>
+ *    notice, this list of conditions and the following disclaimer in the<br>
+ *    documentation and/or other materials provided with the distribution.<br>
+ * <br>
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"<br>
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE<br>
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE<br>
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE<br>
+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR<br>
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF<br>
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS<br>
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN<br>
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)<br>
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE<br>
+ * POSSIBILITY OF SUCH DAMAGE.<br>
+ */<br>
+<br>
+#ifdef HAVE_CONFIG_H<br>
+#include "config.h"<br>
+#endif<br>
+<br>
+#include <net/if.h><br>
+<br>
+int test( void );<br>
+<br>
+int test( void )<br>
+{<br>
+       struct if_nameindex *ptr = if_nameindex();<br>
+<br>
+       if_freenameindex(ptr);<br>
+       return 1;<br>
+}<br>
\ No newline at end of file<br>
diff --git a/testsuites/psxtests/psxhdrs/net/if/if_indextoname.c b/testsuites/psxtests/psxhdrs/net/if/if_indextoname.c<br>
new file mode 100755<br>
index 0000000000..0004d5426b<br>
--- /dev/null<br>
+++ b/testsuites/psxtests/psxhdrs/net/if/if_indextoname.c<br>
@@ -0,0 +1,49 @@<br>
+/**<br>
+ *  @file<br>
+ *  @brief if_indextoname() API Conformance Test<br>
+ */<br>
+<br>
+/*<br>
+ * SPDX-License-Identifier: BSD-2-Clause<br>
+ * <br>
+ * Copyright (C) 2018 Jacob Shin<br>
+ * <br>
+ * Redistribution and use in source and binary forms, with or without<br>
+ * modification, are permitted provided that the following conditions<br>
+ * are met:<br>
+ * 1. Redistributions of source code must retain the above copyright<br>
+ *    notice, this list of conditions and the following disclaimer.<br>
+ * 2. Redistributions in binary form must reproduce the above copyright<br>
+ *    notice, this list of conditions and the following disclaimer in the<br>
+ *    documentation and/or other materials provided with the distribution.<br>
+ * <br>
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"<br>
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE<br>
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE<br>
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE<br>
+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR<br>
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF<br>
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS<br>
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN<br>
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)<br>
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE<br>
+ * POSSIBILITY OF SUCH DAMAGE.<br>
+ */<br>
+<br>
+#ifdef HAVE_CONFIG_H<br>
+#include "config.h"<br>
+#endif<br>
+<br>
+#include <net/if.h><br>
+<br>
+int test( void );<br>
+<br>
+int test( void )<br>
+{<br>
+       char *return_value;<br>
+       unsigned ifindex = 1;<br>
+       char ifname[IF_NAMESIZE];<br>
+<br>
+       return_value = if_indextoname(ifindex, ifname);<br>
+       return (return_value != NULL);<br>
+}<br>
\ No newline at end of file<br>
diff --git a/testsuites/psxtests/psxhdrs/net/if/if_nameindex.c b/testsuites/psxtests/psxhdrs/net/if/if_nameindex.c<br>
new file mode 100755<br>
index 0000000000..f8a71d24a9<br>
--- /dev/null<br>
+++ b/testsuites/psxtests/psxhdrs/net/if/if_nameindex.c<br>
@@ -0,0 +1,47 @@<br>
+/**<br>
+ *  @file<br>
+ *  @brief if_nameindex() API Conformance Test<br>
+ */<br>
+<br>
+/*<br>
+ * SPDX-License-Identifier: BSD-2-Clause<br>
+ * <br>
+ * Copyright (C) 2018 Jacob Shin<br>
+ * <br>
+ * Redistribution and use in source and binary forms, with or without<br>
+ * modification, are permitted provided that the following conditions<br>
+ * are met:<br>
+ * 1. Redistributions of source code must retain the above copyright<br>
+ *    notice, this list of conditions and the following disclaimer.<br>
+ * 2. Redistributions in binary form must reproduce the above copyright<br>
+ *    notice, this list of conditions and the following disclaimer in the<br>
+ *    documentation and/or other materials provided with the distribution.<br>
+ * <br>
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"<br>
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE<br>
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE<br>
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE<br>
+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR<br>
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF<br>
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS<br>
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN<br>
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)<br>
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE<br>
+ * POSSIBILITY OF SUCH DAMAGE.<br>
+ */<br>
+<br>
+#ifdef HAVE_CONFIG_H<br>
+#include "config.h"<br>
+#endif<br>
+<br>
+#include <net/if.h><br>
+<br>
+int test( void );<br>
+<br>
+int test( void )<br>
+{<br>
+       struct if_nameindex *return_value;<br>
+       <br>
+       return_value = if_nameindex();<br>
+       return (return_value != NULL);<br>
+}<br>
\ No newline at end of file<br>
diff --git a/testsuites/psxtests/psxhdrs/net/if/if_nametoindex.c b/testsuites/psxtests/psxhdrs/net/if/if_nametoindex.c<br>
new file mode 100755<br>
index 0000000000..f2ab5075bb<br>
--- /dev/null<br>
+++ b/testsuites/psxtests/psxhdrs/net/if/if_nametoindex.c<br>
@@ -0,0 +1,48 @@<br>
+/**<br>
+ *  @file<br>
+ *  @brief if_nametoindex() API Conformance Test<br>
+ */<br>
+<br>
+/*<br>
+ * SPDX-License-Identifier: BSD-2-Clause<br>
+ * <br>
+ * Copyright (C) 2018 Jacob Shin<br>
+ * <br>
+ * Redistribution and use in source and binary forms, with or without<br>
+ * modification, are permitted provided that the following conditions<br>
+ * are met:<br>
+ * 1. Redistributions of source code must retain the above copyright<br>
+ *    notice, this list of conditions and the following disclaimer.<br>
+ * 2. Redistributions in binary form must reproduce the above copyright<br>
+ *    notice, this list of conditions and the following disclaimer in the<br>
+ *    documentation and/or other materials provided with the distribution.<br>
+ * <br>
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"<br>
+ * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE<br>
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE<br>
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE<br>
+ * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR<br>
+ * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF<br>
+ * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS<br>
+ * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN<br>
+ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)<br>
+ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE<br>
+ * POSSIBILITY OF SUCH DAMAGE.<br>
+ */<br>
+<br>
+#ifdef HAVE_CONFIG_H<br>
+#include "config.h"<br>
+#endif<br>
+<br>
+#include <net/if.h><br>
+<br>
+int test( void );<br>
+<br>
+int test( void )<br>
+{<br>
+       unsigned return_value;<br>
+       char *ifname = "test";<br>
+<br>
+       return_value = if_nametoindex(ifname);<br>
+       return (return_value != 0);<br>
+}<br>
\ No newline at end of file<br>
-- <br>
2.11.0<br>
<br>
_______________________________________________<br>
devel mailing list<br>
<a href="mailto:devel@rtems.org" target="_blank">devel@rtems.org</a><br>
<a href="http://lists.rtems.org/mailman/listinfo/devel" rel="noreferrer" target="_blank">http://lists.rtems.org/mailman/listinfo/devel</a><br>
</blockquote></div>