[llvm-commits] [zorg] r152247 - /zorg/trunk/lnt/lnt/tests/compile.py

Daniel Dunbar daniel at zuster.org
Wed Mar 7 14:11:56 PST 2012


Author: ddunbar
Date: Wed Mar  7 16:11:56 2012
New Revision: 152247

URL: http://llvm.org/viewvc/llvm-project?rev=152247&view=rev
Log:
[LNT] lnt runtest compile: Force off static analysis for Xcode full build times.

Modified:
    zorg/trunk/lnt/lnt/tests/compile.py

Modified: zorg/trunk/lnt/lnt/tests/compile.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/lnt/lnt/tests/compile.py?rev=152247&r1=152246&r2=152247&view=diff
==============================================================================
--- zorg/trunk/lnt/lnt/tests/compile.py (original)
+++ zorg/trunk/lnt/lnt/tests/compile.py Wed Mar  7 16:11:56 2012
@@ -330,6 +330,10 @@
         # name. <rdar://problem/7989147>
         cmd.append('LDPLUSPLUS=%s' % (opts.cxx,))
 
+        # Force off the static analyzer, in case it was enabled in any projects
+        # (we don't want to obscure what we are trying to time).
+        cmd.append('RUN_CLANG_STATIC_ANALYZER=NO')
+
         # Add additional arguments to force the build scenario we want.
         cmd.extend(('-jobs', str(num_jobs)))
     else:





More information about the llvm-commits mailing list