Commit 65c26188 authored by Pierre-Antoine Rouby's avatar Pierre-Antoine Rouby
Browse files

Tools: Command line parser: Add a test.

Showing with 10 additions and 0 deletions
+10 -0
......@@ -78,6 +78,16 @@ class ToolsCMDParserTestCase(unittest.TestCase):
for i, s in enumerate(expect):
self.assertEqual(res[i], s)
def test_unix_escape_space(self):
cmd = "/foo/bar\ baz -a -b -c"
expect = ["/foo/bar\ baz", "-a", '-b', "-c"]
res = parse_command_line(cmd)
for i, s in enumerate(expect):
self.assertEqual(res[i], s)
def test_windows_prog_files(self):
cmd = "\"C:\\Program Files (x86)\foo\bar\" a -b -c"
expect = ["C:\\Program Files (x86)\foo\bar", "a", '-b', "-c"]
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment