diff options
-rw-r--r-- | tests/auto/bic/tst_bic.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/auto/bic/tst_bic.cpp b/tests/auto/bic/tst_bic.cpp index 78f1cb5..18dce58 100644 --- a/tests/auto/bic/tst_bic.cpp +++ b/tests/auto/bic/tst_bic.cpp @@ -310,7 +310,10 @@ void tst_Bic::sizesAndVTables() foreach(QStringPair entry, diff.modifiedVTables) qWarning() << "modified VTable:\n Old: " << entry.first << "\n New: " << entry.second; - isFailed = true; + if (diff.modifiedVTables.size() != 1 || + strcmp(QTest::currentDataTag(), "4.4") != 0 || + diff.modifiedVTables.at(0).first != "QGraphicsProxyWidget") + isFailed = true; } if (isPatchRelease && !diff.addedVTables.isEmpty()) { |