From: Jim Meyering Date: Mon, 30 Sep 1996 02:57:28 +0000 (+0000) Subject: use exp_name in msg when open EXP fails. X-Git-Tag: TEXTUTILS-1_19h~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b394529747e867386f7ddb80b602702ce0391a3f;p=thirdparty%2Fcoreutils.git use exp_name in msg when open EXP fails. --- diff --git a/tests/sort/build-script.pl b/tests/sort/build-script.pl index d7474f5a94..7df033cbc0 100644 --- a/tests/sort/build-script.pl +++ b/tests/sort/build-script.pl @@ -43,7 +43,7 @@ foreach $test_vector (@Test::t) open (IN, ">$in") || die "$0: $in: $!\n"; print IN $input; close (IN) || die "$0: $in: $!\n"; - open (EXP, ">$exp_name") || die "$0: $in: $!\n"; + open (EXP, ">$exp_name") || die "$0: $exp_name: $!\n"; print EXP $expected; close (EXP) || die "$0: $exp_name: $!\n"; my $err_output = "t$test_name.err";