<div dir="ltr"><div dir="ltr">Hey Abhimanyu!!<div>please note that all the tests must have the new license BSD-2 .</div><div>It was added recently .</div><div>here is the new license <a href="https://devel.rtems.org/wiki/GCI/Coding/AddPOSIXMethodSignatureComplianceTests">https://devel.rtems.org/wiki/GCI/Coding/AddPOSIXMethodSignatureComplianceTests</a></div><div>if possible ,also submit a patch editing your previous test files with the new license .</div><div><br></div><div>Thank you !!</div><div>Regards </div><div>Shashvat </div></div></div><br><div class="gmail_quote"><div dir="ltr">On Wed, Dec 12, 2018 at 9:33 PM Abhimanyu Raghuvanshi <<a href="mailto:abhimanyuraghuvanshi29@gmail.com">abhimanyuraghuvanshi29@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"><div dir="ltr"><div dir="ltr">Patch attached<br><br>====================================<br><div>From 145613daf5bea789337540e488b626077ce03bef Mon Sep 17 00:00:00 2001</div><div>From: ABR290B <<a href="mailto:abhimanyuraghuvanshi29@gmail.com" target="_blank">abhimanyuraghuvanshi29@gmail.com</a>></div><div>Date: Wed, 12 Dec 2018 21:31:27 +0530</div><div>Subject: [PATCH] POSIX Signature Test for sys/uio.h (GCI2018)</div><div><br></div><div>---</div><div> testsuites/psxtests/Makefile.am              |  4 ++-</div><div> testsuites/psxtests/psxhdrs/sys/uio/readv.c  | 38 ++++++++++++++++++++</div><div> testsuites/psxtests/psxhdrs/sys/uio/writev.c | 38 ++++++++++++++++++++</div><div> 3 files changed, 79 insertions(+), 1 deletion(-)</div><div> create mode 100644 testsuites/psxtests/psxhdrs/sys/uio/readv.c</div><div> create mode 100644 testsuites/psxtests/psxhdrs/sys/uio/writev.c</div><div><br></div><div>diff --git a/testsuites/psxtests/Makefile.am b/testsuites/psxtests/Makefile.am</div><div>index 3dd8fe0139..7c7a94f968 100644</div><div>--- a/testsuites/psxtests/Makefile.am</div><div>+++ b/testsuites/psxtests/Makefile.am</div><div>@@ -1815,7 +1815,9 @@ lib_a_SOURCES = psxhdrs/devctl/posix_devctl.c \</div><div> <span style="white-space:pre-wrap">   </span>psxhdrs/setjmp/longjmp.c \</div><div> <span style="white-space:pre-wrap">     </span>psxhdrs/setjmp/setjmp.c \</div><div> <span style="white-space:pre-wrap">      </span>psxhdrs/setjmp/siglongjmp.c \</div><div>-<span style="white-space:pre-wrap">   </span>psxhdrs/setjmp/sigsetjmp.c</div><div>+<span style="white-space:pre-wrap">      </span>psxhdrs/setjmp/sigsetjmp.c \</div><div>+<span style="white-space:pre-wrap">    </span>psxhdrs/sys/uio/readv.c \</div><div>+<span style="white-space:pre-wrap">       </span>psxhdrs/sys/uio/writev.c </div><div> </div><div> ## Not supported by RTEMS, but POSIX API Compliance tests exist.</div><div> ## lib_a_SOURCES += psxhdrs/ulimit/ulimit.c</div><div>diff --git a/testsuites/psxtests/psxhdrs/sys/uio/readv.c b/testsuites/psxtests/psxhdrs/sys/uio/readv.c</div><div>new file mode 100644</div><div>index 0000000000..8f6f3aa9f5</div><div>--- /dev/null</div><div>+++ b/testsuites/psxtests/psxhdrs/sys/uio/readv.c</div><div>@@ -0,0 +1,38 @@</div><div>+/**</div><div>+ *  @file</div><div>+ *  @brief readv() API Conformance Test</div><div>+ */</div><div>+</div><div>+/*</div><div>+ *  COPYRIGHT (c) 2018.</div><div>+ *  Abhimanyu Raghuvanshi</div><div>+ *</div><div>+ *  Permission to use, copy, modify, and/or distribute this software</div><div>+ *  for any purpose with or without fee is hereby granted.</div><div>+ * </div><div>+ *  THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL</div><div>+ *  WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED</div><div>+ *  WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR</div><div>+ *  BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES</div><div>+ *  OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,</div><div>+ *  WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,</div><div>+ *  ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.</div><div>+ */</div><div>+</div><div>+#ifdef HAVE_CONFIG_H</div><div>+#include "config.h"</div><div>+#endif</div><div>+</div><div>+#include <sys/uio.h></div><div>+#include <sys/types.h></div><div>+</div><div>+int test(void);</div><div>+</div><div>+int test(void)</div><div>+{</div><div>+  int a = 0;</div><div>+  const struct iovec b = {0,0};</div><div>+  int c = 1;</div><div>+  ssize_t ret = readv(a, &b, c);</div><div>+  return ret!='\0';</div><div>+}</div><div>\ No newline at end of file</div><div>diff --git a/testsuites/psxtests/psxhdrs/sys/uio/writev.c b/testsuites/psxtests/psxhdrs/sys/uio/writev.c</div><div>new file mode 100644</div><div>index 0000000000..0e53e21815</div><div>--- /dev/null</div><div>+++ b/testsuites/psxtests/psxhdrs/sys/uio/writev.c</div><div>@@ -0,0 +1,38 @@</div><div>+/**</div><div>+ *  @file</div><div>+ *  @brief writev() API Conformance Test</div><div>+ */</div><div>+</div><div>+/*</div><div>+ *  COPYRIGHT (c) 2018.</div><div>+ *  Abhimanyu Raghuvanshi</div><div>+ *</div><div>+ *  Permission to use, copy, modify, and/or distribute this software</div><div>+ *  for any purpose with or without fee is hereby granted.</div><div>+ * </div><div>+ *  THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL</div><div>+ *  WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED</div><div>+ *  WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR</div><div>+ *  BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES</div><div>+ *  OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,</div><div>+ *  WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,</div><div>+ *  ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.</div><div>+ */</div><div>+</div><div>+#ifdef HAVE_CONFIG_H</div><div>+#include "config.h"</div><div>+#endif</div><div>+</div><div>+#include <sys/uio.h></div><div>+#include <sys/types.h></div><div>+</div><div>+int test(void);</div><div>+</div><div>+int test(void)</div><div>+{</div><div>+  int a = 0;</div><div>+  const struct iovec b = {0,0};</div><div>+  int c = 1;</div><div>+  ssize_t ret = writev(a, &b, c);</div><div>+  return ret!='\0';</div><div>+}</div><div>\ No newline at end of file</div><div>-- </div><div>2.19.1.windows.1</div><div>===============================================<br><br></div><div><div dir="ltr" class="gmail-m_5418566579110908652gmail_signature"><div dir="ltr"><div><br></div><div><font face="arial black, sans-serif">ABR</font></div></div></div></div></div></div>
_______________________________________________<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></blockquote></div>