llvm-project/lldb/test/python_api/thread
Johnny Chen 31963cea0a Add a decorator for marking clang only expectedFailure. Use it for the test_step_over_3_times_with_dsym/dwarf()
test cases in TestThreadAPI.py by decorating it with @expectedFailureClang.

Example:

    @expectedFailureClang
    @python_api_test
    def test_step_over_3_times_with_dwarf(self):
        """Test Python SBThread.StepOver() API."""
        # We build a different executable than the default buildDwarf() does.
        d = {'CXX_SOURCES': 'main2.cpp', 'EXE': self.exe_name}
        self.buildDwarf(dictionary=d)
        self.setTearDownCleanup(dictionary=d)
        self.step_over_3_times(self.exe_name)

llvm-svn: 138019
2011-08-19 00:54:27 +00:00
..
Makefile Add test cases for Python SBThread.StepOut() API by stepping out of a malloc call where the call site is at function b(). 2011-03-09 23:45:56 +00:00
TestThreadAPI.py Add a decorator for marking clang only expectedFailure. Use it for the test_step_over_3_times_with_dsym/dwarf() 2011-08-19 00:54:27 +00:00
main.cpp
main2.cpp Add test cases to TestThreadAPI.py to exercise SBThread.StepOver() by stopping at a breakpoint, 2011-03-10 22:32:47 +00:00