Home | History | Annotate | Download | only in Support

Lines Matching refs:fs

129     ASSERT_NO_ERROR(fs::make_absolute(temp_store));
153 fs::unique_file("file-system-test-%%-%%-%%-%%/test-directory.anchor", fd,
164 ASSERT_NO_ERROR(fs::remove_all(TestDirectory.str(), removed));
173 fs::unique_file("%%-%%-%%-%%.temp", FileDescriptor, TempPath));
177 ASSERT_NO_ERROR(sys::fs::exists(Twine(TempPath), TempFileExists));
183 ASSERT_NO_ERROR(fs::unique_file("%%-%%-%%-%%.temp", FD2, TempPath2));
188 fs::copy_file(Twine(TempPath), Twine(TempPath2)), errc::file_exists);
192 ASSERT_NO_ERROR(fs::copy_file(Twine(TempPath), Twine(TempPath2),
193 fs::copy_option::overwrite_if_exists));
195 ASSERT_NO_ERROR(fs::remove(Twine(TempPath2), TempFileExists));
199 ASSERT_NO_ERROR(fs::exists(Twine(TempPath2), TempFileExists));
203 ASSERT_NO_ERROR(fs::create_hard_link(Twine(TempPath), Twine(TempPath2)));
205 ASSERT_NO_ERROR(fs::equivalent(Twine(TempPath), Twine(TempPath2), equal));
210 ASSERT_NO_ERROR(fs::remove(Twine(TempPath), TempFileExists));
214 ASSERT_NO_ERROR(fs::remove(Twine(TempPath2), TempFileExists));
218 ASSERT_NO_ERROR(fs::exists(Twine(TempPath), TempFileExists));
224 for (fs::directory_iterator i(".", ec), e; i != e; i.increment(ec))
248 ASSERT_NO_ERROR(fs::has_magic(file_pathname.c_str(), magic, res));