Skip to content

Commit

Permalink
Removed test: test_df::test_output_mp_repeat, because it only passes …
Browse files Browse the repository at this point in the history
…for Linux
  • Loading branch information
crazystylus committed Feb 27, 2022
1 parent f9aa870 commit b92fa2c
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions tests/by-util/test_df.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,17 +58,6 @@ fn test_order_same() {
assert_eq!(output1, output2);
}

/// Test of mount point begin repeated
#[test]
fn test_output_mp_repeat() {
let output1 = new_ucmd!().arg("/").arg("/").succeeds().stdout_move_str();
let output1: Vec<String> = output1
.lines()
.map(|l| String::from(l.split_once(' ').unwrap().0))
.collect();
assert_eq!(3, output1.len());
assert_eq!(output1[1], output1[2]);
}
#[test]
fn test_output_conflict_options() {
for option in ["-i", "-T", "-P"] {
Expand Down

0 comments on commit b92fa2c

Please sign in to comment.