forked from qt-creator/qt-creator
Task-number: QTCREATORBUG-29102 Change-Id: Ibc264f9db6a32206e4097766ee3f7d0b35225a5c Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: hjk <hjk@qt.io>
22 lines
682 B
C++
22 lines
682 B
C++
// 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"
|
|
|
|
namespace Autotest {
|
|
namespace Internal {
|
|
|
|
class QuickTestConfiguration : public DebuggableTestConfiguration
|
|
{
|
|
public:
|
|
explicit QuickTestConfiguration(ITestFramework *framework);
|
|
TestOutputReader *createOutputReader(Utils::Process *app) const override;
|
|
QStringList argumentsForTestRunner(QStringList *omitted = nullptr) const override;
|
|
Utils::Environment filteredEnvironment(const Utils::Environment &original) const override;
|
|
};
|
|
|
|
} // namespace Internal
|
|
} // namespace Autotest
|