Searched refs:addSkip (Results 1 – 6 of 6) sorted by relevance
| /llvm-project-15.0.7/lldb/third_party/Python/module/unittest2/unittest2/ |
| H A D | suite.py | 183 addSkip = getattr(result, 'addSkip', None) 184 if addSkip is not None and isinstance(exception, case.SkipTest): 185 addSkip(error, str(exception))
|
| H A D | runner.py | 98 def addSkip(self, test, reason): member in TextTestResult 99 super(TextTestResult, self).addSkip(test, reason)
|
| H A D | result.py | 135 def addSkip(self, test, reason): member in TestResult
|
| H A D | case.py | 335 addSkip = getattr(result, 'addSkip', None) 336 if addSkip is not None: 337 addSkip(self, reason)
|
| /llvm-project-15.0.7/lldb/third_party/Python/module/unittest2/unittest2/test/ |
| H A D | support.py | 76 def addSkip(self, *args): member in LoggingResult 78 super(LoggingResult, self).addSkip(*args)
|
| /llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/ |
| H A D | test_result.py | 270 def addSkip(self, test, reason): member in LLDBTestResult 272 super(LLDBTestResult, self).addSkip(test, reason)
|