[Lldb-commits] [lldb] r204283 - These logging tests depend on the exact output of lldb logging, which is brittle

Jim Ingham jingham at apple.com
Wed Mar 19 16:50:48 PDT 2014


Author: jingham
Date: Wed Mar 19 18:50:48 2014
New Revision: 204283

URL: http://llvm.org/viewvc/llvm-project?rev=204283&view=rev
Log:
These logging tests depend on the exact output of lldb logging, which is brittle
and not particularly useful.  Skipping till we get a chance to make a test that 
actually tests something we care about.

Modified:
    lldb/trunk/test/logging/TestLogging.py

Modified: lldb/trunk/test/logging/TestLogging.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/logging/TestLogging.py?rev=204283&r1=204282&r2=204283&view=diff
==============================================================================
--- lldb/trunk/test/logging/TestLogging.py (original)
+++ lldb/trunk/test/logging/TestLogging.py Wed Mar 19 18:50:48 2014
@@ -14,11 +14,13 @@ class LogTestCase(TestBase):
     @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
     @dsym_test
     def test_with_dsym (self):
+        self.skipTest ("This test case depends on the exact output of lldb log.  Why is that useful?")
         self.buildDsym ()
         self.command_log_tests ("dsym")
 
     @dwarf_test
     def test_with_dwarf (self):
+        self.skipTest ("This test case depends on the exact output of lldb log.  Why is that useful?")
         self.buildDwarf ()
         self.command_log_tests ("dwarf")
 





More information about the lldb-commits mailing list