[llvm-commits] [LNT] r167822 - /lnt/trunk/lnt/tests/compile.py
Michael Gottesman
mgottesman at apple.com
Mon Nov 12 23:33:03 PST 2012
Author: mgottesman
Date: Tue Nov 13 01:33:03 2012
New Revision: 167822
URL: http://llvm.org/viewvc/llvm-project?rev=167822&view=rev
Log:
[lnt compile tests] Forgot to add code to lookup the ``subconfig'' for a
specific configuration.
Modified:
lnt/trunk/lnt/tests/compile.py
Modified: lnt/trunk/lnt/tests/compile.py
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/lnt/tests/compile.py?rev=167822&r1=167821&r2=167822&view=diff
==============================================================================
--- lnt/trunk/lnt/tests/compile.py (original)
+++ lnt/trunk/lnt/tests/compile.py Tue Nov 13 01:33:03 2012
@@ -399,7 +399,7 @@
# the make build style since Xcode, the only other build style as of today,
# handles changing configuration through the configuration type variables.
# Make does not do this so we have to use more brute force to get it right.
- config = build_info.get('config', {})
+ config = build_info.get('config', {}).get(build_config, {})
# Copy our source directory over to build_base.
# We do this since we assume that we are processing a make project which
More information about the llvm-commits
mailing list