Skip to content

Commit

Permalink
Merge pull request #6737 from cakebaker/tr_enable_test_on_unix
Browse files Browse the repository at this point in the history
tr: enable ignored test on unix
  • Loading branch information
sylvestre authored Sep 25, 2024
2 parents 457f0ad + c6f2940 commit f24f8fd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/by-util/test_tr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1027,7 +1027,8 @@ fn check_against_gnu_tr_tests_bs_055() {
}

#[test]
#[ignore = "Failing in Windows because it will not separate '\' and 'x' as separate arguments"]
// Fails on Windows because it will not separate '\' and 'x' as separate arguments
#[cfg(unix)]
fn check_against_gnu_tr_tests_bs_at_end() {
// ['bs-at-end', qw('\\' x), {IN=>"\\"}, {OUT=>'x'},
// {ERR=>"$prog: warning: an unescaped backslash at end of "
Expand Down

0 comments on commit f24f8fd

Please sign in to comment.