forked from qt-creator/qt-creator
Utils: Replace FilePath::onDevice() by new FilePath::withMappedPath()
Basically a.onDevice(b) == b.withNewMappedPath(a), matching the order of b.withNewPath(a). Whether the (curretly docker-specific) path mapping is useful /there/, and whether some of the calls are needed at all is dubious. I added some FIXME and changed a few cases directly. Change-Id: I7514736ce922f632f1f737bc496f6783389a42b6 Reviewed-by: Marcus Tillmanns <marcus.tillmanns@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
This commit is contained in:
@@ -201,7 +201,7 @@ void CallgrindToolRunner::run(Option option)
|
||||
this, &CallgrindToolRunner::controllerProcessDone);
|
||||
|
||||
const FilePath control =
|
||||
FilePath(CALLGRIND_CONTROL_BINARY).onDevice(m_valgrindRunnable.command.executable());
|
||||
m_valgrindRunnable.command.executable().withNewPath(CALLGRIND_CONTROL_BINARY);
|
||||
m_controllerProcess->setCommand({control, {toOptionString(option), QString::number(m_pid)}});
|
||||
m_controllerProcess->setWorkingDirectory(m_valgrindRunnable.workingDirectory);
|
||||
m_controllerProcess->setEnvironment(m_valgrindRunnable.environment);
|
||||
|
||||
Reference in New Issue
Block a user