NLnetLabs / ldns

LDNS is a DNS library that facilitates DNS tool programming
https://nlnetlabs.nl/ldns
BSD 3-Clause "New" or "Revised" License
292 stars 98 forks source link

Test suite requires OpenSSL #162

Closed FGasper closed 2 years ago

FGasper commented 2 years ago
  1. ./configure --without-ssl --disable-sha2 --disable-gost --disable-ecdsa --disable-dane
  2. make all examples drill test

OBSERVE: A few of the tests fail because of the missing OpenSSL. EXPECTED: The relevant tests should skip.

wtoorop commented 2 years ago

I had to disable some more algo's before it compiled, ./configure --without-ssl --disable-sha2 --disable-gost --disable-ecdsa --disable-dane --disable-ed25519 --disable-ed448 but the OpenSSL depending tests are now skipped if you did --without-ssl in commit e9a61ea2