diff options
author | Rob Landley <rob@landley.net> | 2018-12-17 21:27:25 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2018-12-17 21:27:25 -0600 |
commit | 84e22115a55f82c84b43807a690ac5904c616317 (patch) | |
tree | f70f589915616cbc913483365eecd8291d2d0a36 /tests | |
parent | c1a22bbca751bc6ae7ffb8d7cfaf5100306e897b (diff) | |
download | toybox-84e22115a55f82c84b43807a690ac5904c616317.tar.gz |
A couple more grep tests, and slightly use dlist_terminate() for the loops.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/grep.test | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/grep.test b/tests/grep.test index 21cd8bbb..05288983 100644 --- a/tests/grep.test +++ b/tests/grep.test @@ -151,3 +151,6 @@ testing "explicit BRE |" "grep -e 'uno|dos'" "uno|dos\n" \ "" "uno\ndos\nuno|dos\n" testing "explicit ERE |" "grep -E 'uno|dos'" "uno\ndos\nuno|dos\n" \ "" "uno\ndos\nuno|dos\n" + +testing "" "grep -o -e iss -e ipp" "iss\niss\nipp\n" "" "mississippi" +testing "" "grep -o -e gum -e rgu" "rgu\n" "" "argument" |