aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/perfprofiler/perfprofilerplugin.cpp
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@qt.io>2019-11-01 14:51:21 +0100
committerChristian Stenger <christian.stenger@qt.io>2019-11-04 05:45:22 +0000
commit66e146314a430f44a08b70e153bd4fa2a0e2352c (patch)
tree1082ba678bf9698ddb57bc83cfc89d610bcb8472 /src/plugins/perfprofiler/perfprofilerplugin.cpp
parentdb15da69dd7855cbc5dd365c961db8e9b3129171 (diff)
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>
Diffstat (limited to 'src/plugins/perfprofiler/perfprofilerplugin.cpp')
-rw-r--r--src/plugins/perfprofiler/perfprofilerplugin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/perfprofiler/perfprofilerplugin.cpp b/src/plugins/perfprofiler/perfprofilerplugin.cpp
index e9440e61419..03d1de8eafd 100644
--- a/src/plugins/perfprofiler/perfprofilerplugin.cpp
+++ b/src/plugins/perfprofiler/perfprofilerplugin.cpp
@@ -32,7 +32,7 @@
#include "perftimelinemodelmanager.h"
#if WITH_TESTS
-# include "tests/perfprofilertracefile_test.h"
+//# include "tests/perfprofilertracefile_test.h" // FIXME has to be rewritten
# include "tests/perfresourcecounter_test.h"
#endif // WITH_TESTS
@@ -104,7 +104,7 @@ QVector<QObject *> PerfProfilerPlugin::createTestObjects() const
{
QVector<QObject *> tests;
#if WITH_TESTS
- tests << new PerfProfilerTraceFileTest;
+// tests << new PerfProfilerTraceFileTest; // FIXME these tests have to get rewritten
tests << new PerfResourceCounterTest;
#endif // WITH_TESTS
return tests;