mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-29 20:17:45 +00:00
Merge pull request #6204 from BenWiederhake/dev-dd-flaky-test-regex
dd: fix flaky test_null_stats
This commit is contained in:
commit
8b82fcd134
1 changed files with 1 additions and 1 deletions
|
@ -396,7 +396,7 @@ fn test_null_stats() {
|
||||||
.arg("if=null.txt")
|
.arg("if=null.txt")
|
||||||
.run()
|
.run()
|
||||||
.stderr_contains("0+0 records in\n0+0 records out\n0 bytes copied, ")
|
.stderr_contains("0+0 records in\n0+0 records out\n0 bytes copied, ")
|
||||||
.stderr_matches(&Regex::new(r"\d\.\d+(e-\d\d)? s, ").unwrap())
|
.stderr_matches(&Regex::new(r"\d(\.\d+)?(e-\d\d)? s, ").unwrap())
|
||||||
.stderr_contains("0.0 B/s")
|
.stderr_contains("0.0 B/s")
|
||||||
.success();
|
.success();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue