blob: fb81fb4d8905c5244bcbae247222f48dee93725c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include "testconfiguration.h"
#include <debugger/debuggerrunconfigurationaspect.h>
#include <projectexplorer/devicesupport/devicemanager.h>
#include <projectexplorer/projectexplorer.h>
#include <projectexplorer/projectexplorerconstants.h>
#include <projectexplorer/runconfiguration.h>
#include <utils/qtcassert.h>
#include <QCoreApplication>
namespace Autotest {
namespace Internal {
class TestRunConfiguration : public ProjectExplorer::RunConfiguration
{
public:
TestRunConfiguration(ProjectExplorer::Target *parent, TestConfiguration *config)
: ProjectExplorer::RunConfiguration(parent, "AutoTest.TestRunConfig"),
debuggerAspect(parent)
{
setDefaultDisplayName(QCoreApplication::translate("QtC::Autotest", "AutoTest Debug"));
bool enableQuick = false;
if (auto debuggable = dynamic_cast<DebuggableTestConfiguration *>(config))
enableQuick = debuggable->mixedDebugging();
registerAspect(&debuggerAspect);
debuggerAspect.setUseQmlDebugger(enableQuick);
ProjectExplorer::ProjectExplorerPlugin::updateRunActions();
m_testConfig = config;
}
Utils::ProcessRunData runnable() const override
{
Utils::ProcessRunData r;
QTC_ASSERT(m_testConfig, return r);
r.command.setExecutable(m_testConfig->executableFilePath());
r.command.addArgs(m_testConfig->argumentsForTestRunner().join(' '), Utils::CommandLine::Raw);
r.workingDirectory = m_testConfig->workingDirectory();
r.environment = m_testConfig->environment();
return r;
}
private:
TestConfiguration *m_testConfig = nullptr;
Debugger::DebuggerRunConfigurationAspect debuggerAspect;
};
} // namespace Internal
} // namespace Autotest
|