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