Home
last modified time | relevance | path

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

/system/apex/apexd/
Dapex_file_test.cpp312 const std::string symlink_path = in TEST() local
316 int ret = unlink(symlink_path.c_str()); in TEST()
318 << "failed to unlink " << symlink_path; in TEST()
320 ret = symlink(real_path.c_str(), symlink_path.c_str()); in TEST()
321 ASSERT_EQ(0, ret) << "failed to create symlink at " << symlink_path; in TEST()
324 Result<ApexFile> apex_file = ApexFile::Open(symlink_path); in TEST()