Skip to content

Commit cd0d478

Browse files
author
Tom Yang
committed
quick fix for TestDumpDwo
PR#66035 introduced a test failure that causes windows build bots to fail. These unit tests shouldn't be running on Windows. Summary: Test Plan: Reviewers: Subscribers: Tasks: Tags:
1 parent 282ea28 commit cd0d478

File tree

1 file changed

+4
-0
lines changed
  • lldb/test/API/commands/target/dump-separate-debug-info/dwo

1 file changed

+4
-0
lines changed

lldb/test/API/commands/target/dump-separate-debug-info/dwo/TestDumpDwo.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ def get_dwos_from_json(self):
2525

2626
@skipIfRemote
2727
@skipIfDarwin
28+
@skipIfWindows
2829
def test_dwos_loaded_json_output(self):
2930
self.build()
3031
exe = self.getBuildArtifact("a.out")
@@ -47,6 +48,7 @@ def test_dwos_loaded_json_output(self):
4748

4849
@skipIfRemote
4950
@skipIfDarwin
51+
@skipIfWindows
5052
def test_dwos_not_loaded_json_output(self):
5153
self.build()
5254
exe = self.getBuildArtifact("a.out")
@@ -71,6 +73,7 @@ def test_dwos_not_loaded_json_output(self):
7173

7274
@skipIfRemote
7375
@skipIfDarwin
76+
@skipIfWindows
7477
def test_dwos_loaded_table_output(self):
7578
self.build()
7679
exe = self.getBuildArtifact("a.out")
@@ -97,6 +100,7 @@ def test_dwos_loaded_table_output(self):
97100

98101
@skipIfRemote
99102
@skipIfDarwin
103+
@skipIfWindows
100104
def test_dwos_not_loaded_table_output(self):
101105
self.build()
102106
exe = self.getBuildArtifact("a.out")

0 commit comments

Comments
 (0)