summaryrefslogtreecommitdiffstats
path: root/tests/auto/tools/macdeployqt/source_plugin_tls/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/tools/macdeployqt/source_plugin_tls/main.cpp')
-rw-r--r--tests/auto/tools/macdeployqt/source_plugin_tls/main.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/auto/tools/macdeployqt/source_plugin_tls/main.cpp b/tests/auto/tools/macdeployqt/source_plugin_tls/main.cpp
new file mode 100644
index 0000000000..61b5edd614
--- /dev/null
+++ b/tests/auto/tools/macdeployqt/source_plugin_tls/main.cpp
@@ -0,0 +1,10 @@
+// Copyright (C) 2021 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
+
+#include <QtNetwork>
+
+int main(int argc, char ** argv)
+{
+ QCoreApplication app(argc, argv);
+ return QSslSocket::supportsSsl() ? 0 : 1;
+}