1from lldbsuite.test.lldbtest import Base
2from lldbsuite.test.decorators import *
3
4
5class TestDecorators(Base):
6
7    mydir = Base.compute_mydir(__file__)
8    NO_DEBUG_INFO_TESTCASE = True
9
10    @expectedFailureAll(debug_info="dwarf")
11    def test_decorator_skip_no_debug_info(self):
12        """Test that specifying a debug info category works for a NO_DEBUG_INFO_TESTCASE"""
13        pass
14