summaryrefslogtreecommitdiffstats
path: root/test/lit.cfg
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2010-09-15 04:11:29 +0000
committerDaniel Dunbar <daniel@zuster.org>2010-09-15 04:11:29 +0000
commit7e0c57b20372b7a3fb6b995f726afcd3cdd76d80 (patch)
tree15a0359bee5c0bbc6b9813fe26a09f901770f0c6 /test/lit.cfg
parentf5eadcd8d5b6fcff5cb04d7bf954731525cc1004 (diff)
downloadexternal_libcxx-7e0c57b20372b7a3fb6b995f726afcd3cdd76d80.tar.gz
external_libcxx-7e0c57b20372b7a3fb6b995f726afcd3cdd76d80.tar.bz2
external_libcxx-7e0c57b20372b7a3fb6b995f726afcd3cdd76d80.zip
tests: Fixup lit config, which got garbled somehow...
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@113931 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/lit.cfg')
-rw-r--r--test/lit.cfg5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/lit.cfg b/test/lit.cfg
index 11de5ada9..52192a827 100644
--- a/test/lit.cfg
+++ b/test/lit.cfg
@@ -18,8 +18,9 @@ class LibcxxTestFormat(lit.formats.FileBasedTest):
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,