[Lldb-commits] [lldb] r225564 - [TestInferiorAssert] Differentiate DWARF and DSYM tests with suffixes.

Siva Chandra sivachandra at google.com
Fri Jan 9 16:25:23 PST 2015


Author: sivachandra
Date: Fri Jan  9 18:25:23 2015
New Revision: 225564

URL: http://llvm.org/viewvc/llvm-project?rev=225564&view=rev
Log:
[TestInferiorAssert] Differentiate DWARF and DSYM tests with suffixes.

Reviewers: vharron, clayborg

Reviewed By: clayborg

Subscribers: lldb-commits

Differential Revision: http://reviews.llvm.org/D6907

Modified:
    lldb/trunk/test/functionalities/inferior-assert/TestInferiorAssert.py

Modified: lldb/trunk/test/functionalities/inferior-assert/TestInferiorAssert.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/inferior-assert/TestInferiorAssert.py?rev=225564&r1=225563&r2=225564&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/inferior-assert/TestInferiorAssert.py (original)
+++ lldb/trunk/test/functionalities/inferior-assert/TestInferiorAssert.py Fri Jan  9 18:25:23 2015
@@ -54,7 +54,7 @@ class AssertingInferiorTestCase(TestBase
 
     @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
     @unittest2.expectedFailure("rdar://15367233")
-    def test_inferior_asserting_expr(self):
+    def test_inferior_asserting_expr_dsym(self):
         """Test that the lldb expression interpreter can read from the inferior after asserting (command)."""
         self.buildDsym()
         self.inferior_asserting_expr()
@@ -62,14 +62,14 @@ class AssertingInferiorTestCase(TestBase
     @expectedFailurei386('llvm.org/pr17384: lldb needs to be aware of linux-vdso.so to unwind stacks properly')
     @unittest2.expectedFailure("rdar://15367233")
     @expectedFailureWindows("llvm.org/pr21793: need to implement support for detecting assertion / abort on Windows")
-    def test_inferior_asserting_expr(self):
+    def test_inferior_asserting_expr_dwarf(self):
         """Test that the lldb expression interpreter can read from the inferior after asserting (command)."""
         self.buildDwarf()
         self.inferior_asserting_expr()
 
     @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
     @unittest2.expectedFailure("rdar://15367233")
-    def test_inferior_asserting_step(self):
+    def test_inferior_asserting_step_dsym(self):
         """Test that lldb functions correctly after stepping through a call to assert()."""
         self.buildDsym()
         self.inferior_asserting_step()
@@ -77,7 +77,7 @@ class AssertingInferiorTestCase(TestBase
     @expectedFailurei386("llvm.org/pr17384: lldb needs to be aware of linux-vdso.so to unwind stacks properly")
     @expectedFailureDarwin("rdar://15367233")
     @expectedFailureWindows("llvm.org/pr21793: need to implement support for detecting assertion / abort on Windows")
-    def test_inferior_asserting_step(self):
+    def test_inferior_asserting_step_dwarf(self):
         """Test that lldb functions correctly after stepping through a call to assert()."""
         self.buildDwarf()
         self.inferior_asserting_step()





More information about the lldb-commits mailing list