forked from qt-creator/qt-creator
AutoTest: Enable parsing for tests by default
If one enables the plugin it would be most likely to have the parsing (and related short cuts) enabled as well without the need to open the navigation widget or results pane. Change-Id: Ie0624713677bcae67492ac99d25519cc5cfab4a9 Reviewed-by: David Schulz <david.schulz@theqtcompany.com>
This commit is contained in:
@@ -47,7 +47,7 @@ static const int defaultTimeout = 60000;
|
||||
|
||||
TestSettings::TestSettings()
|
||||
: timeout(defaultTimeout), metrics(Walltime), omitInternalMssg(true), omitRunConfigWarn(false),
|
||||
limitResultOutput(true), autoScroll(true), alwaysParse(false)
|
||||
limitResultOutput(true), autoScroll(true), alwaysParse(true)
|
||||
{
|
||||
}
|
||||
|
||||
@@ -96,7 +96,7 @@ void TestSettings::fromSettings(const QSettings *s)
|
||||
omitRunConfigWarn = s->value(root + QLatin1String(omitRunConfigWarnKey), false).toBool();
|
||||
limitResultOutput = s->value(root + QLatin1String(limitResultOutputKey), true).toBool();
|
||||
autoScroll = s->value(root + QLatin1String(autoScrollKey), true).toBool();
|
||||
alwaysParse = s->value(root + QLatin1String(alwaysParseKey), false).toBool();
|
||||
alwaysParse = s->value(root + QLatin1String(alwaysParseKey), true).toBool();
|
||||
gtestRunDisabled = s->value(root + QLatin1String(gtestRunDisabledKey), false).toBool();
|
||||
gtestRepeat = s->value(root + QLatin1String(gtestRepeatKey), false).toBool();
|
||||
gtestShuffle = s->value(root + QLatin1String(gtestShuffleKey), false).toBool();
|
||||
|
||||
Reference in New Issue
Block a user