From eedaf9baba448415f31fa4e3484d800072247e1c Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Wed, 11 Feb 2015 14:00:35 -0600 Subject: psxhdrs: Add tests for API compliance --- testsuites/psxtests/psxhdrs/sys/socket/recvmsg.c | 33 ++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 testsuites/psxtests/psxhdrs/sys/socket/recvmsg.c (limited to 'testsuites/psxtests/psxhdrs/sys/socket/recvmsg.c') diff --git a/testsuites/psxtests/psxhdrs/sys/socket/recvmsg.c b/testsuites/psxtests/psxhdrs/sys/socket/recvmsg.c new file mode 100644 index 0000000000..76723268af --- /dev/null +++ b/testsuites/psxtests/psxhdrs/sys/socket/recvmsg.c @@ -0,0 +1,33 @@ +/** + * @file + * + * This test file is used to verify that the recvmsg() method has the + * correct signature. + */ + +/* + * COPYRIGHT (c) 2015. + * On-Line Applications Research Corporation (OAR). + * + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.rtems.org/license/LICENSE. + */ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include + +ssize_t test(void); + +ssize_t test(void) +{ + int sockfd = 4; + struct msghdr msg; + int flags = 7; + + + return recvmsg(sockfd, &msg, flags); +} -- cgit v1.2.3