<div dir="ltr"><div>I changed tabs to spaces but that was all.</div><div><br></div><div>Pushed.</div><div><br></div><div>Thanks.</div><div><br></div><div>--joel<br></div></div><br><div class="gmail_quote"><div dir="ltr">On Wed, Dec 12, 2018 at 7:04 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              |  4 ++<br>
 testsuites/psxtests/psxhdrs/sys/msg/msgctl.c | 51 ++++++++++++++++++++++++<br>
 testsuites/psxtests/psxhdrs/sys/msg/msgget.c | 50 ++++++++++++++++++++++++<br>
 testsuites/psxtests/psxhdrs/sys/msg/msgrcv.c | 56 +++++++++++++++++++++++++++<br>
 testsuites/psxtests/psxhdrs/sys/msg/msgsnd.c | 58 ++++++++++++++++++++++++++++<br>
 5 files changed, 219 insertions(+)<br>
 create mode 100755 testsuites/psxtests/psxhdrs/sys/msg/msgctl.c<br>
 create mode 100755 testsuites/psxtests/psxhdrs/sys/msg/msgget.c<br>
 create mode 100755 testsuites/psxtests/psxhdrs/sys/msg/msgrcv.c<br>
 create mode 100755 testsuites/psxtests/psxhdrs/sys/msg/msgsnd.c<br>
<br>
diff --git a/testsuites/psxtests/Makefile.am b/testsuites/psxtests/Makefile.am<br>
index 1ce9b20d67..46d2c33d8e 100644<br>
--- a/testsuites/psxtests/Makefile.am<br>
+++ b/testsuites/psxtests/Makefile.am<br>
@@ -1869,6 +1869,10 @@ lib_a_SOURCES = psxhdrs/devctl/posix_devctl.c \<br>
 ## lib_a_SOURCES += psxhdrs/sys/resource/getrlimit.c     See ticket #3653<br>
 ## lib_a_SOURCES += psxhdrs/sys/resource/setpriority.c   See ticket #3654<br>
 ## lib_a_SOURCES += psxhdrs/sys/resource/setrlimit.c     See ticket #3655<br>
+## lib_a_SOURCES += psxhdrs/sys/msg/msgctl.c             See ticket #3658<br>
+## lib_a_SOURCES += psxhdrs/sys/msg/msgget.c             See ticket #3658<br>
+## lib_a_SOURCES += psxhdrs/sys/msg/msgrcv.c             See ticket #3658<br>
+## lib_a_SOURCES += psxhdrs/sys/msg/msgsnd.c             See ticket #3658<br>
 endif<br>
<br>
 rtems_tests_PROGRAMS = $(psx_tests)<br>
diff --git a/testsuites/psxtests/psxhdrs/sys/msg/msgctl.c b/testsuites/psxtests/psxhdrs/sys/msg/msgctl.c<br>
new file mode 100755<br>
index 0000000000..df914a866e<br>
--- /dev/null<br>
+++ b/testsuites/psxtests/psxhdrs/sys/msg/msgctl.c<br>
@@ -0,0 +1,51 @@<br>
+/**<br>
+ *  @file<br>
+ *  @brief msgctl() 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>
+#define _XOPEN_SOURCE<br>
+#include <sys/msg.h> <br>
+<br>
+int test( void );<br>
+<br>
+int test( void )<br>
+{<br>
+       int return_value;<br>
+       int msqid = msgget(IPC_PRIVATE, IPC_CREAT | 0660);<br>
+       int cmd = IPC_STAT;<br>
+       struct msqid_ds buf;<br>
+<br>
+       return_value = msgctl(msqid, cmd, &buf);<br>
+       return (return_value != -1);<br>
+}<br>
\ No newline at end of file<br>
diff --git a/testsuites/psxtests/psxhdrs/sys/msg/msgget.c b/testsuites/psxtests/psxhdrs/sys/msg/msgget.c<br>
new file mode 100755<br>
index 0000000000..9881fe23f7<br>
--- /dev/null<br>
+++ b/testsuites/psxtests/psxhdrs/sys/msg/msgget.c<br>
@@ -0,0 +1,50 @@<br>
+/**<br>
+ *  @file<br>
+ *  @brief msgget() 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>
+#define _XOPEN_SOURCE<br>
+#include <sys/msg.h> <br>
+<br>
+int test( void );<br>
+<br>
+int test( void )<br>
+{<br>
+       int return_value;<br>
+       key_t key = IPC_PRIVATE;<br>
+       int msgflg = IPC_CREAT | 0660;<br>
+<br>
+       return_value = msgget(key, msgflg);<br>
+       return (return_value != -1);<br>
+}<br>
\ No newline at end of file<br>
diff --git a/testsuites/psxtests/psxhdrs/sys/msg/msgrcv.c b/testsuites/psxtests/psxhdrs/sys/msg/msgrcv.c<br>
new file mode 100755<br>
index 0000000000..960c4e7ad0<br>
--- /dev/null<br>
+++ b/testsuites/psxtests/psxhdrs/sys/msg/msgrcv.c<br>
@@ -0,0 +1,56 @@<br>
+/**<br>
+ *  @file<br>
+ *  @brief msgrcv() 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/msg.h> <br>
+<br>
+int test( void );<br>
+<br>
+int test( void )<br>
+{<br>
+       int return_value;<br>
+       int msqid = msgget(IPC_PRIVATE, IPC_CREAT | 0660);<br>
+       struct mymsg {<br>
+               long mtype;<br>
+               char mtext[2];<br>
+       };<br>
+       struct mymsg msgp;<br>
+       size_t msgsz = 1;<br>
+       long msgtyp = 0;<br>
+       int msgflg =  IPC_NOWAIT;<br>
+<br>
+       return_value = msgrcv(msqid, &msgp, msgsz, msgtyp, msgflg);<br>
+       return (return_value != -1);<br>
+}<br>
\ No newline at end of file<br>
diff --git a/testsuites/psxtests/psxhdrs/sys/msg/msgsnd.c b/testsuites/psxtests/psxhdrs/sys/msg/msgsnd.c<br>
new file mode 100755<br>
index 0000000000..71f6ae8bb9<br>
--- /dev/null<br>
+++ b/testsuites/psxtests/psxhdrs/sys/msg/msgsnd.c<br>
@@ -0,0 +1,58 @@<br>
+/**<br>
+ *  @file<br>
+ *  @brief msgsnd() 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/msg.h> <br>
+<br>
+int test( void );<br>
+<br>
+int test( void )<br>
+{<br>
+       int return_value;<br>
+       int msqid = msgget(IPC_PRIVATE, IPC_CREAT | 0660);<br>
+       struct mymsg {<br>
+               long mtype;<br>
+               char mtext[2];<br>
+       };<br>
+       struct mymsg msgp;<br>
+       msgp.mtype = 1;<br>
+       msgp.mtext[0] = 'c';<br>
+       msgp.mtext[1] = '\0';<br>
+       size_t msgsz = 1;<br>
+       int msgflg =  IPC_NOWAIT;<br>
+<br>
+       return_value = msgsnd(msqid, &msgp, msgsz, msgflg);<br>
+       return (return_value != -1);<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>