478290db20
Sources were obtained like so: % export CVSROOT="anoncvs@anoncvs.NetBSD.org:/cvsroot" % cvs -z9 co -D "09/30/2014 20:45" -P src/tests % mv src/tests/* tests/dist/. '*CVS*' has been added to svn:ignore to ease updating periodically from upstream Some line ending issues had to be resolved with test outputs and scripts via dos2unix and by deleting the eol-style property set in usr.bin/sort Discussed with: rpaulo Sponsored by: EMC / Isilon Storage Division
22 lines
414 B
Makefile
22 lines
414 B
Makefile
# $NetBSD: Makefile,v 1.3 2012/05/07 08:51:47 wiz Exp $
|
|
|
|
NOMAN= # defined
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
TESTSDIR= ${TESTSBASE}/usr.bin/bzip2
|
|
|
|
TESTS_SH= t_bzip2
|
|
|
|
DIST= ${NETBSDSRCDIR}/external/bsd/bzip2/dist
|
|
.PATH: ${DIST}
|
|
|
|
FILESDIR= ${TESTSDIR}
|
|
.for f in sample1.bz2 sample1.ref sample2.bz2 sample2.ref \
|
|
sample3.bz2 sample3.ref
|
|
FILES+= ${f}
|
|
FILESNAME_${f}= d_${f}
|
|
.endfor
|
|
|
|
.include <bsd.test.mk>
|