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/accept.c | 32 +++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 testsuites/psxtests/psxhdrs/sys/socket/accept.c (limited to 'testsuites/psxtests/psxhdrs/sys/socket/accept.c') diff --git a/testsuites/psxtests/psxhdrs/sys/socket/accept.c b/testsuites/psxtests/psxhdrs/sys/socket/accept.c new file mode 100644 index 0000000000..f57ecd5410 --- /dev/null +++ b/testsuites/psxtests/psxhdrs/sys/socket/accept.c @@ -0,0 +1,32 @@ +/** + * @file + * + * This test file is used to verify that the accept() 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 + +int test(void); + +int test(void) +{ + int sockfd = 4; + struct sockaddr addr; + socklen_t addrlen; + + return accept(sockfd, &addr, &addrlen); +} -- cgit v1.2.3