blob: 12955c005995600aea3a16d20ec60ecf7c73335a (
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
|
#!/bin/sh
# Use of any --include or --exclude* option would segfault in 2.6 and 2.6.1
. "${srcdir=.}/init.sh"; path_prepend_ ../src
mkdir -p x/dir || framework_failure_
echo aaa > x/a || framework_failure_
echo bbb > x/b || framework_failure_
echo ddd > x/dir/d || framework_failure_
printf '%s\n' x/b:bbb x/dir/d:ddd > exp-not-a || framework_failure_
printf '%s\n' x/dir/d:ddd > exp-not-ab || framework_failure_
printf '%s\n' x/a:aaa x/b:bbb > exp-not-d || framework_failure_
printf '%s\n' x/a:aaa x/b:bbb > exp-not-dir || framework_failure_
printf '%s\n' x/a:aaa > exp-a || framework_failure_
printf '%s\n' aaa > exp-aaa || framework_failure_
grep -r --exclude='a*' . x > out || fail=1
sort out > k && mv k out
compare exp-not-a out || fail=1
grep -r --exclude='[ab]' . x > out || fail=1
sort out > k && mv k out
compare exp-not-ab out || fail=1
grep -r --exclude='*d' . x > out || fail=1
sort out > k && mv k out
compare exp-not-d out || fail=1
grep -r --exclude-dir=dir . x > out || fail=1
sort out > k && mv k out
compare exp-not-dir out || fail=1
# Test with a non-glob.
grep -r --include=a . x > out || fail=1
# no need to sort
compare exp-a out || fail=1
# Also test --include with a "glob".
grep -r --include='a*' . x > out || fail=1
# no need to sort
compare exp-a out || fail=1
# --include (without --recursive) uses different code
grep --include=a --exclude-dir=dir '^aaa$' x/* > out || fail=1
compare exp-a out || fail=1
grep --exclude=- '^aaa$' - < x/a > out || fail=1
compare exp-aaa out || fail=1
Exit $fail
|