diff options
author | Mohit K. Bhakkad <mohit.bhakkad@gmail.com> | 2015-10-05 10:56:19 +0000 |
---|---|---|
committer | Mohit K. Bhakkad <mohit.bhakkad@gmail.com> | 2015-10-05 10:56:19 +0000 |
commit | 72207b167c975173e4b180d6cfbea1e537a3abec (patch) | |
tree | fd0f74b453c5fb065a4ad89619e03dbe2bcdad6c /lldb/test/python_api | |
parent | fdfc010e8478fa22f51fc29794f739440cc964aa (diff) | |
download | bcm5719-llvm-72207b167c975173e4b180d6cfbea1e537a3abec.tar.gz bcm5719-llvm-72207b167c975173e4b180d6cfbea1e537a3abec.zip |
[LLDB][MIPS] Skip invalid size watchpoint testcase for MIPS
Reviewers: jaydeep.
Subscribers: lldb-commits.
Differential Revision: http://reviews.llvm.org/D13335
llvm-svn: 249299
Diffstat (limited to 'lldb/test/python_api')
-rw-r--r-- | lldb/test/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/test/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py b/lldb/test/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py index d7635ae93c3..ebcb6ff12d9 100644 --- a/lldb/test/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py +++ b/lldb/test/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py @@ -87,6 +87,7 @@ class TargetWatchAddressAPITestCase(TestBase): @python_api_test @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): """Exercise SBTarget.WatchAddress() API but pass an invalid watch_size.""" self.build() |