forked from qt-creator/qt-creator
AutoTest: Use Utils::FilePath for files and directories
Still some missing bits as some QString members had different meanings depending on their context. Change-Id: Ib48eab54498974a26bbd5123cbffeefee5f7e79c Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -65,9 +65,9 @@ public:
|
||||
{
|
||||
ProjectExplorer::Runnable r;
|
||||
QTC_ASSERT(m_testConfig, return r);
|
||||
r.executable = Utils::FilePath::fromString(m_testConfig->executableFilePath());
|
||||
r.executable = m_testConfig->executableFilePath();
|
||||
r.commandLineArguments = m_testConfig->argumentsForTestRunner().join(' ');
|
||||
r.workingDirectory = m_testConfig->workingDirectory();
|
||||
r.workingDirectory = m_testConfig->workingDirectory().toString();
|
||||
r.environment = m_testConfig->environment();
|
||||
r.device = ProjectExplorer::DeviceManager::instance()->defaultDevice(
|
||||
ProjectExplorer::Constants::DESKTOP_DEVICE_TYPE);
|
||||
|
||||
Reference in New Issue
Block a user