aboutsummaryrefslogtreecommitdiffstats
path: root/t/null-bytes
blob: 9a7ee7fbc65af39cfa8681b026a0fc7176d8cfc1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh -e
. t/common.sh

(
	printf '%s\n' "${HEAD} ours"
	printf 'same\000text\n'
	printf '%s\n' "${TAIL}"
	printf 'same\000text\n'
	printf '%s\n' "${END} theirs"
) > file

printf 'same\000text\n' > file.expected

"$command" --reduce file
cmp -s -- file file.expected