aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2016-04-14 16:26:29 +0900
committerRiccardo Spagni <ric@spagni.net>2016-04-14 16:26:29 +0900
commitb52148201b27f4b805557632bd09f09d605163eb (patch)
tree3b53d6337828ec6d94cd39a5ecdd1759bee17bb1 /tests
parentMerge pull request #785 (diff)
parenttests: unbound API is only accessible in static builds (diff)
downloadmonero-b52148201b27f4b805557632bd09f09d605163eb.tar.xz
Merge pull request #786
5092e45 tests: unbound API is only accessible in static builds (moneromooo-monero)
Diffstat (limited to 'tests')
-rw-r--r--tests/unit_tests/unbound.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/unit_tests/unbound.cpp b/tests/unit_tests/unbound.cpp
index 25026ec58..666f68127 100644
--- a/tests/unit_tests/unbound.cpp
+++ b/tests/unit_tests/unbound.cpp
@@ -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
+