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

Daniel Dunbar daniel at zuster.org
Tue Feb 21 09:41:35 PST 2012


Author: ddunbar
Date: Tue Feb 21 11:41:35 2012
New Revision: 151068

URL: http://llvm.org/viewvc/llvm-project?rev=151068&view=rev
Log:
[lnt] lnt.tests.compile: Fix a facto-re.

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=151068&r1=151067&r2=151068&view=diff
==============================================================================
--- zorg/trunk/lnt/lnt/tests/compile.py (original)
+++ zorg/trunk/lnt/lnt/tests/compile.py Tue Feb 21 11:41:35 2012
@@ -125,8 +125,8 @@
     if can_memprof and opts.memory_profiling:
         # Find the cc1 command, which we use to do memory profiling. To do this
         # we execute the compiler with '-###' to figure out what it wants to do.
-        cc_output = cmmands.capture(cmd + ['-o','/dev/null','-###'],
-                                    include_stderr=True).strip()
+        cc_output = commands.capture(cmd + ['-o','/dev/null','-###'],
+                                     include_stderr=True).strip()
         cc_commands = []
         for ln in cc_output.split('\n'):
             # Filter out known garbage.





More information about the llvm-commits mailing list