summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/auto/corelib/global/qnumeric/tst_qnumeric.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/auto/corelib/global/qnumeric/tst_qnumeric.cpp b/tests/auto/corelib/global/qnumeric/tst_qnumeric.cpp
index 36e01a0ccd..79df4b7055 100644
--- a/tests/auto/corelib/global/qnumeric/tst_qnumeric.cpp
+++ b/tests/auto/corelib/global/qnumeric/tst_qnumeric.cpp
@@ -167,6 +167,9 @@ void tst_QNumeric::floatDistance()
QFETCH(float, val1);
QFETCH(float, val2);
QFETCH(quint32, expectedDistance);
+#ifdef Q_OS_BLACKBERRY
+ QEXPECT_FAIL("denormal", "See QTBUG-37094", Continue);
+#endif
QCOMPARE(qFloatDistance(val1, val2), expectedDistance);
}
@@ -211,6 +214,9 @@ void tst_QNumeric::floatDistance_double()
QFETCH(double, val1);
QFETCH(double, val2);
QFETCH(quint64, expectedDistance);
+#ifdef Q_OS_BLACKBERRY
+ QEXPECT_FAIL("denormal", "See QTBUG-37094", Continue);
+#endif
QCOMPARE(qFloatDistance(val1, val2), expectedDistance);
}