summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorVille Voutilainen <ville.voutilainen@qt.io>2022-11-18 01:32:06 +0200
committerVille Voutilainen <ville.voutilainen@qt.io>2022-11-23 12:49:13 +0200
commita1ccbbafea2266d425f666783298b5a50784d72a (patch)
tree1b24e5f0f44b25ec5d627c8299be3a9ab7517482 /tests
parent6f1bbae16218698ea1592686a5d802d5f2a72860 (diff)
downloadqtqa-a1ccbbafea2266d425f666783298b5a50784d72a.tar.gz
Blacklist the offending QtPrivate class properly
The blacklist isn't a regex in this case, so it needs to be an actual wildcard. Task-number: QTBUG-108470 Change-Id: Ia5f8375c9f9fae44dcc6350ca79c2273a33b61a4 Reviewed-by: Jani Heikkinen <jani.heikkinen@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/postbuild/bic/tst_bic.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/postbuild/bic/tst_bic.cpp b/tests/postbuild/bic/tst_bic.cpp
index c19964a..6ff0e27 100644
--- a/tests/postbuild/bic/tst_bic.cpp
+++ b/tests/postbuild/bic/tst_bic.cpp
@@ -229,7 +229,7 @@ tst_Bic::tst_Bic(const char *appFilePath)
bic.addBlacklistedClass(QLatin1String("QDebug::Stream"));
bic.addBlacklistedClass(QLatin1String("QtPrivate::StreamStateSaver"));
bic.addBlacklistedClass(QLatin1String("QtPrivate::big_"));
- bic.addBlacklistedClass(QLatin1String("QtPrivate::q_relocate_overlap_n_left_move"));
+ bic.addBlacklistedClass(QLatin1String("QtPrivate::q_relocate_overlap_n_left_move*"));
/* Jambi-related classes in Designer */
bic.addBlacklistedClass(QLatin1String("QDesignerLanguageExtension"));