blob: 333f9901f382aca3942779a7fc3b70af8c50c1eb (
plain)
1
2
3
4
5
6
|
file(DOWNLOAD https://expired.badssl.com TLS_VERIFY 1 STATUS status LOG log)
message(STATUS "${status}")
list(GET status 0 code)
if(NOT code MATCHES "^(35|60)$")
message("${log}")
endif()
|