Skip to content

[lldb] Fixed TestTargetCommand.py in case of Windows host and Linux target #115470

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lldb/test/API/commands/target/basic/TestTargetCommand.py
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ def test_target_create_nonexistent_core_file(self):
)

# Write only files don't seem to be supported on Windows.
@skipIfWindows
@skipIf(hostoslist=["windows"])
@no_debug_info_test
def test_target_create_unreadable_core_file(self):
tf = tempfile.NamedTemporaryFile()
Expand All @@ -440,7 +440,7 @@ def test_target_create_nonexistent_sym_file(self):
],
)

@skipIfWindows
@skipIf(hostoslist=["windows"])
@no_debug_info_test
def test_target_create_invalid_core_file(self):
invalid_core_path = os.path.join(self.getSourceDir(), "invalid_core_file")
Expand All @@ -451,7 +451,7 @@ def test_target_create_invalid_core_file(self):
)

# Write only files don't seem to be supported on Windows.
@skipIfWindows
@skipIf(hostoslist=["windows"])
@no_debug_info_test
def test_target_create_unreadable_sym_file(self):
tf = tempfile.NamedTemporaryFile()
Expand Down
Loading