[Lldb-commits] [lldb] r247825 - Last set of XFAILs for Windows.
Zachary Turner via lldb-commits
lldb-commits at lists.llvm.org
Wed Sep 16 11:08:33 PDT 2015
Author: zturner
Date: Wed Sep 16 13:08:33 2015
New Revision: 247825
URL: http://llvm.org/viewvc/llvm-project?rev=247825&view=rev
Log:
Last set of XFAILs for Windows.
Modified:
lldb/trunk/test/api/multiple-debuggers/TestMultipleDebuggers.py
lldb/trunk/test/expression_command/test/TestExprs.py
lldb/trunk/test/functionalities/load_unload/TestLoadUnload.py
lldb/trunk/test/functionalities/thread/step_out/TestThreadStepOut.py
lldb/trunk/test/lang/c/shared_lib_stripped_symbols/TestSharedLibStrippedSymbols.py
lldb/trunk/test/python_api/lldbutil/iter/TestRegistersIterator.py
lldb/trunk/test/python_api/signals/TestSignalsAPI.py
lldb/trunk/test/python_api/thread/TestThreadAPI.py
Modified: lldb/trunk/test/api/multiple-debuggers/TestMultipleDebuggers.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/api/multiple-debuggers/TestMultipleDebuggers.py?rev=247825&r1=247824&r2=247825&view=diff
==============================================================================
--- lldb/trunk/test/api/multiple-debuggers/TestMultipleDebuggers.py (original)
+++ lldb/trunk/test/api/multiple-debuggers/TestMultipleDebuggers.py Wed Sep 16 13:08:33 2015
@@ -20,6 +20,7 @@ class TestMultipleSimultaneousDebuggers(
@skipIfNoSBHeaders
@expectedFailureFreeBSD("llvm.org/pr20282")
@expectedFailureLinux("llvm.org/pr20282")
+ @expectedFailureWindows # Test crashes
@expectedFlakeyDarwin()
def test_multiple_debuggers(self):
env = {self.dylibPath : self.getLLDBLibraryEnvVal()}
Modified: lldb/trunk/test/expression_command/test/TestExprs.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/expression_command/test/TestExprs.py?rev=247825&r1=247824&r2=247825&view=diff
==============================================================================
--- lldb/trunk/test/expression_command/test/TestExprs.py (original)
+++ lldb/trunk/test/expression_command/test/TestExprs.py Wed Sep 16 13:08:33 2015
@@ -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()
Modified: lldb/trunk/test/functionalities/load_unload/TestLoadUnload.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/load_unload/TestLoadUnload.py?rev=247825&r1=247824&r2=247825&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/load_unload/TestLoadUnload.py (original)
+++ lldb/trunk/test/functionalities/load_unload/TestLoadUnload.py Wed Sep 16 13:08:33 2015
@@ -9,6 +9,7 @@ import lldb
from lldbtest import *
import lldbutil
+ at skipIfWindows # Windows doesn't have dlopen and friends, dynamic libraries work differently
class LoadUnloadTestCase(TestBase):
def getCategories (self):
Modified: lldb/trunk/test/functionalities/thread/step_out/TestThreadStepOut.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/thread/step_out/TestThreadStepOut.py?rev=247825&r1=247824&r2=247825&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/thread/step_out/TestThreadStepOut.py (original)
+++ lldb/trunk/test/functionalities/thread/step_out/TestThreadStepOut.py Wed Sep 16 13:08:33 2015
@@ -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. """
Modified: lldb/trunk/test/lang/c/shared_lib_stripped_symbols/TestSharedLibStrippedSymbols.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lang/c/shared_lib_stripped_symbols/TestSharedLibStrippedSymbols.py?rev=247825&r1=247824&r2=247825&view=diff
==============================================================================
--- lldb/trunk/test/lang/c/shared_lib_stripped_symbols/TestSharedLibStrippedSymbols.py (original)
+++ lldb/trunk/test/lang/c/shared_lib_stripped_symbols/TestSharedLibStrippedSymbols.py Wed Sep 16 13:08:33 2015
@@ -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()
Modified: lldb/trunk/test/python_api/lldbutil/iter/TestRegistersIterator.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/python_api/lldbutil/iter/TestRegistersIterator.py?rev=247825&r1=247824&r2=247825&view=diff
==============================================================================
--- lldb/trunk/test/python_api/lldbutil/iter/TestRegistersIterator.py (original)
+++ lldb/trunk/test/python_api/lldbutil/iter/TestRegistersIterator.py Wed Sep 16 13:08:33 2015
@@ -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()
Modified: lldb/trunk/test/python_api/signals/TestSignalsAPI.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/python_api/signals/TestSignalsAPI.py?rev=247825&r1=247824&r2=247825&view=diff
==============================================================================
--- lldb/trunk/test/python_api/signals/TestSignalsAPI.py (original)
+++ lldb/trunk/test/python_api/signals/TestSignalsAPI.py Wed Sep 16 13:08:33 2015
@@ -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()
Modified: lldb/trunk/test/python_api/thread/TestThreadAPI.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/python_api/thread/TestThreadAPI.py?rev=247825&r1=247824&r2=247825&view=diff
==============================================================================
--- lldb/trunk/test/python_api/thread/TestThreadAPI.py (original)
+++ lldb/trunk/test/python_api/thread/TestThreadAPI.py Wed Sep 16 13:08:33 2015
@@ -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()."""
More information about the lldb-commits
mailing list