Searched refs:TestFile (Results 1 – 14 of 14) sorted by relevance
4 # RUN: touch %t.TestFile5 # RUN: chmod 400 %t.TestFile6 # RUN: not llvm-ifs --output-elf=%t.TestFile %s 2>&1 | FileCheck -DMSG=%errc_EACCES %s --check-pref…7 # RUN: chmod 777 %t.TestFile8 # RUN: rm -rf %t.TestFile
6 # RUN: touch %t.TestDir/Output.TestFile8 # RUN: not llvm-ifs --output-elf=%t.TestDir/Output.TestFile %s 2>&1 | FileCheck -DMSG=%errc_EACCES …18 # ERR: [[MSG]] when trying to open `{{.*}}.TestDir/Output.TestFile` for writing
29 llvm::Expected<TestFile> TestFile::fromYaml(llvm::StringRef Yaml) { in fromYaml()36 return TestFile(std::move(Buffer)); in fromYaml()39 llvm::Expected<TestFile> TestFile::fromYamlFile(const llvm::Twine &Name) { in fromYamlFile()
34 class TestFile {36 static llvm::Expected<TestFile> fromYaml(llvm::StringRef Yaml);37 static llvm::Expected<TestFile> fromYamlFile(const llvm::Twine &Name);44 TestFile(std::string &&Buffer) : Buffer(std::move(Buffer)) {} in TestFile() function
56 auto ExpectedFile = TestFile::fromYaml(R"( in TEST()81 auto ExpectedFile = TestFile::fromYaml(R"( in TEST()122 auto ExpectedFile = TestFile::fromYaml(R"( in TEST()
116 auto ExpectedFile = TestFile::fromYaml(R"( in TEST()
18 llvm::Expected<TestFile> File = TestFile::fromYaml(yaml_data); in YAMLModuleTester()
30 llvm::Optional<TestFile> m_file;
38 auto ExpectedFile = TestFile::fromYaml(R"( in TEST_F()173 auto ExpectedFile = TestFile::fromYaml(R"( in TEST_F()235 auto ExpectedFile = TestFile::fromYaml(R"( in TEST_F()
43 llvm::Optional<TestFile> m_file;48 auto ExpectedFile = TestFile::fromYamlFile("inlined-functions.yaml"); in SetUp()
60 auto ExpectedFile = TestFile::fromYaml(R"( in TEST_F()317 auto ExpectedFile = TestFile::fromYaml(R"( in TEST_F()
79 auto ExpectedFile = TestFile::fromYaml(R"( in TestBasic()
11 class TestFile(unittest.TestCase): class
33 llvm::Expected<TestFile> ExpectedFile = TestFile::fromYaml( in GetUnwindPlan()