mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-30 22:15:20 +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:
@@ -13,7 +13,7 @@
|
|||||||
|
|
||||||
. ../conf.sh
|
. ../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"
|
echo_i "skip: pkcs11-provider not enabled"
|
||||||
exit 255
|
exit 255
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user