[Lldb-commits] [PATCH] D16840: [LLDB][MIPS] Generalise MIPS arch names

Nitesh Jain via lldb-commits lldb-commits at lists.llvm.org
Thu Feb 4 07:12:30 PST 2016


nitesh.jain marked an inline comment as done.

================
Comment at: packages/Python/lldbsuite/test/functionalities/thread/crash_during_step/TestCrashDuringStep.py:24
@@ -23,3 +23,3 @@
     @expectedFailureAndroid("llvm.org/pr24497", archs=['arm', 'aarch64'])
-    @expectedFailureAll(archs=['mips', 'mipsel', 'mips64', 'mips64el'])    # IO error due to breakpoint at invalid address
+    @expectedFailureAll(triple = 'mips')    # IO error due to breakpoint at invalid address
     def test_step_inst_with(self):
----------------
Retain the triple checking logic . since expectedFailureAll doesn't yet support regular expressions for archs parameter.

================
Comment at: packages/Python/lldbsuite/test/functionalities/watchpoint/hello_watchlocation/TestWatchLocation.py:34
@@ -33,3 +33,3 @@
     @expectedFailureWindows("llvm.org/pr24446") # WINDOWS XFAIL TRIAGE - Watchpoints not supported on Windows
-    @expectedFailureAll(archs=['mips', 'mipsel', 'mips64', 'mips64el']) # Most of the MIPS boards provide only one H/W watchpoints, and S/W watchpoints are not supported yet
+    @expectedFailureAll(triple = 'mips') # Most of the MIPS boards provide only one H/W watchpoints, and S/W watchpoints are not supported yet
     def test_hello_watchlocation(self):
----------------
Retain the triple checking logic . since expectedFailureAll doesn't yet support regular expressions for archs parameter.


Repository:
  rL LLVM

http://reviews.llvm.org/D16840





More information about the lldb-commits mailing list