Index: third_party/android_crazy_linker/src/tests/test_dl_wrappers.cpp |
diff --git a/third_party/android_crazy_linker/src/tests/test_dl_wrappers.cpp b/third_party/android_crazy_linker/src/tests/test_dl_wrappers.cpp |
new file mode 100644 |
index 0000000000000000000000000000000000000000..a2aa0c77fb8a46c956434a4482e20a7e5aabef02 |
--- /dev/null |
+++ b/third_party/android_crazy_linker/src/tests/test_dl_wrappers.cpp |
@@ -0,0 +1,50 @@ |
+// Copyright (c) 2013 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+// A crazy linker test to: |
+// - Load a library (libzoo.so) with the linker. |
+// - Find the address of the "Zoo" function in libzoo.so. |
+// - Call the Zoo() function, which will use dlopen() / dlsym() to |
+// find libbar.so (which depends on libfoo.so). |
+// - Close the library. |
+ |
+// This tests the dlopen/dlsym/dlclose wrappers provided by the crazy |
+// linker to loaded libraries. |
+ |
+#include <stdio.h> |
+#include <crazy_linker.h> |
+ |
+#include "test_util.h" |
+ |
+typedef bool (*FunctionPtr)(); |
+ |
+int main() { |
+ crazy_context_t* context = crazy_context_create(); |
+ crazy_library_t* library; |
+ |
+ // Load libzoo.so |
+ if (!crazy_library_open(&library, "libzoo.so", context)) { |
+ Panic("Could not open library: %s\n", crazy_context_get_error(context)); |
+ } |
+ |
+ // Find the "Zoo" symbol. |
+ FunctionPtr zoo_func; |
+ if (!crazy_library_find_symbol( |
+ library, "Zoo", reinterpret_cast<void**>(&zoo_func))) { |
+ Panic("Could not find 'Zoo' in libzoo.so\n"); |
+ } |
+ |
+ // Call it. |
+ bool ret = (*zoo_func)(); |
+ if (!ret) |
+ Panic("'Zoo' function failed!"); |
+ |
+ // Close the library. |
+ printf("Closing libzoo.so\n"); |
+ crazy_library_close(library); |
+ |
+ crazy_context_destroy(context); |
+ |
+ return 0; |
+} |