Manual tests: Correct qtc_processlauncher location

Change-Id: Ia3c550ae5cd0f2a6c75ec6d4fba230edf2a0bec8
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
Christian Stenger
2022-02-01 12:11:46 +01:00
parent f6061d4f1a
commit c8b2e4fe1e

View File

@@ -27,6 +27,7 @@
#include <ssh/sftpfilesystemmodel.h>
#include <ssh/sshconnection.h>
#include <utils/launcherinterface.h>
#include <utils/temporarydirectory.h>
#include <QApplication>
@@ -35,6 +36,8 @@
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
Utils::LauncherInterface::setPathToLauncher(qApp->applicationDirPath() + '/'
+ QLatin1String(TEST_RELATIVE_LIBEXEC_PATH));
Utils::TemporaryDirectory::setMasterTemporaryDirectory(QDir::tempPath()
+ "/qtc-ssh-shelltest-XXXXXX");
SftpFsWindow w;