diff options
author | Bob Wilson <bob.wilson@apple.com> | 2010-08-20 14:19:38 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2010-08-20 14:19:38 +0000 |
commit | 8d854a4f7e790fafb72640f093f6f15f49fe5e70 (patch) | |
tree | acd88cb5f475b17bfdaaa13f09fc5a48877d0be9 | |
parent | 678e4e2479a69fb3f271223974a1de3a2aac4c4a (diff) | |
download | external_llvm-8d854a4f7e790fafb72640f093f6f15f49fe5e70.zip external_llvm-8d854a4f7e790fafb72640f093f6f15f49fe5e70.tar.gz external_llvm-8d854a4f7e790fafb72640f093f6f15f49fe5e70.tar.bz2 |
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
-rw-r--r-- | test/lit.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lit.cfg b/test/lit.cfg index 9500aae..28f336b 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) |