diff options
author | Zachary Turner <zturner@google.com> | 2016-02-10 19:53:45 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2016-02-10 19:53:45 +0000 |
commit | b3cce5d33a68a22b592b7d06bbf224c154aa0f11 (patch) | |
tree | b21ab51472b6afb185f625b36afd940f40f94891 /lldb/packages/Python/lldbsuite | |
parent | 362e06d7baa88f51d7712bf976d40b6021d3dc9e (diff) | |
download | bcm5719-llvm-b3cce5d33a68a22b592b7d06bbf224c154aa0f11.tar.gz bcm5719-llvm-b3cce5d33a68a22b592b7d06bbf224c154aa0f11.zip |
Remove skipUnlessListedRemote.
This was supposed to have been removed but made it back in
accidentally.
llvm-svn: 260423
Diffstat (limited to 'lldb/packages/Python/lldbsuite')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/decorators.py | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/decorators.py b/lldb/packages/Python/lldbsuite/test/decorators.py index 53dda518bf1..4a667cd053c 100644 --- a/lldb/packages/Python/lldbsuite/test/decorators.py +++ b/lldb/packages/Python/lldbsuite/test/decorators.py @@ -391,18 +391,6 @@ def skipIfRemote(func): 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(): |