fjricci created this revision. fjricci added reviewers: tberghammer, clayborg, jasonmolenda. fjricci added subscribers: lldb-commits, sas.
Add an optional "reverse" option to the gdb-remote command, which causes lldb to listen on the specified [host:]port, waiting for the remote server to reverse-connect back to lldb. http://reviews.llvm.org/D17099 Files: packages/Python/lldbsuite/test/decorators.py Index: packages/Python/lldbsuite/test/decorators.py =================================================================== --- packages/Python/lldbsuite/test/decorators.py +++ packages/Python/lldbsuite/test/decorators.py @@ -391,18 +391,6 @@ return "skip on remote platform" if lldb.remote_platform else None return skipTestIfFn(is_remote)(func) -def skipUnlessListedRemote(remote_list=None): - def is_remote_unlisted(self): - if remote_list and lldb.remote_platform: - triple = self.dbg.GetSelectedPlatform().GetTriple() - for r in remote_list: - if r in triple: - return None - return "skipping because remote is not listed" - else: - return None - return skipTestIfFn(is_remote_unlisted) - def skipIfRemoteDueToDeadlock(func): """Decorate the item to skip tests if testing remotely due to the test deadlocking.""" def is_remote():
Index: packages/Python/lldbsuite/test/decorators.py =================================================================== --- packages/Python/lldbsuite/test/decorators.py +++ packages/Python/lldbsuite/test/decorators.py @@ -391,18 +391,6 @@ return "skip on remote platform" if lldb.remote_platform else None return skipTestIfFn(is_remote)(func) -def skipUnlessListedRemote(remote_list=None): - def is_remote_unlisted(self): - if remote_list and lldb.remote_platform: - triple = self.dbg.GetSelectedPlatform().GetTriple() - for r in remote_list: - if r in triple: - return None - return "skipping because remote is not listed" - else: - return None - return skipTestIfFn(is_remote_unlisted) - def skipIfRemoteDueToDeadlock(func): """Decorate the item to skip tests if testing remotely due to the test deadlocking.""" def is_remote():
_______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits