summaryrefslogtreecommitdiff
path: root/regress/lib/libc/getaddrinfo/Makefile
blob: 4d4978a6a2a45be5c73843829fdf92faedf6711c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#	$OpenBSD: Makefile,v 1.3 2002/09/02 20:01:43 avsm Exp $

PROG=		gaitest
SRCS=		gaitest.c
NOMAN=		# defined
CLEANFILES+=	out

REGRESS_TARGETS=do-test

do-test: ${PROG}
	sh ${.CURDIR}/testsuite.sh >out 2>&1
	@if diff -u out ${.CURDIR}/answer; then \
		echo SUCCESS; \
	else \
		echo FAIL; \
		exit 1; \
	fi

.include <bsd.regress.mk>