7506 epoll_create1 should toss EINVAL for invalid flags
[unleashed.git] / usr / src / test / os-tests / tests / poll / Makefile
blob14cc28b056b7e0ba9a953971b94e2aff6de915e7
2 # This file and its contents are supplied under the terms of the
3 # Common Development and Distribution License ("CDDL"), version 1.0.
4 # You may only use this file in accordance with the terms of version
5 # 1.0 of the CDDL.
7 # A full copy of the text of the CDDL should have accompanied this
8 # source. A copy of the CDDL is also available via the Internet at
9 # http://www.illumos.org/license/CDDL.
13 # Copyright (c) 2012 by Delphix. All rights reserved.
14 # Copyright 2016 Joyent, Inc.
17 include $(SRC)/cmd/Makefile.cmd
18 include $(SRC)/test/Makefile.com
20 PROG = poll_test epoll_test
21 OBJS = $(PROG:%=%.o)
22 SRCS = $(OBJS:%.o=%.c)
24 poll_test := LDLIBS += -lsocket
25 poll_test.ln := LDLIBS += -lsocket
26 C99MODE = -xc99=%all
28 ROOTOPTPKG = $(ROOT)/opt/os-tests
29 TESTDIR = $(ROOTOPTPKG)/tests
31 CMDS = $(PROG:%=$(TESTDIR)/%)
32 $(CMDS) := FILEMODE = 0555
34 LINTS = $(PROG:%=%.ln)
36 all: $(PROG)
38 install: all $(CMDS)
40 lint: $(LINTS)
42 clobber: clean
43 -$(RM) $(PROG)
45 clean:
46 -$(RM) $(OBJS)
48 %.ln: %.c
49 $(LINT.c) $< $(UTILS) $(LDLIBS)
51 $(CMDS): $(TESTDIR) $(PROG)
53 $(TESTDIR):
54 $(INS.dir)
56 $(TESTDIR)/%: %
57 $(INS.file)