<div dir="ltr"><div>I replaced tabs with spaces and correct indentation in a couple of places.</div><div><br></div><div>I also fixed a minor typo.</div><div><br></div><div>Pushed.</div><div><br></div><div>Thanks.<br></div></div><br><div class="gmail_quote"><div dir="ltr">On Wed, Dec 12, 2018 at 6:46 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">The Google Code-In finished before I could submit this, so I thought I would submit this instead of letting it go to waste.<br>
---<br>
 testsuites/psxtests/Makefile.am                   |  8 +++-<br>
 testsuites/psxtests/psxhdrs/sys/select/FD_CLR.c   | 48 ++++++++++++++++++++<br>
 testsuites/psxtests/psxhdrs/sys/select/FD_ISSET.c | 49 +++++++++++++++++++++<br>
 testsuites/psxtests/psxhdrs/sys/select/FD_SET.c   | 48 ++++++++++++++++++++<br>
 testsuites/psxtests/psxhdrs/sys/select/FD_ZERO.c  | 47 ++++++++++++++++++++<br>
 testsuites/psxtests/psxhdrs/sys/select/pselect.c  | 53 +++++++++++++++++++++++<br>
 testsuites/psxtests/psxhdrs/sys/select/select.c   | 52 ++++++++++++++++++++++<br>
 7 files changed, 304 insertions(+), 1 deletion(-)<br>
 create mode 100755 testsuites/psxtests/psxhdrs/sys/select/FD_CLR.c<br>
 create mode 100755 testsuites/psxtests/psxhdrs/sys/select/FD_ISSET.c<br>
 create mode 100755 testsuites/psxtests/psxhdrs/sys/select/FD_SET.c<br>
 create mode 100755 testsuites/psxtests/psxhdrs/sys/select/FD_ZERO.c<br>
 create mode 100755 testsuites/psxtests/psxhdrs/sys/select/pselect.c<br>
 create mode 100755 testsuites/psxtests/psxhdrs/sys/select/select.c<br>
<br>
diff --git a/testsuites/psxtests/Makefile.am b/testsuites/psxtests/Makefile.am<br>
index 1ce9b20d67..e3bde2f64d 100644<br>
--- a/testsuites/psxtests/Makefile.am<br>
+++ b/testsuites/psxtests/Makefile.am<br>
@@ -1819,7 +1819,13 @@ lib_a_SOURCES = psxhdrs/devctl/posix_devctl.c \<br>
        psxhdrs/setjmp/longjmp.c \<br>
        psxhdrs/setjmp/setjmp.c \<br>
        psxhdrs/setjmp/siglongjmp.c \<br>
-       psxhdrs/setjmp/sigsetjmp.c<br>
+       psxhdrs/setjmp/sigsetjmp.c \<br>
+       psxhdrs/sys/select/FD_CLR.c \<br>
+       psxhdrs/sys/select/FD_ISSET.c \<br>
+       psxhdrs/sys/select/FD_SET.c \<br>
+       psxhdrs/sys/select/FD_ZERO.c \<br>
+       psxhdrs/sys/pselect.c \<br>
+       psxhdrs/sys/select.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/sys/select/FD_CLR.c b/testsuites/psxtests/psxhdrs/sys/select/FD_CLR.c<br>
new file mode 100755<br>
index 0000000000..b165e9159e<br>
--- /dev/null<br>
+++ b/testsuites/psxtests/psxhdrs/sys/select/FD_CLR.c<br>
@@ -0,0 +1,48 @@<br>
+/**<br>
+ *  @file<br>
+ *  @brief FD_CLR() 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 <sys/select.h><br>
+<br>
+int test( void );<br>
+<br>
+int test( void )<br>
+{<br>
+       int fd = 1;<br>
+       fd_set fdset;<br>
+<br>
+       FD_CLR(fd, &fdset);<br>
+       return 1;<br>
+}<br>
\ No newline at end of file<br>
diff --git a/testsuites/psxtests/psxhdrs/sys/select/FD_ISSET.c b/testsuites/psxtests/psxhdrs/sys/select/FD_ISSET.c<br>
new file mode 100755<br>
index 0000000000..0b3190b817<br>
--- /dev/null<br>
+++ b/testsuites/psxtests/psxhdrs/sys/select/FD_ISSET.c<br>
@@ -0,0 +1,49 @@<br>
+/**<br>
+ *  @file<br>
+ *  @brief FD_ISSET() 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 <sys/select.h><br>
+<br>
+int test( void );<br>
+<br>
+int test( void )<br>
+{<br>
+       int return_value;<br>
+       int fd = 1;<br>
+       fd_set fdset;<br>
+<br>
+       return_value = FD_ISSET(fd, &fdset);<br>
+       return return_value;<br>
+}<br>
\ No newline at end of file<br>
diff --git a/testsuites/psxtests/psxhdrs/sys/select/FD_SET.c b/testsuites/psxtests/psxhdrs/sys/select/FD_SET.c<br>
new file mode 100755<br>
index 0000000000..0de0b346fa<br>
--- /dev/null<br>
+++ b/testsuites/psxtests/psxhdrs/sys/select/FD_SET.c<br>
@@ -0,0 +1,48 @@<br>
+/**<br>
+ *  @file<br>
+ *  @brief FD_SET() 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 <sys/select.h><br>
+<br>
+int test( void );<br>
+<br>
+int test( void )<br>
+{<br>
+       int fd = 1;<br>
+       fd_set fdset;<br>
+<br>
+       FD_SET(fd, &fdset);<br>
+       return 1;<br>
+}<br>
\ No newline at end of file<br>
diff --git a/testsuites/psxtests/psxhdrs/sys/select/FD_ZERO.c b/testsuites/psxtests/psxhdrs/sys/select/FD_ZERO.c<br>
new file mode 100755<br>
index 0000000000..d39d9e78c4<br>
--- /dev/null<br>
+++ b/testsuites/psxtests/psxhdrs/sys/select/FD_ZERO.c<br>
@@ -0,0 +1,47 @@<br>
+/**<br>
+ *  @file<br>
+ *  @brief FD_ZERO() 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 <sys/select.h><br>
+<br>
+int test( void );<br>
+<br>
+int test( void )<br>
+{<br>
+       fd_set fdset;<br>
+<br>
+       FD_ZERO(&fdset);<br>
+       return 1;<br>
+}<br>
\ No newline at end of file<br>
diff --git a/testsuites/psxtests/psxhdrs/sys/select/pselect.c b/testsuites/psxtests/psxhdrs/sys/select/pselect.c<br>
new file mode 100755<br>
index 0000000000..1b2922528e<br>
--- /dev/null<br>
+++ b/testsuites/psxtests/psxhdrs/sys/select/pselect.c<br>
@@ -0,0 +1,53 @@<br>
+/**<br>
+ *  @file<br>
+ *  @brief pselect() 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 <sys/select.h><br>
+<br>
+int test( void );<br>
+<br>
+int test( void )<br>
+{<br>
+       int return_value;<br>
+       int nfds = 1;<br>
+       fd_set readfds;<br>
+    fd_set writefds;<br>
+    fd_set errorfds;<br>
+    struct timespec timeout;<br>
+    sigset_t sigmask;<br>
+       <br>
+       return_value = pselect(nfds, &readfds, &writefds, &errorfds, &timeout, &sigmask);<br>
+       return return_value;<br>
+}<br>
\ No newline at end of file<br>
diff --git a/testsuites/psxtests/psxhdrs/sys/select/select.c b/testsuites/psxtests/psxhdrs/sys/select/select.c<br>
new file mode 100755<br>
index 0000000000..12fc927404<br>
--- /dev/null<br>
+++ b/testsuites/psxtests/psxhdrs/sys/select/select.c<br>
@@ -0,0 +1,52 @@<br>
+/**<br>
+ *  @file<br>
+ *  @brief select() 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 <sys/select.h><br>
+<br>
+int test( void );<br>
+<br>
+int test( void )<br>
+{<br>
+       int return_value;<br>
+       int nfds = 1;<br>
+       fd_set readfds;<br>
+    fd_set writefds;<br>
+    fd_set errorfds;<br>
+    struct timeval timeout;<br>
+       <br>
+       return_value = select(nfds, &readfds, &writefds, &errorfds, &timeout);<br>
+       return return_value;<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>