summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVille Voutilainen <ville.voutilainen@qt.io>2024-04-08 13:58:53 +0300
committerVille Voutilainen <ville.voutilainen@qt.io>2024-04-08 16:44:28 +0300
commitd8c39c1bebcd1626018be9f7e3e51d06061079e2 (patch)
tree562423d002c2e96af35f26e399071fb9aaa86ce8
parentfe66d083a55f9d85dfe138b7e5b92cab85d014e3 (diff)
Blacklist QSignalSpy and everything in the QTest namespace
QtTest is by design ABI-unstable nowadays. Task-number: QTBUG-124181 Change-Id: I1b15e7f9c93659ed5aae6eef0fc267c422631077 Reviewed-by: Jani Heikkinen <jani.heikkinen@qt.io>
-rw-r--r--tests/postbuild/bic/tst_bic.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/postbuild/bic/tst_bic.cpp b/tests/postbuild/bic/tst_bic.cpp
index 0a2a0d56..2d7565de 100644
--- a/tests/postbuild/bic/tst_bic.cpp
+++ b/tests/postbuild/bic/tst_bic.cpp
@@ -343,6 +343,9 @@ tst_Bic::tst_Bic(const char *appFilePath)
bic.addBlacklistedClass(QLatin1String("QDialogButtonBox"));
/* likewise, an override added in another patch release */
bic.addBlacklistedClass(QLatin1String("QRasterWindow"));
+ /* intentionally ABI-unstable */
+ bic.addBlacklistedClass(QLatin1String("QSignalSpy"));
+ bic.addBlacklistedClass(QLatin1String("QTest::*"));
}
void tst_Bic::initTestCase()