1import lldb 2from lldbsuite.test.lldbtest import * 3from lldbsuite.test.decorators import * 4 5class GuiTestCase(TestBase): 6 7 @no_debug_info_test 8 @skipIfCursesSupportMissing 9 def test_reproducer_generate_invalid_invocation(self): 10 self.expect("gui blub", error=True, 11 substrs=["the gui command takes no arguments."]) 12