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/testcases | |
parent | 04052f96e1385405787356f0955afadd73d8f029 (diff) | |
download | busybox-fa43e54b6f662cb33043ff9d1d312558a6e54bc3.tar.gz |
Added support for grep -e and grep -f, closes bug #1164. Also added some
testcases for these new features.
Diffstat (limited to 'tests/testcases')
-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 # grep grep -l strdup ../*.c grep -c strdup ../*.c -# I swear, GNU grep seems broken for this next one grep -lc strdup ../*.c grep -cv strdup ../*.c +grep -i null ../grep.c +grep -e strdup -e regcomp -e atexit ../grep.c # gunzip |