mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-04-21 03:12:48 +02:00
When mkstemp fails, the template buffer may have undefined contents, so we must not print it. * src/sort.c (create_temp_file): Use temp_dir, not "file" when diagnosing failed mkstemp, because "file" may be undefined. * tests/misc/sort-merge: Adjust for new expected output. Jeph Cowan and Ralf Wildenhues reported the test failure: http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/14235/focus=14257 * src/tac.c (copy_to_temp): Don't use template buffer after failed mkstemp call, since its contents may be undefined. * tests/misc/tac (pipe-bad-tmpdir): New test for the above. * src/mktemp.c (main): Save a copy of the template string, solely for use in case mkstemp fails. * tests/misc/mktemp (pipe-bad-tmpdir): New test for the above.
84 lines
2.9 KiB
Perl
Executable File
84 lines
2.9 KiB
Perl
Executable File
#!/usr/bin/perl
|
|
# Test "sort -m".
|
|
|
|
# Copyright (C) 2002, 2003, 2005-2008 Free Software Foundation, Inc.
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
use strict;
|
|
|
|
(my $program_name = $0) =~ s|.*/||;
|
|
my $prog = 'sort';
|
|
|
|
# Turn off localization of executable's output.
|
|
@ENV{qw(LANGUAGE LANG LC_ALL)} = ('C') x 3;
|
|
|
|
# three empty files and one that says 'foo'
|
|
my @inputs = (+(map{{IN=> {"empty$_"=> ''}}}1..3), {IN=> {foo=> "foo\n"}});
|
|
|
|
my $big_input = "aaa\n" x 1024;
|
|
|
|
# don't need to check for existence, since we're running in a temp dir
|
|
my $badtmp = 'does/not/exist';
|
|
|
|
# 2^64+1
|
|
my $bigint = "18446744073709551617";
|
|
|
|
my @Tests =
|
|
(
|
|
['m1', '-m', @inputs, {OUT=>"foo\n"}],
|
|
|
|
# check validation of --batch-size option
|
|
['nmerge-0', "-m --batch-size=0", @inputs,
|
|
{ERR=>"$prog: invalid --batch-size argument `0'\n".
|
|
"$prog: minimum --batch-size argument is `2'\n"}, {EXIT=>2}],
|
|
|
|
['nmerge-1', "-m --batch-size=1", @inputs,
|
|
{ERR=>"$prog: invalid --batch-size argument `1'\n".
|
|
"$prog: minimum --batch-size argument is `2'\n"}, {EXIT=>2}],
|
|
|
|
['nmerge-neg', "-m --batch-size=-1", @inputs,
|
|
{ERR=>"$prog: invalid --batch-size argument `-1'\n"}, {EXIT=>2}],
|
|
|
|
['nmerge-nan', "-m --batch-size=a", @inputs,
|
|
{ERR=>"$prog: invalid --batch-size argument `a'\n"}, {EXIT=>2}],
|
|
|
|
['nmerge-big', "-m --batch-size=$bigint", @inputs,
|
|
{ERR_SUBST=>'s/(current rlimit is) \d+/$1/'},
|
|
{ERR=>"$prog: --batch-size argument `$bigint' too large\n".
|
|
"$prog: maximum --batch-size argument with current rlimit is\n"},
|
|
{EXIT=>2}],
|
|
|
|
# This should work since nmerge >= the number of input files
|
|
['nmerge-yes', "-m --batch-size=4 -T$badtmp", @inputs, {OUT=>"foo\n"}],
|
|
|
|
# this should fail since nmerge < # of input files, so
|
|
# temp files are needed
|
|
['nmerge-no', "-m --batch-size=2 -T$badtmp", @inputs,
|
|
{ERR_SUBST=>"s|': .*|':|"},
|
|
{ERR=>"$prog: cannot create temporary file in `$badtmp':\n"},
|
|
{EXIT=>2}],
|
|
|
|
# This used to fail because setting batch-size without also setting
|
|
# buffer size would cause the buffer size to be set to the minimum.
|
|
['batch-size', "--batch-size=16 -T$badtmp", {IN=> {big=> $big_input}},
|
|
{OUT=>$big_input}],
|
|
);
|
|
|
|
my $save_temps = $ENV{DEBUG};
|
|
my $verbose = $ENV{VERBOSE};
|
|
|
|
my $fail = run_tests ($program_name, $prog, \@Tests, $save_temps, $verbose);
|
|
exit $fail;
|