Tizen 2.0 Release
[external/tizen-coreutils.git] / tests / misc / expand
1 #!/bin/sh
2 # -*- perl -*-
3 # Exercise expand.
4
5 # Copyright (C) 2004, 2005, 2006 Free Software Foundation, Inc.
6
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
11
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
20 # 02110-1301, USA.
21
22 : ${PERL=perl}
23 : ${srcdir=.}
24
25 $PERL -e 1 > /dev/null 2>&1 || {
26   echo 1>&2 "$0: configure didn't find a usable version of Perl," \
27     "so can't run this test"
28   exit 77
29 }
30
31 exec $PERL -w -I$srcdir/.. -MCoreutils -- - <<\EOF
32 #/
33 require 5.003;
34 use strict;
35
36 (my $program_name = $0) =~ s|.*/||;
37
38 # Turn off localization of executable's ouput.
39 @ENV{qw(LANGUAGE LANG LC_ALL)} = ('C') x 3;
40
41 my @Tests =
42   (
43    ['t1', '--tabs=3',     {IN=>"a\tb"}, {OUT=>"a  b"}],
44    ['t2', '--tabs=3,6,9', {IN=>"a\tb\tc\td\te"}, {OUT=>"a  b  c  d e"}],
45    ['i1', '--tabs=3 -i', {IN=>"\ta\tb"}, {OUT=>"   a\tb"}],
46   );
47
48 my $save_temps = $ENV{DEBUG};
49 my $verbose = $ENV{VERBOSE};
50
51 my $prog = $ENV{PROG} || die "$0: \$PROG not specified in environment\n";
52 my $fail = run_tests ($program_name, $prog, \@Tests, $save_temps, $verbose);
53 exit $fail;
54 EOF