]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - bin/dd/Makefile
MFC r368207,368607:
[FreeBSD/stable/10.git] / bin / dd / Makefile
1 #       @(#)Makefile    8.1 (Berkeley) 5/31/93
2 # $FreeBSD$
3
4 .include <bsd.own.mk>
5
6 PROG=   dd
7 SRCS=   args.c conv.c conv_tab.c dd.c misc.c position.c
8
9 #
10 # Test the character conversion functions.  We have to be explicit about
11 # which LC_LANG we use because the definition of upper and lower case
12 # depends on it.
13 #
14
15 CLEANFILES=     gen
16
17 test: ${PROG} gen
18 .for conv in ascii ebcdic ibm oldascii oldebcdic oldibm \
19     pareven parnone parodd parset \
20     swab lcase ucase
21         @${ECHO} testing conv=${conv}
22         @./gen | \
23             LC_ALL=en_US.US-ASCII ./dd conv=${conv} 2>/dev/null | \
24             LC_ALL=en_US.US-ASCII hexdump -C | \
25             diff -I FreeBSD - ${.CURDIR}/ref.${conv}
26 .endfor
27         @${ECHO} "testing sparse file (obs zeroes)"
28         @./gen 189284 | ./dd ibs=16 obs=8 conv=sparse of=obs_zeroes 2> /dev/null
29         @hexdump -C obs_zeroes | diff -I FreeBSD - ${.CURDIR}/ref.obs_zeroes
30
31         @${ECHO} "testing spase file (all zeroes)"
32         @./dd if=/dev/zero of=1M_zeroes bs=1048576 count=1 2> /dev/null
33         @./dd if=1M_zeroes of=1M_zeroes.1 bs=1048576 conv=sparse 2> /dev/null
34         @./dd if=1M_zeroes of=1M_zeroes.2 bs=1048576 2> /dev/null
35         @diff 1M_zeroes 1M_zeroes.1
36         @diff 1M_zeroes 1M_zeroes.2
37
38         @rm -f gen 1M_zeroes* obs_zeroes
39
40 .if ${MK_TESTS} != "no"
41 SUBDIR+=        tests
42 .endif
43
44 .include <bsd.prog.mk>