diff options
author | Mark Whitley <markw@lineo.com> | 2001-05-24 18:36:18 +0000 |
---|---|---|
committer | Mark Whitley <markw@lineo.com> | 2001-05-24 18:36:18 +0000 |
commit | fa43e54b6f662cb33043ff9d1d312558a6e54bc3 (patch) | |
tree | 90ca0d16a760c8d71afd5610f90c9d69fe46d507 /tests | |
parent | 04052f96e1385405787356f0955afadd73d8f029 (diff) | |
download | busybox-w32-fa43e54b6f662cb33043ff9d1d312558a6e54bc3.tar.gz busybox-w32-fa43e54b6f662cb33043ff9d1d312558a6e54bc3.tar.bz2 busybox-w32-fa43e54b6f662cb33043ff9d1d312558a6e54bc3.zip |
Added support for grep -e and grep -f, closes bug #1164. Also added some
testcases for these new features.
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 | ||