diff options
Diffstat (limited to 'src/engine/SCons/UtilTests.py')
-rw-r--r-- | src/engine/SCons/UtilTests.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/engine/SCons/UtilTests.py b/src/engine/SCons/UtilTests.py index 6236038..ce9fd56 100644 --- a/src/engine/SCons/UtilTests.py +++ b/src/engine/SCons/UtilTests.py @@ -325,6 +325,9 @@ class UtilTestCase(unittest.TestCase): # Tests callables that don't match our calling arguments. '$CALLABLE', 'callable-1', + + # Test handling of quotes. + 'aaa "bbb ccc" ddd', 'aaa "bbb ccc" ddd', ] kwargs = {'target' : target, 'source' : source, @@ -717,6 +720,9 @@ class UtilTestCase(unittest.TestCase): # Test callables that don't match our calling arguments. '$CALLABLE', [['callable-2']], + + # Test handling of quotes. + 'aaa "bbb ccc" ddd', [['aaa', 'bbb ccc', 'ddd']], ] gvars = env.Dictionary() |