Home
last modified time | relevance | path

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

/bootable/recovery/tests/unit/
Dsysutil_test.cpp93 TemporaryFile temp_file1; in TEST() local
95 ASSERT_TRUE(android::base::WriteStringToFile(content, temp_file1.path)); in TEST()
99 ASSERT_TRUE(mapping.MapFile(temp_file1.path)); in TEST()
/bootable/recovery/tests/component/
Dupdater_test.cpp271 TemporaryFile temp_file1; in TEST_F() local
273 ASSERT_TRUE(android::base::WriteStringToFile(buffer, temp_file1.path)); in TEST_F()
324 TemporaryFile temp_file1; in TEST_F() local
325 std::string script("package_extract_file(\"a.txt\", \"" + std::string(temp_file1.path) + "\")"); in TEST_F()
330 ASSERT_TRUE(android::base::ReadFileToString(temp_file1.path, &data)); in TEST_F()
334 script = "package_extract_file(\"b.txt\", \"" + std::string(temp_file1.path) + "\")"; in TEST_F()
337 ASSERT_TRUE(android::base::ReadFileToString(temp_file1.path, &data)); in TEST_F()
341 script = "package_extract_file(\"doesntexist\", \"" + std::string(temp_file1.path) + "\")"; in TEST_F()