From cfde647908a03c214ea49e247be7b2decd874b8e Mon Sep 17 00:00:00 2001 From: Jennifer Averett Date: Mon, 7 Jun 2010 19:09:28 +0000 Subject: 2010-06-07 Bharath Suri PR PR1542 * Makefile.am, configure.ac: Coverage improvement: fifo_open. * spfifo01/spfifo01.doc, spfifo01/spfifo01.scn, spfifo01/test.c, spfifo02/Makefile.am, spfifo02/main.c, spfifo02/spfifo02.doc, spfifo02/spfifo02.scn, spfifo02/test.c, spfifo03/Makefile.am, spfifo03/main.c, spfifo03/spfifo03.doc, spfifo03/spfifo03.scn, spfifo03/test.c, spfifo04/Makefile.am, spfifo04/main.c, spfifo04/spfifo04.doc, spfifo04/spfifo04.scn, spfifo04/test.c: New files. --- testsuites/sptests/spfifo03/test.c | 76 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 testsuites/sptests/spfifo03/test.c (limited to 'testsuites/sptests/spfifo03/test.c') diff --git a/testsuites/sptests/spfifo03/test.c b/testsuites/sptests/spfifo03/test.c new file mode 100644 index 0000000000..b97613e4ca --- /dev/null +++ b/testsuites/sptests/spfifo03/test.c @@ -0,0 +1,76 @@ +/* test_main + * + * This routine serves as a test routine. + * Exercises the fifo_open + * + * Input parameters: NONE + * + * Output parameters: NONE + * + * COPYRIGHT (c) 1989-1999. + * 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.com/license/LICENSE. + * + * $Id$ + */ + +/* Includes */ + +#include +#include +#include +#include +#include +#include + +#include +#include +#include + + +void test_main(void) +{ + + int status = -1; + int fd = 0; + + puts("\n\n*** FIFO / PIPE OPEN TEST - 3 ***"); + puts( +"\n\nConfiguration: Pipes configured, \ +but number of barriers configured = 1\n\ +Required number of barriers = 2" + ); + + puts("\n\nCreating directory /tmp"); + status = mkdir("/tmp", 0777); + rtems_test_assert(status == 0); + + puts("\n\nCreating fifo /tmp/fifo"); + status = mkfifo("/tmp/fifo01", 0777); + rtems_test_assert(status == 0); + + puts("\n\nAttempt to open the fifo file\n"); + puts( +"Must result in failure since \n\ +number of barriers = 1 => not all resources\n\ +were acquired" + ); + + fd = open("/tmp/fifo01", O_RDONLY); + rtems_test_assert(fd == -1); + rtems_test_assert(errno == EINTR); // Should this + // be ENOMEM? + puts("\n\nRemove the entry /tmp/fifo01"); + status = unlink("/tmp/fifo01"); + rtems_test_assert(status == 0); + + puts("\n\nRemove directory /tmp"); + status = rmdir("/tmp"); + rtems_test_assert(status == 0); + + puts("\n\n*** END OF FIFO / PIPE OPEN TEST - 3 ***"); +} + -- cgit v1.2.3