Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2018-06-27 10:57:30 +0300
committerDenys Vlasenko <vda.linux@googlemail.com>2018-06-27 10:57:30 +0300
commit751005020d83e3626604d93c93c0e0ea6e0ef8e5 (patch)
treec3ae7ef88b5a4289167f3ce95fd260bcea938534
parent57dbe4d5ac483f928b6e80b33993c8fd6a061aa7 (diff)
testsuite/cat.tests: fix false positive
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rwxr-xr-xtestsuite/cat.tests4
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 @@
. ./testing.sh
# testing "description" "command" "result" "infile" "stdin"
+optional FEATURE_CATV
testing 'cat -e' \
'cat -e' \
'foo$\n' \
'' \
'foo\n'
+SKIP=
+optional FEATURE_CATV
testing 'cat -v' \
'cat -v' \
'foo\n' \
'' \
'foo\n'
+SKIP=
exit $FAILCOUNT