Searched refs:test_lib (Results 1 – 2 of 2) sorted by relevance
395 void* test_lib = GetTestLibHandle(); in TEST_F() local396 ASSERT_TRUE(test_lib != nullptr); in TEST_F()397 void (*wait_func)() = reinterpret_cast<void (*)()>(dlsym(test_lib, "WaitForever")); in TEST_F()
2393 std::string test_lib(testing::internal::GetArgvs()[0]); in GetTestLibraryPath() local2394 auto const value = test_lib.find_last_of('/'); in GetTestLibraryPath()2396 test_lib = "./"; in GetTestLibraryPath()2398 test_lib = test_lib.substr(0, value + 1) + "./"; in GetTestLibraryPath()2400 return test_lib + "libcrash_test.so"; in GetTestLibraryPath()2404 std::string test_lib(GetTestLibraryPath()); in CreateEmbeddedLibrary() local2405 android::base::unique_fd fd(open(test_lib.c_str(), O_RDONLY | O_CLOEXEC)); in CreateEmbeddedLibrary()2455 std::string test_lib(GetTestLibraryPath()); in CopySharedLibrary() local2458 std::string cp_cmd = android::base::StringPrintf("cp %s %s", test_lib.c_str(), tmp_dir); in CopySharedLibrary()