File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
crates/bashkit/tests/spec_cases/bash Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -127,6 +127,7 @@ exit: 1
127127# Redirect stderr content to file and verify it
128128sleep abc 2> /tmp/sleep_err.txt
129129cat /tmp/sleep_err.txt
130+ # ## bash_diff: bashkit sleep error lacks --help hint from coreutils
130131# ## expect
131132sleep: invalid time interval ' abc'
132133# ## end
159160# ## redirect_stderr_append_content
160161# Append stderr from multiple commands
161162sleep abc 2> /tmp/err_multi.txt; sleep xyz 2>> /tmp/err_multi.txt; cat /tmp/err_multi.txt
163+ # ## bash_diff: bashkit sleep error lacks --help hint from coreutils
162164# ## expect
163165sleep: invalid time interval ' abc'
164166sleep: invalid time interval ' xyz'
Original file line number Diff line number Diff line change @@ -57,6 +57,7 @@ exit: 1
5757# ## sleep_stderr_to_file
5858# Redirect sleep error message to file
5959sleep abc 2> /tmp/sleep_err.txt; cat /tmp/sleep_err.txt
60+ # ## bash_diff: bashkit sleep error lacks --help hint from coreutils
6061# ## expect
6162sleep: invalid time interval ' abc'
6263# ## end
@@ -65,6 +66,7 @@ sleep: invalid time interval 'abc'
6566# Append stderr from multiple sleep errors
6667sleep abc 2> /tmp/sleep_errs.txt; sleep xyz 2>> /tmp/sleep_errs.txt
6768cat /tmp/sleep_errs.txt
69+ # ## bash_diff: bashkit sleep error lacks --help hint from coreutils
6870# ## expect
6971sleep: invalid time interval ' abc'
7072sleep: invalid time interval ' xyz'
You can’t perform that action at this time.
0 commit comments