diff options
author | Walter Erquinigo <a20012251@gmail.com> | 2019-10-12 01:08:50 +0000 |
---|---|---|
committer | Walter Erquinigo <a20012251@gmail.com> | 2019-10-12 01:08:50 +0000 |
commit | 16194bf8bff9e6ed1315fea34b9fa0530b511ef8 (patch) | |
tree | d12dcaa3d079994ef8a7e4541dd51eee375e95f6 /lldb/packages/Python/lldbsuite/test | |
parent | 914f38295e1249daea77d75da230a4179a9a5b3b (diff) | |
download | bcm5719-llvm-16194bf8bff9e6ed1315fea34b9fa0530b511ef8.tar.gz bcm5719-llvm-16194bf8bff9e6ed1315fea34b9fa0530b511ef8.zip |
Revert "[platform process list] add a flag for showing the processes of all users"
This reverts commit 08781f4c53a177662c029d3da9c407ba65ae6747.
llvm-svn: 374621
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
2 files changed, 2 insertions, 56 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestPlatformClient.py b/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestPlatformClient.py deleted file mode 100644 index 338d27dfd44..00000000000 --- a/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestPlatformClient.py +++ /dev/null @@ -1,27 +0,0 @@ -import lldb -import binascii -import os -from lldbsuite.test.lldbtest import * -from lldbsuite.test.decorators import * -from gdbclientutils import * - - -class TestPlatformClient(GDBRemoteTestBase): - - def test_process_list_with_all_users(self): - """Test connecting to a remote linux platform""" - - self.runCmd("log enable gdb-remote all") - self.runCmd("platform select remote-linux") - - try: - self.runCmd("platform connect connect://localhost:%d" % - self.server.port) - self.assertTrue(self.dbg.GetSelectedPlatform().IsConnected()) - self.expect("platform process list -x", - substrs=["1 matching process was found", "test_process"]) - self.expect("platform process list", - error=True, - substrs=["error: no processes were found on the \"remote-linux\" platform"]) - finally: - self.dbg.GetSelectedPlatform().DisconnectRemote() diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/gdbclientutils.py b/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/gdbclientutils.py index e2160e8c58f..621279a0a99 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/gdbclientutils.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/gdbclientutils.py @@ -160,37 +160,9 @@ class MockGDBServerResponder: return self.QListThreadsInStopReply() if packet.startswith("qMemoryRegionInfo:"): return self.qMemoryRegionInfo() - if packet == "qQueryGDBServer": - return self.qQueryGDBServer() - if packet == "qHostInfo": - return self.qHostInfo() - if packet == "qGetWorkingDir": - return self.qGetWorkingDir() - if packet == "qsProcessInfo": - return self.qsProcessInfo() - if packet.startswith("qfProcessInfo"): - return self.qfProcessInfo(packet) return self.other(packet) - def qsProcessInfo(self): - return "E04" - - def qfProcessInfo(self, packet): - if "all_users:1" in packet: - return "pid:10;ppid:1;uid:1;gid:1;euid:1;egid:1;name:" + binascii.hexlify("/a/test_process") + ";" - else: - return "E04" - - def qGetWorkingDir(self): - return "2f" - - def qHostInfo(self): - return "ptrsize:8;endian:little;" - - def qQueryGDBServer(self): - return "E04" - def interrupt(self): raise self.UnexpectedPacketException() @@ -199,7 +171,7 @@ class MockGDBServerResponder: def vCont(self, packet): raise self.UnexpectedPacketException() - + def readRegisters(self): return "00000000" * self.registerCount @@ -453,6 +425,7 @@ class MockGDBServer: class InvalidPacketException(Exception): pass + class GDBRemoteTestBase(TestBase): """ Base class for GDB client tests. |