From 106ba4b77ddc6a9db55e01b8880edce15ebd3c1e Mon Sep 17 00:00:00 2001 From: Hanif Bin Ariffin Date: Sun, 1 Aug 2021 06:43:35 +0800 Subject: [PATCH] Added one last missing test Signed-off-by: Hanif Bin Ariffin --- tests/by-util/test_tr.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/by-util/test_tr.rs b/tests/by-util/test_tr.rs index 645a777d0..5bc4f065b 100644 --- a/tests/by-util/test_tr.rs +++ b/tests/by-util/test_tr.rs @@ -1094,4 +1094,9 @@ fn check_against_gnu_tr_tests_fowler_1() { fn check_against_gnu_tr_tests_no_abort_1() { // # Up to coreutils-6.9, this would provoke a failed assertion. // ['no-abort-1', qw(-c a '[b*256]'), {IN=>'abc'}, {OUT=>'abb'}], + new_ucmd!() + .args(&["-c", "a", "[b*256]"]) + .pipe_in("abc") + .succeeds() + .stdout_is("abb"); }