Problem reported by Cosima Neidahl <https://bugs.gnu.org/78985>.
* tests/sort/sort-float.sh (dbl_minima_order):
Use expr instead of test to compare fractions,
to avoid problems with integers too large for the shell.
test "$ldbl_exp" -lt "$dbl_exp" && return 1
test "$ldbl_whole" -lt "$dbl_whole" && return 0
test "$dbl_whole" -lt "$ldbl_whole" && return 1
- test "$ldbl_frac" -le "$dbl_frac" && return 0
+ # Use 'expr' not 'test', as these integers may be large.
+ expr "$ldbl_frac" '<=' "$dbl_frac" >/dev/null && return 0
return 1
}