Differences From Artifact [95c47b8587]:
- File tests/common.tcl — part of check-in [d966a301eb] at 2024-02-24 22:22:56 on branch trunk — Clean-up gcc compiler warnings (user: bohagan, size: 667) [annotate] [blame] [check-ins using] [more...]
To Artifact [3f4b3346c0]:
- File tests/common.tcl — part of check-in [6fd974ebf0] at 2024-02-10 03:37:46 on branch trunk — Updated test cases for OpenSSL 3.0 (user: bohagan, size: 741) [annotate] [blame] [check-ins using] [more...]
︙ | |||
17 18 19 20 21 22 23 | 17 18 19 20 21 22 23 24 25 26 27 28 | + + + + + | # OpenSSL version ::tcltest::testConstraint OpenSSL [string match "OpenSSL*" [::tls::version]] # Legacy OpenSSL v1.1.1 vs new v3.x scan [lindex [split [::tls::version]] 1] %f version ::tcltest::testConstraint new_api [expr {$version >= 3.0}] ::tcltest::testConstraint old_api [expr {$version < 3.0}] # Load legacy provider if {$version >= 3.0} { tls::provider legacy } |