blob: c423405c2be15d6be3cf84125ca44735754706f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import lldb
from lldbsuite.test.lldbtest import *
from lldbsuite.test.decorators import *
class GuiTestCase(TestBase):
@no_debug_info_test
@skipIfCursesSupportMissing
def test_reproducer_generate_invalid_invocation(self):
self.expect("gui blub", error=True,
substrs=["'gui' doesn't take any arguments."])
|