Deleted Added
full compact
pipe_reverse2_test.c (228512) pipe_reverse2_test.c (290914)
1/*-
2 * Copyright (c) 2010 Jilles Tjoelker
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 9 unchanged lines hidden (view full) ---

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
1/*-
2 * Copyright (c) 2010 Jilles Tjoelker
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 9 unchanged lines hidden (view full) ---

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: head/tools/regression/pipe/pipe-reverse2.c 228512 2011-12-14 23:26:48Z jilles $
26 * $FreeBSD: head/tests/sys/kern/pipe/pipe_reverse2_test.c 290914 2015-11-16 05:38:40Z ngie $
27 */
28
27 */
28
29#include <sys/select.h>
29#include <sys/select.h>
30
30
31#include <err.h>
32#include <stdio.h>
33#include <unistd.h>
31#include <err.h>
32#include <stdio.h>
33#include <unistd.h>
34
35/*
36 * Check that pipes can be selected for writing in the reverse direction.
37 */
38int
34
35/*
36 * Check that pipes can be selected for writing in the reverse direction.
37 */
38int
39main(int argc, char *argv[])
39main(void)
40{
41 int pip[2];
42 fd_set set;
43 int n;
44
45 if (pipe(pip) == -1)
46 err(1, "FAIL: pipe");
47

--- 20 unchanged lines hidden ---
40{
41 int pip[2];
42 fd_set set;
43 int n;
44
45 if (pipe(pip) == -1)
46 err(1, "FAIL: pipe");
47

--- 20 unchanged lines hidden ---