summaryrefslogtreecommitdiffstats
path: root/tests/auto/tools/macdeployqt/source_basicapp/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/tools/macdeployqt/source_basicapp/main.cpp')
-rw-r--r--tests/auto/tools/macdeployqt/source_basicapp/main.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/auto/tools/macdeployqt/source_basicapp/main.cpp b/tests/auto/tools/macdeployqt/source_basicapp/main.cpp
new file mode 100644
index 0000000000..1e2bb1a3a6
--- /dev/null
+++ b/tests/auto/tools/macdeployqt/source_basicapp/main.cpp
@@ -0,0 +1,19 @@
+// Copyright (C) 2020 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
+
+#include <QGuiApplication>
+#include <QRasterWindow>
+#include <QScreen>
+#include <QTimer>
+
+// Simple test application just to verify that it comes up properly
+
+int main(int argc, char ** argv)
+{
+ QGuiApplication app(argc, argv);
+ QRasterWindow w;
+ w.setTitle("macdeployqt test application");
+ w.show();
+ QTimer::singleShot(200, &w, &QCoreApplication::quit);
+ return app.exec();
+}