[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 05:46:30 PST 2024


https://github.com/slydiman updated https://github.com/llvm/llvm-project/pull/115470

>From e3501b22f7571017c184705ac8792777cf6b2d3e 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..953b59d729bfab 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