mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 19:47:45 +00:00
cksum: add an ignored test for issue 6375
This commit is contained in:
parent
ee2772925a
commit
eb6f1df3bc
1 changed files with 20 additions and 0 deletions
|
@ -508,6 +508,26 @@ fn test_reset_binary() {
|
||||||
.stdout_contains("d41d8cd98f00b204e9800998ecf8427e ");
|
.stdout_contains("d41d8cd98f00b204e9800998ecf8427e ");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[ignore = "issue #6375"]
|
||||||
|
#[test]
|
||||||
|
fn test_reset_binary_but_set() {
|
||||||
|
let scene = TestScenario::new(util_name!());
|
||||||
|
let at = &scene.fixtures;
|
||||||
|
|
||||||
|
at.touch("f");
|
||||||
|
|
||||||
|
scene
|
||||||
|
.ucmd()
|
||||||
|
.arg("--binary")
|
||||||
|
.arg("--tag")
|
||||||
|
.arg("--untagged")
|
||||||
|
.arg("--binary")
|
||||||
|
.arg("--algorithm=md5")
|
||||||
|
.arg(at.subdir.join("f"))
|
||||||
|
.succeeds()
|
||||||
|
.stdout_contains("d41d8cd98f00b204e9800998ecf8427e *"); // currently, asterisk=false. It should be true
|
||||||
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_text_tag() {
|
fn test_text_tag() {
|
||||||
let scene = TestScenario::new(util_name!());
|
let scene = TestScenario::new(util_name!());
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue