summaryrefslogtreecommitdiffstats
path: root/tests/auto/network/ssl/ssl.pro
diff options
context:
space:
mode:
authorTimur Pocheptsov <timur.pocheptsov@qt.io>2018-04-16 13:03:38 +0200
committerTimur Pocheptsov <timur.pocheptsov@qt.io>2018-06-19 05:31:30 +0000
commitd77d4fc548075120213b8876259f65818cb9561e (patch)
tree08e98af8ddb3a7c1d8d41c5b06d092be06937665 /tests/auto/network/ssl/ssl.pro
parentac583b686d0677517e7f8a10ce4e79c7fe227ccf (diff)
QDtlsClientVerifier - add auto-test
This part of DTLS is relatively easy to test: we never do a complete handshake. Certificates, verification, ciphers, etc. - do not matter at this stage (to be tested in tst_QDtls). Errors are mostly insignificant and can be ignored or handled trivially. The test is OpenSSL-only: SecureTransport failed to correctly implement/ support server-side DTLS, the problem reported quite some time ago and no fixes from Apple so far. Task-number: QTBUG-67597 Change-Id: I21ad4907de444ef95d5d83b50083ffe211a184f8 Reviewed-by: MÃ¥rten Nordheim <marten.nordheim@qt.io> Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
Diffstat (limited to 'tests/auto/network/ssl/ssl.pro')
-rw-r--r--tests/auto/network/ssl/ssl.pro8
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/auto/network/ssl/ssl.pro b/tests/auto/network/ssl/ssl.pro
index 5f2173044e..1729f046aa 100644
--- a/tests/auto/network/ssl/ssl.pro
+++ b/tests/auto/network/ssl/ssl.pro
@@ -1,5 +1,5 @@
TEMPLATE=subdirs
-QT_FOR_CONFIG += network
+QT_FOR_CONFIG += network-private
SUBDIRS=\
qpassworddigestor \
@@ -14,7 +14,11 @@ qtConfig(ssl) {
SUBDIRS += \
qsslsocket \
qsslsocket_onDemandCertificates_member \
- qsslsocket_onDemandCertificates_static \
+ qsslsocket_onDemandCertificates_static
+ qtConfig(openssl) {
+ SUBDIRS += \
+ qdtlscookie
+ }
}
}