diff options
author | Greg Clayton <gclayton@apple.com> | 2014-01-10 22:21:12 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2014-01-10 22:21:12 +0000 |
commit | 14aa26bbb5a0cc69be701f1d1a90f610c57eeef7 (patch) | |
tree | 5f7c9ea93f8700fba665bf39fc7611d7abae1618 /lldb/test/functionalities/connect_remote/TestConnectRemote.py | |
parent | 1840ad4e57a6be0d4b598212f02a17e4526932c6 (diff) | |
download | bcm5719-llvm-14aa26bbb5a0cc69be701f1d1a90f610c57eeef7.tar.gz bcm5719-llvm-14aa26bbb5a0cc69be701f1d1a90f610c57eeef7.zip |
Fixed the connect remote test.
llvm-svn: 198961
Diffstat (limited to 'lldb/test/functionalities/connect_remote/TestConnectRemote.py')
-rw-r--r-- | lldb/test/functionalities/connect_remote/TestConnectRemote.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lldb/test/functionalities/connect_remote/TestConnectRemote.py b/lldb/test/functionalities/connect_remote/TestConnectRemote.py index 65895f18b37..f741b576e48 100644 --- a/lldb/test/functionalities/connect_remote/TestConnectRemote.py +++ b/lldb/test/functionalities/connect_remote/TestConnectRemote.py @@ -32,10 +32,7 @@ class ConnectRemoteTestCase(TestBase): fakeserver.expect_exact('Listening on localhost:12345') # Connect to the fake server.... - if sys.platform.startswith('freebsd') or sys.platform.startswith("linux"): - self.runCmd("process connect -p gdb-remote connect://localhost:12345") - else: - self.runCmd("process connect connect://localhost:12345") + self.runCmd("process connect -p gdb-remote connect://localhost:12345") if __name__ == '__main__': |