[libc][NFC] Use ASSERT_FP_EQ to compare nan values in tests.
authorSiva Chandra Reddy <sivachandra@google.com>
Wed, 30 Dec 2020 20:38:23 +0000 (12:38 -0800)
committerSiva Chandra Reddy <sivachandra@google.com>
Wed, 30 Dec 2020 21:06:40 +0000 (13:06 -0800)
This change "fixes" one of the uses that was missed in
0524da67b448dcce6569fae0f54c10f208c2dc56.

libc/test/src/math/RemQuoTest.h

index 66f2f09..1e00ee1 100644 (file)
@@ -123,7 +123,7 @@ public:
       // In normal range on x86 platforms, the long double implicit 1 bit can be
       // zero making the numbers NaN. Hence we test for them separately.
       if (isnan(x) || isnan(y)) {
-        ASSERT_NE(isnan(result.f), 0);
+        ASSERT_FP_EQ(result.f, nan);
         continue;
       }