summaryrefslogtreecommitdiff
path: root/t/t7008-grep-binary.sh
blob: 9660842c446f78b4b35fa9162235753a85eeee9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/bin/sh
 
test_description='git grep in binary files'
 
. ./test-lib.sh
 
test_expect_success 'setup' "
	printf 'binary\000file\n' >a &&
	git add a &&
	git commit -m.
"
 
test_expect_success 'git grep ina a' '
	echo Binary file a matches >expect &&
	git grep ina a >actual &&
	test_cmp expect actual
'
 
test_expect_success 'git grep -ah ina a' '
	git grep -ah ina a >actual &&
	test_cmp a actual
'
 
test_expect_success 'git grep -I ina a' '
	: >expect &&
	test_must_fail git grep -I ina a >actual &&
	test_cmp expect actual
'
 
test_expect_success 'git grep -c ina a' '
	echo a:1 >expect &&
	git grep -c ina a >actual &&
	test_cmp expect actual
'
 
test_expect_success 'git grep -l ina a' '
	echo a >expect &&
	git grep -l ina a >actual &&
	test_cmp expect actual
'
 
test_expect_success 'git grep -L bar a' '
	echo a >expect &&
	git grep -L bar a >actual &&
	test_cmp expect actual
'
 
test_expect_success 'git grep -q ina a' '
	: >expect &&
	git grep -q ina a >actual &&
	test_cmp expect actual
'
 
test_expect_success 'git grep -F ile a' '
	git grep -F ile a
'
 
test_expect_success 'git grep -Fi iLE a' '
	git grep -Fi iLE a
'
 
test_done