[AMDGPU] Add True16 register classes.
[llvm-project.git] / lldb / test / API / commands / command / delete / TestCommandDelete.py
blobaacf9326e47653ecd39763f39802ec2950c0e940
1 import lldb
2 from lldbsuite.test.lldbtest import *
3 from lldbsuite.test.decorators import *
6 class DeleteCommandTestCase(TestBase):
7 @no_debug_info_test
8 def test_delete_builtin(self):
9 self.expect(
10 "command delete settings",
11 error=True,
12 substrs=[
13 "'settings' is a permanent debugger command and cannot be removed."
17 @no_debug_info_test
18 def test_delete_alias(self):
19 self.expect(
20 "command delete bt", error=True, substrs=["'bt' is not a known command."]