1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-30 12:37:49 +00:00

Merge pull request #4053 from niyaznigmatullin/cargo_update

`cargo +1.60.0 update`
This commit is contained in:
Sylvestre Ledru 2022-10-17 08:39:24 +02:00 committed by GitHub
commit 2b27925d6a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 224 additions and 146 deletions

364
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -1395,7 +1395,7 @@ fn test_cp_reflink_bad() {
.arg(TEST_HELLO_WORLD_SOURCE) .arg(TEST_HELLO_WORLD_SOURCE)
.arg(TEST_EXISTING_FILE) .arg(TEST_EXISTING_FILE)
.fails() .fails()
.stderr_contains("error: \"bad\" isn't a valid value for '--reflink[=<WHEN>]'"); .stderr_contains("error: 'bad' isn't a valid value for '--reflink[=<WHEN>]'");
} }
#[test] #[test]

View file

@ -92,14 +92,14 @@ fn test_mknod_character_device_requires_major_and_minor() {
.arg("1") .arg("1")
.arg("c") .arg("c")
.fails() .fails()
.stderr_contains("Invalid value \"c\""); .stderr_contains("Invalid value 'c'");
new_ucmd!() new_ucmd!()
.arg("test_file") .arg("test_file")
.arg("c") .arg("c")
.arg("c") .arg("c")
.arg("1") .arg("1")
.fails() .fails()
.stderr_contains("Invalid value \"c\""); .stderr_contains("Invalid value 'c'");
} }
#[test] #[test]