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
3 changed files with 224 additions and 146 deletions
Generated
+221 -143
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -1395,7 +1395,7 @@ fn test_cp_reflink_bad() {
.arg(TEST_HELLO_WORLD_SOURCE)
.arg(TEST_EXISTING_FILE)
.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]
+2 -2
View File
@@ -92,14 +92,14 @@ fn test_mknod_character_device_requires_major_and_minor() {
.arg("1")
.arg("c")
.fails()
.stderr_contains("Invalid value \"c\"");
.stderr_contains("Invalid value 'c'");
new_ucmd!()
.arg("test_file")
.arg("c")
.arg("c")
.arg("1")
.fails()
.stderr_contains("Invalid value \"c\"");
.stderr_contains("Invalid value 'c'");
}
#[test]