The threadCount() test function is unstable and had been disabled by
making it not be a slot. It is better to disable it with QSKIP so that
the test output shows that the test function exists and is in need of
repair.
Change-Id: Iccdc8da31e0d15d922f7e9606835d1ff1a3a4966
Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
class tst_QtConcurrentThreadEngine: public QObject
{
Q_OBJECT
-public:
- void threadCount();
private slots:
void runDirectly();
void result();
void runThroughStarter();
void cancel();
void throttle();
+ void threadCount();
void multipleResults();
void stresstest();
void cancelQueuedSlowUser();
void tst_QtConcurrentThreadEngine::threadCount()
{
+ QSKIP("QTBUG-23333: This test is unstable");
+
const int repeats = 10;
for (int i = 0; i < repeats; ++i) {
ThreadCountUser t;