mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-08-01 05:27:45 +00:00
Merge pull request #6064 from cakebaker/sort_fix_6062
sort: fix incorrectly placed "}" in test
This commit is contained in:
commit
5d1b16e1cd
1 changed files with 13 additions and 13 deletions
|
@ -38,20 +38,20 @@ fn test_buffer_sizes() {
|
||||||
.arg("ext_sort.txt")
|
.arg("ext_sort.txt")
|
||||||
.succeeds()
|
.succeeds()
|
||||||
.stdout_is_fixture("ext_sort.expected");
|
.stdout_is_fixture("ext_sort.expected");
|
||||||
|
}
|
||||||
|
|
||||||
#[cfg(not(target_pointer_width = "32"))]
|
#[cfg(not(target_pointer_width = "32"))]
|
||||||
{
|
{
|
||||||
let buffer_sizes = ["1000G", "10T"];
|
let buffer_sizes = ["1000G", "10T"];
|
||||||
for buffer_size in &buffer_sizes {
|
for buffer_size in &buffer_sizes {
|
||||||
TestScenario::new(util_name!())
|
TestScenario::new(util_name!())
|
||||||
.ucmd()
|
.ucmd()
|
||||||
.arg("-n")
|
.arg("-n")
|
||||||
.arg("-S")
|
.arg("-S")
|
||||||
.arg(buffer_size)
|
.arg(buffer_size)
|
||||||
.arg("ext_sort.txt")
|
.arg("ext_sort.txt")
|
||||||
.succeeds()
|
.succeeds()
|
||||||
.stdout_is_fixture("ext_sort.expected");
|
.stdout_is_fixture("ext_sort.expected");
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue