forked from qt-creator/qt-creator
...especially for the case where the test output is suppressed. Change-Id: I7294af9e941d800b8aae65f7c2c6f898f2ac4e46 Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io>
45 lines
1.3 KiB
C++
45 lines
1.3 KiB
C++
// Copyright (C) 2019 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#pragma once
|
|
|
|
#include "../testoutputreader.h"
|
|
|
|
namespace Autotest {
|
|
namespace Internal {
|
|
|
|
enum class LogLevel;
|
|
enum class ReportLevel;
|
|
|
|
class BoostTestOutputReader : public TestOutputReader
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
BoostTestOutputReader(Utils::Process *testApplication, const Utils::FilePath &buildDirectory,
|
|
const Utils::FilePath &projectFile, LogLevel log, ReportLevel report);
|
|
protected:
|
|
void processOutputLine(const QByteArray &outputLine) override;
|
|
void processStdError(const QByteArray &outputLine) override;
|
|
TestResult createDefaultResult() const override;
|
|
|
|
private:
|
|
void onDone(int exitCode) override;
|
|
void sendCompleteInformation();
|
|
void handleMessageMatch(const QRegularExpressionMatch &match);
|
|
void reportNoOutputFinish(const QString &description, ResultType type);
|
|
Utils::FilePath m_projectFile;
|
|
QString m_currentModule;
|
|
QString m_currentSuite;
|
|
QString m_currentTest;
|
|
QString m_description;
|
|
Utils::FilePath m_fileName;
|
|
ResultType m_result = ResultType::Invalid;
|
|
int m_lineNumber = 0;
|
|
int m_testCaseCount = -1;
|
|
LogLevel m_logLevel;
|
|
ReportLevel m_reportLevel;
|
|
};
|
|
|
|
} // namespace Internal
|
|
} // namespace Autotest
|