@@ -20,153 +20,153 @@ def classCleanup(cls):
20
20
except :
21
21
pass
22
22
23
- @expectedFailureWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
23
+ @expectedFailureHostWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
24
24
@skipIfFreeBSD # timing out on the FreeBSD buildbot
25
25
def test_at (self ):
26
26
"""Test that 'at' completes to 'attach '."""
27
27
self .complete_from_to ('at' , 'attach ' )
28
28
29
- @expectedFailureWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
29
+ @expectedFailureHostWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
30
30
@skipIfFreeBSD # timing out on the FreeBSD buildbot
31
31
def test_de (self ):
32
32
"""Test that 'de' completes to 'detach '."""
33
33
self .complete_from_to ('de' , 'detach ' )
34
34
35
- @expectedFailureWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
35
+ @expectedFailureHostWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
36
36
@skipIfFreeBSD # timing out on the FreeBSD buildbot
37
37
def test_process_attach_dash_dash_con (self ):
38
38
"""Test that 'process attach --con' completes to 'process attach --continue '."""
39
39
self .complete_from_to ('process attach --con' , 'process attach --continue ' )
40
40
41
41
# <rdar://problem/11052829>
42
- @expectedFailureWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
42
+ @expectedFailureHostWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
43
43
@skipIfFreeBSD # timing out on the FreeBSD buildbot
44
44
def test_infinite_loop_while_completing (self ):
45
45
"""Test that 'process print hello\' completes to itself and does not infinite loop."""
46
46
self .complete_from_to ('process print hello\\ ' , 'process print hello\\ ' ,
47
47
turn_off_re_match = True )
48
48
49
- @expectedFailureWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
49
+ @expectedFailureHostWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
50
50
@skipIfFreeBSD # timing out on the FreeBSD buildbot
51
51
def test_watchpoint_co (self ):
52
52
"""Test that 'watchpoint co' completes to 'watchpoint command '."""
53
53
self .complete_from_to ('watchpoint co' , 'watchpoint command ' )
54
54
55
- @expectedFailureWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
55
+ @expectedFailureHostWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
56
56
@skipIfFreeBSD # timing out on the FreeBSD buildbot
57
57
def test_watchpoint_command_space (self ):
58
58
"""Test that 'watchpoint command ' completes to ['Available completions:', 'add', 'delete', 'list']."""
59
59
self .complete_from_to ('watchpoint command ' , ['Available completions:' , 'add' , 'delete' , 'list' ])
60
60
61
- @expectedFailureWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
61
+ @expectedFailureHostWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
62
62
@skipIfFreeBSD # timing out on the FreeBSD buildbot
63
63
def test_watchpoint_command_a (self ):
64
64
"""Test that 'watchpoint command a' completes to 'watchpoint command add '."""
65
65
self .complete_from_to ('watchpoint command a' , 'watchpoint command add ' )
66
66
67
- @expectedFailureWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
67
+ @expectedFailureHostWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
68
68
@skipIfFreeBSD # timing out on the FreeBSD buildbot
69
69
def test_watchpoint_set_variable_dash_w (self ):
70
70
"""Test that 'watchpoint set variable -w' completes to 'watchpoint set variable -w '."""
71
71
self .complete_from_to ('watchpoint set variable -w' , 'watchpoint set variable -w ' )
72
72
73
- @expectedFailureWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
73
+ @expectedFailureHostWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
74
74
@skipIfFreeBSD # timing out on the FreeBSD buildbot
75
75
def test_watchpoint_set_variable_dash_w_space (self ):
76
76
"""Test that 'watchpoint set variable -w ' completes to ['Available completions:', 'read', 'write', 'read_write']."""
77
77
self .complete_from_to ('watchpoint set variable -w ' , ['Available completions:' , 'read' , 'write' , 'read_write' ])
78
78
79
- @expectedFailureWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
79
+ @expectedFailureHostWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
80
80
@skipIfFreeBSD # timing out on the FreeBSD buildbot
81
81
def test_watchpoint_set_ex (self ):
82
82
"""Test that 'watchpoint set ex' completes to 'watchpoint set expression '."""
83
83
self .complete_from_to ('watchpoint set ex' , 'watchpoint set expression ' )
84
84
85
- @expectedFailureWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
85
+ @expectedFailureHostWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
86
86
@skipIfFreeBSD # timing out on the FreeBSD buildbot
87
87
def test_watchpoint_set_var (self ):
88
88
"""Test that 'watchpoint set var' completes to 'watchpoint set variable '."""
89
89
self .complete_from_to ('watchpoint set var' , 'watchpoint set variable ' )
90
90
91
- @expectedFailureWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
91
+ @expectedFailureHostWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
92
92
@skipIfFreeBSD # timing out on the FreeBSD buildbot
93
93
def test_watchpoint_set_variable_dash_w_read_underbar (self ):
94
94
"""Test that 'watchpoint set variable -w read_' completes to 'watchpoint set variable -w read_write'."""
95
95
self .complete_from_to ('watchpoint set variable -w read_' , 'watchpoint set variable -w read_write' )
96
96
97
- @expectedFailureWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
97
+ @expectedFailureHostWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
98
98
@skipIfFreeBSD # timing out on the FreeBSD buildbot
99
99
def test_help_fi (self ):
100
100
"""Test that 'help fi' completes to ['Available completions:', 'file', 'finish']."""
101
101
self .complete_from_to ('help fi' , ['Available completions:' , 'file' , 'finish' ])
102
102
103
- @expectedFailureWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
103
+ @expectedFailureHostWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
104
104
@skipIfFreeBSD # timing out on the FreeBSD buildbot
105
105
def test_help_watchpoint_s (self ):
106
106
"""Test that 'help watchpoint s' completes to 'help watchpoint set '."""
107
107
self .complete_from_to ('help watchpoint s' , 'help watchpoint set ' )
108
108
109
- @expectedFailureWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
109
+ @expectedFailureHostWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
110
110
@skipIfFreeBSD # timing out on the FreeBSD buildbot
111
111
def test_settings_append_target_er (self ):
112
112
"""Test that 'settings append target.er' completes to 'settings append target.error-path'."""
113
113
self .complete_from_to ('settings append target.er' , 'settings append target.error-path' )
114
114
115
- @expectedFailureWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
115
+ @expectedFailureHostWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
116
116
@skipIfFreeBSD # timing out on the FreeBSD buildbot
117
117
def test_settings_insert_after_target_en (self ):
118
118
"""Test that 'settings insert-after target.env' completes to 'settings insert-after target.env-vars'."""
119
119
self .complete_from_to ('settings insert-after target.env' , 'settings insert-after target.env-vars' )
120
120
121
- @expectedFailureWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
121
+ @expectedFailureHostWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
122
122
@skipIfFreeBSD # timing out on the FreeBSD buildbot
123
123
def test_settings_insert_before_target_en (self ):
124
124
"""Test that 'settings insert-before target.env' completes to 'settings insert-before target.env-vars'."""
125
125
self .complete_from_to ('settings insert-before target.env' , 'settings insert-before target.env-vars' )
126
126
127
- @expectedFailureWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
127
+ @expectedFailureHostWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
128
128
@skipIfFreeBSD # timing out on the FreeBSD buildbot
129
129
def test_settings_replace_target_ru (self ):
130
130
"""Test that 'settings replace target.ru' completes to 'settings replace target.run-args'."""
131
131
self .complete_from_to ('settings replace target.ru' , 'settings replace target.run-args' )
132
132
133
- @expectedFailureWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
133
+ @expectedFailureHostWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
134
134
@skipIfFreeBSD # timing out on the FreeBSD buildbot
135
135
def test_settings_s (self ):
136
136
"""Test that 'settings s' completes to ['Available completions:', 'set', 'show']."""
137
137
self .complete_from_to ('settings s' , ['Available completions:' , 'set' , 'show' ])
138
138
139
- @expectedFailureWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
139
+ @expectedFailureHostWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
140
140
@skipIfFreeBSD # timing out on the FreeBSD buildbot
141
141
def test_settings_set_th (self ):
142
142
"""Test that 'settings set th' completes to 'settings set thread-format'."""
143
143
self .complete_from_to ('settings set th' , 'settings set thread-format' )
144
144
145
- @expectedFailureWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
145
+ @expectedFailureHostWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
146
146
@skipIfFreeBSD # timing out on the FreeBSD buildbot
147
147
def test_settings_s_dash (self ):
148
148
"""Test that 'settings set -' completes to 'settings set -g'."""
149
149
self .complete_from_to ('settings set -' , 'settings set -g' )
150
150
151
- @expectedFailureWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
151
+ @expectedFailureHostWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
152
152
@skipIfFreeBSD # timing out on the FreeBSD buildbot
153
153
def test_settings_clear_th (self ):
154
154
"""Test that 'settings clear th' completes to 'settings clear thread-format'."""
155
155
self .complete_from_to ('settings clear th' , 'settings clear thread-format' )
156
156
157
- @expectedFailureWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
157
+ @expectedFailureHostWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
158
158
@skipIfFreeBSD # timing out on the FreeBSD buildbot
159
159
def test_settings_set_ta (self ):
160
160
"""Test that 'settings set ta' completes to 'settings set target.'."""
161
161
self .complete_from_to ('settings set ta' , 'settings set target.' )
162
162
163
- @expectedFailureWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
163
+ @expectedFailureHostWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
164
164
@skipIfFreeBSD # timing out on the FreeBSD buildbot
165
165
def test_settings_set_target_exec (self ):
166
166
"""Test that 'settings set target.exec' completes to 'settings set target.exec-search-paths '."""
167
167
self .complete_from_to ('settings set target.exec' , 'settings set target.exec-search-paths' )
168
168
169
- @expectedFailureWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
169
+ @expectedFailureHostWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
170
170
@skipIfFreeBSD # timing out on the FreeBSD buildbot
171
171
def test_settings_set_target_pr (self ):
172
172
"""Test that 'settings set target.pr' completes to ['Available completions:',
@@ -176,19 +176,19 @@ def test_settings_set_target_pr(self):
176
176
'target.prefer-dynamic-value' ,
177
177
'target.process.' ])
178
178
179
- @expectedFailureWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
179
+ @expectedFailureHostWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
180
180
@skipIfFreeBSD # timing out on the FreeBSD buildbot
181
181
def test_settings_set_target_process (self ):
182
182
"""Test that 'settings set target.process' completes to 'settings set target.process.'."""
183
183
self .complete_from_to ('settings set target.process' , 'settings set target.process.' )
184
184
185
- @expectedFailureWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
185
+ @expectedFailureHostWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
186
186
@skipIfFreeBSD # timing out on the FreeBSD buildbot
187
187
def test_settings_set_target_process_dot (self ):
188
188
"""Test that 'settings set target.process.t' completes to 'settings set target.process.thread.'."""
189
189
self .complete_from_to ('settings set target.process.t' , 'settings set target.process.thread.' )
190
190
191
- @expectedFailureWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
191
+ @expectedFailureHostWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
192
192
@skipIfFreeBSD # timing out on the FreeBSD buildbot
193
193
def test_settings_set_target_process_thread_dot (self ):
194
194
"""Test that 'settings set target.process.thread.' completes to ['Available completions:',
@@ -198,7 +198,7 @@ def test_settings_set_target_process_thread_dot(self):
198
198
'target.process.thread.step-avoid-regexp' ,
199
199
'target.process.thread.trace-thread' ])
200
200
201
- @expectedFailureWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
201
+ @expectedFailureHostWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
202
202
@skipIfFreeBSD # timing out on the FreeBSD buildbot
203
203
def test_target_space (self ):
204
204
"""Test that 'target ' completes to ['Available completions:', 'create', 'delete', 'list',
@@ -207,13 +207,13 @@ def test_target_space(self):
207
207
['Available completions:' , 'create' , 'delete' , 'list' ,
208
208
'modules' , 'select' , 'stop-hook' , 'variable' ])
209
209
210
- @expectedFailureWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
210
+ @expectedFailureHostWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
211
211
@skipIfFreeBSD # timing out on the FreeBSD buildbot
212
212
def test_target_create_dash_co (self ):
213
213
"""Test that 'target create --co' completes to 'target variable --core '."""
214
214
self .complete_from_to ('target create --co' , 'target create --core ' )
215
215
216
- @expectedFailureWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
216
+ @expectedFailureHostWindows ("llvm.org/pr22274: need a pexpect replacement for windows" )
217
217
@skipIfFreeBSD # timing out on the FreeBSD buildbot
218
218
def test_target_va (self ):
219
219
"""Test that 'target va' completes to 'target variable '."""
0 commit comments