From ed71850ab2f4e3fbea2b982e6ab3a85d55ca4ced Mon Sep 17 00:00:00 2001 From: Ed Maste Date: Tue, 30 Jul 2013 13:25:27 +0000 Subject: [PATCH] tests: process connect needs "-p gdb-remote" on FreeBSD as on Linux llvm-svn: 187418 --- lldb/test/functionalities/connect_remote/TestConnectRemote.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/test/functionalities/connect_remote/TestConnectRemote.py b/lldb/test/functionalities/connect_remote/TestConnectRemote.py index 2ec3bfba2f7c..fa32db4d1771 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")