Home
last modified time | relevance | path

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 Dsuite.py183 addSkip = getattr(result, 'addSkip', None)
184 if addSkip is not None and isinstance(exception, case.SkipTest):
185 addSkip(error, str(exception))
H A Drunner.py98 def addSkip(self, test, reason): member in TextTestResult
99 super(TextTestResult, self).addSkip(test, reason)
H A Dresult.py135 def addSkip(self, test, reason): member in TestResult
H A Dcase.py335 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 Dsupport.py76 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 Dtest_result.py270 def addSkip(self, test, reason): member in LLDBTestResult
272 super(LLDBTestResult, self).addSkip(test, reason)