diff options
author | stefan thomasson <Stefan.Thomasson@tieto.com> | 2009-11-16 07:21:13 (GMT) |
---|---|---|
committer | Rohan McGovern <rohan.mcgovern@nokia.com> | 2009-11-16 07:21:35 (GMT) |
commit | b84208e523354abf68904d0d494ab41015b19408 (patch) | |
tree | 010cd481cbcb2c015036561c209851c4ac85987a /tests/auto/bic | |
parent | cc6befac3780a34eefb4e02e2a4fd6266d454242 (diff) | |
download | Qt-b84208e523354abf68904d0d494ab41015b19408.zip Qt-b84208e523354abf68904d0d494ab41015b19408.tar.gz Qt-b84208e523354abf68904d0d494ab41015b19408.tar.bz2 |
Fixed false positives in bic autotest
Adding QRegion::QRegionData, tagMENUITEMINFOA, tagMENUITEMINFOW,
tagENHMETAHEADER to the class blacklist
Merge-request: 2085
Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
Diffstat (limited to 'tests/auto/bic')
-rw-r--r-- | tests/auto/bic/tst_bic.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/auto/bic/tst_bic.cpp b/tests/auto/bic/tst_bic.cpp index 8c6056e..b7c79cf 100644 --- a/tests/auto/bic/tst_bic.cpp +++ b/tests/auto/bic/tst_bic.cpp @@ -96,6 +96,9 @@ tst_Bic::tst_Bic() /* QtOpenGL includes qt_windows.h, and some SDKs dont have these structs present */ bic.addBlacklistedClass(QLatin1String("tagTITLEBARINFO")); + bic.addBlacklistedClass(QLatin1String("tagMENUITEMINFOA")); + bic.addBlacklistedClass(QLatin1String("tagMENUITEMINFOW")); + bic.addBlacklistedClass(QLatin1String("tagENHMETAHEADER")); /* some bug in gcc also reported template instanciations */ bic.addBlacklistedClass(QLatin1String("QTypeInfo<*>")); @@ -115,6 +118,7 @@ tst_Bic::tst_Bic() bic.addBlacklistedClass(QLatin1String("QObjectData")); bic.addBlacklistedClass(QLatin1String("QAtomic")); bic.addBlacklistedClass(QLatin1String("QBasicAtomic")); + bic.addBlacklistedClass(QLatin1String("QRegion::QRegionData")); /* Jambi-related classes in Designer */ bic.addBlacklistedClass(QLatin1String("QDesignerLanguageExtension")); |