summaryrefslogtreecommitdiff
path: root/openbsd-compat
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2006-08-17 19:40:35 +1000
committerDarren Tucker <dtucker@zip.com.au>2006-08-17 19:40:35 +1000
commitc889ffdbc6329f21d2437b3c3d17eba0960969fc (patch)
treee359beed30d3dae81752e1eaa101c2e3caed8c5b /openbsd-compat
parent3083bc2b52fe00b5c5fe87dd3638969835dab0e8 (diff)
- (dtucker) [openbsd-compat/regress/{Makefile.in,closefromtest.c}] Regress
test for closefrom() in compat code.
Diffstat (limited to 'openbsd-compat')
-rw-r--r--openbsd-compat/regress/Makefile.in7
-rw-r--r--openbsd-compat/regress/closefromtest.c60
2 files changed, 65 insertions, 2 deletions
diff --git a/openbsd-compat/regress/Makefile.in b/openbsd-compat/regress/Makefile.in
index 51383a777..3a0a4c4da 100644
--- a/openbsd-compat/regress/Makefile.in
+++ b/openbsd-compat/regress/Makefile.in
@@ -1,4 +1,4 @@
1# $Id: Makefile.in,v 1.1 2006/02/19 11:50:20 dtucker Exp $ 1# $Id: Makefile.in,v 1.2 2006/08/17 09:40:35 dtucker Exp $
2 2
3sysconfdir=@sysconfdir@ 3sysconfdir=@sysconfdir@
4piddir=@piddir@ 4piddir=@piddir@
@@ -14,7 +14,7 @@ LIBS=@LIBS@
14LDFLAGS=-L.. -lopenbsd-compat @LDFLAGS@ 14LDFLAGS=-L.. -lopenbsd-compat @LDFLAGS@
15 15
16LIBCOMPAT=../libopenbsd-compat.a 16LIBCOMPAT=../libopenbsd-compat.a
17TESTPROGS=strtonumtest strduptest snprintftest 17TESTPROGS=closefromtest strtonumtest strduptest snprintftest
18 18
19all: t-exec ${OTHERTESTS} 19all: t-exec ${OTHERTESTS}
20 20
@@ -32,6 +32,9 @@ strtonumtest: strtonumtest.c $(LIBCOMPAT)
32strduptest: strduptest.c $(LIBCOMPAT) 32strduptest: strduptest.c $(LIBCOMPAT)
33 $(CC) $(CFLAGS) $(CPPFLAGS) -o strduptest $< $(LDFLAGS) 33 $(CC) $(CFLAGS) $(CPPFLAGS) -o strduptest $< $(LDFLAGS)
34 34
35closefromtest: closefromtest.c $(LIBCOMPAT)
36 $(CC) $(CFLAGS) $(CPPFLAGS) -o closefromtest $< $(LDFLAGS)
37
35clean: 38clean:
36 rm -f *.o *.a core $(TESTPROGS) valid.out 39 rm -f *.o *.a core $(TESTPROGS) valid.out
37 40
diff --git a/openbsd-compat/regress/closefromtest.c b/openbsd-compat/regress/closefromtest.c
new file mode 100644
index 000000000..feb1b567d
--- /dev/null
+++ b/openbsd-compat/regress/closefromtest.c
@@ -0,0 +1,60 @@
1/*
2 * Copyright (c) 2006 Darren Tucker
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
16
17#include <sys/types.h>
18#include <sys/stat.h>
19
20#include <fcntl.h>
21#include <stdio.h>
22#include <stdlib.h>
23#include <unistd.h>
24
25#define NUM_OPENS 10
26
27void
28fail(char *msg)
29{
30 fprintf(stderr, "closefrom: %s\n", msg);
31 exit(1);
32}
33
34int
35main(void)
36{
37 int i, max, fds[NUM_OPENS];
38 char buf[512];
39
40 for (i = 0; i < NUM_OPENS; i++)
41 if ((fds[i] = open("/dev/null", "r")) == -1)
42 exit(0); /* can't test */
43 max = i - 1;
44
45 /* should close last fd only */
46 closefrom(fds[max]);
47 if (close(fds[max]) != -1)
48 fail("failed to close highest fd");
49
50 /* make sure we can still use remaining descriptors */
51 for (i = 0; i < max; i++)
52 if (read(fds[i], buf, sizeof(buf)) == -1)
53 fail("closed descriptors it should not have");
54
55 /* should close all fds */
56 closefrom(fds[0]);
57 for (i = 0; i < NUM_OPENS; i++)
58 if (close(fds[i]) != -1)
59 fail("failed to close from lowest fd");
60}