tac: avoid segfault for e.g., "echo > x; tac -r x x"
[platform/upstream/coreutils.git] / tests / misc / tac
1 #!/bin/sh
2 # -*- perl -*-
3
4 # Copyright (C) 2008 Free Software Foundation, Inc.
5
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
19 : ${top_srcdir=../..}
20 . $top_srcdir/tests/require-perl
21
22 me=`echo $0|sed 's,.*/,,'`
23 exec $PERL -w -I$top_srcdir/tests -MCoreutils -M"CuTmpdir qw($me)" -- - <<\EOF
24 require 5.003;
25 use strict;
26
27 my $prog = 'tac';
28
29 # Turn off localization of executable's output.
30 @ENV{qw(LANGUAGE LANG LC_ALL)} = ('C') x 3;
31
32 my @Tests =
33 (
34   ['segfault', '-r', {IN=>"a\n"}, {IN=>"b\n"}, {OUT=>"a\nb\n"}],
35   ['segfault2','-r', {IN=>"a\nb\n"}, {IN=>"1\n2\n"}, {OUT=>"b\na\n2\n1\n"}],
36 );
37
38 # @Tests = triple_test \@Tests;
39
40 my $save_temps = $ENV{DEBUG};
41 my $verbose = $ENV{VERBOSE};
42
43 my $fail = run_tests ($prog, $prog, \@Tests, $save_temps, $verbose);
44 exit $fail;
45 EOF