summaryrefslogtreecommitdiff
path: root/test/lit.cfg
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2010-08-20 14:19:38 +0000
committerBob Wilson <bob.wilson@apple.com>2010-08-20 14:19:38 +0000
commit8d854a4f7e790fafb72640f093f6f15f49fe5e70 (patch)
treeacd88cb5f475b17bfdaaa13f09fc5a48877d0be9 /test/lit.cfg
parent678e4e2479a69fb3f271223974a1de3a2aac4c4a (diff)
downloadllvm-8d854a4f7e790fafb72640f093f6f15f49fe5e70.tar.gz
llvm-8d854a4f7e790fafb72640f093f6f15f49fe5e70.tar.bz2
llvm-8d854a4f7e790fafb72640f093f6f15f49fe5e70.tar.xz
The %ocamlopt setting has embedded quotes. Copy the entire value instead
of stopping at the first embedded quote. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111622 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/lit.cfg')
-rw-r--r--test/lit.cfg2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lit.cfg b/test/lit.cfg
index 9500aae894..28f336ba20 100644
--- a/test/lit.cfg
+++ b/test/lit.cfg
@@ -111,7 +111,7 @@ import re
site_exp = {}
# FIXME: Implement lit.site.cfg.
for line in open(os.path.join(config.llvm_obj_root, 'test', 'site.exp')):
- m = re.match('set ([^ ]+) "([^"]*)"', line)
+ m = re.match('set ([^ ]+) "(.*)"', line)
if m:
site_exp[m.group(1)] = m.group(2)