summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtests/dircolors/simple22
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/dircolors/simple b/tests/dircolors/simple
deleted file mode 100755
index 738913d3b..000000000
--- a/tests/dircolors/simple
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/usr/bin/perl -w
-require 5.003;
-use strict;
-
-(my $program_name = $0) =~ s|.*/||;
-
-# Turn off localisation of executable's ouput.
-@ENV{qw(LANGUAGE LANG LC_ALL)} = ('C') x 3;
-
-my @Tests =
- (
- ['a', {IN => {k => "exec\n"}},
- {ERR => "dircolors: k:1: invalid line; missing second token\n"},
- {EXIT => 1}],
- );
-
-my $save_temps = $ENV{DEBUG};
-my $verbose = $ENV{VERBOSE};
-
-my $prog = $ENV{PROG} || die "$0: \$PROG not specified in environment\n";
-my $fail = run_tests ($program_name, $prog, \@Tests, $save_temps, $verbose);
-exit $fail;