From d8c39c1bebcd1626018be9f7e3e51d06061079e2 Mon Sep 17 00:00:00 2001 From: Ville Voutilainen Date: Mon, 8 Apr 2024 13:58:53 +0300 Subject: 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 --- tests/postbuild/bic/tst_bic.cpp | 3 +++ 1 file changed, 3 insertions(+) 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() -- cgit v1.2.3