[cfe-commits] [libcxx] r113931 - /libcxx/trunk/test/lit.cfg

Daniel Dunbar daniel at zuster.org
Tue Sep 14 21:11:29 PDT 2010


Author: ddunbar
Date: Tue Sep 14 23:11:29 2010
New Revision: 113931

URL: http://llvm.org/viewvc/llvm-project?rev=113931&view=rev
Log:
tests: Fixup lit config, which got garbled somehow...

Modified:
    libcxx/trunk/test/lit.cfg

Modified: libcxx/trunk/test/lit.cfg
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/lit.cfg?rev=113931&r1=113930&r2=113931&view=diff
==============================================================================
--- libcxx/trunk/test/lit.cfg (original)
+++ libcxx/trunk/test/lit.cfg Tue Sep 14 23:11:29 2010
@@ -18,8 +18,9 @@
       FOO.fail.cpp - Negative test case which is expected to fail compilation.
     """
 
-    def __init__(self, cxx_under_test, options): self.cxx_under_test =
-    cxx_under_test self.options = list(options)
+    def __init__(self, cxx_under_test, options):
+        self.cxx_under_test = cxx_under_test
+        self.options = list(options)
 
     def execute_command(self, command):
         p = subprocess.Popen(command, stdin=subprocess.PIPE,





More information about the cfe-commits mailing list