summaryrefslogtreecommitdiffstats
path: root/lldb/test/settings/quoting/TestQuoting.py
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/test/settings/quoting/TestQuoting.py')
-rw-r--r--lldb/test/settings/quoting/TestQuoting.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/lldb/test/settings/quoting/TestQuoting.py b/lldb/test/settings/quoting/TestQuoting.py
index 995f88763d6..44fb01ffdef 100644
--- a/lldb/test/settings/quoting/TestQuoting.py
+++ b/lldb/test/settings/quoting/TestQuoting.py
@@ -16,42 +16,53 @@ class SettingsCommandTestCase(TestBase):
"""Cleanup the test byproducts."""
cls.RemoveTempFile("stdout.txt")
+ @no_debug_info_test
def test_no_quote(self):
self.do_test_args("a b c", "a\0b\0c\0")
@expectedFailureWindows("http://llvm.org/pr24557")
+ @no_debug_info_test
def test_single_quote(self):
self.do_test_args("'a b c'", "a b c\0")
+ @no_debug_info_test
def test_double_quote(self):
self.do_test_args('"a b c"', "a b c\0")
@expectedFailureWindows("http://llvm.org/pr24557")
+ @no_debug_info_test
def test_single_quote_escape(self):
self.do_test_args("'a b\\' c", "a b\\\0c\0")
@expectedFailureWindows("http://llvm.org/pr24557")
+ @no_debug_info_test
def test_double_quote_escape(self):
self.do_test_args('"a b\\" c"', 'a b" c\0')
@expectedFailureWindows("http://llvm.org/pr24557")
+ @no_debug_info_test
def test_double_quote_escape2(self):
self.do_test_args('"a b\\\\" c', 'a b\\\0c\0')
+ @no_debug_info_test
def test_single_in_double(self):
self.do_test_args('"a\'b"', "a'b\0")
@expectedFailureWindows("http://llvm.org/pr24557")
+ @no_debug_info_test
def test_double_in_single(self):
self.do_test_args("'a\"b'", 'a"b\0')
+ @no_debug_info_test
def test_combined(self):
self.do_test_args('"a b"c\'d e\'', 'a bcd e\0')
+ @no_debug_info_test
def test_bare_single(self):
self.do_test_args("a\\'b", "a'b\0")
@expectedFailureWindows("http://llvm.org/pr24557")
+ @no_debug_info_test
def test_bare_double(self):
self.do_test_args('a\\"b', 'a"b\0')
OpenPOWER on IntegriCloud