diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2018-06-27 09:57:30 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2018-06-27 09:57:30 +0200 |
commit | 751005020d83e3626604d93c93c0e0ea6e0ef8e5 (patch) | |
tree | c3ae7ef88b5a4289167f3ce95fd260bcea938534 | |
parent | 57dbe4d5ac483f928b6e80b33993c8fd6a061aa7 (diff) | |
download | busybox-w32-751005020d83e3626604d93c93c0e0ea6e0ef8e5.tar.gz busybox-w32-751005020d83e3626604d93c93c0e0ea6e0ef8e5.tar.bz2 busybox-w32-751005020d83e3626604d93c93c0e0ea6e0ef8e5.zip |
testsuite/cat.tests: fix false positive
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rwxr-xr-x | testsuite/cat.tests | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/testsuite/cat.tests b/testsuite/cat.tests index 404ebedeb..10970dc90 100755 --- a/testsuite/cat.tests +++ b/testsuite/cat.tests | |||
@@ -6,16 +6,20 @@ | |||
6 | . ./testing.sh | 6 | . ./testing.sh |
7 | 7 | ||
8 | # testing "description" "command" "result" "infile" "stdin" | 8 | # testing "description" "command" "result" "infile" "stdin" |
9 | optional FEATURE_CATV | ||
9 | testing 'cat -e' \ | 10 | testing 'cat -e' \ |
10 | 'cat -e' \ | 11 | 'cat -e' \ |
11 | 'foo$\n' \ | 12 | 'foo$\n' \ |
12 | '' \ | 13 | '' \ |
13 | 'foo\n' | 14 | 'foo\n' |
15 | SKIP= | ||
14 | 16 | ||
17 | optional FEATURE_CATV | ||
15 | testing 'cat -v' \ | 18 | testing 'cat -v' \ |
16 | 'cat -v' \ | 19 | 'cat -v' \ |
17 | 'foo\n' \ | 20 | 'foo\n' \ |
18 | '' \ | 21 | '' \ |
19 | 'foo\n' | 22 | 'foo\n' |
23 | SKIP= | ||
20 | 24 | ||
21 | exit $FAILCOUNT | 25 | exit $FAILCOUNT |