aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEd Maste <emaste@freebsd.org>2013-07-24 21:09:24 +0000
committerEd Maste <emaste@freebsd.org>2013-07-24 21:09:24 +0000
commit4edd4b4d295e07afc6a7c157f2693a110de49964 (patch)
tree98e261bc96affe3e858133d6b9b6d64bbb1509f7
parentccfb499c8e1989a37a1976a4f1ec662f89816b28 (diff)
downloadlldb-4edd4b4d295e07afc6a7c157f2693a110de49964.tar.gz
tests: Mark expected FreeBSD failures due to pr16696
Live debugging of threaded inferiors is currently unimplemented for FreeBSD. git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@187077 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/functionalities/thread/TestNumThreads.py1
-rw-r--r--test/functionalities/thread/step_out/TestThreadStepOut.py3
-rw-r--r--test/functionalities/thread/thread_exit/TestThreadExit.py1
-rw-r--r--test/python_api/lldbutil/process/TestPrintStackTraces.py1
4 files changed, 6 insertions, 0 deletions
diff --git a/test/functionalities/thread/TestNumThreads.py b/test/functionalities/thread/TestNumThreads.py
index 444853510..3a4e06d52 100644
--- a/test/functionalities/thread/TestNumThreads.py
+++ b/test/functionalities/thread/TestNumThreads.py
@@ -19,6 +19,7 @@ class NumberOfThreadsTestCase(TestBase):
self.buildDsym()
self.number_of_threads_test()
+ @expectedFailureFreeBSD("llvm.org/pr16696") # threaded inferior not yet implemented on FreeBSD
@dwarf_test
def test_with_dwarf(self):
"""Test number of threads."""
diff --git a/test/functionalities/thread/step_out/TestThreadStepOut.py b/test/functionalities/thread/step_out/TestThreadStepOut.py
index 47728e302..436a03abc 100644
--- a/test/functionalities/thread/step_out/TestThreadStepOut.py
+++ b/test/functionalities/thread/step_out/TestThreadStepOut.py
@@ -18,6 +18,7 @@ class ThreadStepOutTestCase(TestBase):
self.buildDsym(dictionary=self.getBuildFlags())
self.step_out_test(self.step_out_single_thread_with_cmd)
+ @expectedFailureFreeBSD("llvm.org/pr16696") # threaded inferior not yet implemented on FreeBSD
@dwarf_test
def test_step_single_thread_with_dwarf(self):
"""Test thread step out on one thread via command interpreter. """
@@ -30,6 +31,7 @@ class ThreadStepOutTestCase(TestBase):
self.buildDsym(dictionary=self.getBuildFlags())
self.step_out_test(self.step_out_all_threads_with_cmd)
+ @expectedFailureFreeBSD("llvm.org/pr16696") # threaded inferior not yet implemented on FreeBSD
@dwarf_test
def test_step_all_threads_with_dwarf(self):
"""Test thread step out on all threads via command interpreter. """
@@ -42,6 +44,7 @@ class ThreadStepOutTestCase(TestBase):
self.buildDsym(dictionary=self.getBuildFlags())
self.step_out_test(self.step_out_with_python)
+ @expectedFailureFreeBSD("llvm.org/pr16696") # threaded inferior not yet implemented on FreeBSD
@dwarf_test
def test_python_with_dwarf(self):
"""Test thread step out on one thread via Python API (dwarf)."""
diff --git a/test/functionalities/thread/thread_exit/TestThreadExit.py b/test/functionalities/thread/thread_exit/TestThreadExit.py
index bb8e2842f..51719086a 100644
--- a/test/functionalities/thread/thread_exit/TestThreadExit.py
+++ b/test/functionalities/thread/thread_exit/TestThreadExit.py
@@ -20,6 +20,7 @@ class ThreadExitTestCase(TestBase):
self.buildDsym(dictionary=self.getBuildFlags())
self.thread_exit_test()
+ @expectedFailureFreeBSD("llvm.org/pr16696") # threaded inferior not implemented on FreeBSD yet
@expectedFailureDarwin("llvm.org/pr15824") # thread states not properly maintained
@dwarf_test
def test_with_dwarf(self):
diff --git a/test/python_api/lldbutil/process/TestPrintStackTraces.py b/test/python_api/lldbutil/process/TestPrintStackTraces.py
index a0873e611..461334e33 100644
--- a/test/python_api/lldbutil/process/TestPrintStackTraces.py
+++ b/test/python_api/lldbutil/process/TestPrintStackTraces.py
@@ -18,6 +18,7 @@ class ThreadsStackTracesTestCase(TestBase):
# Find the line number to break inside main().
self.line = line_number('main.cpp', '// Set break point at this line.')
+ @expectedFailureFreeBSD("llvm.org/pr16696") # live debugging lacks threaded inferior support
@expectedFailureLinux # llvm.org/pr14323
@python_api_test
def test_stack_traces(self):