[Lldb-commits] [lldb] r180158 - Fix missing module name in expectedFailure calls

Daniel Malea daniel.malea at intel.com
Tue Apr 23 15:59:31 PDT 2013


Author: dmalea
Date: Tue Apr 23 17:59:31 2013
New Revision: 180158

URL: http://llvm.org/viewvc/llvm-project?rev=180158&view=rev
Log:
Fix missing module name in expectedFailure calls


Modified:
    lldb/trunk/test/functionalities/thread/state/TestThreadStates.py

Modified: lldb/trunk/test/functionalities/thread/state/TestThreadStates.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/thread/state/TestThreadStates.py?rev=180158&r1=180157&r2=180158&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/thread/state/TestThreadStates.py (original)
+++ lldb/trunk/test/functionalities/thread/state/TestThreadStates.py Tue Apr 23 17:59:31 2013
@@ -14,14 +14,14 @@ class StopThreadsTestCase(TestBase):
 
     @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
     @dsym_test
-    @expectedFailure("PR-15824") # thread states not properly maintained
+    @unittest2.expectedFailure("PR-15824") # thread states not properly maintained
     def test_with_dsym(self):
         """Test thread states."""
         self.buildDsym()
         self.thread_states_test()
 
     @dwarf_test
-    @expectedFailure("PR-15824") # thread states not properly maintained
+    @unittest2.expectedFailure("PR-15824") # thread states not properly maintained
     def test_with_dwarf(self):
         """Test thread states."""
         self.buildDwarf()





More information about the lldb-commits mailing list