summaryrefslogtreecommitdiff
path: root/testsuite
diff options
context:
space:
mode:
authorDenys Vlasenko2018-03-29 18:03:50 +0200
committerDenys Vlasenko2018-04-01 13:04:11 +0200
commitaf874cc63e75f9c3b6f6715727a3a3e92a3b686f (patch)
tree3f546a6986c8d2c646c7761bd7424c45aad4f99b /testsuite
parentb1aa377a3f23e5e547cd142bb82a81b811c788a2 (diff)
downloadbusybox-af874cc63e75f9c3b6f6715727a3a3e92a3b686f.zip
busybox-af874cc63e75f9c3b6f6715727a3a3e92a3b686f.tar.gz
grep: fix echo "aa" | busybox grep -F -w "a" (should not match)
function old new delta grep_file 1461 1470 +9 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'testsuite')
-rwxr-xr-xtestsuite/grep.tests6
1 files changed, 6 insertions, 0 deletions
diff --git a/testsuite/grep.tests b/testsuite/grep.tests
index ed4ba45..d0b0d27 100755
--- a/testsuite/grep.tests
+++ b/testsuite/grep.tests
@@ -165,6 +165,12 @@ testing "grep -w word doesn't match wordword" \
"wordword\n" \
""
+testing "grep -F -w w doesn't match ww" \
+ "grep -F -w w input" \
+ "" \
+ "ww\n" \
+ ""
+
testing "grep -w word match second word" \
"grep -w word input" \
"bword,word\n""wordb,word\n""bwordb,word\n" \