summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/spfifo02/test.c
blob: 8cb6cec29d77699fb3823656ee6e3e457476cb4f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*  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 - 2 ***");
  puts(
"\n\nConfiguration: Pipes configured, \
but number of barriers configured = 0"
       );

  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 = 0 => 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 - 2 ***");
}