[Lldb-commits] [lldb] 52d89d2 - [lldb] [test] Mark vFile tests as LLGS-specific

Michał Górny via lldb-commits lldb-commits at lists.llvm.org
Mon Aug 9 08:46:28 PDT 2021


Author: Michał Górny
Date: 2021-08-09T17:43:37+02:00
New Revision: 52d89d26aa29d983aa7842829370be2ee5f8c76a

URL: https://github.com/llvm/llvm-project/commit/52d89d26aa29d983aa7842829370be2ee5f8c76a
DIFF: https://github.com/llvm/llvm-project/commit/52d89d26aa29d983aa7842829370be2ee5f8c76a.diff

LOG: [lldb] [test] Mark vFile tests as LLGS-specific

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 54129f9420a0..432b56e49964 100644
--- a/lldb/test/API/tools/lldb-server/TestGdbRemotePlatformFile.py
+++ b/lldb/test/API/tools/lldb-server/TestGdbRemotePlatformFile.py
@@ -18,39 +18,49 @@ class TestGdbRemotePlatformFile(GdbRemoteTestCaseBase):
     mydir = TestBase.compute_mydir(__file__)
 
     @expectedFailureAll(oslist=["windows"])
+    @add_test_categories(["llgs"])
     def test_platform_file_rdonly(self):
         self.vFile_test(read=True)
 
     @expectedFailureAll(oslist=["windows"])
+    @add_test_categories(["llgs"])
     def test_platform_file_wronly(self):
         self.vFile_test(write=True)
 
     @expectedFailureAll(oslist=["windows"])
+    @add_test_categories(["llgs"])
     def test_platform_file_rdwr(self):
         self.vFile_test(read=True, write=True)
 
     @expectedFailureAll(oslist=["windows"])
+    @add_test_categories(["llgs"])
     def test_platform_file_wronly_append(self):
         self.vFile_test(write=True, append=True)
 
     @expectedFailureAll(oslist=["windows"])
+    @add_test_categories(["llgs"])
     def test_platform_file_rdwr_append(self):
         self.vFile_test(read=True, write=True, append=True)
 
     @expectedFailureAll(oslist=["windows"])
+    @add_test_categories(["llgs"])
     def test_platform_file_wronly_trunc(self):
         self.vFile_test(write=True, trunc=True)
 
     @expectedFailureAll(oslist=["windows"])
+    @add_test_categories(["llgs"])
     def test_platform_file_rdwr_trunc(self):
         self.vFile_test(read=True, write=True, trunc=True)
 
+    @add_test_categories(["llgs"])
     def test_platform_file_wronly_creat(self):
         self.vFile_test(write=True, creat=True)
 
+    @add_test_categories(["llgs"])
     def test_platform_file_wronly_creat_excl(self):
         self.vFile_test(write=True, creat=True, excl=True)
 
+    @add_test_categories(["llgs"])
     def test_platform_file_wronly_fail(self):
         server = self.connect_to_debug_monitor()
         self.assertIsNotNone(server)
@@ -70,6 +80,7 @@ def test_platform_file_wronly_fail(self):
                 True)
             self.expect_gdbremote_sequence()
 
+    @add_test_categories(["llgs"])
     def test_platform_file_wronly_creat_excl_fail(self):
         server = self.connect_to_debug_monitor()
         self.assertIsNotNone(server)


        


More information about the lldb-commits mailing list