@@ -52,7 +52,7 @@ TEST(DynamicLibraryManagerTest, Sanity) {
52
52
// adds an additional underscore (_) prefix to the lowered names. Figure out
53
53
// how to harmonize that API.
54
54
std::string PathToTestSharedLib =
55
- Cpp::SearchLibrariesForSymbol (MangleNameForDlsym (" ret_zero" ).c_str (), /* system_search =*/ false );
55
+ Cpp::SearchLibrariesForSymbol (MangleNameForDlsym (" ret_zero" ).c_str (), /* search_system =*/ false );
56
56
EXPECT_STRNE (" " , PathToTestSharedLib.c_str ())
57
57
<< " Cannot find: '" << PathToTestSharedLib << " ' in '" << Dir.str () << " '" ;
58
58
EXPECT_TRUE (Cpp::LoadLibrary (PathToTestSharedLib.c_str ()));
@@ -88,7 +88,7 @@ TEST(DynamicLibraryManagerTest, LibrariesAutoload) {
88
88
// how to harmonize that API. For now we use out minimal implementation of
89
89
// helper function.
90
90
std::string PathToTestSharedLib1 =
91
- Cpp::SearchLibrariesForSymbol (MangleNameForDlsym (" ret_one" ).c_str (), /* system_search =*/ false );
91
+ Cpp::SearchLibrariesForSymbol (MangleNameForDlsym (" ret_one" ).c_str (), /* search_system =*/ false );
92
92
// If result is "" then we cannot find this library.
93
93
EXPECT_STRNE (" " , PathToTestSharedLib1.c_str ())
94
94
<< " Cannot find: '" << PathToTestSharedLib1 << " ' in '" << Dir.str () << " '" ;
@@ -133,7 +133,7 @@ TEST(DynamicLibraryManagerTest, LibrariesAutoload) {
133
133
134
134
// Find library with "ret_1" symbol defined and exported
135
135
std::string PathToTestSharedLib2 =
136
- Cpp::SearchLibrariesForSymbol (MangleNameForDlsym (" ret_1" ).c_str (), /* system_search =*/ false );
136
+ Cpp::SearchLibrariesForSymbol (MangleNameForDlsym (" ret_1" ).c_str (), /* search_system =*/ false );
137
137
// If result is "" then we cannot find this library.
138
138
EXPECT_STRNE (" " , PathToTestSharedLib2.c_str ())
139
139
<< " Cannot find: '" << PathToTestSharedLib2 << " ' in '" << Dir.str () << " '" ;
@@ -175,7 +175,7 @@ TEST(DynamicLibraryManagerTest, LibrariesAutoloadExtraCoverage) {
175
175
// } else {
176
176
// Find library with "ret_value" symbol defined and exported
177
177
std::string PathToTestSharedLib3 =
178
- Cpp::SearchLibrariesForSymbol (MangleNameForDlsym (" ret_val" ).c_str (), /* system_search =*/ false );
178
+ Cpp::SearchLibrariesForSymbol (MangleNameForDlsym (" ret_val" ).c_str (), /* search_system =*/ false );
179
179
// If result is "" then we cannot find this library.
180
180
EXPECT_STRNE (" " , PathToTestSharedLib3.c_str ())
181
181
<< " Cannot find: '" << PathToTestSharedLib3 << " ' in '" << Dir.str () << " '" ;
0 commit comments