blob: c0f3504b1ccbfea90c2d3cb010192460316725be (
plain)
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
|
# $OpenBSD: Makefile,v 1.22 2000/10/12 00:55:21 brad Exp $
# Copyright (c) 1993 Chris Provenzano, proven@athena.mit.edu
LIBC_R?= /usr/lib/libc_r.a
LIBPTHREAD?= /usr/lib/libpthread.a
.if 1 # ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "sparc"
PTHREAD= -lpthread
DPADD += ${LIBPTHREAD}
.else
PTHREAD= -pthread
DPADD += ${LIBC_R}
.endif
CFLAGS += -Wall # -Werror
DEBUG = -ggdb
CFLAGS += -DSRCDIR='"${.CURDIR}"'
LDLIBS += ${PTHREAD} -lm ${LDSTATIC}
MKDEP = -p ${PTHREAD}
# This list used to include test_select, but that test doesn't terminate.
TESTS = test_create test_pthread_join test_switch test_sleep test_readdir \
test_fork test_execve test_preemption test_setjmp \
test_sock_1 test_sock_2 test_stdio_1 test_pthread_mutex \
test_pthread_cond_timedwait test_netdb test_cwd \
test_sock_2a test_cancel test_sigsuspend test_sigwait \
test_select test_poll test_signal test_stdarg test_close \
test_group
SRCS = ${TESTS:=.c}
CLEANFILES += ${TESTS}
SKIP_TESTS += test_sock_2a
all : tests
MAXTIME= 5
tests : ${TESTS}
@faillist= ; \
for i in ${.ALLSRC} ; do \
case " ${SKIP_TESTS} " in \
*" $$i "*) \
: skip ;; \
*) \
echo ; echo "*** $$i ***"; \
if (ulimit -t ${MAXTIME}; ${.OBJDIR}/$$i); then \
echo "-- $$i passed"; \
else \
echo "-- $$i FAILED (exit code $$?)" >&2; \
faillist="$$faillist $$i"; \
fi;; \
esac; \
done; \
if test -n "$$faillist"; then \
echo; echo "*** tests that failed:$$faillist" >&2; exit 1; \
else \
echo; echo "All tests passed OK."; exit 0; \
fi
.include <bsd.prog.mk>
.include <bsd.dep.mk>
|