// Copyright (C) 2013-2018 Internet Systems Consortium, Inc. ("ISC") // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. #ifndef TEST_LIBRARIES_H #define TEST_LIBRARIES_H #include namespace { // Names of the libraries used in these tests. These libraries are built using // libtool, so we need to look in the hidden ".libs" directory to locate the // .so file. Note that we access the .so file - libtool creates this as a // like to the real shared library. // Basic library with context_create and three "standard" callouts. static const char* BASIC_CALLOUT_LIBRARY = "@abs_builddir@/.libs/libbcl.so"; // Library with context_create and three "standard" callouts, as well as // load() and unload() functions. static const char* FULL_CALLOUT_LIBRARY = "@abs_builddir@/.libs/libfcl.so"; // Library where the all framework functions throw an exception static const char* FRAMEWORK_EXCEPTION_LIBRARY = "@abs_builddir@/.libs/libfxl.so"; // Library where the version() function returns an incorrect result. static const char* INCORRECT_VERSION_LIBRARY = "@abs_builddir@/.libs/libivl.so"; // Library where some of the callout registration is done with the load() // function. static const char* LOAD_CALLOUT_LIBRARY = "@abs_builddir@/.libs/liblcl.so"; // Library where the load() function returns an error. static const char* LOAD_ERROR_CALLOUT_LIBRARY = "@abs_builddir@/.libs/liblecl.so"; // Name of a library which is not present. static const char* NOT_PRESENT_LIBRARY = "@abs_builddir@/.libs/libnothere.so"; // Library that does not include a version function. static const char* NO_VERSION_LIBRARY = "@abs_builddir@/.libs/libnvl.so"; // Library where there is an unload() function. static const char* UNLOAD_CALLOUT_LIBRARY = "@abs_builddir@/.libs/libucl.so"; // Library where parameters are checked. static const char* CALLOUT_PARAMS_LIBRARY = "@abs_builddir@/.libs/libpcl.so"; // Library which tests objects parking. // Used only by hooks_manager_unittest.cc. #ifdef TEST_ASYNC_CALLOUT static const char* ASYNC_CALLOUT_LIBRARY = "@abs_builddir@/.libs/libacl.so"; #endif } // anonymous namespace #endif // TEST_LIBRARIES_H