[Lldb-commits] [lldb] r155512 - /lldb/branches/lldb-platform-work/test/functionalities/load_unload/TestLoadUnload.py

Johnny Chen johnny.chen at apple.com
Tue Apr 24 17:33:51 PDT 2012


Author: johnny
Date: Tue Apr 24 19:33:51 2012
New Revision: 155512

URL: http://llvm.org/viewvc/llvm-project?rev=155512&view=rev
Log:
Mark all 5 test cases as @not_remote_testsuite_ready.

Modified:
    lldb/branches/lldb-platform-work/test/functionalities/load_unload/TestLoadUnload.py

Modified: lldb/branches/lldb-platform-work/test/functionalities/load_unload/TestLoadUnload.py
URL: http://llvm.org/viewvc/llvm-project/lldb/branches/lldb-platform-work/test/functionalities/load_unload/TestLoadUnload.py?rev=155512&r1=155511&r2=155512&view=diff
==============================================================================
--- lldb/branches/lldb-platform-work/test/functionalities/load_unload/TestLoadUnload.py (original)
+++ lldb/branches/lldb-platform-work/test/functionalities/load_unload/TestLoadUnload.py Tue Apr 24 19:33:51 2012
@@ -21,6 +21,7 @@
         self.line_d_function = line_number('d.c',
                                            '// Find this line number within d_dunction().')
 
+    @not_remote_testsuite_ready
     def test_modules_search_paths(self):
         """Test target modules list after loading a different copy of the library libd.dylib, and verifies that it works with 'target modules search-paths add'."""
 
@@ -75,6 +76,7 @@
             substrs = [new_dylib])
 
         
+    @not_remote_testsuite_ready
     def test_dyld_library_path(self):
         """Test DYLD_LIBRARY_PATH after moving libd.dylib, which defines d_function, somewhere else."""
 
@@ -131,6 +133,7 @@
         self.expect("target modules list",
             substrs = [special_dir, os.path.basename(new_dylib)])
 
+    @not_remote_testsuite_ready
     def test_lldb_process_load_and_unload_commands(self):
         """Test that lldb process load/unload command work correctly."""
 
@@ -180,6 +183,7 @@
 
         self.runCmd("process continue")
 
+    @not_remote_testsuite_ready
     def test_load_unload(self):
         """Test breakpoint by name works correctly with dlopen'ing."""
 
@@ -220,6 +224,7 @@
         self.expect("breakpoint list -f", BREAKPOINT_HIT_ONCE,
             substrs = [' resolved, hit count = 2'])
 
+    @not_remote_testsuite_ready
     def test_step_over_load (self):
         """Test stepping over code that loads a shared library works correctly."""
 





More information about the lldb-commits mailing list