AutoTest: Register more aspects directly

Change-Id: I4dbf9cebb12fecc765aeac8e082061c29496f81a
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
hjk
2023-05-26 09:25:44 +02:00
parent d2ed96a055
commit 0e60643430
2 changed files with 13 additions and 26 deletions

View File

@@ -32,19 +32,19 @@ public:
void toSettings(QSettings *s) const;
void fromSettings(QSettings *s);
Utils::IntegerAspect timeout;
Utils::BoolAspect omitInternalMsg;
Utils::BoolAspect omitRunConfigWarn;
Utils::BoolAspect limitResultOutput;
Utils::BoolAspect limitResultDescription;
Utils::IntegerAspect resultDescriptionMaxSize;
Utils::BoolAspect autoScroll;
Utils::BoolAspect processArgs;
Utils::BoolAspect displayApplication;
Utils::BoolAspect popupOnStart;
Utils::BoolAspect popupOnFinish;
Utils::BoolAspect popupOnFail;
Utils::SelectionAspect runAfterBuild;
Utils::IntegerAspect timeout{this};
Utils::BoolAspect omitInternalMsg{this};
Utils::BoolAspect omitRunConfigWarn{this};
Utils::BoolAspect limitResultOutput{this};
Utils::BoolAspect limitResultDescription{this};
Utils::IntegerAspect resultDescriptionMaxSize{this};
Utils::BoolAspect autoScroll{this};
Utils::BoolAspect processArgs{this};
Utils::BoolAspect displayApplication{this};
Utils::BoolAspect popupOnStart{this};
Utils::BoolAspect popupOnFinish{this};
Utils::BoolAspect popupOnFail{this};
Utils::SelectionAspect runAfterBuild{this};
RunAfterBuildMode runAfterBuildMode() const;
};