printf 1 > /dev/full is not silent

This commit is contained in:
oech3
2026-01-11 14:05:04 +09:00
parent e96b5369f5
commit dc433bcacb
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1490,5 +1490,5 @@ fn test_extreme_field_width_overflow() {
new_ucmd!()
.args(&["%999999999999999999999999d", "1"])
.fails_with_code(1)
.stderr_only("printf: write error\n");
.stderr_contains("printf: write error"); //could contains additional message like "formatting width too large" not in GNU, thats fine.
}