File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed
lldb/packages/Python/lldbsuite/test/functionalities/completion Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -90,6 +90,32 @@ def test_process_launch_arch(self):
90
90
['mips' ,
91
91
'arm64' ])
92
92
93
+ @skipIfFreeBSD # timing out on the FreeBSD buildbot
94
+ def test_quoted_command (self ):
95
+ self .complete_from_to ('"set' ,
96
+ ['"settings" ' ])
97
+
98
+ @skipIfFreeBSD # timing out on the FreeBSD buildbot
99
+ def test_quoted_arg_with_quoted_command (self ):
100
+ self .complete_from_to ('"settings" "repl' ,
101
+ ['"replace" ' ])
102
+
103
+ @skipIfFreeBSD # timing out on the FreeBSD buildbot
104
+ def test_quoted_arg_without_quoted_command (self ):
105
+ self .complete_from_to ('settings "repl' ,
106
+ ['"replace" ' ])
107
+
108
+ @skipIfFreeBSD # timing out on the FreeBSD buildbot
109
+ def test_single_quote_command (self ):
110
+ self .complete_from_to ("'set" ,
111
+ ["'settings' " ])
112
+
113
+ @skipIfFreeBSD # timing out on the FreeBSD buildbot
114
+ def test_terminated_quote_command (self ):
115
+ # This should not crash, but we don't get any
116
+ # reasonable completions from this.
117
+ self .complete_from_to ("'settings'" , [])
118
+
93
119
@skipIfFreeBSD # timing out on the FreeBSD buildbot
94
120
def test_process_launch_arch_arm (self ):
95
121
self .complete_from_to ('process launch --arch arm' ,
You can’t perform that action at this time.
0 commit comments