diff options
-rw-r--r-- | lldb/test/settings/quoting/TestQuoting.py | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/lldb/test/settings/quoting/TestQuoting.py b/lldb/test/settings/quoting/TestQuoting.py index c65971f593c..cc7603d6e9e 100644 --- a/lldb/test/settings/quoting/TestQuoting.py +++ b/lldb/test/settings/quoting/TestQuoting.py @@ -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') |