2 * Copyright (c) 2007 Dag-Erling Coïdan Smørgrav
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer
10 * in this position and unchanged.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 #include <sys/cdefs.h>
31 __FBSDID("$FreeBSD$");
33 #include <sys/types.h>
34 #include <sys/fcntl.h>
46 * Test that flopen() can create a file.
49 test_flopen_create(void)
51 const char *fn
= "test_flopen_create";
52 const char *result
= NULL
;
56 fd
= flopen(fn
, O_RDWR
|O_CREAT
, 0640);
58 result
= strerror(errno
);
67 * Test that flopen() can open an existing file.
70 test_flopen_open(void)
72 const char *fn
= "test_flopen_open";
73 const char *result
= NULL
;
76 fd
= open(fn
, O_RDWR
|O_CREAT
, 0640);
78 result
= strerror(errno
);
81 fd
= flopen(fn
, O_RDWR
);
83 result
= strerror(errno
);
93 * Test that flopen() can lock against itself
96 test_flopen_lock_self(void)
98 const char *fn
= "test_flopen_lock";
99 const char *result
= NULL
;
103 fd1
= flopen(fn
, O_RDWR
|O_CREAT
, 0640);
105 result
= strerror(errno
);
107 fd2
= flopen(fn
, O_RDWR
|O_NONBLOCK
);
109 result
= "second open succeeded";
119 * Test that flopen() can lock against other processes
122 test_flopen_lock_other(void)
124 const char *fn
= "test_flopen_lock";
125 const char *result
= NULL
;
126 volatile int fd1
, fd2
;
129 fd1
= flopen(fn
, O_RDWR
|O_CREAT
, 0640);
131 result
= strerror(errno
);
135 fd2
= flopen(fn
, O_RDWR
|O_NONBLOCK
);
140 result
= "vfork() doesn't work as expected";
142 result
= "second open succeeded";
151 const char *(*func
)(void);
153 { "flopen_create", test_flopen_create
},
154 { "flopen_open", test_flopen_open
},
155 { "flopen_lock_self", test_flopen_lock_self
},
156 { "flopen_lock_other", test_flopen_lock_other
},
165 nt
= sizeof(t
) / sizeof(*t
);
166 printf("1..%d\n", nt
);
167 for (i
= 0; i
< nt
; ++i
) {
168 if ((result
= t
[i
].func()) != NULL
)
169 printf("not ok %d - %s # %s\n", i
+ 1,
172 printf("ok %d - %s\n", i
+ 1,