summaryrefslogtreecommitdiff
path: root/lldb/test/API/python_api/target/TestTargetAPI.py
diff options
context:
space:
mode:
authorRaphael Isemann <teemperor@gmail.com>2020-11-11 09:13:56 +0100
committerRaphael Isemann <teemperor@gmail.com>2020-11-11 09:14:54 +0100
commit66ae40ebfb83c8beb2080123d3866bd08520fcef (patch)
tree6698f77a938635e186f431eff6f1c1499126dccc /lldb/test/API/python_api/target/TestTargetAPI.py
parent990939c897314bd82c38d7a58c49ab9c1d209d52 (diff)
[lldb][test] Remove not_remote_testsuite_ready in favor of skipIfRemote decorator
Those two decorators have identical behaviour. This removes `not_remote_testsuite_ready` as `skipIfRemote` seems more consistent with the other decorator names we have Reviewed By: JDevlieghere Differential Revision: https://reviews.llvm.org/D89376
Diffstat (limited to 'lldb/test/API/python_api/target/TestTargetAPI.py')
-rw-r--r--lldb/test/API/python_api/target/TestTargetAPI.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/API/python_api/target/TestTargetAPI.py b/lldb/test/API/python_api/target/TestTargetAPI.py
index 0f5fe80177e6..f058a0a732c2 100644
--- a/lldb/test/API/python_api/target/TestTargetAPI.py
+++ b/lldb/test/API/python_api/target/TestTargetAPI.py
@@ -333,7 +333,7 @@ class TargetAPITestCase(TestBase):
self.expect(desc, exe=False,
substrs=['Target', 'Module', 'a.out', 'Breakpoint'])
- @not_remote_testsuite_ready
+ @skipIfRemote
@add_test_categories(['pyapi'])
@no_debug_info_test
@skipIfReproducer # Inferior doesn't run during replay.