PerfProfiler: Disable failing tests

Instead of rewriting the whole for each Qt version
temporarily disable them.

Change-Id: I33cf146a039c90d60f355ddf22274778255b9796
Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
This commit is contained in:
Christian Stenger
2019-11-01 14:51:21 +01:00
parent db15da69dd
commit 66e146314a

View File

@@ -32,7 +32,7 @@
#include "perftimelinemodelmanager.h" #include "perftimelinemodelmanager.h"
#if WITH_TESTS #if WITH_TESTS
# include "tests/perfprofilertracefile_test.h" //# include "tests/perfprofilertracefile_test.h" // FIXME has to be rewritten
# include "tests/perfresourcecounter_test.h" # include "tests/perfresourcecounter_test.h"
#endif // WITH_TESTS #endif // WITH_TESTS
@@ -104,7 +104,7 @@ QVector<QObject *> PerfProfilerPlugin::createTestObjects() const
{ {
QVector<QObject *> tests; QVector<QObject *> tests;
#if WITH_TESTS #if WITH_TESTS
tests << new PerfProfilerTraceFileTest; // tests << new PerfProfilerTraceFileTest; // FIXME these tests have to get rewritten
tests << new PerfResourceCounterTest; tests << new PerfResourceCounterTest;
#endif // WITH_TESTS #endif // WITH_TESTS
return tests; return tests;