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:
parent
da39dffd08
commit
3712a219cb
@ -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
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user