diff options
author | Christian Stenger <[email protected]> | 2018-09-21 09:10:54 +0200 |
---|---|---|
committer | Christian Stenger <[email protected]> | 2018-09-21 07:40:17 +0000 |
commit | f350c4d1d4696074f7f947ca89509dfa5700f364 (patch) | |
tree | d8f163bb9cfd8e371d74551b8e7a4b9878a9dac8 /src/plugins/autotest/testconfiguration.cpp | |
parent | d3d47dd521253d89419231956a93a0d2b9db1656 (diff) |
AutoTest: Replace some scary wording
Change-Id: If8c45824c80ed6dd2da5874af56e61ab7abb3305
Reviewed-by: Leena Miettinen <[email protected]>
Reviewed-by: David Schulz <[email protected]>
Diffstat (limited to 'src/plugins/autotest/testconfiguration.cpp')
-rw-r--r-- | src/plugins/autotest/testconfiguration.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/plugins/autotest/testconfiguration.cpp b/src/plugins/autotest/testconfiguration.cpp index 1cd550c807c..ece34ead496 100644 --- a/src/plugins/autotest/testconfiguration.cpp +++ b/src/plugins/autotest/testconfiguration.cpp @@ -151,11 +151,11 @@ void TestConfiguration::completeTestInformation(TestRunMode runMode) if (targetInfo.targetFilePath.isEmpty()) { qCDebug(LOG) << "BuildTargetInfos"; const QList<BuildTargetInfo> buildTargets = target->applicationTargets().list; - // if there is only one build target just use it (but be honest that we're guessing) + // if there is only one build target just use it (but be honest that we're deducing) if (buildTargets.size() == 1) { targetInfo = buildTargets.first(); - m_guessedConfiguration = true; - m_guessedFrom = targetInfo.buildKey; + m_deducedConfiguration = true; + m_deducedFrom = targetInfo.buildKey; } } @@ -223,8 +223,8 @@ void TestConfiguration::completeTestInformation(TestRunMode runMode) if (isLocal(rc)) { // FIXME for now only Desktop support const Runnable runnable = rc->runnable(); m_runnable.environment = runnable.environment; - m_guessedConfiguration = true; - m_guessedFrom = rc->displayName(); + m_deducedConfiguration = true; + m_deducedFrom = rc->displayName(); if (runMode == TestRunMode::Debug) m_runConfig = new TestRunConfiguration(rc->target(), this); } else { @@ -234,7 +234,7 @@ void TestConfiguration::completeTestInformation(TestRunMode runMode) } } - if (m_displayName.isEmpty()) // happens e.g. when guessing the TestConfiguration or error + if (m_displayName.isEmpty()) // happens e.g. when deducing the TestConfiguration or error m_displayName = (*buildSystemTargets.begin()); } |