summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/spfifo01/test.c
diff options
context:
space:
mode:
authorJennifer Averett <Jennifer.Averett@OARcorp.com>2010-06-08 13:59:17 +0000
committerJennifer Averett <Jennifer.Averett@OARcorp.com>2010-06-08 13:59:17 +0000
commitf94344ffb360ea6967f01ef06549246a04e6517d (patch)
tree0876f480d388706c869b15ce6129fbf00a6a9a1c /testsuites/sptests/spfifo01/test.c
parent2010-06-08 Sebastian Huber <Sebastian.Huber@embedded-brains.de> (diff)
downloadrtems-f94344ffb360ea6967f01ef06549246a04e6517d.tar.bz2
2010-06-08 Jennifer Averett <Jennifer.Averett@OARcorp.com>
* spfifo01/Makefile.am, spfifo02/Makefile.am, spfifo03/Makefile.am, spfifo04/Makefile.am: Merged fifo main and test files into the standard init file. Fixed copyright information. * spfifo01/init.c, spfifo02/init.c, spfifo03/init.c, spfifo04/init.c: New files. * spfifo01/main.c, spfifo01/test.c, spfifo02/main.c, spfifo02/test.c, spfifo03/main.c, spfifo03/test.c, spfifo04/main.c, spfifo04/test.c: Removed.
Diffstat (limited to 'testsuites/sptests/spfifo01/test.c')
-rw-r--r--testsuites/sptests/spfifo01/test.c73
1 files changed, 0 insertions, 73 deletions
diff --git a/testsuites/sptests/spfifo01/test.c b/testsuites/sptests/spfifo01/test.c
deleted file mode 100644
index 4f9ffbc226..0000000000
--- a/testsuites/sptests/spfifo01/test.c
+++ /dev/null
@@ -1,73 +0,0 @@
-/* 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 <stdio.h>
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <fcntl.h>
-#include <unistd.h>
-#include <errno.h>
-
-#include <tmacros.h>
-#include <rtems.h>
-#include <rtems/libio.h>
-
-
-void test_main(void)
-{
-
- int status = -1;
- int fd = 0;
-
- puts("\n\n*** FIFO / PIPE OPEN TEST - 1 ***");
- puts(
-"\n\nConfiguration: Pipes not enabled"
- );
-
- 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 \
-pipes are not enabled in the configuration"
- );
-
- 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 - 1 ***");
-}
-