888651fcd9
tftpd(8) is difficult to test in isolation due to its relationship with inetd. Create a test program that mimics the behavior of tftp(1) and inetd(8) and verifies tftpd's response in several different scenarios. These test cases cover all of the basic TFTP protocol, but not the optional parts. PR: 157700 PR: 225996 PR: 226004 PR: 226005 MFC after: 3 weeks Differential Revision: https://reviews.freebsd.org/D14310
15 lines
263 B
Makefile
15 lines
263 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
# Skip on GCC 4.2, because it lacks __COUNTER__
|
|
.if ${COMPILER_TYPE} != "gcc" || ${COMPILER_VERSION} >= 40300
|
|
ATF_TESTS_C= functional
|
|
TEST_METADATA.functional+= timeout=15
|
|
.endif
|
|
|
|
LIBADD= util
|
|
WARNS?= 6
|
|
|
|
.include <bsd.test.mk>
|