[Lldb-commits] [lldb] r249299 - [LLDB][MIPS] Skip invalid size watchpoint testcase for MIPS

Mohit K. Bhakkad via lldb-commits lldb-commits at lists.llvm.org
Mon Oct 5 03:56:23 PDT 2015


Author: mohit.bhakkad
Date: Mon Oct  5 05:56:19 2015
New Revision: 249299

URL: http://llvm.org/viewvc/llvm-project?rev=249299&view=rev
Log:
[LLDB][MIPS] Skip invalid size watchpoint testcase for MIPS

Reviewers: jaydeep.
Subscribers: lldb-commits.
Differential Revision: http://reviews.llvm.org/D13335

Modified:
    lldb/trunk/test/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py

Modified: lldb/trunk/test/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py?rev=249299&r1=249298&r2=249299&view=diff
==============================================================================
--- lldb/trunk/test/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py (original)
+++ lldb/trunk/test/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py Mon Oct  5 05:56:19 2015
@@ -87,6 +87,7 @@ class TargetWatchAddressAPITestCase(Test
 
     @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()




More information about the lldb-commits mailing list