]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/dll/test/shared_library_search_symbol_test.cpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / libs / dll / test / shared_library_search_symbol_test.cpp
CommitLineData
7c673cae
FG
1// Copyright 2011-2012 Renato Tegon Forti
2// Copyright 2014 Renato Tegon Forti, Antony Polukhin.
92f5a8d4 3// Copyright 2015-2019 Antony Polukhin.
7c673cae
FG
4//
5// Distributed under the Boost Software License, Version 1.0.
6// (See accompanying file LICENSE_1_0.txt
7// or copy at http://www.boost.org/LICENSE_1_0.txt)
8
9// For more information, see http://www.boost.org
10
11#include "../example/b2_workarounds.hpp"
12#include <boost/dll.hpp>
13#include <boost/core/lightweight_test.hpp>
14
15// Unit Tests
16
17extern "C" void BOOST_SYMBOL_EXPORT exef() {
18}
19
20int main(int argc, char* argv[])
21{
22 using namespace boost::dll;
23
92f5a8d4 24 boost::dll::fs::path shared_library_path = b2_workarounds::first_lib_from_argv(argc, argv);
7c673cae
FG
25 BOOST_TEST(shared_library_path.string().find("test_library") != std::string::npos);
26 BOOST_TEST(b2_workarounds::is_shared_library(shared_library_path));
27 std::cout << "Library: " << shared_library_path;
28
29 {
30 shared_library sl(shared_library_path);
31 BOOST_TEST(sl.has("say_hello"));
32 BOOST_TEST(sl.has("lib_version"));
33 BOOST_TEST(sl.has("integer_g"));
34 BOOST_TEST(sl.has(std::string("integer_g")));
35 BOOST_TEST(!sl.has("i_do_not_exist"));
36 BOOST_TEST(!sl.has(std::string("i_do_not_exist")));
37 }
38
39 {
40 shared_library sl(program_location());
41 BOOST_TEST(sl.has("exef"));
42 BOOST_TEST(!sl.has("i_do_not_exist"));
43 }
44
45
46 exef(); // Make sure that this function still callable in traditional way
47 return boost::report_errors();
48}
49