From 90198a81e082cb352d5a052426a85fdbfa120252 Mon Sep 17 00:00:00 2001 From: Todd Fiala Date: Wed, 9 Jul 2014 20:42:14 +0000 Subject: [PATCH] Marked failing Darwin TestProcessLaunch tests as XFAIL See http://llvm.org/bugs/show_bug.cgi?id=20265 llvm-svn: 212647 --- lldb/test/functionalities/process_launch/TestProcessLaunch.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lldb/test/functionalities/process_launch/TestProcessLaunch.py b/lldb/test/functionalities/process_launch/TestProcessLaunch.py index a648978862a9..dd287c2c2811 100644 --- a/lldb/test/functionalities/process_launch/TestProcessLaunch.py +++ b/lldb/test/functionalities/process_launch/TestProcessLaunch.py @@ -112,6 +112,7 @@ class ProcessLaunchTestCase(TestBase): @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin") @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) @@ -120,6 +121,7 @@ class ProcessLaunchTestCase(TestBase): @skipIfFreeBSD # llvm.org/pr16684 @dwarf_test + @expectedFailureDarwin("llvm.org/pr20265") def test_set_working_dir_with_dwarf (self): """Test that '-w dir' sets the working dir when running the inferior.""" self.buildDwarf(dictionary=self.d)