[Lldb-commits] [lldb] r191698 - This test uses ObjC so it should not run on anything != Darwin
Enrico Granata
egranata at apple.com
Mon Sep 30 13:55:00 PDT 2013
Author: enrico
Date: Mon Sep 30 15:55:00 2013
New Revision: 191698
URL: http://llvm.org/viewvc/llvm-project?rev=191698&view=rev
Log:
This test uses ObjC so it should not run on anything != Darwin
Modified:
lldb/trunk/test/expression_command/po_verbosity/TestPoVerbosity.py
Modified: lldb/trunk/test/expression_command/po_verbosity/TestPoVerbosity.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/expression_command/po_verbosity/TestPoVerbosity.py?rev=191698&r1=191697&r2=191698&view=diff
==============================================================================
--- lldb/trunk/test/expression_command/po_verbosity/TestPoVerbosity.py (original)
+++ lldb/trunk/test/expression_command/po_verbosity/TestPoVerbosity.py Mon Sep 30 15:55:00 2013
@@ -25,6 +25,7 @@ class PoVerbosityTestCase(TestBase):
self.buildDsym()
self.do_my_test()
+ @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin due to ObjC test case")
@dwarf_test
def test_with_dwarf(self):
"""Test that the po command acts correctly."""
More information about the lldb-commits
mailing list