aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/utils/process/processtestapp/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/utils/process/processtestapp/main.cpp')
-rw-r--r--tests/auto/utils/process/processtestapp/main.cpp42
1 files changed, 42 insertions, 0 deletions
diff --git a/tests/auto/utils/process/processtestapp/main.cpp b/tests/auto/utils/process/processtestapp/main.cpp
new file mode 100644
index 00000000000..91952c2528e
--- /dev/null
+++ b/tests/auto/utils/process/processtestapp/main.cpp
@@ -0,0 +1,42 @@
+// Copyright (C) 2022 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+
+#include "processtestapp.h"
+
+#include <app/app_version.h>
+
+#include <utils/launcherinterface.h>
+#include <utils/process.h>
+#include <utils/temporarydirectory.h>
+
+#include <QCoreApplication>
+#include <QScopeGuard>
+
+#ifdef Q_OS_WIN
+#include <crtdbg.h>
+#include <cstdlib>
+#endif
+
+using namespace Utils;
+
+int main(int argc, char **argv)
+{
+#ifdef Q_OS_WIN
+ // avoid crash reporter dialog
+ _set_error_mode(_OUT_TO_STDERR);
+ _CrtSetReportMode(_CRT_ERROR, _CRTDBG_MODE_DEBUG);
+#endif
+ QCoreApplication app(argc, argv);
+
+ auto cleanup = qScopeGuard([] { Singleton::deleteAll(); });
+
+ TemporaryDirectory::setMasterTemporaryDirectory(QDir::tempPath() + "/"
+ + Core::Constants::IDE_CASED_ID + "-XXXXXX");
+ const QString libExecPath(qApp->applicationDirPath() + '/'
+ + QLatin1String(TEST_RELATIVE_LIBEXEC_PATH));
+ LauncherInterface::setPathToLauncher(libExecPath);
+ SubProcessConfig::setPathToProcessTestApp(QLatin1String(PROCESS_TESTAPP));
+
+ QMetaObject::invokeMethod(&app, [] { ProcessTestApp::invokeSubProcess(); }, Qt::QueuedConnection);
+ return app.exec();
+}