summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTodd Fiala <todd.fiala@gmail.com>2015-09-14 19:25:22 +0000
committerTodd Fiala <todd.fiala@gmail.com>2015-09-14 19:25:22 +0000
commita85feabe3a27ad6ba771906cdad18c6ab0342b2c (patch)
treee401c271f203537fd1cfe183a2d659f2b934b0a3
parent7b6fbcf365ef1d9910140a3ca3f9d008fff536d2 (diff)
downloadbcm5719-llvm-a85feabe3a27ad6ba771906cdad18c6ab0342b2c.tar.gz
bcm5719-llvm-a85feabe3a27ad6ba771906cdad18c6ab0342b2c.zip
Another round of macosx unexpected success corrections.
llvm-svn: 247602
-rw-r--r--lldb/test/functionalities/process_launch/TestProcessLaunch.py2
-rw-r--r--lldb/test/functionalities/signal/raise/TestRaise.py2
-rw-r--r--lldb/test/lang/c/register_variables/TestRegisterVariables.py3
-rw-r--r--lldb/test/lang/cpp/rvalue-references/TestRvalueReferences.py1
4 files changed, 2 insertions, 6 deletions
diff --git a/lldb/test/functionalities/process_launch/TestProcessLaunch.py b/lldb/test/functionalities/process_launch/TestProcessLaunch.py
index 6819c361a1a..baa6443c3cb 100644
--- a/lldb/test/functionalities/process_launch/TestProcessLaunch.py
+++ b/lldb/test/functionalities/process_launch/TestProcessLaunch.py
@@ -119,7 +119,6 @@ class ProcessLaunchTestCase(TestBase):
@skipUnlessDarwin
@dsym_test
- @expectedFailureDarwin("llvm.org/pr20265")
def test_set_working_dir_with_dsym (self):
"""Test that '-w dir' sets the working dir when running the inferior."""
self.buildDsym(dictionary=self.d)
@@ -127,7 +126,6 @@ class ProcessLaunchTestCase(TestBase):
self.my_working_dir_test()
@skipIfFreeBSD # llvm.org/pr16684
- @expectedFailureDarwin("llvm.org/pr20265")
@expectedFailureLinux("llvm.org/pr20265")
@dwarf_test
def test_set_working_dir_with_dwarf (self):
diff --git a/lldb/test/functionalities/signal/raise/TestRaise.py b/lldb/test/functionalities/signal/raise/TestRaise.py
index b7d3c8131e4..b6672779b64 100644
--- a/lldb/test/functionalities/signal/raise/TestRaise.py
+++ b/lldb/test/functionalities/signal/raise/TestRaise.py
@@ -15,14 +15,12 @@ class RaiseTestCase(TestBase):
@skipUnlessDarwin
@dsym_test
- @expectedFailureDarwin("llvm.org/pr23610") # process doesn't stop at a breakpoint on the third launch
def test_sigstop_with_dsym(self):
self.buildDsym()
self.signal_test('SIGSTOP', False)
# passing of SIGSTOP is not correctly handled, so not testing that scenario: https://llvm.org/bugs/show_bug.cgi?id=23574
@dwarf_test
- @expectedFailureDarwin("llvm.org/pr23610") # process doesn't stop at a breakpoint on the third launch
def test_sigstop_with_dwarf(self):
self.buildDwarf()
self.signal_test('SIGSTOP', False)
diff --git a/lldb/test/lang/c/register_variables/TestRegisterVariables.py b/lldb/test/lang/c/register_variables/TestRegisterVariables.py
index 101e5c1e4da..3891fd9aa44 100644
--- a/lldb/test/lang/c/register_variables/TestRegisterVariables.py
+++ b/lldb/test/lang/c/register_variables/TestRegisterVariables.py
@@ -11,7 +11,8 @@ class RegisterVariableTestCase(TestBase):
mydir = TestBase.compute_mydir(__file__)
@dsym_test
- @expectedFailureDarwin("llvm.org/pr20266")
+ @expectedFailureAll(
+ oslist=['macosx'], compiler='clang', compiler_version=['<', '7.0.0'])
def test_with_dsym_and_run_command(self):
"""Test expressions on register values."""
self.buildDsym()
diff --git a/lldb/test/lang/cpp/rvalue-references/TestRvalueReferences.py b/lldb/test/lang/cpp/rvalue-references/TestRvalueReferences.py
index 72f4531b4e9..7fcb599a7dd 100644
--- a/lldb/test/lang/cpp/rvalue-references/TestRvalueReferences.py
+++ b/lldb/test/lang/cpp/rvalue-references/TestRvalueReferences.py
@@ -11,7 +11,6 @@ class RvalueReferencesTestCase(TestBase):
mydir = TestBase.compute_mydir(__file__)
@skipUnlessDarwin
- @expectedFailureClang("rdar://problem/11479676")
@dsym_test
def test_with_dsym_and_run_command(self):
"""Test that rvalues are supported in the C++ expression parser"""
OpenPOWER on IntegriCloud