From: Bob Wilson Date: Fri, 20 Aug 2010 14:19:38 +0000 (+0000) Subject: The %ocamlopt setting has embedded quotes. Copy the entire value instead X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=8d854a4f7e790fafb72640f093f6f15f49fe5e70;p=oota-llvm.git 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 --- diff --git a/test/lit.cfg b/test/lit.cfg index 9500aae8948..28f336ba20c 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)