aboutsummaryrefslogtreecommitdiff
path: root/testsuite/grep.tests
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-05-02 12:34:59 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-05-02 12:34:59 +0000
commit6da9b00f4fb54b3deba1c2636d69950fdbcc0d67 (patch)
tree320958772d2abfb6ce516bfca5cd4837e64b1c77 /testsuite/grep.tests
parent2dea01ca11b084641d912de8632c42df0d2734cd (diff)
downloadbusybox-6da9b00f4fb54b3deba1c2636d69950fdbcc0d67.tar.gz
fix grep test false positive
Diffstat (limited to 'testsuite/grep.tests')
-rwxr-xr-xtestsuite/grep.tests4
1 files changed, 3 insertions, 1 deletions
diff --git a/testsuite/grep.tests b/testsuite/grep.tests
index bb682dba4..4703ae50b 100755
--- a/testsuite/grep.tests
+++ b/testsuite/grep.tests
@@ -26,7 +26,9 @@ testing "grep - (specify stdin)" "grep two -" "two\n" "" \
testing "grep input (specify file)" "grep two input" "two\n" \
"one\ntwo\nthree\nthree\nthree\n" ""
-testing "grep (no newline at EOL)" "grep bug" "bug" "bug" ""
+# GNU grep (version?) outputs a new line character after the located string
+# even if there is no new line character in the input
+testing "grep (no newline at EOL)" "grep bug input" "bug\n" "bug" ""
>empty
testing "grep two files" "grep two input empty 2>/dev/null" \