From c976054fa7db5b0d97eed3ba72c47d206062ead6 Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Fri, 1 Apr 2016 11:06:41 +0200 Subject: [PATCH] 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 --- src/plugins/autotest/testsettings.cpp | 4 ++-- 1 file 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();