Author: zturner Date: Tue Aug 25 17:25:33 2015 New Revision: 245984 URL: http://llvm.org/viewvc/llvm-project?rev=245984&view=rev Log: XFAIL TestQuoting on Windows.
A couple of edge cases are broken with regards to quote handling. Fixing this is tracked by http://llvm.org/pr24557 Modified: lldb/trunk/test/settings/quoting/TestQuoting.py Modified: lldb/trunk/test/settings/quoting/TestQuoting.py URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/settings/quoting/TestQuoting.py?rev=245984&r1=245983&r2=245984&view=diff ============================================================================== --- lldb/trunk/test/settings/quoting/TestQuoting.py (original) +++ lldb/trunk/test/settings/quoting/TestQuoting.py Tue Aug 25 17:25:33 2015 @@ -19,42 +19,41 @@ class SettingsCommandTestCase(TestBase): def test_no_quote(self): self.do_test_args("a b c", "a\0b\0c\0") + @expectedFailureWindows("http://llvm.org/pr24557") def test_single_quote(self): self.do_test_args("'a b c'", "a b c\0") def test_double_quote(self): self.do_test_args('"a b c"', "a b c\0") - def test_double_quote(self): - self.do_test_args('"a b c"', 'a b c\0') - + @expectedFailureWindows("http://llvm.org/pr24557") def test_single_quote_escape(self): self.do_test_args("'a b\\' c", "a b\\\0c\0") + @expectedFailureWindows("http://llvm.org/pr24557") def test_double_quote_escape(self): self.do_test_args('"a b\\" c"', 'a b" c\0') - def test_double_quote_escape(self): - self.do_test_args('"a b\\" c"', 'a b" c\0') - - def test_double_quote_escape2(self): - self.do_test_args('"a b\\\\" c', 'a b\\\0c\0') - + @expectedFailureWindows("http://llvm.org/pr24557") def test_double_quote_escape2(self): self.do_test_args('"a b\\\\" c', 'a b\\\0c\0') + @expectedFailureWindows("http://llvm.org/pr24557") def test_single_in_double(self): self.do_test_args('"a\'b"', "a'b\0") + @expectedFailureWindows("http://llvm.org/pr24557") def test_double_in_single(self): self.do_test_args("'a\"b'", 'a"b\0') def test_combined(self): self.do_test_args('"a b"c\'d e\'', 'a bcd e\0') + @expectedFailureWindows("http://llvm.org/pr24557") def test_bare_single(self): self.do_test_args("a\\'b", "a'b\0") + @expectedFailureWindows("http://llvm.org/pr24557") def test_bare_double(self): self.do_test_args('a\\"b', 'a"b\0') _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits