summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorVille Voutilainen <ville.voutilainen@qt.io>2022-04-26 23:37:59 +0300
committerEdward Welbourne <edward.welbourne@qt.io>2022-05-09 10:08:24 +0000
commitb960c2c9dc17c0b334f4da790b638f70e4790c04 (patch)
tree7d7d0fd969218b04c756a6a98579d30ce7cffa0a /tests
parenteebadeb94738c8f0ceb0ab5439e9764c9e87e78e (diff)
downloadqtqa-b960c2c9dc17c0b334f4da790b638f70e4790c04.tar.gz
Blacklist two false positives
QNativeInterface::QSGVulkanTexture* have been deliberately removed, and QSGMaterialShader::GraphicsPipelineState is allowed to grow. Change-Id: I1b63867c3d10ca550251f014b07a64b34a5c28f9 Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/postbuild/bic/tst_bic.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/postbuild/bic/tst_bic.cpp b/tests/postbuild/bic/tst_bic.cpp
index c4b8f94..376e19d 100644
--- a/tests/postbuild/bic/tst_bic.cpp
+++ b/tests/postbuild/bic/tst_bic.cpp
@@ -351,6 +351,10 @@ tst_Bic::tst_Bic(const char *appFilePath)
bic.addBlacklistedClass(QLatin1String("Vk*"));
/* vtable churn */
bic.addBlacklistedClass(QLatin1String("QNativeInterface::QEGLContext"));
+ /* deliberately removed */
+ bic.addBlacklistedClass(QLatin1String("QNativeInterface::QSGVulkanTexture*"));
+ /* allowed to grow */
+ bic.addBlacklistedClass(QLatin1String("QSGMaterialShader::GraphicsPipelineState"));
}
void tst_Bic::initTestCase()