[Lldb-commits] [lldb] [lldb] Fixed TestTargetCommand.py in case of Windows host and Linux target (PR #115470)
Dmitry Vasilyev via lldb-commits
lldb-commits at lists.llvm.org
Fri Nov 8 04:18:02 PST 2024
https://github.com/slydiman created https://github.com/llvm/llvm-project/pull/115470
Fixed TestTargetCommand.py in case of Windows host and Linux target.
>From 284853a9b9c2d2a38dcfb2a1acb0caed523d8e75 Mon Sep 17 00:00:00 2001
From: Dmitry Vasilyev <dvassiliev at accesssoftek.com>
Date: Fri, 8 Nov 2024 16:16:59 +0400
Subject: [PATCH] [lldb] Fixed TestTargetCommand.py in case of Windows host and
Linux target
---
lldb/test/API/commands/target/basic/TestTargetCommand.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/lldb/test/API/commands/target/basic/TestTargetCommand.py b/lldb/test/API/commands/target/basic/TestTargetCommand.py
index cb7a5f33f6643e..cd4885544cf46c 100644
--- a/lldb/test/API/commands/target/basic/TestTargetCommand.py
+++ b/lldb/test/API/commands/target/basic/TestTargetCommand.py
@@ -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()
@@ -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")
@@ -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()
More information about the lldb-commits
mailing list