xref: /llvm-project/lldb/test/API/commands/gui/invalid-args/TestInvalidArgsGui.py (revision 2238dcc39358353cac21df75c3c3286ab20b8f53)
1import lldb
2from lldbsuite.test.lldbtest import *
3from lldbsuite.test.decorators import *
4
5
6class GuiTestCase(TestBase):
7    @no_debug_info_test
8    @skipIfCursesSupportMissing
9    def test_reproducer_generate_invalid_invocation(self):
10        self.expect(
11            "gui blub", error=True, substrs=["'gui' doesn't take any arguments."]
12        )
13