Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/unittests/BinaryFormat/
H A DTestFileMagic.cpp133 SmallString<128> file_pathname(TestDirectory); in TEST_F() local
134 llvm::sys::path::append(file_pathname, i->filename); in TEST_F()
136 raw_fd_ostream file(file_pathname, EC, sys::fs::OF_None); in TEST_F()
142 ASSERT_NO_ERROR(fs::remove(Twine(file_pathname))); in TEST_F()
/llvm-project-15.0.7/llvm/unittests/Support/
H A DProgramTest.cpp325 SmallString<128> file_pathname(TestDirectory); in TEST() local
326 path::append(file_pathname, "international-file.txt"); in TEST()
328 ASSERT_NO_ERROR(sys::writeFileWithEncoding(file_pathname.c_str(), utf8_text, in TEST()
331 ASSERT_NO_ERROR(fs::openFileForRead(file_pathname.c_str(), fd)); in TEST()
350 ASSERT_NO_ERROR(fs::remove(file_pathname.str())); in TEST()