We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed4af56 commit d024e7eCopy full SHA for d024e7e
lldb/test/API/functionalities/abbreviation/TestAbbreviations.py
@@ -94,6 +94,12 @@ def test_command_abbreviations_and_aliases(self):
94
self.assertTrue(result.Succeeded())
95
self.assertEqual("scripting run 1+1", result.GetOutput())
96
97
+ # Name and line are incompatible options.
98
+ command_interpreter.HandleCommand(
99
+ "alias zzyx breakpoint set -n %1 -l %2", result
100
+ )
101
+ self.assertFalse(result.Succeeded())
102
+
103
# Prompt changing stuff should be tested, but this doesn't seem like the
104
# right test to do it in. It has nothing to do with aliases or abbreviations.
105
# self.runCmd("com sou ./change_prompt.lldb")
0 commit comments