llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT--> @llvm/pr-subscribers-lldb Author: Dmitry Vasilyev (slydiman) <details> <summary>Changes</summary> Fixed TestTargetCommand.py in case of Windows host and Linux target. --- Full diff: https://github.com/llvm/llvm-project/pull/115470.diff 1 Files Affected: - (modified) lldb/test/API/commands/target/basic/TestTargetCommand.py (+3-3) ``````````diff 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() `````````` </details> https://github.com/llvm/llvm-project/pull/115470 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits