diff options
| author | Ed Maste <emaste@freebsd.org> | 2013-07-30 13:25:27 +0000 |
|---|---|---|
| committer | Ed Maste <emaste@freebsd.org> | 2013-07-30 13:25:27 +0000 |
| commit | ed71850ab2f4e3fbea2b982e6ab3a85d55ca4ced (patch) | |
| tree | 52e268bf90a5c00ce92b2b034f4f1d2806bc7abb | |
| parent | 3feb17c452c4e99b8c937132e401baefb8b57336 (diff) | |
| download | bcm5719-llvm-ed71850ab2f4e3fbea2b982e6ab3a85d55ca4ced.tar.gz bcm5719-llvm-ed71850ab2f4e3fbea2b982e6ab3a85d55ca4ced.zip | |
tests: process connect needs "-p gdb-remote" on FreeBSD as on Linux
llvm-svn: 187418
| -rw-r--r-- | lldb/test/functionalities/connect_remote/TestConnectRemote.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/functionalities/connect_remote/TestConnectRemote.py b/lldb/test/functionalities/connect_remote/TestConnectRemote.py index 2ec3bfba2f7..fa32db4d177 100644 --- a/lldb/test/functionalities/connect_remote/TestConnectRemote.py +++ b/lldb/test/functionalities/connect_remote/TestConnectRemote.py @@ -31,7 +31,7 @@ class ConnectRemoteTestCase(TestBase): fakeserver.expect_exact('Listening on localhost:12345') # Connect to the fake server.... - if sys.platform.startswith("linux"): + 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") |

