mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-25 10:01:02 +01:00
90aea514c6
Remove ancient SCCS tags from the tree, automated scripting, with two minor fixup to keep things compiling. All the common forms in the tree were removed with a perl script. Sponsored by: Netflix
44 lines
1.2 KiB
Makefile
44 lines
1.2 KiB
Makefile
|
|
.include <src.opts.mk>
|
|
|
|
PACKAGE=runtime
|
|
PROG= dd
|
|
SRCS= args.c conv.c conv_tab.c dd.c misc.c position.c
|
|
LIBADD= util
|
|
|
|
#
|
|
# Test the character conversion functions. We have to be explicit about
|
|
# which LC_LANG we use because the definition of upper and lower case
|
|
# depends on it.
|
|
#
|
|
|
|
CLEANFILES= gen
|
|
|
|
test: ${PROG} gen
|
|
.for conv in ascii ebcdic ibm oldascii oldebcdic oldibm \
|
|
pareven parnone parodd parset \
|
|
swab lcase ucase
|
|
@${ECHO} testing conv=${conv}
|
|
@./gen | \
|
|
LC_ALL=en_US.US-ASCII ./dd conv=${conv} 2>/dev/null | \
|
|
LC_ALL=en_US.US-ASCII hexdump -C | \
|
|
diff -I FreeBSD - ${.CURDIR}/ref.${conv}
|
|
.endfor
|
|
@${ECHO} "testing sparse file (obs zeroes)"
|
|
@./gen 189284 | ./dd ibs=16 obs=8 conv=sparse of=obs_zeroes 2> /dev/null
|
|
@hexdump -C obs_zeroes | diff -I FreeBSD - ${.CURDIR}/ref.obs_zeroes
|
|
|
|
@${ECHO} "testing spase file (all zeroes)"
|
|
@./dd if=/dev/zero of=1M_zeroes bs=1048576 count=1 2> /dev/null
|
|
@./dd if=1M_zeroes of=1M_zeroes.1 bs=1048576 conv=sparse 2> /dev/null
|
|
@./dd if=1M_zeroes of=1M_zeroes.2 bs=1048576 2> /dev/null
|
|
@diff 1M_zeroes 1M_zeroes.1
|
|
@diff 1M_zeroes 1M_zeroes.2
|
|
|
|
@rm -f gen 1M_zeroes* obs_zeroes
|
|
|
|
HAS_TESTS=
|
|
SUBDIR.${MK_TESTS}+= tests
|
|
|
|
.include <bsd.prog.mk>
|