aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEd Maste <emaste@freebsd.org>2013-07-30 13:12:58 +0000
committerEd Maste <emaste@freebsd.org>2013-07-30 13:12:58 +0000
commit9c19b015ac6161a35fc56bb2d0fa84d1837063f8 (patch)
tree7a8accdc61e4d0d68033535bd38abb155b995a81
parentf40b0928e7455c7158ea9aa82d7908cc3fe4d1af (diff)
downloadlldb-9c19b015ac6161a35fc56bb2d0fa84d1837063f8.tar.gz
tests: Mark expected FreeBSD failures due to pr14424
These tests fail on FreeBSD due to missing build support, the same reason they fail on Linux. git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@187416 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/functionalities/load_unload/TestLoadUnload.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/functionalities/load_unload/TestLoadUnload.py b/test/functionalities/load_unload/TestLoadUnload.py
index d808bc829..6fc1124a4 100644
--- a/test/functionalities/load_unload/TestLoadUnload.py
+++ b/test/functionalities/load_unload/TestLoadUnload.py
@@ -25,6 +25,7 @@ class LoadUnloadTestCase(TestBase):
self.line_d_function = line_number('d.c',
'// Find this line number within d_dunction().')
+ @skipIfFreeBSD # llvm.org/pr14424 - missing FreeBSD Makefiles/testcase support
@skipIfLinux # llvm.org/pr14424 - missing linux Makefiles/testcase support
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'."""
@@ -78,6 +79,7 @@ class LoadUnloadTestCase(TestBase):
self.expect("target modules list", "LLDB successfully locates the relocated dynamic library",
substrs = [new_dylib])
+ @skipIfFreeBSD # llvm.org/pr14424 - missing FreeBSD Makefiles/testcase support
@skipIfLinux # llvm.org/pr14424 - missing linux Makefiles/testcase support
def test_dyld_library_path(self):
"""Test DYLD_LIBRARY_PATH after moving libd.dylib, which defines d_function, somewhere else."""
@@ -132,6 +134,7 @@ class LoadUnloadTestCase(TestBase):
self.expect("target modules list",
substrs = [special_dir, os.path.basename(new_dylib)])
+ @skipIfFreeBSD # llvm.org/pr14424 - missing FreeBSD Makefiles/testcase support
@skipIfLinux # llvm.org/pr14424 - missing linux Makefiles/testcase support
def test_lldb_process_load_and_unload_commands(self):
"""Test that lldb process load/unload command work correctly."""
@@ -179,6 +182,7 @@ class LoadUnloadTestCase(TestBase):
self.runCmd("process continue")
+ @skipIfFreeBSD # llvm.org/pr14424 - missing FreeBSD Makefiles/testcase support
@skipIfLinux # llvm.org/pr14424 - missing linux Makefiles/testcase support
def test_load_unload(self):
"""Test breakpoint by name works correctly with dlopen'ing."""
@@ -219,6 +223,7 @@ class LoadUnloadTestCase(TestBase):
self.expect("breakpoint list -f", BREAKPOINT_HIT_ONCE,
substrs = [' resolved, hit count = 2'])
+ @skipIfFreeBSD # llvm.org/pr14424 - missing FreeBSD Makefiles/testcase support
@skipIfLinux # llvm.org/pr14424 - missing linux Makefiles/testcase support
def test_step_over_load (self):
"""Test stepping over code that loads a shared library works correctly."""