diff options
author | Eric Blake <ebb9@byu.net> | 2010-01-01 07:39:29 -0700 |
---|---|---|
committer | Eric Blake <ebb9@byu.net> | 2010-01-01 13:41:46 -0700 |
commit | b7f2b51c42edabd516c5ecc748a654da736c912c (patch) | |
tree | 75db10733b43f2bb3c46abc58b3384e77191f8af /tests/misc | |
parent | 84db964925680c912c601f616d4ab07f7bc19c3c (diff) | |
download | coreutils-b7f2b51c42edabd516c5ecc748a654da736c912c.tar.xz |
ls: fix color of broken symlinks colored as target
* src/ls.c (print_color_indicator): When using 'LINK target' in
dircolors, treat broken symlink as C_ORPHAN.
* tests/misc/ls-misc (sl-dangle2, sl-dangle3, sl-dangle4)
(sl-dangle5): Test for it, and add more coverage.
* NEWS: Document it.
* THANKS: Update.
Reported by Chris Jones.
Diffstat (limited to 'tests/misc')
-rwxr-xr-x | tests/misc/ls-misc | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/tests/misc/ls-misc b/tests/misc/ls-misc index a0774829a..27de57c79 100755 --- a/tests/misc/ls-misc +++ b/tests/misc/ls-misc @@ -185,6 +185,44 @@ my @Tests = restore_ls_colors; }}, ], + # Test for a bug fixed after coreutils-8.2. + ['sl-dangle2', '-o --color=always l', + {OUT_SUBST => 's/.*[0-9][0-9]:[0-9][0-9] //'}, + {OUT => "l -> nowhere\n"}, + {PRE => sub {symlink 'nowhere', 'l' or die "l: $!\n"; + push_ls_colors('ln=target') + }}, + {POST => sub {unlink 'l' or die "l: $!\n"; + restore_ls_colors; }}, + ], + ['sl-dangle3', '-o --color=always l', + {OUT_SUBST => 's/.*[0-9][0-9]:[0-9][0-9] //'}, + {OUT => "$e\e[40ml$e -> \e[34mnowhere$e\n\e[m"}, + {PRE => sub {symlink 'nowhere', 'l' or die "l: $!\n"; + push_ls_colors('ln=target:or=40:mi=34:') + }}, + {POST => sub {unlink 'l' or die "l: $!\n"; + restore_ls_colors; }}, + ], + ['sl-dangle4', '-o --color=always l', + {OUT_SUBST => 's/.*[0-9][0-9]:[0-9][0-9] //'}, + {OUT => "$e\e[36ml$e -> \e[35mnowhere$e\n\e[m"}, + {PRE => sub {symlink 'nowhere', 'l' or die "l: $!\n"; + push_ls_colors('ln=34:mi=35:or=36:') + }}, + {POST => sub {unlink 'l' or die "l: $!\n"; + restore_ls_colors; }}, + ], + ['sl-dangle5', '-o --color=always l', + {OUT_SUBST => 's/.*[0-9][0-9]:[0-9][0-9] //'}, + {OUT => "$e\e[34ml$e -> \e[35mnowhere$e\n\e[m"}, + {PRE => sub {symlink 'nowhere', 'l' or die "l: $!\n"; + push_ls_colors('ln=34:mi=35:') + }}, + {POST => sub {unlink 'l' or die "l: $!\n"; + restore_ls_colors; }}, + ], + # Test for a bug that was introduced in coreutils-4.5.4; fixed in 4.5.5. # To demonstrate it, the file in question (with executable bit set) # must not be a command line argument. |