summaryrefslogtreecommitdiffstats
path: root/tests/auto/network
diff options
context:
space:
mode:
authorTimur Pocheptsov <timur.pocheptsov@qt.io>2020-11-12 13:20:51 +0100
committerTimur Pocheptsov <timur.pocheptsov@qt.io>2020-11-13 18:05:08 +0100
commit9662ff67cefe5882a07752dee97735ad36f40a15 (patch)
tree03c8cbd68f4f09e5c25fd9b3ed11f3c72d84492b /tests/auto/network
parentd8efe51303a08e93240766c620d2a7be3df0dd04 (diff)
tst_qsslkey - handle QT_NO_SSL properly
The recent change handling missing elliptic curves introduced a problem for '-no-ssl' configuration/build. The first version had some protection, but it was openssl-specific and required a private feature, thus was removed. Now the real ifdef must be with QT_NO_SSL Fixes: QTBUG-88238 Pick-to: 5.15 Change-Id: I6fba26d6ab63850e1468e76f8b234703255a026c Reviewed-by: MÃ¥rten Nordheim <marten.nordheim@qt.io>
Diffstat (limited to 'tests/auto/network')
-rw-r--r--tests/auto/network/ssl/qsslkey/tst_qsslkey.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/auto/network/ssl/qsslkey/tst_qsslkey.cpp b/tests/auto/network/ssl/qsslkey/tst_qsslkey.cpp
index b1dbd2773b..dbb7390591 100644
--- a/tests/auto/network/ssl/qsslkey/tst_qsslkey.cpp
+++ b/tests/auto/network/ssl/qsslkey/tst_qsslkey.cpp
@@ -117,6 +117,7 @@ private:
tst_QSslKey::tst_QSslKey()
{
+#ifndef QT_NO_SSL
const QString expectedCurves[] = {
// See how we generate them in keys/genkey.sh.
QStringLiteral("secp224r1"),
@@ -139,6 +140,9 @@ tst_QSslKey::tst_QSslKey()
unsupportedCurves.push_back(requestedEc);
}
}
+#else
+ unsupportedCurves = {}; // not unsued anymore.
+#endif
}
bool tst_QSslKey::fileContainsUnsupportedEllipticCurve(const QString &fileName) const