summaryrefslogtreecommitdiff
path: root/tests/misc/cut
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2007-08-14 10:21:48 +0200
committerJim Meyering <jim@meyering.net>2007-09-15 08:40:38 +0200
commit7a6a30b8a2dea2a1b49d43ee9ab70880a0aa435a (patch)
treee61ff081a62c3c4a030aa792d8bc47bafa112f6f /tests/misc/cut
parent5c2f8101c52c775be38af0ee4656c3e91d1c289e (diff)
downloadcoreutils-7a6a30b8a2dea2a1b49d43ee9ab70880a0aa435a.tar.xz
Add support for parallel "make check" (in tests/misc, for now)
Diffstat (limited to 'tests/misc/cut')
-rwxr-xr-xtests/misc/cut6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/misc/cut b/tests/misc/cut
index 40ae2cb31..be2378250 100755
--- a/tests/misc/cut
+++ b/tests/misc/cut
@@ -36,10 +36,10 @@ use strict;
@ENV{qw(LANGUAGE LANG LC_ALL)} = ('C') x 3;
my $prog = 'cut';
-my $diag = <<EOF;
+my $diag = <<DIAG_EOF;
$prog: fields and positions are numbered from 1
Try \`cut --help' for more information.
-EOF
+DIAG_EOF
my @Tests =
(
@@ -60,4 +60,4 @@ my $verbose = $ENV{VERBOSE};
my $fail = run_tests ($ME, $prog, \@Tests, $save_temps, $verbose);
exit $fail;
-FILE_EOF
+EOF