summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZachary Turner <zturner@google.com>2015-09-16 18:08:33 +0000
committerZachary Turner <zturner@google.com>2015-09-16 18:08:33 +0000
commit4a58dd3035ba3a4fa7907a98c89808e91e5df8ee (patch)
tree5f1f94818052b5bf398ebea7bd77b2c160721255
parent8c8fe5a0159041e176e3331e7fc0d3031ebefe16 (diff)
downloadbcm5719-llvm-4a58dd3035ba3a4fa7907a98c89808e91e5df8ee.tar.gz
bcm5719-llvm-4a58dd3035ba3a4fa7907a98c89808e91e5df8ee.zip
Last set of XFAILs for Windows.
llvm-svn: 247825
-rw-r--r--lldb/test/api/multiple-debuggers/TestMultipleDebuggers.py1
-rw-r--r--lldb/test/expression_command/test/TestExprs.py1
-rw-r--r--lldb/test/functionalities/load_unload/TestLoadUnload.py1
-rw-r--r--lldb/test/functionalities/thread/step_out/TestThreadStepOut.py2
-rw-r--r--lldb/test/lang/c/shared_lib_stripped_symbols/TestSharedLibStrippedSymbols.py2
-rw-r--r--lldb/test/python_api/lldbutil/iter/TestRegistersIterator.py1
-rw-r--r--lldb/test/python_api/signals/TestSignalsAPI.py1
-rw-r--r--lldb/test/python_api/thread/TestThreadAPI.py1
8 files changed, 10 insertions, 0 deletions
diff --git a/lldb/test/api/multiple-debuggers/TestMultipleDebuggers.py b/lldb/test/api/multiple-debuggers/TestMultipleDebuggers.py
index 87db1093fad..1064e37e8a4 100644
--- a/lldb/test/api/multiple-debuggers/TestMultipleDebuggers.py
+++ b/lldb/test/api/multiple-debuggers/TestMultipleDebuggers.py
@@ -20,6 +20,7 @@ class TestMultipleSimultaneousDebuggers(TestBase):
@skipIfNoSBHeaders
@expectedFailureFreeBSD("llvm.org/pr20282")
@expectedFailureLinux("llvm.org/pr20282")
+ @expectedFailureWindows # Test crashes
@expectedFlakeyDarwin()
def test_multiple_debuggers(self):
env = {self.dylibPath : self.getLLDBLibraryEnvVal()}
diff --git a/lldb/test/expression_command/test/TestExprs.py b/lldb/test/expression_command/test/TestExprs.py
index d9219d2fefd..4d718aa8b1c 100644
--- a/lldb/test/expression_command/test/TestExprs.py
+++ b/lldb/test/expression_command/test/TestExprs.py
@@ -95,6 +95,7 @@ class BasicExprCommandsTestCase(TestBase):
@python_api_test
@expectedFailureAll("llvm.org/pr23139", oslist=["linux"], compiler="gcc", compiler_version=[">=","4.9"], archs=["i386"])
+ @expectedFailureWindows # Test crashes
def test_evaluate_expression_python(self):
"""Test SBFrame.EvaluateExpression() API for evaluating an expression."""
self.buildDefault()
diff --git a/lldb/test/functionalities/load_unload/TestLoadUnload.py b/lldb/test/functionalities/load_unload/TestLoadUnload.py
index 2bb2333952a..f32749dcfd7 100644
--- a/lldb/test/functionalities/load_unload/TestLoadUnload.py
+++ b/lldb/test/functionalities/load_unload/TestLoadUnload.py
@@ -9,6 +9,7 @@ import lldb
from lldbtest import *
import lldbutil
+@skipIfWindows # Windows doesn't have dlopen and friends, dynamic libraries work differently
class LoadUnloadTestCase(TestBase):
def getCategories (self):
diff --git a/lldb/test/functionalities/thread/step_out/TestThreadStepOut.py b/lldb/test/functionalities/thread/step_out/TestThreadStepOut.py
index ee9a247aa62..2f26fc898d5 100644
--- a/lldb/test/functionalities/thread/step_out/TestThreadStepOut.py
+++ b/lldb/test/functionalities/thread/step_out/TestThreadStepOut.py
@@ -21,6 +21,7 @@ class ThreadStepOutTestCase(TestBase):
@skipIfLinux # Test occasionally times out on the Linux build bot
@expectedFailureLinux("llvm.org/pr23477") # Test occasionally times out on the Linux build bot
@expectedFailureFreeBSD("llvm.org/pr18066") # inferior does not exit
+ @expectedFailureWindows # Test crashes
@dwarf_test
def test_step_single_thread_with_dwarf(self):
"""Test thread step out on one thread via command interpreter. """
@@ -36,6 +37,7 @@ class ThreadStepOutTestCase(TestBase):
@skipIfLinux # Test occasionally times out on the Linux build bot
@expectedFailureLinux("llvm.org/pr23477") # Test occasionally times out on the Linux build bot
@expectedFailureFreeBSD("llvm.org/pr19347") # 2nd thread stops at breakpoint
+ @expectedFailureWindows # Test crashes
@dwarf_test
def test_step_all_threads_with_dwarf(self):
"""Test thread step out on all threads via command interpreter. """
diff --git a/lldb/test/lang/c/shared_lib_stripped_symbols/TestSharedLibStrippedSymbols.py b/lldb/test/lang/c/shared_lib_stripped_symbols/TestSharedLibStrippedSymbols.py
index 0987e784734..2d921e8f9ac 100644
--- a/lldb/test/lang/c/shared_lib_stripped_symbols/TestSharedLibStrippedSymbols.py
+++ b/lldb/test/lang/c/shared_lib_stripped_symbols/TestSharedLibStrippedSymbols.py
@@ -16,6 +16,7 @@ class SharedLibStrippedTestCase(TestBase):
self.expr()
@dwarf_test
+ @expectedFailureWindows # Test crashes
def test_expr_with_dwarf(self):
"""Test that types work when defined in a shared library and forward-declared in the main executable"""
self.buildDwarf()
@@ -28,6 +29,7 @@ class SharedLibStrippedTestCase(TestBase):
self.frame_var()
@dwarf_test
+ @expectedFailureWindows # Test crashes
def test_frame_variable_with_dwarf(self):
"""Test that types work when defined in a shared library and forward-declared in the main executable"""
self.buildDwarf()
diff --git a/lldb/test/python_api/lldbutil/iter/TestRegistersIterator.py b/lldb/test/python_api/lldbutil/iter/TestRegistersIterator.py
index e66f35ed87b..4dc5dbe7aa6 100644
--- a/lldb/test/python_api/lldbutil/iter/TestRegistersIterator.py
+++ b/lldb/test/python_api/lldbutil/iter/TestRegistersIterator.py
@@ -19,6 +19,7 @@ class RegistersIteratorTestCase(TestBase):
self.line1 = line_number('main.cpp', '// Set break point at this line.')
@python_api_test
+ @expectedFailureWindows # Test crashes
def test_iter_registers(self):
"""Test iterator works correctly for lldbutil.iter_registers()."""
self.buildDefault()
diff --git a/lldb/test/python_api/signals/TestSignalsAPI.py b/lldb/test/python_api/signals/TestSignalsAPI.py
index 8d05d3771fd..7474f431344 100644
--- a/lldb/test/python_api/signals/TestSignalsAPI.py
+++ b/lldb/test/python_api/signals/TestSignalsAPI.py
@@ -13,6 +13,7 @@ class SignalsAPITestCase(TestBase):
@python_api_test
@expectedFlakeyLinux # this test fails 1/100 dosep runs
+ @skipIfWindows # Windows doesn't have signals
def test_ignore_signal(self):
"""Test Python SBUnixSignals.Suppress/Stop/Notify() API."""
self.buildDefault()
diff --git a/lldb/test/python_api/thread/TestThreadAPI.py b/lldb/test/python_api/thread/TestThreadAPI.py
index 706919e69ab..d5b146d07ab 100644
--- a/lldb/test/python_api/thread/TestThreadAPI.py
+++ b/lldb/test/python_api/thread/TestThreadAPI.py
@@ -76,6 +76,7 @@ class ThreadAPITestCase(TestBase):
@expectedFailureFreeBSD # llvm.org/pr20476
@python_api_test
+ @expectedFailureWindows # Test crashes
@dwarf_test
def test_step_out_of_malloc_into_function_b_with_dwarf(self):
"""Test Python SBThread.StepOut() API to step out of a malloc call where the call site is at function b()."""
OpenPOWER on IntegriCloud