2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 05:57:52 +00:00

Re-enable enginepkcs11 system test

The condition in prereq.sh which attempts to match two string uses
integer equality operation. This results in an error, causing the
enginepkcs11 test to always be skipped. Use = operator for the string
comparison instead.
This commit is contained in:
Tom Krizek 2024-02-26 18:08:23 +01:00
parent da39dffd08
commit 3712a219cb
No known key found for this signature in database
GPG Key ID: 01623B9B652A20A7

View File

@ -13,7 +13,7 @@
. ../conf.sh
[ "prereq/var/tmp/etc/openssl-provider.cnf" -eq "prereq${OPENSSL_CONF}" ] || {
[ "prereq/var/tmp/etc/openssl-provider.cnf" = "prereq${OPENSSL_CONF}" ] || {
echo_i "skip: pkcs11-provider not enabled"
exit 255
}