diff options
author | Qt Continuous Integration System <qt-info@nokia.com> | 2010-01-14 09:51:07 (GMT) |
---|---|---|
committer | Qt Continuous Integration System <qt-info@nokia.com> | 2010-01-14 09:51:07 (GMT) |
commit | d8cadc2c9333f5b797fab87c1aa9fc9952603935 (patch) | |
tree | 859201f9ec18ca1e73b22f418afec78ec6b353c3 /tests/auto/qgraphicsanchorlayout | |
parent | f17aeadf56818e5f20e20eb91450e66adb88c99b (diff) | |
parent | cf74ef2ca9163ac6e15b6a218ef284f6104cdcab (diff) | |
download | Qt-d8cadc2c9333f5b797fab87c1aa9fc9952603935.zip Qt-d8cadc2c9333f5b797fab87c1aa9fc9952603935.tar.gz Qt-d8cadc2c9333f5b797fab87c1aa9fc9952603935.tar.bz2 |
Merge branch '4.6' of scm.dev.nokia.troll.no:qt/oslo-staging-2 into 4.6-integration
* '4.6' of scm.dev.nokia.troll.no:qt/oslo-staging-2:
Fix rules for recreating the Makefile in a subdir
Disable some tests that require high floating point precision.
Replace the truncate function with fuzzierCompare().
Rework how Qt handles GL extensions.
More changelog additions for QtWebKit
Make compile on symbian/Linux
Removed pointless image comparison in raster colorize filter.
Improved performance of translating device coordinate graphics effects.
Diffstat (limited to 'tests/auto/qgraphicsanchorlayout')
-rw-r--r-- | tests/auto/qgraphicsanchorlayout/tst_qgraphicsanchorlayout.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/auto/qgraphicsanchorlayout/tst_qgraphicsanchorlayout.cpp b/tests/auto/qgraphicsanchorlayout/tst_qgraphicsanchorlayout.cpp index 8c8ab81..16a621a 100644 --- a/tests/auto/qgraphicsanchorlayout/tst_qgraphicsanchorlayout.cpp +++ b/tests/auto/qgraphicsanchorlayout/tst_qgraphicsanchorlayout.cpp @@ -1669,6 +1669,9 @@ void tst_QGraphicsAnchorLayout::floatConflict() void tst_QGraphicsAnchorLayout::infiniteMaxSizes() { + if (sizeof(qreal) <= 4) { + QSKIP("qreal has too little precision, result will be wrong", SkipAll); + } QGraphicsAnchorLayout *l = new QGraphicsAnchorLayout; l->setContentsMargins(0, 0, 0, 0); l->setSpacing(0); |