1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 20:17:45 +00:00

Add dynamic buffer adjustment, fix test comment

This commit is contained in:
electricboogie 2021-04-25 15:13:27 -05:00
parent ab594b7b4c
commit 733949b2e7
3 changed files with 22 additions and 16 deletions

View file

@ -59,13 +59,13 @@ fn test_human_numeric_whitespace() {
test_helper("human-numeric-whitespace", "-h");
}
// This tests the ext sort feature, but it also tests where
// serde might fail when reading back JSON if it finds a null value
// This tests where serde often fails when reading back JSON
// if it finds a null value
#[test]
fn test_extsort_as64_bailout() {
new_ucmd!()
.arg("-g")
.arg("-S 10K")
.arg("-S 5K")
.arg("multiple_decimals_general.txt")
.succeeds()
.stdout_is_fixture("multiple_decimals_general.expected");