[Lldb-commits] [lldb] r168531 - /lldb/trunk/test/expression_command/two-files/TestObjCTypeQueryFromOtherCompileUnit.py

Daniel Malea daniel.malea at intel.com
Fri Nov 23 14:15:09 PST 2012


Author: dmalea
Date: Fri Nov 23 16:15:09 2012
New Revision: 168531

URL: http://llvm.org/viewvc/llvm-project?rev=168531&view=rev
Log:
Skip objC test on non-darwin platforms


Modified:
    lldb/trunk/test/expression_command/two-files/TestObjCTypeQueryFromOtherCompileUnit.py

Modified: lldb/trunk/test/expression_command/two-files/TestObjCTypeQueryFromOtherCompileUnit.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/expression_command/two-files/TestObjCTypeQueryFromOtherCompileUnit.py?rev=168531&r1=168530&r2=168531&view=diff
==============================================================================
--- lldb/trunk/test/expression_command/two-files/TestObjCTypeQueryFromOtherCompileUnit.py (original)
+++ lldb/trunk/test/expression_command/two-files/TestObjCTypeQueryFromOtherCompileUnit.py Fri Nov 23 16:15:09 2012
@@ -27,6 +27,7 @@
         self.buildDsym()
         self.type_query_from_other_cu()
 
+    @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
     @dwarf_test
     def test_with_dwarf(self):
         """The expression parser's type search should be wider than the current compilation unit."""





More information about the lldb-commits mailing list