[Lldb-commits] [lldb] r246644 - XFAIL new tests in TestCompletion on windows due to missing pexpect

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Wed Sep 2 05:09:31 PDT 2015


Author: labath
Date: Wed Sep  2 07:09:31 2015
New Revision: 246644

URL: http://llvm.org/viewvc/llvm-project?rev=246644&view=rev
Log:
XFAIL new tests in TestCompletion on windows due to missing pexpect

Modified:
    lldb/trunk/test/functionalities/completion/TestCompletion.py

Modified: lldb/trunk/test/functionalities/completion/TestCompletion.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/completion/TestCompletion.py?rev=246644&r1=246643&r2=246644&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/completion/TestCompletion.py (original)
+++ lldb/trunk/test/functionalities/completion/TestCompletion.py Wed Sep  2 07:09:31 2015
@@ -219,6 +219,7 @@ class CommandLineCompletionTestCase(Test
         """Test that 'target va' completes to 'target variable '."""
         self.complete_from_to('target va', 'target variable ')
 
+    @expectedFailureHostWindows("llvm.org/pr22274: need a pexpect replacement for windows")
     @skipUnlessDarwin
     @dsym_test
     def test_symbol_name_dsym(self):
@@ -228,6 +229,7 @@ class CommandLineCompletionTestCase(Test
                               'breakpoint set -n Foo::Bar(int,\\ int)',
                               turn_off_re_match=True)
 
+    @expectedFailureHostWindows("llvm.org/pr22274: need a pexpect replacement for windows")
     @dwarf_test
     def test_symbol_name_dwarf(self):
         self.buildDwarf()




More information about the lldb-commits mailing list