testsuite/cat.tests: fix false positive
authorDenys Vlasenko <vda.linux@googlemail.com>
Wed, 27 Jun 2018 07:57:30 +0000 (09:57 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Wed, 27 Jun 2018 07:57:30 +0000 (09:57 +0200)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
testsuite/cat.tests

index 404ebedeb06d16c143a326fe6df7f33eb43cbd37..10970dc9006f7b6cb48fd1f2e66d072fc1f9c23f 100755 (executable)
@@ -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