diff options
author | Pádraig Brady <P@draigBrady.com> | 2010-05-24 13:00:35 +0100 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2010-05-24 13:00:35 +0100 |
commit | 6bc44b5feb03ae7621106e7ee510cd15374e74f8 (patch) | |
tree | 4876d264fb43c1a324fc166f73e1318c1d83fb48 /tests/misc | |
parent | 63761c027c6facf80d78834f9f1ee02139b116fe (diff) | |
download | coreutils-6bc44b5feb03ae7621106e7ee510cd15374e74f8.tar.xz |
maint: remove a redundant sort parameter from a test
* tests/misc/sort-month: Remove the -b option which
is redundant and ignored.
Diffstat (limited to 'tests/misc')
-rwxr-xr-x | tests/misc/sort-month | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/misc/sort-month b/tests/misc/sort-month index aee5215d5..8a8e4fae2 100755 --- a/tests/misc/sort-month +++ b/tests/misc/sort-month @@ -30,7 +30,7 @@ locale --version >/dev/null 2>&1 || for LOC in "$LOCALE_FR" "$LOCALE_FR_UTF8" "ja_JP.utf8"; do mon="$(LC_ALL="$LOC" locale abmon 2>/dev/null);" smon=$(LC_ALL="$LOC" locale abmon 2>/dev/null | - tr ';' '\n' | shuf | nl | LC_ALL="$LOC" sort -b -k2,2M | + tr ';' '\n' | shuf | nl | LC_ALL="$LOC" sort -k2,2M | cut -f2 | tr '\n' ';') test "$mon" = "$smon" || { fail=1; break; } done |