Home
last modified time | relevance | path

Searched refs:assertRegexpMatches (Results 1 – 8 of 8) sorted by relevance

/llvm-project-15.0.7/lldb/test/API/tools/lldb-server/
H A DTestGdbRemoteModuleInfo.py33 self.assertRegexpMatches(spec, '"file_path":".*"')
34 self.assertRegexpMatches(spec, '"file_offset":\d+')
35 self.assertRegexpMatches(spec, '"file_size":\d+')
36 self.assertRegexpMatches(spec, '"triple":"\w*-\w*-.*"')
37 self.assertRegexpMatches(spec, '"uuid":"[A-Fa-f0-9]+"')
/llvm-project-15.0.7/lldb/test/API/functionalities/wrong_commands/
H A DTestWrongCommands.py21 self.assertRegexpMatches(result.GetError(), "Ambiguous command 'g'. Possible matches:")
22 self.assertRegexpMatches(result.GetError(), "gui")
23 self.assertRegexpMatches(result.GetError(), "gdb-remote")
/llvm-project-15.0.7/lldb/test/API/functionalities/memory-region/
H A DTestMemoryRegion.py56 self.assertRegexpMatches(result.GetError(),
71 self.assertRegexpMatches(result.GetOutput(), "\\[0x0+-")
84 …self.assertRegexpMatches(result.GetError(), "Usage: memory region <address\-expression> \(or \-\-a…
/llvm-project-15.0.7/lldb/test/API/linux/aarch64/tagged_memory_region/
H A DTestAArch64LinuxTaggedMemoryRegion.py56 self.assertRegexpMatches(result.GetError(), "Usage: memory region")
/llvm-project-15.0.7/lldb/test/API/linux/aarch64/tagged_memory_access/
H A DTestAArch64LinuxTaggedMemoryAccess.py79 self.assertRegexpMatches(out, "data found at location: 0x[0-9A-Fa-f]+")
/llvm-project-15.0.7/lldb/test/API/tools/lldb-vscode/evaluate/
H A DTestVSCode_evaluate.py16 self.assertRegexpMatches(
/llvm-project-15.0.7/lldb/third_party/Python/module/unittest2/unittest2/test/
H A Dtest_case.py1168 self.assertRegexpMatches('asdfabasdf', r'ab+')
1169 self.assertRaises(self.failureException, self.assertRegexpMatches,
/llvm-project-15.0.7/lldb/third_party/Python/module/unittest2/unittest2/
H A Dcase.py1092 def assertRegexpMatches(self, text, expected_regexp, msg=None): member in TestCase