Home
last modified time | relevance | path

Searched refs:TestFile (Results 1 – 14 of 14) sorted by relevance

/llvm-project-15.0.7/llvm/test/tools/llvm-ifs/
H A Dfail-file-write-windows.test4 # RUN: touch %t.TestFile
5 # RUN: chmod 400 %t.TestFile
6 # RUN: not llvm-ifs --output-elf=%t.TestFile %s 2>&1 | FileCheck -DMSG=%errc_EACCES %s --check-pref…
7 # RUN: chmod 777 %t.TestFile
8 # RUN: rm -rf %t.TestFile
H A Dfail-file-write.test6 # RUN: touch %t.TestDir/Output.TestFile
8 # 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
/llvm-project-15.0.7/lldb/unittests/TestingSupport/
H A DTestUtilities.cpp29 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()
H A DTestUtilities.h34 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
/llvm-project-15.0.7/lldb/unittests/Core/
H A DModuleSpecTest.cpp56 auto ExpectedFile = TestFile::fromYaml(R"( in TEST()
81 auto ExpectedFile = TestFile::fromYaml(R"( in TEST()
122 auto ExpectedFile = TestFile::fromYaml(R"( in TEST()
H A DMangledTest.cpp116 auto ExpectedFile = TestFile::fromYaml(R"( in TEST()
/llvm-project-15.0.7/lldb/unittests/TestingSupport/Symbol/
H A DYAMLModuleTester.cpp18 llvm::Expected<TestFile> File = TestFile::fromYaml(yaml_data); in YAMLModuleTester()
H A DYAMLModuleTester.h30 llvm::Optional<TestFile> m_file;
/llvm-project-15.0.7/lldb/unittests/ObjectFile/ELF/
H A DTestObjectFileELF.cpp38 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()
/llvm-project-15.0.7/lldb/unittests/Symbol/
H A DTestLineEntry.cpp43 llvm::Optional<TestFile> m_file;
48 auto ExpectedFile = TestFile::fromYamlFile("inlined-functions.yaml"); in SetUp()
H A DSymtabTest.cpp60 auto ExpectedFile = TestFile::fromYaml(R"( in TEST_F()
317 auto ExpectedFile = TestFile::fromYaml(R"( in TEST_F()
H A DTestDWARFCallFrameInfo.cpp79 auto ExpectedFile = TestFile::fromYaml(R"( in TestBasic()
/llvm-project-15.0.7/clang/bindings/python/tests/cindex/
H A Dtest_file.py11 class TestFile(unittest.TestCase): class
/llvm-project-15.0.7/lldb/unittests/ObjectFile/PECOFF/
H A DTestPECallFrameInfo.cpp33 llvm::Expected<TestFile> ExpectedFile = TestFile::fromYaml( in GetUnwindPlan()