nitesh.jain created this revision.
nitesh.jain added reviewers: clayborg, ovyalov.
nitesh.jain added subscribers: jaydeep, bhushan, sagar, mohit.bhakkad, 
lldb-commits.
nitesh.jain set the repository for this revision to rL LLVM.

The test case "test disassembler settings" is specific to x86 and it will 
failed for MIPS Architecture.  Hence it is marked as a expected failure for 
MIPS.

Repository:
  rL LLVM

http://reviews.llvm.org/D11562

Files:
  test/settings/TestSettings.py

Index: test/settings/TestSettings.py
===================================================================
--- test/settings/TestSettings.py
+++ test/settings/TestSettings.py
@@ -167,6 +167,10 @@
 
     @expectedFailureArch("arm")
     @expectedFailureArch("aarch64")
+    @expectedFailureArch("mips")
+    @expectedFailureArch("mipsel")
+    @expectedFailureArch("mips64")
+    @expectedFailureArch("mips64el")
     def test_disassembler_settings(self):
         """Test that user options for the disassembler take effect."""
         self.buildDefault()


Index: test/settings/TestSettings.py
===================================================================
--- test/settings/TestSettings.py
+++ test/settings/TestSettings.py
@@ -167,6 +167,10 @@
 
     @expectedFailureArch("arm")
     @expectedFailureArch("aarch64")
+    @expectedFailureArch("mips")
+    @expectedFailureArch("mipsel")
+    @expectedFailureArch("mips64")
+    @expectedFailureArch("mips64el")
     def test_disassembler_settings(self):
         """Test that user options for the disassembler take effect."""
         self.buildDefault()
_______________________________________________
lldb-commits mailing list
lldb-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits

Reply via email to