Home
last modified time | relevance | path

Searched refs:lib_info (Results 1 – 2 of 2) sorted by relevance

/third_party/boost/libs/dll/test/
Dempty_library_info_test.cpp23 boost::dll::library_info lib_info(shared_library_path); in main() local
24 std::vector<std::string> sec = lib_info.sections(); in main()
28 std::vector<std::string> symb = lib_info.symbols(); in main()
31 symb = lib_info.symbols("boostdll"); in main()
34 std::vector<std::string> empty = lib_info.symbols("empty"); in main()
37 BOOST_TEST(lib_info.symbols("section_that_does_not_exist").empty()); in main()
Dlibrary_info_test.cpp27 boost::dll::library_info lib_info(shared_library_path); in main() local
28 std::vector<std::string> sec = lib_info.sections(); in main()
34 std::vector<std::string> symb = lib_info.symbols(); in main()
39 symb = lib_info.symbols("boostdll"); in main()
45 BOOST_TEST(lib_info.symbols(std::string("boostdll")) == symb); in main()
47 std::vector<std::string> empty = lib_info.symbols("empty"); in main()
50 BOOST_TEST(lib_info.symbols("section_that_does_not_exist").empty()); in main()