diff options
author | Liav A <liavalb@gmail.com> | 2022-10-04 03:32:20 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-12-28 11:53:41 +0100 |
commit | feeb25bcee42b1d9a383fdf281a00ab2caa0bcc6 (patch) | |
tree | 3d1c22d578d957b01074ac00ab06846cc109efa1 /Tests/AK | |
parent | 91db482ad333459a8513c98e6488087f327f5d2d (diff) | |
download | serenity-feeb25bcee42b1d9a383fdf281a00ab2caa0bcc6.zip |
AK: Remove i686 support
Diffstat (limited to 'Tests/AK')
-rw-r--r-- | Tests/AK/TestFloatingPointParsing.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/AK/TestFloatingPointParsing.cpp b/Tests/AK/TestFloatingPointParsing.cpp index ae8a73766b..6ecd85b4f3 100644 --- a/Tests/AK/TestFloatingPointParsing.cpp +++ b/Tests/AK/TestFloatingPointParsing.cpp @@ -171,7 +171,7 @@ TEST_CASE(simple_cases) // FIXME: These are different in 32 bit, since that will be removed some time (soon?) // we can remove this guard at that point. -#if not defined(__serenity__) || not ARCH(I386) +#if not defined(__serenity__) DOES_PARSE_FLOAT_AND_DOUBLE_LIKE_CPP(89255e-22); DOES_PARSE_FLOAT_AND_DOUBLE_LIKE_CPP(8925.5e-21); DOES_PARSE_FLOAT_AND_DOUBLE_LIKE_CPP(8.9255e-18); |