diff options
author | Olivier Goffart <olivier.goffart@nokia.com> | 2010-10-30 13:49:41 (GMT) |
---|---|---|
committer | Olivier Goffart <olivier.goffart@nokia.com> | 2010-10-30 13:49:41 (GMT) |
commit | 5cd971bb508e1288573d32a996183f3e9359c90e (patch) | |
tree | 2617b30b5cfeeedf3b63a7c3251779766fc1276f /tests | |
parent | e8c01ab0e5fb6134617a69d88ed0cbce24a33da5 (diff) | |
parent | ab794fe3a0d2992d770c09527c479a563f21164e (diff) | |
download | Qt-5cd971bb508e1288573d32a996183f3e9359c90e.zip Qt-5cd971bb508e1288573d32a996183f3e9359c90e.tar.gz Qt-5cd971bb508e1288573d32a996183f3e9359c90e.tar.bz2 |
Merge remote branch 'origin/4.6' into qt-4.7-from-4.6
Conflicts:
tests/auto/qpainter/tst_qpainter.cpp
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/qpainter/tst_qpainter.cpp | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/tests/auto/qpainter/tst_qpainter.cpp b/tests/auto/qpainter/tst_qpainter.cpp index 45f5c3e..ff9bf1c 100644 --- a/tests/auto/qpainter/tst_qpainter.cpp +++ b/tests/auto/qpainter/tst_qpainter.cpp @@ -49,6 +49,7 @@ #include <qfontmetrics.h> #include <qbitmap.h> #include <qimage.h> +#include <qthread.h> #include <limits.h> #if !defined(Q_OS_WINCE) && !defined(Q_OS_SYMBIAN) #include <qprinter.h> @@ -254,6 +255,8 @@ private slots: void drawPointScaled(); + void QTBUG14614_gradientCacheRaceCondition(); + private: void fillData(); void setPenColor(QPainter& p); @@ -4543,6 +4546,36 @@ void tst_QPainter::drawPointScaled() QCOMPARE(image.pixel(16, 16), 0xffff0000); } +class GradientProducer : public QThread +{ +protected: + void run(); +}; + +void GradientProducer::run() +{ + QImage image(1, 1, QImage::Format_RGB32); + QPainter p(&image); + + for (int i = 0; i < 1000; ++i) { + QLinearGradient g; + g.setColorAt(0, QColor(i % 256, 0, 0)); + g.setColorAt(1, Qt::white); + + p.fillRect(image.rect(), g); + } +} + +void tst_QPainter::QTBUG14614_gradientCacheRaceCondition() +{ + const int threadCount = 16; + GradientProducer producers[threadCount]; + for (int i = 0; i < threadCount; ++i) + producers[i].start(); + for (int i = 0; i < threadCount; ++i) + producers[i].wait(); +} + QTEST_MAIN(tst_QPainter) #include "tst_qpainter.moc" |