forked from qt-creator/qt-creator
AutoTest: Tweak run after successful build
Make it possible to distinguish between all and selected test cases also for the automatic run after build feature. Change-Id: I91715a7ae4f09cea2e31844940a6b21ae9e62157 Reviewed-by: David Schulz <david.schulz@qt.io>
This commit is contained in:
@@ -36,6 +36,13 @@ QT_END_NAMESPACE
|
||||
namespace Autotest {
|
||||
namespace Internal {
|
||||
|
||||
enum class RunAfterBuildMode
|
||||
{
|
||||
None,
|
||||
All,
|
||||
Selected
|
||||
};
|
||||
|
||||
struct TestSettings
|
||||
{
|
||||
TestSettings();
|
||||
@@ -52,7 +59,7 @@ struct TestSettings
|
||||
bool popupOnStart = true;
|
||||
bool popupOnFinish = true;
|
||||
bool popupOnFail = false;
|
||||
bool runAfterBuild = false;
|
||||
RunAfterBuildMode runAfterBuild = RunAfterBuildMode::None;
|
||||
QHash<Core::Id, bool> frameworks;
|
||||
QHash<Core::Id, bool> frameworksGrouping;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user