diff options
author | markw <markw@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-05-24 18:36:18 +0000 |
---|---|---|
committer | markw <markw@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-05-24 18:36:18 +0000 |
commit | 548bcaed6fce4b5b0165333c6a40c5dc7662c7ab (patch) | |
tree | 90ca0d16a760c8d71afd5610f90c9d69fe46d507 /tests | |
parent | 08ac9a4d394ad6433ec6a27b7a03c4e6d8dd10db (diff) | |
download | busybox-w32-548bcaed6fce4b5b0165333c6a40c5dc7662c7ab.tar.gz busybox-w32-548bcaed6fce4b5b0165333c6a40c5dc7662c7ab.tar.bz2 busybox-w32-548bcaed6fce4b5b0165333c6a40c5dc7662c7ab.zip |
Added support for grep -e and grep -f, closes bug #1164. Also added some
testcases for these new features.
git-svn-id: svn://busybox.net/trunk/busybox@2722 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'tests')
-rw-r--r-- | tests/testcases | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/testcases b/tests/testcases index 8f4e14765..41c1a08e1 100644 --- a/tests/testcases +++ b/tests/testcases | |||
@@ -150,9 +150,10 @@ free | |||
150 | # grep | 150 | # grep |
151 | grep -l strdup ../*.c | 151 | grep -l strdup ../*.c |
152 | grep -c strdup ../*.c | 152 | grep -c strdup ../*.c |
153 | # I swear, GNU grep seems broken for this next one | ||
154 | grep -lc strdup ../*.c | 153 | grep -lc strdup ../*.c |
155 | grep -cv strdup ../*.c | 154 | grep -cv strdup ../*.c |
155 | grep -i null ../grep.c | ||
156 | grep -e strdup -e regcomp -e atexit ../grep.c | ||
156 | 157 | ||
157 | # gunzip | 158 | # gunzip |
158 | 159 | ||