Home | History | Annotate | Download | only in Support

Lines Matching refs:fs

34         fs::createUniqueDirectory("FileOutputBuffer-test", TestDirectory));
53 ASSERT_NO_ERROR(fs::file_size(Twine(File1), File1Size));
55 ASSERT_NO_ERROR(fs::remove(File1.str()));
69 ASSERT_NO_ERROR(fs::exists(Twine(File2), Exists));
71 ASSERT_NO_ERROR(fs::remove(File2.str()));
89 ASSERT_NO_ERROR(fs::file_size(Twine(File3), File3Size));
91 ASSERT_NO_ERROR(fs::remove(File3.str()));
106 fs::file_status Status;
107 ASSERT_NO_ERROR(fs::status(Twine(File4), Status));
108 bool IsExecutable = (Status.permissions() & fs::owner_exe);
110 ASSERT_NO_ERROR(fs::remove(File4.str()));
113 ASSERT_NO_ERROR(fs::remove(TestDirectory.str()));