[Lldb-commits] [lldb] r170564 - in /lldb/trunk/test: functionalities/expr-doesnt-deadlock/TestExprDoesntBlock.py functionalities/platform/TestPlatformCommand.py functionalities/register/TestRegisters.py functionalities/stop-hook/multiple_threads/TestStopHookMultipleThreads.py lang/cpp/class_types/TestClassTypesDisassembly.py python_api/hello_world/TestHelloWorld.py

Daniel Malea daniel.malea at intel.com
Wed Dec 19 09:19:28 PST 2012


Author: dmalea
Date: Wed Dec 19 11:19:28 2012
New Revision: 170564

URL: http://llvm.org/viewvc/llvm-project?rev=170564&view=rev
Log:
Test suite cleanup for Linux: mark test cases expected to fail due to open bugzillas
- bugzillas covered: 14323, 14600, 14541, 14437, 14540, 14541


Modified:
    lldb/trunk/test/functionalities/expr-doesnt-deadlock/TestExprDoesntBlock.py
    lldb/trunk/test/functionalities/platform/TestPlatformCommand.py
    lldb/trunk/test/functionalities/register/TestRegisters.py
    lldb/trunk/test/functionalities/stop-hook/multiple_threads/TestStopHookMultipleThreads.py
    lldb/trunk/test/lang/cpp/class_types/TestClassTypesDisassembly.py
    lldb/trunk/test/python_api/hello_world/TestHelloWorld.py

Modified: lldb/trunk/test/functionalities/expr-doesnt-deadlock/TestExprDoesntBlock.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/expr-doesnt-deadlock/TestExprDoesntBlock.py?rev=170564&r1=170563&r2=170564&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/expr-doesnt-deadlock/TestExprDoesntBlock.py (original)
+++ lldb/trunk/test/functionalities/expr-doesnt-deadlock/TestExprDoesntBlock.py Wed Dec 19 11:19:28 2012
@@ -20,6 +20,7 @@
         self.expr_doesnt_deadlock()
 
     @dwarf_test
+    @expectedFailureLinux # due to bugzilla 14437
     def test_with_dwarf_and_run_command(self):
         """Test that expr will time out and allow other threads to run if it blocks."""
         self.buildDwarf()

Modified: lldb/trunk/test/functionalities/platform/TestPlatformCommand.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/platform/TestPlatformCommand.py?rev=170564&r1=170563&r2=170564&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/platform/TestPlatformCommand.py (original)
+++ lldb/trunk/test/functionalities/platform/TestPlatformCommand.py Wed Dec 19 11:19:28 2012
@@ -18,6 +18,7 @@
         self.expect("platform list",
             patterns = ['^Available platforms:'])
 
+    @expectedFailureLinux # due to bugzilla 14541
     def test_process_list(self):
         self.expect("platform process list",
             substrs = ['PID', 'ARCH', 'NAME'])

Modified: lldb/trunk/test/functionalities/register/TestRegisters.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/register/TestRegisters.py?rev=170564&r1=170563&r2=170564&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/register/TestRegisters.py (original)
+++ lldb/trunk/test/functionalities/register/TestRegisters.py Wed Dec 19 11:19:28 2012
@@ -20,6 +20,7 @@
         self.buildDefault()
         self.register_commands()
 
+    @expectedFailureLinux # due to bugzilla 14600
     def test_convenience_registers(self):
         """Test convenience registers."""
         if not self.getArchitecture() in ['x86_64']:

Modified: lldb/trunk/test/functionalities/stop-hook/multiple_threads/TestStopHookMultipleThreads.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/stop-hook/multiple_threads/TestStopHookMultipleThreads.py?rev=170564&r1=170563&r2=170564&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/stop-hook/multiple_threads/TestStopHookMultipleThreads.py (original)
+++ lldb/trunk/test/functionalities/stop-hook/multiple_threads/TestStopHookMultipleThreads.py Wed Dec 19 11:19:28 2012
@@ -21,6 +21,7 @@
         self.stop_hook_multiple_threads()
 
     @dwarf_test
+    @skipOnLinux # due to bugzilla 14323
     def test_stop_hook_multiple_threads_with_dwarf(self):
         """Test that lldb stop-hook works for multiple threads."""
         self.buildDwarf(dictionary=self.d)

Modified: lldb/trunk/test/lang/cpp/class_types/TestClassTypesDisassembly.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/cpp/class_types/TestClassTypesDisassembly.py?rev=170564&r1=170563&r2=170564&view=diff
==============================================================================
--- lldb/trunk/test/lang/cpp/class_types/TestClassTypesDisassembly.py (original)
+++ lldb/trunk/test/lang/cpp/class_types/TestClassTypesDisassembly.py Wed Dec 19 11:19:28 2012
@@ -20,6 +20,7 @@
         self.disassemble_call_stack()
 
     @dwarf_test
+    @expectedFailureLinux # due to bugzilla 14540
     def test_with_dwarf_and_run_command(self):
         """Disassemble each call frame when stopped on C's constructor."""
         self.buildDwarf()
@@ -35,6 +36,7 @@
 
     @python_api_test
     @dwarf_test
+    @expectedFailureLinux # due to bugzilla 14540
     def test_with_dwarf_and_python_api(self):
         """Disassemble each call frame when stopped on C's constructor."""
         self.buildDwarf()

Modified: lldb/trunk/test/python_api/hello_world/TestHelloWorld.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/python_api/hello_world/TestHelloWorld.py?rev=170564&r1=170563&r2=170564&view=diff
==============================================================================
--- lldb/trunk/test/python_api/hello_world/TestHelloWorld.py (original)
+++ lldb/trunk/test/python_api/hello_world/TestHelloWorld.py Wed Dec 19 11:19:28 2012
@@ -67,6 +67,7 @@
         self.setTearDownCleanup(dictionary=self.d)
         self.hello_world_attach_with_name_api()
 
+    @expectedFailureLinux # due to bugzilla 14541
     @python_api_test
     @dwarf_test
     def test_with_dwarf_and_attach_to_process_with_name_api(self):





More information about the lldb-commits mailing list