diff options
author | Pádraig Brady <P@draigBrady.com> | 2014-04-18 11:19:10 +0100 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2014-04-18 11:23:37 +0100 |
commit | 14613e2fd132a1e252849cd881706bca8428f9f9 (patch) | |
tree | f4942a5ae28a8d7f74ecae6b09b605c288a4e0f8 /tests/misc | |
parent | f6bcfef3d20c593bb4108d4b34c6873081930e00 (diff) | |
download | coreutils-14613e2fd132a1e252849cd881706bca8428f9f9.tar.xz |
tests: make ls tests independent of COLORTERM env
Since the recent commit v8.22-68-g08783f1, ls coloring
is now dependent on the COLORTERM environment variable.
* tests/envvar-check: Unset COLORTERM from test environment.
* tests/ls/color-dtype-dir.sh: Ensure coloring is used.
* tests/misc/ls-misc.pl: Likewise.
Prompted by the continuous integration build failure at:
http://hydra.nixos.org/build/10397646
Diffstat (limited to 'tests/misc')
-rwxr-xr-x | tests/misc/ls-misc.pl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/misc/ls-misc.pl b/tests/misc/ls-misc.pl index f562b72e6..a47e70b7a 100755 --- a/tests/misc/ls-misc.pl +++ b/tests/misc/ls-misc.pl @@ -303,9 +303,12 @@ my @Tests = . "\e[37;44msticky$e\n" }, + {PRE => sub { + push_ls_colors('ow=34;42:tw=30;42:sg=30;43:su=37;41:st=37;44'); }}, {POST => sub { unlink qw(setuid setgid); - foreach my $dir (qw(owr owt sticky)) {rmdir $dir} }}, + foreach my $dir (qw(owr owt sticky)) {rmdir $dir} + restore_ls_colors; }}, ], # For 5.97 and earlier, --file-type acted like --indicator-style=slash. |