freebsd-dev/tools/regression/bpf/bpf_filter/Makefile
Kyle Evans 7cc42f6d25 Do a sweep and remove most WARNS=6 settings
Repeating the default WARNS here makes it slightly more difficult to
experiment with default WARNS changes, e.g. if we did something absolutely
bananas and introduced a WARNS=7 and wanted to try lifting the default to
that.

Drop most of them; there is one in the blake2 kernel module, but I suspect
it should be dropped -- the default WARNS in the rest of the build doesn't
currently apply to kernel modules, and I haven't put too much thought into
whether it makes sense to make it so.
2020-10-01 01:10:51 +00:00

79 lines
2.0 KiB
Makefile

# $FreeBSD$
TEST_CASES?= test0001 test0002 test0003 test0004 \
test0005 test0006 test0007 test0008 \
test0009 test0010 test0011 test0012 \
test0013 test0014 test0015 test0016 \
test0017 test0018 test0019 test0020 \
test0021 test0022 test0023 test0024 \
test0025 test0026 test0027 test0028 \
test0029 test0030 test0031 test0032 \
test0033 test0034 test0035 test0036 \
test0037 test0038 test0039 test0040 \
test0041 test0042 test0043 test0044 \
test0045 test0046 test0047 test0048 \
test0049 test0050 test0051 test0052 \
test0053 test0054 test0055 test0056 \
test0057 test0058 test0059 test0060 \
test0061 test0062 test0063 test0064 \
test0065 test0066 test0067 test0068 \
test0069 test0070 test0071 test0072 \
test0073 test0074 test0075 test0076 \
test0077 test0078 test0079 test0080 \
test0081 test0082 test0083 test0084 \
test0085 test0086 test0087 test0088 \
test0089 test0090 test0091
SYSDIR?= ${SRCTOP}/sys
SRCS= ${.CURDIR}/bpf_test.c
CFLAGS+= -g -I${SYSDIR} -I${.CURDIR}/tests
.if defined(BPF_BENCHMARK)
CFLAGS+= -DBPF_BENCHMARK -DLOG_LEVEL=0
.elif defined(LOG_LEVEL)
CFLAGS+= -DLOG_LEVEL="${LOG_LEVEL}"
.endif
.if defined(BPF_VALIDATE)
CFLAGS+= -DBPF_VALIDATE
.endif
.if defined(BPF_JIT) && \
(${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "i386")
SRCS+= ${SYSDIR}/net/bpf_jitter.c \
${SYSDIR}/${MACHINE_ARCH}/${MACHINE_ARCH}/bpf_jit_machdep.c
CFLAGS+= -DBPF_JIT_COMPILER
LIBS+= -lutil
.else
SRCS+= ${SYSDIR}/net/bpf_filter.c
WARNS?= 2
.endif
.for TEST in ${TEST_CASES}
${TEST}: ${.CURDIR}/tests/${TEST}.h ${SRCS}
@${CC} ${CFLAGS} -DBPF_TEST_H=\"${TEST}.h\" \
-o ${.CURDIR}/${TEST} ${SRCS} ${LIBS}
.endfor
all: ${TEST_CASES}
.for TEST in ${TEST_CASES}
.if defined(BPF_BENCHMARK) || !defined(LOG_LEVEL) || (${LOG_LEVEL} > 0)
@${ECHO} -n "${TEST}: "
.endif
.if defined(BPF_BENCHMARK)
@-time ${.CURDIR}/${TEST}
.else
@-env MALLOC_OPTIONS=J ${.CURDIR}/${TEST}
.endif
@rm -f ${.CURDIR}/${TEST}
.endfor
clean:
.for TEST in ${TEST_CASES}
@rm -f ${.CURDIR}/${TEST}
.endfor
.include <bsd.prog.mk>