diff options
-rwxr-xr-x | testsuite/grep.tests | 4 | ||||
-rwxr-xr-x | testsuite/runtest | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/testsuite/grep.tests b/testsuite/grep.tests index 64df19ced..8692307dd 100755 --- a/testsuite/grep.tests +++ b/testsuite/grep.tests | |||
@@ -62,11 +62,13 @@ testing "grep -s nofile - (stdin and nonexisting file, match)" \ | |||
62 | "grep -s domatch nonexistent - ; echo \$?" \ | 62 | "grep -s domatch nonexistent - ; echo \$?" \ |
63 | "(standard input):domatch\n2\n" "" "nomatch\ndomatch\nend\n" | 63 | "(standard input):domatch\n2\n" "" "nomatch\ndomatch\nend\n" |
64 | 64 | ||
65 | optional EXTRA_COMPAT | ||
65 | testing "grep handles NUL in files" "grep -a foo input" "\0foo\n" "\0foo\n\n" "" | 66 | testing "grep handles NUL in files" "grep -a foo input" "\0foo\n" "\0foo\n\n" "" |
66 | testing "grep handles NUL on stdin" "grep -a foo" "\0foo\n" "" "\0foo\n\n" | 67 | testing "grep handles NUL on stdin" "grep -a foo" "\0foo\n" "" "\0foo\n\n" |
67 | 68 | ||
68 | testing "grep matches NUL" "grep . input > /dev/null 2>&1 ; echo \$?" \ | 69 | testing "grep matches NUL" "grep . input > /dev/null 2>&1 ; echo \$?" \ |
69 | "0\n" "\0\n" "" | 70 | "0\n" "\0\n" "" |
71 | SKIP= | ||
70 | 72 | ||
71 | # -e regex | 73 | # -e regex |
72 | testing "grep handles multiple regexps" "grep -e one -e two input ; echo \$?" \ | 74 | testing "grep handles multiple regexps" "grep -e one -e two input ; echo \$?" \ |
@@ -84,11 +86,11 @@ testing "grep -E supports extended regexps" "grep -E fo+" "foo\n" "" \ | |||
84 | testing "grep is also egrep" "egrep foo" "foo\n" "" "foo\nbar\n" | 86 | testing "grep is also egrep" "egrep foo" "foo\n" "" "foo\nbar\n" |
85 | testing "egrep is not case insensitive" \ | 87 | testing "egrep is not case insensitive" \ |
86 | "egrep foo ; [ \$? -ne 0 ] && echo yes" "yes\n" "" "FOO\n" | 88 | "egrep foo ; [ \$? -ne 0 ] && echo yes" "yes\n" "" "FOO\n" |
87 | |||
88 | testing "grep -E -o prints all matches" \ | 89 | testing "grep -E -o prints all matches" \ |
89 | "grep -E -o '([[:xdigit:]]{2}[:-]){5}[[:xdigit:]]{2}'" \ | 90 | "grep -E -o '([[:xdigit:]]{2}[:-]){5}[[:xdigit:]]{2}'" \ |
90 | "00:19:3E:00:AA:5E\n00:1D:60:3D:3A:FB\n00:22:43:49:FB:AA\n" \ | 91 | "00:19:3E:00:AA:5E\n00:1D:60:3D:3A:FB\n00:22:43:49:FB:AA\n" \ |
91 | "" "00:19:3E:00:AA:5E 00:1D:60:3D:3A:FB 00:22:43:49:FB:AA\n" | 92 | "" "00:19:3E:00:AA:5E 00:1D:60:3D:3A:FB 00:22:43:49:FB:AA\n" |
93 | SKIP= | ||
92 | 94 | ||
93 | testing "grep -o does not loop forever" \ | 95 | testing "grep -o does not loop forever" \ |
94 | 'grep -o "[^/]*$"' \ | 96 | 'grep -o "[^/]*$"' \ |
diff --git a/testsuite/runtest b/testsuite/runtest index 5c185c5fb..5ddf07d09 100755 --- a/testsuite/runtest +++ b/testsuite/runtest | |||
@@ -128,7 +128,7 @@ done | |||
128 | export OPTIONFLAGS=:$( | 128 | export OPTIONFLAGS=:$( |
129 | sed -nr 's/^CONFIG_//p' "$bindir/.config" | | 129 | sed -nr 's/^CONFIG_//p' "$bindir/.config" | |
130 | sed 's/=.*//' | xargs | sed 's/ /:/g' | 130 | sed 's/=.*//' | xargs | sed 's/ /:/g' |
131 | ) | 131 | ): |
132 | 132 | ||
133 | status=0 | 133 | status=0 |
134 | for applet in $applets; do | 134 | for applet in $applets; do |