AutoTest: Enable debugging for Quick Tests

Task-number: QTCREATORBUG-18961
Change-Id: I6f00c84ea6279ceb59745e5bb12349511ae4637b
Reviewed-by: David Schulz <david.schulz@qt.io>
This commit is contained in:
Christian Stenger
2017-09-29 15:01:32 +02:00
parent c2686fd9ae
commit faee18d31e
7 changed files with 37 additions and 9 deletions

View File

@@ -81,10 +81,8 @@ QStringList QtTestConfiguration::argumentsForTestRunner(QStringList *omitted) co
if (qtSettings->logSignalsSlots)
arguments << "-vs";
if (isDebugRunMode()) {
if (qtSettings->noCrashHandler)
arguments << "-nocrashhandler";
}
if (isDebugRunMode() && qtSettings->noCrashHandler)
arguments << "-nocrashhandler";
return arguments;
}