aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/autotest/catch/catchoutputreader.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/autotest/catch/catchoutputreader.cpp')
-rw-r--r--src/plugins/autotest/catch/catchoutputreader.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/plugins/autotest/catch/catchoutputreader.cpp b/src/plugins/autotest/catch/catchoutputreader.cpp
index 95e437fdc4b..7a3aa277d4b 100644
--- a/src/plugins/autotest/catch/catchoutputreader.cpp
+++ b/src/plugins/autotest/catch/catchoutputreader.cpp
@@ -2,13 +2,11 @@
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#include "catchoutputreader.h"
+
#include "catchresult.h"
#include "../autotesttr.h"
-#include <utils/fileutils.h>
-#include <utils/qtcassert.h>
-
using namespace Utils;
namespace Autotest {
@@ -31,11 +29,10 @@ namespace CatchXml {
const char TestCaseResultElement[] = "OverallResult";
}
-CatchOutputReader::CatchOutputReader(const QFutureInterface<TestResult> &futureInterface,
- QtcProcess *testApplication,
+CatchOutputReader::CatchOutputReader(Process *testApplication,
const FilePath &buildDirectory,
const FilePath &projectFile)
- : TestOutputReader (futureInterface, testApplication, buildDirectory)
+ : TestOutputReader(testApplication, buildDirectory)
, m_projectFile(projectFile)
{
}