busybox/testsuite/cat.tests
<<
>>
Prefs
   1#!/bin/sh
   2
   3# Copyright 2018 by Denys Vlasenko <vda.linux@googlemail.com>
   4# Licensed under GPLv2, see file LICENSE in this source tree.
   5
   6. ./testing.sh
   7
   8# testing "description" "command" "result" "infile" "stdin"
   9optional FEATURE_CATV
  10testing 'cat -e' \
  11        'cat -e' \
  12        'foo$\n' \
  13        '' \
  14        'foo\n'
  15SKIP=
  16
  17optional FEATURE_CATV
  18testing 'cat -v' \
  19        'cat -v' \
  20        'foo\n' \
  21        '' \
  22        'foo\n'
  23SKIP=
  24
  25exit $FAILCOUNT
  26