aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/valgrind/valgrindtestrunnertest.cpp
diff options
context:
space:
mode:
authorJarek Kobus <[email protected]>2023-08-16 19:24:06 +0200
committerJarek Kobus <[email protected]>2023-08-17 07:44:34 +0000
commit121d73b30f9349c739ab972162b429b3de078a00 (patch)
tree97f583ca768b7493dd4146d09abb331b2eed1d95 /src/plugins/valgrind/valgrindtestrunnertest.cpp
parent123eb073caacae6548d083ce34a94848147a4254 (diff)
Utils: Rename ProjectExplorer::Runnable into Utils::ProcessRunData
Move it into Utils lib. Change-Id: I3b6c16d18439cabddf59afc03116f13c1970102c Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src/plugins/valgrind/valgrindtestrunnertest.cpp')
-rw-r--r--src/plugins/valgrind/valgrindtestrunnertest.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/plugins/valgrind/valgrindtestrunnertest.cpp b/src/plugins/valgrind/valgrindtestrunnertest.cpp
index 09f316eea7b..e8678329ed8 100644
--- a/src/plugins/valgrind/valgrindtestrunnertest.cpp
+++ b/src/plugins/valgrind/valgrindtestrunnertest.cpp
@@ -9,10 +9,9 @@
#include <projectexplorer/devicesupport/devicemanager.h>
#include <projectexplorer/projectexplorer.h>
-#include <projectexplorer/runconfiguration.h>
-#include <projectexplorer/runcontrol.h>
#include <utils/algorithm.h>
+#include <utils/processinterface.h>
#include <QDebug>
#include <QTest>
@@ -55,7 +54,7 @@ QString ValgrindTestRunnerTest::runTestBinary(const QString &binary, const QStri
if (!binPathFileInfo.isExecutable())
return QString();
- Runnable debuggee;
+ ProcessRunData debuggee;
const QString &binPath = binPathFileInfo.canonicalFilePath();
debuggee.command.setExecutable(Utils::FilePath::fromString(binPath));
debuggee.environment = Utils::Environment::systemEnvironment();