Author: Michał Górny Date: 2021-08-09T19:38:05+02:00 New Revision: 27b238af163e52b9f575f854a3f391514412b25c
URL: https://github.com/llvm/llvm-project/commit/27b238af163e52b9f575f854a3f391514412b25c DIFF: https://github.com/llvm/llvm-project/commit/27b238af163e52b9f575f854a3f391514412b25c.diff LOG: [lldb] [test] Skip all vFile tests on Windows Added: Modified: lldb/test/API/tools/lldb-server/TestGdbRemotePlatformFile.py Removed: ################################################################################ diff --git a/lldb/test/API/tools/lldb-server/TestGdbRemotePlatformFile.py b/lldb/test/API/tools/lldb-server/TestGdbRemotePlatformFile.py index 466ead17630f..4fc688deae7f 100644 --- a/lldb/test/API/tools/lldb-server/TestGdbRemotePlatformFile.py +++ b/lldb/test/API/tools/lldb-server/TestGdbRemotePlatformFile.py @@ -17,42 +17,52 @@ class TestGdbRemotePlatformFile(GdbRemoteTestCaseBase): mydir = TestBase.compute_mydir(__file__) + @skipIfWindows @add_test_categories(["llgs"]) def test_platform_file_rdonly(self): self.vFile_test(read=True) + @skipIfWindows @add_test_categories(["llgs"]) def test_platform_file_wronly(self): self.vFile_test(write=True) + @skipIfWindows @add_test_categories(["llgs"]) def test_platform_file_rdwr(self): self.vFile_test(read=True, write=True) + @skipIfWindows @add_test_categories(["llgs"]) def test_platform_file_wronly_append(self): self.vFile_test(write=True, append=True) + @skipIfWindows @add_test_categories(["llgs"]) def test_platform_file_rdwr_append(self): self.vFile_test(read=True, write=True, append=True) + @skipIfWindows @add_test_categories(["llgs"]) def test_platform_file_wronly_trunc(self): self.vFile_test(write=True, trunc=True) + @skipIfWindows @add_test_categories(["llgs"]) def test_platform_file_rdwr_trunc(self): self.vFile_test(read=True, write=True, trunc=True) + @skipIfWindows @add_test_categories(["llgs"]) def test_platform_file_wronly_creat(self): self.vFile_test(write=True, creat=True) + @skipIfWindows @add_test_categories(["llgs"]) def test_platform_file_wronly_creat_excl(self): self.vFile_test(write=True, creat=True, excl=True) + @skipIfWindows @add_test_categories(["llgs"]) def test_platform_file_wronly_fail(self): server = self.connect_to_debug_monitor() @@ -73,6 +83,7 @@ def test_platform_file_wronly_fail(self): True) self.expect_gdbremote_sequence() + @skipIfWindows @add_test_categories(["llgs"]) def test_platform_file_wronly_creat_excl_fail(self): server = self.connect_to_debug_monitor() _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits