forked from OSchip/llvm-project
tests: process connect needs "-p gdb-remote" on FreeBSD as on Linux
llvm-svn: 187418
This commit is contained in:
parent
3feb17c452
commit
ed71850ab2
|
@ -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")
|
||||
|
|
Loading…
Reference in New Issue