diff options
author | Olivier Goffart <ogoffart@trolltech.com> | 2009-08-24 11:07:43 +0200 |
---|---|---|
committer | Olivier Goffart <ogoffart@trolltech.com> | 2009-08-24 11:09:06 +0200 |
commit | aceeaa1dcbce8b1fbd869eb64a1f59b928d59e4e (patch) | |
tree | 329713a9ac3250d35b4813219c82fdd1bf898afd | |
parent | d2b5d9010ade3050fc2e2960a694c42e354c381b (diff) | |
download | qt4-tools-aceeaa1dcbce8b1fbd869eb64a1f59b928d59e4e.tar.gz |
Speedup the qgraphicsscene benchmark
let QGraphicsScene::_q_polishItems be called so ~QGraphicsItem doesn't
spend all his time cleaning the unpolished list
-rw-r--r-- | tests/benchmarks/qgraphicsscene/tst_qgraphicsscene.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/benchmarks/qgraphicsscene/tst_qgraphicsscene.cpp b/tests/benchmarks/qgraphicsscene/tst_qgraphicsscene.cpp index 7a5caa44bd..172f7d4361 100644 --- a/tests/benchmarks/qgraphicsscene/tst_qgraphicsscene.cpp +++ b/tests/benchmarks/qgraphicsscene/tst_qgraphicsscene.cpp @@ -166,6 +166,8 @@ void tst_QGraphicsScene::addItem() } scene.itemAt(0, 0); } + //let QGraphicsScene::_q_polishItems be called so ~QGraphicsItem doesn't spend all his time cleaning the unpolished list + qApp->processEvents(); } void tst_QGraphicsScene::itemAt_data() @@ -220,6 +222,9 @@ void tst_QGraphicsScene::itemAt() QBENCHMARK { scene.itemAt(0, 0); } + + //let QGraphicsScene::_q_polishItems be called so ~QGraphicsItem doesn't spend all his time cleaning the unpolished list + qApp->processEvents(); } QTEST_MAIN(tst_QGraphicsScene) |