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:
416 bytes
|
Line | |
---|
1 | #!/bin/sh
|
---|
2 | # grep must ignore --devices=ACTION (-D) when reading stdin
|
---|
3 | # For grep-2.11, this test would fail.
|
---|
4 |
|
---|
5 | . "${srcdir=.}/init.sh"; path_prepend_ ../src
|
---|
6 |
|
---|
7 | # Test both with no file argument, and with "-".
|
---|
8 | echo foo | grep -D skip foo - || fail=1
|
---|
9 | echo foo | grep --devices=skip foo || fail=1
|
---|
10 |
|
---|
11 | require_timeout_
|
---|
12 | mkfifo myfifo || framework_failure_
|
---|
13 | timeout 10 grep -D skip foo myfifo
|
---|
14 | test $? -eq 1 || fail=1
|
---|
15 |
|
---|
16 | Exit $fail
|
---|
Note:
See
TracBrowser
for help on using the repository browser.