File tree Expand file tree Collapse file tree 5 files changed +12
-4
lines changed
lldb/packages/Python/lldbsuite/test
breakpoint/breakpoint_command Expand file tree Collapse file tree 5 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ def test_insert_before_and_after_target_run_args(self):
58
58
'[3]: "b"' ,
59
59
'[4]: "c"' ])
60
60
61
+ @expectedFailureAll (oslist = ["windows" ], bugnumber = "llvm.org/pr44430" )
61
62
def test_replace_target_run_args (self ):
62
63
"""Test that 'replace target.run-args' works."""
63
64
# Set the run-args and then replace the index-0 element.
@@ -106,6 +107,7 @@ def test_set_term_width(self):
106
107
substrs = ["term-width (int) = 70" ])
107
108
108
109
# rdar://problem/10712130
110
+ @skipIf (oslist = ["windows" ], bugnumber = "llvm.org/pr44431" )
109
111
def test_set_frame_format (self ):
110
112
"""Test that 'set frame-format' with a backtick char in the format string works as well as fullpath."""
111
113
self .build ()
@@ -356,6 +358,7 @@ def test_settings_with_quotes(self):
356
358
'thread-format (format-string) = "abc def "' )
357
359
self .runCmd ('settings clear thread-format' )
358
360
361
+ @expectedFailureAll (oslist = ["windows" ], bugnumber = "llvm.org/pr44430" )
359
362
def test_settings_with_trailing_whitespace (self ):
360
363
361
364
# boolean
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ def not_test_breakpoint_command_sequence(self):
22
22
self .build ()
23
23
self .breakpoint_command_sequence ()
24
24
25
+ @skipIf (oslist = ["windows" ], bugnumber = "llvm.org/pr44431" )
25
26
def test_script_parameters (self ):
26
27
"""Test a sequence of breakpoint command add, list, and delete."""
27
28
self .build ()
Original file line number Diff line number Diff line change 6
6
7
7
ifeq "$(OS ) " "Darwin"
8
8
LD_EXTRAS = -Xlinker -dead_strip
9
- else ifeq "$(OS)" "Windows_NT"
10
- CFLAGS_EXTRAS += /Gw /Gy
11
- LD_EXTRAS = -Xlinker /OPT:REF
12
9
else
13
10
CFLAGS_EXTRAS += -fdata-sections -ffunction-sections
14
- LD_EXTRAS = -Wl,--gc-sections
11
+ ifeq "$(OS)" "Windows_NT"
12
+ LD_EXTRAS = -Xlinker /OPT:REF
13
+ else
14
+ LD_EXTRAS = -Wl,--gc-sections
15
+ endif
15
16
endif
16
17
17
18
MAKE_DSYM := NO
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ class DeadStripTestCase(TestBase):
14
14
15
15
mydir = TestBase .compute_mydir (__file__ )
16
16
17
+ @expectedFailureAll (oslist = ["windows" ], bugnumber = "llvm.org/pr44429" )
17
18
def test (self ):
18
19
"""Test breakpoint works correctly with dead-code stripping."""
19
20
self .build ()
Original file line number Diff line number Diff line change @@ -171,6 +171,7 @@ def test_move_and_then_display_source(self):
171
171
self .expect ("source list -n main" , SOURCE_DISPLAYED_CORRECTLY ,
172
172
substrs = ['Hello world' ])
173
173
174
+ @skipIf (oslist = ["windows" ], bugnumber = "llvm.org/pr44431" )
174
175
def test_modify_source_file_while_debugging (self ):
175
176
"""Modify a source file while debugging the executable."""
176
177
self .build ()
@@ -236,6 +237,7 @@ def test_modify_source_file_while_debugging(self):
236
237
SOURCE_DISPLAYED_CORRECTLY ,
237
238
substrs = ['Hello lldb' ])
238
239
240
+ @expectedFailureAll (oslist = ["windows" ], bugnumber = "llvm.org/pr44432" )
239
241
def test_set_breakpoint_with_absolute_path (self ):
240
242
self .build ()
241
243
hidden = self .getBuildArtifact ("hidden" )
You can’t perform that action at this time.
0 commit comments