aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/startupperformance/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/startupperformance/main.cpp')
-rw-r--r--tests/manual/startupperformance/main.cpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/manual/startupperformance/main.cpp b/tests/manual/startupperformance/main.cpp
new file mode 100644
index 00000000..68799283
--- /dev/null
+++ b/tests/manual/startupperformance/main.cpp
@@ -0,0 +1,23 @@
+// Copyright (C) 2022 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
+
+#include <QGuiApplication>
+#include <QQmlApplicationEngine>
+#include <QElapsedTimer>
+
+int main(int argc, char *argv[])
+{
+ QElapsedTimer timer;
+ timer.restart();
+ qputenv("QT_IM_MODULE", QByteArray("qtvirtualkeyboard"));
+
+ QGuiApplication app(argc, argv);
+
+ QQmlApplicationEngine engine;
+ engine.load(QUrl(QLatin1String("qrc:/main.qml")));
+
+ int result = app.exec();
+
+ qDebug() << "Start to finish" << timer.elapsed() << "ms";
+ return result;
+}