aboutsummaryrefslogtreecommitdiff
path: root/testsuite/grep.tests
diff options
context:
space:
mode:
authorIan Wienand <ianw@vmware.com>2010-04-30 09:32:10 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2010-04-30 09:32:10 +0200
commit0a2c793bd61540629d5686adb5afd2ada19d624f (patch)
treea40bb43c93cb08dddbe91363d3ae3a8ac63603f3 /testsuite/grep.tests
parentd2844fcb6862c080177aaf314cc98d03e65b05ac (diff)
downloadbusybox-0a2c793bd61540629d5686adb5afd2ada19d624f.tar.gz
grep: fix -Fi
function old new delta grep_file 1151 1169 +18 Signed-off-by: Ian Wienand <ianw@vmware.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'testsuite/grep.tests')
-rwxr-xr-xtestsuite/grep.tests2
1 files changed, 2 insertions, 0 deletions
diff --git a/testsuite/grep.tests b/testsuite/grep.tests
index 8692307dd..d4bf80d83 100755
--- a/testsuite/grep.tests
+++ b/testsuite/grep.tests
@@ -75,6 +75,8 @@ testing "grep handles multiple regexps" "grep -e one -e two input ; echo \$?" \
"one\ntwo\n0\n" "one\ntwo\n" ""
testing "grep -F handles multiple expessions" "grep -F -e one -e two input ; echo \$?" \
"one\ntwo\n0\n" "one\ntwo\n" ""
+testing "grep -F handles -i" "grep -F -i foo input ; echo \$?" \
+ "FOO\n0\n" "FOO\n" ""
# -f file/-
testing "grep can read regexps from stdin" "grep -f - input ; echo \$?" \