diff options
Diffstat (limited to 'lldb/test/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py')
-rw-r--r-- | lldb/test/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/test/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py b/lldb/test/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py index 884989f46de..2051635c13a 100644 --- a/lldb/test/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py +++ b/lldb/test/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py @@ -25,7 +25,7 @@ class TargetWatchAddressAPITestCase(TestBase): # This is for verifying that watch location works. self.violating_func = "do_bad_thing_with_location"; - @python_api_test + @add_test_categories(['pyapi']) @expectedFailureAndroid(archs=['arm', 'aarch64']) # Watchpoints not supported @expectedFailureWindows("llvm.org/pr24446") def test_watch_address(self): @@ -88,7 +88,7 @@ class TargetWatchAddressAPITestCase(TestBase): # This finishes our test. - @python_api_test + @add_test_categories(['pyapi']) @expectedFailureAndroid(archs=['arm', 'aarch64']) # Watchpoints not supported @skipIf(archs=['mips', 'mipsel', 'mips64', 'mips64el']) # No size constraint on MIPS for watches def test_watch_address_with_invalid_watch_size(self): |