summaryrefslogtreecommitdiffstats
path: root/src/bin/dhcp4/tests/test_libraries.h.in
blob: 9b9a243b8bdd2123ba25f1194f6228ea5e83c35d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// 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 <config.h>

namespace {

#define DLL_SUFFIX ".so"

// 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
// shared library.

// Library with load/unload functions creating marker files to check their
// operation.
const char* const CALLOUT_LIBRARY_1 = "@abs_builddir@/.libs/libco1.so";
const char* const CALLOUT_LIBRARY_2 = "@abs_builddir@/.libs/libco2.so";
const char* const CALLOUT_LIBRARY_3 = "@abs_builddir@/.libs/libco3.so";

// Name of a library which is not present.
const char* const NOT_PRESENT_LIBRARY = "@abs_builddir@/.libs/libnothere.so";

} // anonymous namespace


#endif // TEST_LIBRARIES_H