Last change
on this file was 3529, checked in by bird, 3 years ago |
Imported grep 3.7 from grep-3.7.tar.gz (sha256: c22b0cf2d4f6bbe599c902387e8058990e1eee99aef333a203829e5fd3dbb342), applying minimal auto-props.
|
-
Property svn:executable
set to
*
|
File size:
446 bytes
|
Line | |
---|
1 | #!/bin/sh
|
---|
2 | # 0 lines of context
|
---|
3 | . "${srcdir=.}/init.sh"; path_prepend_ ../src
|
---|
4 |
|
---|
5 | cat <<EOF > in || framework_failure_
|
---|
6 | needle
|
---|
7 | 1st line of context
|
---|
8 | 2nd line of context
|
---|
9 | 3rd line of context
|
---|
10 | another needle
|
---|
11 | 5th line of context relative to first match
|
---|
12 | 6th line...
|
---|
13 | EOF
|
---|
14 |
|
---|
15 | cat <<EOF > exp || framework_failure_
|
---|
16 | needle
|
---|
17 | --
|
---|
18 | another needle
|
---|
19 | EOF
|
---|
20 |
|
---|
21 | fail=0
|
---|
22 | grep -C 0 needle in > out 2>err || fail=1
|
---|
23 |
|
---|
24 | compare exp out || fail=1
|
---|
25 | compare /dev/null err || fail=1
|
---|
26 |
|
---|
27 | Exit $fail
|
---|
Note:
See
TracBrowser
for help on using the repository browser.