Fix floaing point test.
I botched a style fix to a pull request, and didn't catch it on amd64,
but it broke almost everything else. It's a false positive to the style
program and spaces cannot be inserted here. It's not math, but a funky
notation.
Fixes: 9dd78db9c3
This commit is contained in:
@@ -402,7 +402,7 @@ ATF_TC_WITHOUT_HEAD(hexadecimal_rounding_fullprec);
|
||||
ATF_TC_BODY(hexadecimal_rounding_fullprec, tc)
|
||||
{
|
||||
/* Double: %.13a with binary64 mantissa=53 */
|
||||
testfmt("0x1.1234567890bbbp+0", "%.13a", 0x1.1234567890bbbp + 0);
|
||||
testfmt("0x1.1234567890bbbp+0", "%.13a", 0x1.1234567890bbbp+0);
|
||||
|
||||
#if defined(__aarch64__)
|
||||
/* On arm64, long double is IEEE binary128 (mantissa=113) */
|
||||
|
||||
Reference in New Issue
Block a user