[Lldb-commits] [lldb] e8b7eda - [lldb/Test] Add @skipIfRemote decorator to TestProcessList.py

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Tue Aug 4 14:40:13 PDT 2020


Author: Jonas Devlieghere
Date: 2020-08-04T14:40:07-07:00
New Revision: e8b7edafc3dd0ab85903eebdfdb3bb7cc2d66743

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

LOG: [lldb/Test] Add @skipIfRemote decorator to TestProcessList.py

lldb-platform contains a very minimal support for the qfProcessInfo
packet, only allowing the simplest query to get most of the testsuite
running, and returning very little information about the matched
processes.

Added: 
    

Modified: 
    lldb/test/API/commands/platform/process/list/TestProcessList.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/commands/platform/process/list/TestProcessList.py b/lldb/test/API/commands/platform/process/list/TestProcessList.py
index 9fc84d4f26e0..fe2ed74916eb 100644
--- a/lldb/test/API/commands/platform/process/list/TestProcessList.py
+++ b/lldb/test/API/commands/platform/process/list/TestProcessList.py
@@ -18,6 +18,7 @@ class ProcessListTestCase(TestBase):
     NO_DEBUG_INFO_TESTCASE = True
 
     @skipIfWindows  # https://bugs.llvm.org/show_bug.cgi?id=43702
+    @skipIfRemote   # rdar://problem/66542336
     def test_process_list_with_args(self):
         """Test process list show process args"""
         self.build()


        


More information about the lldb-commits mailing list