AutoTest: Introduce active state for test frameworks

Change-Id: I0fddce91a239c0a51352a25e34a221fd8880b733
Reviewed-by: David Schulz <david.schulz@theqtcompany.com>
Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
This commit is contained in:
Christian Stenger
2016-06-06 15:35:00 +02:00
parent c64fa0d329
commit 8cba580343
15 changed files with 285 additions and 137 deletions

View File

@@ -25,7 +25,9 @@
#pragma once
#include <QtGlobal>
#include <QHash>
namespace Core { class Id; }
QT_BEGIN_NAMESPACE
class QSettings;
@@ -62,6 +64,7 @@ struct TestSettings
bool gtestRunDisabled;
bool gtestShuffle;
bool gtestRepeat;
QHash<Core::Id, bool> frameworks;
};
inline bool operator==(const TestSettings &s1, const TestSettings &s2) { return s1.equals(s2); }