aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/autotest/testsettings.cpp
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@theqtcompany.com>2016-04-01 11:06:41 +0200
committerChristian Stenger <christian.stenger@theqtcompany.com>2016-04-01 09:14:46 +0000
commitc976054fa7db5b0d97eed3ba72c47d206062ead6 (patch)
treee8d4d61f1f7dd33252f427bb1178c4beb866d62c /src/plugins/autotest/testsettings.cpp
parent0b37c09270644b2cbcb31e39e40bee36c74d8dac (diff)
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>
Diffstat (limited to 'src/plugins/autotest/testsettings.cpp')
-rw-r--r--src/plugins/autotest/testsettings.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/autotest/testsettings.cpp b/src/plugins/autotest/testsettings.cpp
index 870b35f124a..7e8d1911b5e 100644
--- a/src/plugins/autotest/testsettings.cpp
+++ b/src/plugins/autotest/testsettings.cpp
@@ -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();