diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-08-03 05:29:22 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-08-03 05:29:22 +0000 |
commit | e9201f5ced4ba3b19d4e548deb8e8d3b461f77ab (patch) | |
tree | 1f05f30b7cc12a6ccfaf1e11593100dd28524a6c /utils/test/TestRunner.py | |
parent | d7640905de2f8c81c818785e8e869ed7b75ae849 (diff) |
lit: Don't treat '\' as an escape in unquoted strings, on Win32. This turns out
to not be a very good idea.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@77957 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/test/TestRunner.py')
-rwxr-xr-x | utils/test/TestRunner.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/test/TestRunner.py b/utils/test/TestRunner.py index 42799093d1..3c0c8072c2 100755 --- a/utils/test/TestRunner.py +++ b/utils/test/TestRunner.py @@ -110,7 +110,8 @@ def executeShCmd(cmd, cfg, cwd, results): return exitCode def executeScriptInternal(cfg, commands, cwd): - cmd = ShUtil.ShParser(' &&\n'.join(commands)).parse() + cmd = ShUtil.ShParser(' &&\n'.join(commands), + kSystemName == 'Windows').parse() results = [] try: |