[llvm-commits] [zorg] r152862 - /zorg/trunk/lnt/lnt/tests/compile.py
Daniel Dunbar
daniel at zuster.org
Thu Mar 15 15:32:31 PDT 2012
Author: ddunbar
Date: Thu Mar 15 17:32:31 2012
New Revision: 152862
URL: http://llvm.org/viewvc/llvm-project?rev=152862&view=rev
Log:
[LNT] lnt.tests.compile: Fix syntax error.
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=152862&r1=152861&r2=152862&view=diff
==============================================================================
--- zorg/trunk/lnt/lnt/tests/compile.py (original)
+++ zorg/trunk/lnt/lnt/tests/compile.py Thu Mar 15 17:32:31 2012
@@ -584,7 +584,7 @@
# Attempt to infer the cxx compiler if not given.
if opts.cc and opts.cxx is None:
opts.cxx = lnt.testing.util.compilers.infer_cxx_compiler(opts.cc)
- if opts.cxx is not None
+ if opts.cxx is not None:
note("inferred C++ compiler under test as: %r" % (opts.cxx,))
# Validate options.
More information about the llvm-commits
mailing list