Skip to content

Commit 61e0a80

Browse files
committed
Remove old pipefail tests, which are covered by new test suite
1 parent 9aa8698 commit 61e0a80

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

tests/test_macros.rs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -150,14 +150,6 @@ fn test_pipe() {
150150

151151
let wc_cmd = "wc";
152152
assert!(run_cmd!(ls | $wc_cmd).is_ok());
153-
154-
// test pipefail
155-
assert!(run_cmd!(false | true).is_err());
156-
assert!(run_fun!(false | true).is_err());
157-
assert!(run_fun!(ignore false | true).is_ok());
158-
set_pipefail(false);
159-
assert!(run_fun!(false | true).is_ok());
160-
set_pipefail(true);
161153
}
162154

163155
#[test]

0 commit comments

Comments
 (0)