diff -r 93b982ccede2 -r 5daf16870df6 tests/auto/bic/qbic.cpp --- a/tests/auto/bic/qbic.cpp Mon Jun 21 22:38:13 2010 +0100 +++ b/tests/auto/bic/qbic.cpp Thu Jul 22 16:41:55 2010 +0100 @@ -57,6 +57,10 @@ bool QBic::isBlacklisted(const QString &className) const { + // all templates are blacklisted + if (className.contains('<')) + return true; + for (int i = 0; i < blackList.count(); ++i) if (blackList.at(i).exactMatch(className)) return true;