brintos

brintos / llvm-project-archived public Read only

0
0
Text · 349 B · 88db6f8 Raw
13 lines · python
1import lldb2from lldbsuite.test.lldbtest import *3from lldbsuite.test.decorators import *4 5 6class GuiTestCase(TestBase):7    @no_debug_info_test8    @skipIfCursesSupportMissing9    def test_reproducer_generate_invalid_invocation(self):10        self.expect(11            "gui blub", error=True, substrs=["'gui' doesn't take any arguments."]12        )13