qt5base-lts/tests/auto/network/ssl/qocsp/qocsp.pro
Timur Pocheptsov 6a28f67677 Add tst_QOcsp auto-test
This patch introduces a private 'API' to enable server-side OCSP responses
and implements a simple OCSP responder, tests OCSP status on a client
side (the test is pretty basic, but for now should suffice).

Change-Id: I4c6cacd4a1b949dd0ef5e6b59322fb0967d02120
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
2018-12-06 05:14:45 +00:00

16 lines
223 B
Prolog

CONFIG += testcase
SOURCES += tst_qocsp.cpp
QT = core network network-private testlib
TARGET = tst_qocsp
win32 {
CONFIG(debug, debug|release) {
DESTDIR = debug
} else {
DESTDIR = release
}
}