brintos

brintos / llvm-project-archived public Read only

0
0
Text · 532 B · b30e8fa Raw
20 lines · python
1import lldb2from lldbsuite.test.decorators import *3from lldbsuite.test.lldbtest import *4from lldbsuite.test import lldbutil5 6 7class TestCase(TestBase):8    @no_debug_info_test9    def test_invalid_arg(self):10        self.expect(11            "target stop-hook disable -1",12            error=True,13            startstr='error: invalid stop hook id: "-1".',14        )15        self.expect(16            "target stop-hook disable abcdfx",17            error=True,18            startstr='error: invalid stop hook id: "abcdfx".',19        )20