mirror of
https://github.com/isc-projects/bind9.git
synced 2026-03-29 13:53:29 -04: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
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Reference in a new issue