Merge pull request #786

5092e45 tests: unbound API is only accessible in static builds (moneromooo-monero)
This commit is contained in:
Riccardo Spagni 2016-04-14 16:26:29 +09:00
commit b52148201b
No known key found for this signature in database
GPG key ID: 55432DF31CCD4FCD

View file

@ -30,6 +30,8 @@
#include "gtest/gtest.h"
#ifdef STATICLIB
extern "C" int dnskey_algo_id_is_supported(int);
TEST(unbound, supported_algorithms)
@ -47,3 +49,5 @@ TEST(unbound, supported_algorithms)
ASSERT_TRUE(dnskey_algo_id_is_supported(13));
}
#endif