d1e529d31c
Two new test programs, one for the version of printf in /bin/sh and one for the command /usr/bin/printf (t_builtin and t_command) Each test program has 28 test cases (the same in each) of which currently 27 pass, and 1 is skipped. See the test scripts themselves for more information.
19 lines
446 B
Makefile
19 lines
446 B
Makefile
# $NetBSD: Makefile,v 1.26 2018/09/05 21:05:40 kre Exp $
|
|
#
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
TESTSDIR= ${TESTSBASE}/usr.bin
|
|
|
|
TESTS_SUBDIRS= awk basename bzip2 cc cmp config cut \
|
|
diff dirname find gdb grep gzip id \
|
|
infocmp jot ld m4 make mixerctl mkdep nbperf netpgpverify \
|
|
pkill pr printf rump_server shmif_dumpbus sdiff \
|
|
sed sort tmux tr unifdef uniq vmstat xlint
|
|
|
|
.if ${MKCXX} != "no"
|
|
TESTS_SUBDIRS+= c++
|
|
.endif
|
|
|
|
.include <bsd.test.mk>
|