summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMilla Pohjanheimo <milla.pohjanheimo@qt.io>2016-09-01 09:04:24 +0300
committerTony Sarajärvi <tony.sarajarvi@qt.io>2016-09-05 09:22:21 +0000
commite49c7d6f19d1ac76137534ec696ce1a9f4a7dbdc (patch)
treef62ed41f616fea8714067ffbb86fa6e264395c1f /tests
parent1c973844b78ef5ddf8ab2964bb57c95ff2c9ee87 (diff)
Blacklisting a class that gives a false positive fail in the BC test
The commit 3c93286f08a80b6e1821d7d63d361742b25c6578 gives a false positive fail in the QtBase (5.7). QWARN : tst_Bic::sizesAndVTables(QtTest:5.7) the following classes were added in a patch release: ("QtPrivate::StreamStateSaver") FAIL! : tst_Bic::sizesAndVTables(QtTest:5.7) Test failed, read warnings above. Loc: [tst_bic.cpp(593)] However it's just an inline class in a private namespace, so it can be skipped in the binary compatibility test. Change-Id: I5a14212c6b3171567a708e0977932385032b2f18 Reviewed-by: Tony Sarajärvi <tony.sarajarvi@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/postbuild/bic/tst_bic.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/postbuild/bic/tst_bic.cpp b/tests/postbuild/bic/tst_bic.cpp
index 302da4be..71218ee2 100644
--- a/tests/postbuild/bic/tst_bic.cpp
+++ b/tests/postbuild/bic/tst_bic.cpp
@@ -244,6 +244,7 @@ tst_Bic::tst_Bic(const char *appFilePath)
bic.addBlacklistedClass(QLatin1String("QOpenGLFunctionsPrivate"));
bic.addBlacklistedClass(QLatin1String("QGLFunctionsPrivate"));
bic.addBlacklistedClass(QLatin1String("QDebug::Stream"));
+ bic.addBlacklistedClass(QLatin1String("QtPrivate::StreamStateSaver"));
/* Jambi-related classes in Designer */
bic.addBlacklistedClass(QLatin1String("QDesignerLanguageExtension"));