diff options
| author | Todd Fiala <todd.fiala@gmail.com> | 2015-09-14 19:53:00 +0000 |
|---|---|---|
| committer | Todd Fiala <todd.fiala@gmail.com> | 2015-09-14 19:53:00 +0000 |
| commit | a22006183f47e4237a3abfac895f4f5bb67abb81 (patch) | |
| tree | 07deb0757a47e3f354b61079bbfb6d1c0a1120b1 /lldb | |
| parent | 11ab0e155dedf4c45929ce0d901621cdec999d54 (diff) | |
| download | bcm5719-llvm-a22006183f47e4237a3abfac895f4f5bb67abb81.tar.gz bcm5719-llvm-a22006183f47e4237a3abfac895f4f5bb67abb81.zip | |
Fixes lldb-server commandline test xpass for OS X and Linux; resolves llvm.org/pr20273
llvm-svn: 247605
Diffstat (limited to 'lldb')
| -rw-r--r-- | lldb/test/python_api/target/TestTargetAPI.py | 2 | ||||
| -rw-r--r-- | lldb/test/tools/lldb-server/commandline/TestStubSetSID.py | 3 |
2 files changed, 1 insertions, 4 deletions
diff --git a/lldb/test/python_api/target/TestTargetAPI.py b/lldb/test/python_api/target/TestTargetAPI.py index 8c087c39f30..8163440cc4a 100644 --- a/lldb/test/python_api/target/TestTargetAPI.py +++ b/lldb/test/python_api/target/TestTargetAPI.py @@ -76,7 +76,6 @@ class TargetAPITestCase(TestBase): @skipUnlessDarwin @python_api_test @dsym_test - @expectedFailureDarwin("llvm.org/pr20273") def test_launch_new_process_and_redirect_stdout_with_dsym(self): """Exercise SBTaget.Launch() API.""" self.buildDsym() @@ -84,7 +83,6 @@ class TargetAPITestCase(TestBase): @python_api_test @dwarf_test - @expectedFailureDarwin("llvm.org/pr20273") def test_launch_new_process_and_redirect_stdout_with_dwarf(self): """Exercise SBTarget.Launch() API.""" self.buildDwarf() diff --git a/lldb/test/tools/lldb-server/commandline/TestStubSetSID.py b/lldb/test/tools/lldb-server/commandline/TestStubSetSID.py index 3cea2642d08..32e4818176d 100644 --- a/lldb/test/tools/lldb-server/commandline/TestStubSetSID.py +++ b/lldb/test/tools/lldb-server/commandline/TestStubSetSID.py @@ -38,7 +38,6 @@ class TestStubSetSIDTestCase(gdbremote_testcase.GdbRemoteTestCaseBase): @debugserver_test @skipIfRemote # --setsid not used on remote platform and currently it is also impossible to get the sid of lldb-platform running on a remote target - @unittest2.expectedFailure() # This is the whole purpose of this feature, I would expect it to be the same without --setsid. Investigate. def test_sid_is_same_without_setsid_debugserver(self): self.init_debugserver_test() self.set_inferior_startup_launch() @@ -46,7 +45,7 @@ class TestStubSetSIDTestCase(gdbremote_testcase.GdbRemoteTestCaseBase): @llgs_test @skipIfRemote # --setsid not used on remote platform and currently it is also impossible to get the sid of lldb-platform running on a remote target - @unittest2.expectedFailure() # This is the whole purpose of this feature, I would expect it to be the same without --setsid. Investigate. + @expectedFailureFreeBSD() def test_sid_is_same_without_setsid_llgs(self): self.init_llgs_test() self.set_inferior_startup_launch() |

