From ef362818dff3e7dc437d90133424e9c9f0608a02 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 5 Dec 2016 21:06:40 -0600 Subject: Add support for posix_devctl() --- testsuites/psxtests/psxdevctl01/test.c | 81 ++++++++++++++++++++++++++++++++++ 1 file changed, 81 insertions(+) create mode 100644 testsuites/psxtests/psxdevctl01/test.c (limited to 'testsuites/psxtests/psxdevctl01/test.c') diff --git a/testsuites/psxtests/psxdevctl01/test.c b/testsuites/psxtests/psxdevctl01/test.c new file mode 100644 index 0000000000..423e8c50b8 --- /dev/null +++ b/testsuites/psxtests/psxdevctl01/test.c @@ -0,0 +1,81 @@ +/** + * @file + * + * This test exercises the posix_devctl() method. + */ + +/* + * COPYRIGHT (c) 2016. + * 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 + +#define TESTS_USE_PRINTK +#define _POSIX_26_C_SOURCE +#include "tmacros.h" +#include +#include +#include + +#include + +#include +#include + +const char rtems_test_name[] = "PSXDEVCTL 1"; + +/* forward declarations to avoid warnings */ +int test_main(void); + +/* + * main entry point to the test + */ + +#if defined(__rtems__) +int test_main(void) +#else +int main( + int argc, + char **argv +) +#endif +{ + int status; + int fd; + int dcmd; + int dev_data; + void *dev_data_ptr; + size_t nbyte; + int dev_info; + + TEST_BEGIN(); + + puts( "posix_devctl() FIONBIO on stdin return dev_info -- EBADF" ); + fd = 0; + dcmd = FIONBIO; + dev_data_ptr = &dev_data; + nbyte = sizeof(dev_data); + status = posix_devctl( fd, dcmd, dev_data_ptr, nbyte, &dev_info ); + rtems_test_assert( status == -1 ); + rtems_test_assert( errno == EBADF ); + rtems_test_assert( dev_info == 0 ); + + puts( "posix_devctl() FIONBIO on stdin NULL dev_info -- EBADF" ); + fd = 0; + dcmd = FIONBIO; + dev_data_ptr = NULL; + nbyte = 0; + status = posix_devctl( fd, dcmd, dev_data_ptr, nbyte, NULL ); + rtems_test_assert( status == -1 ); + rtems_test_assert( errno == EBADF ); + + TEST_END(); + exit(0); +} -- cgit v1.2.3