ash: add bash-compatible EPOCH variables
[oweals/busybox.git] / 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