9086e0e068
Verify the following additional cases: - -s (in isolation, in addition to the -se testcase obtained via the NetBSD test). - -vt Submitted by: shivansh Reviewed by: asomers (earlier diff), ngie MFC after: 1 month Sponsored by: Google, Inc (GSoC 2017) Differential Revision: D11020
25 lines
566 B
Makefile
25 lines
566 B
Makefile
# $FreeBSD$
|
|
|
|
PACKAGE= tests
|
|
|
|
NETBSD_ATF_TESTS_SH= cat_test
|
|
|
|
${PACKAGE}FILES+= d_align.in
|
|
${PACKAGE}FILES+= d_align.out
|
|
${PACKAGE}FILES+= d_se_output.in
|
|
${PACKAGE}FILES+= d_se_output.out
|
|
${PACKAGE}FILES+= d_s_output.in
|
|
${PACKAGE}FILES+= d_s_output.out
|
|
${PACKAGE}FILES+= d_vt_output.in
|
|
${PACKAGE}FILES+= d_vt_output.out
|
|
|
|
.include <netbsd-tests.test.mk>
|
|
|
|
d_align.out: ${TESTSRC}/d_align.out
|
|
sed -E -e 's,^[[:space:]]{7}\$$$$,\$$,' < ${.ALLSRC} > ${.TARGET}.tmp
|
|
mv ${.TARGET}.tmp ${.TARGET}
|
|
|
|
CLEANFILES+= d_align.out d_align.out.tmp
|
|
|
|
.include <bsd.test.mk>
|