14 lines
395 B
Python
14 lines
395 B
Python
import lldb
|
|
from lldbsuite.test.lldbtest import *
|
|
from lldbsuite.test.decorators import *
|
|
|
|
class GuiTestCase(TestBase):
|
|
|
|
mydir = TestBase.compute_mydir(__file__)
|
|
|
|
@no_debug_info_test
|
|
@skipIfCursesSupportMissing
|
|
def test_reproducer_generate_invalid_invocation(self):
|
|
self.expect("gui blub", error=True,
|
|
substrs=["the gui command takes no arguments."])
|