Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/third_party/Python/module/unittest2/unittest2/test/
H A Dtest_discovery.py46 self.addCleanup(restore_listdir)
51 self.addCleanup(restore_isdir)
57 self.addCleanup(restore_isfile)
91 self.addCleanup(restore_listdir)
94 self.addCleanup(restore_isdir)
97 self.addCleanup(restore_isfile)
154 self.addCleanup(restore_isfile)
160 self.addCleanup(restore_path)
175 self.addCleanup(restore_isdir)
207 self.addCleanup(restore)
[all …]
H A Dtest_program.py29 self.addCleanup(restoreParseArgs)
34 self.addCleanup(removeTest)
233 self.addCleanup(restore)
H A Dtest_case.py67 test.addCleanup(cleanup1, 1, 2, 3, four='hello', five='goodbye')
68 test.addCleanup(cleanup2)
108 test.addCleanup(cleanup1)
109 test.addCleanup(cleanup2)
142 test.addCleanup(cleanup1)
143 test.addCleanup(cleanup2)
159 test.addCleanup(cleanup1)
170 self.addCleanup(cleanup1)
182 test.addCleanup(cleanup2)
H A Dtest_runner.py44 self.addCleanup(cleanup)
H A Dtest_suite.py346 self.addCleanup(sys.modules.pop, 'Module')
/openbsd-src/gnu/llvm/llvm/utils/
H A Drevert_checker_test.py53 self.addCleanup(root.removeFilter, filt)
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGExprAgg.cpp1675 auto addCleanup = [&](const EHScopeStack::stable_iterator &cleanup) { in VisitCXXParenListOrInitListExpr() local
1706 addCleanup(CGF.EHStack.stable_begin()); in VisitCXXParenListOrInitListExpr()
1785 addCleanup(CGF.EHStack.stable_begin()); in VisitCXXParenListOrInitListExpr()
/openbsd-src/gnu/llvm/lldb/third_party/Python/module/unittest2/unittest2/
H A Dcase.py269 def addCleanup(self, function, *args, **kwargs): member in TestCase