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