Deleted Added
full compact
Makefile (264400) Makefile (290914)
1#
2# $FreeBSD: head/tools/regression/pipe/Makefile 264400 2014-04-13 05:21:56Z imp $
3#
4# "make" then "make regress".
5#
6PROG= bigpipetest
7MAN=
1# $FreeBSD: head/tests/sys/kern/pipe/Makefile 290914 2015-11-16 05:38:40Z ngie $
8
2
9regress:
10 @if ./bigpipetest; then \
11 echo "PASS"; \
12 else \
13 echo "FAIL"; \
14 fi
3TESTSDIR= ${TESTSBASE}/sys/kern/pipe
15
4
16.include <bsd.prog.mk>
5PLAIN_TESTS_C+= big_pipe_test
6PLAIN_TESTS_C+= pipe_fstat_bug_test
7PLAIN_TESTS_C+= pipe_ino_test
8PLAIN_TESTS_C+= pipe_overcommit1_test
9PLAIN_TESTS_C+= pipe_overcommit2_test
10PLAIN_TESTS_C+= pipe_reverse2_test
11PLAIN_TESTS_C+= pipe_reverse_test
12PLAIN_TESTS_C+= pipe_wraparound_test
13
14WARNS?= 6
15
16.include <bsd.test.mk>