diff options
| author | Daniel Dunbar <daniel@zuster.org> | 2010-09-15 04:11:29 +0000 |
|---|---|---|
| committer | Daniel Dunbar <daniel@zuster.org> | 2010-09-15 04:11:29 +0000 |
| commit | bc9a848e04bb77149fa39c562a4a9943515a5396 (patch) | |
| tree | 5324d4c0b3502d8efc388d27c767d987576884df | |
| parent | 7df35dbd19f7d5bca68e2436d3abe3ba789a5593 (diff) | |
| download | bcm5719-llvm-bc9a848e04bb77149fa39c562a4a9943515a5396.tar.gz bcm5719-llvm-bc9a848e04bb77149fa39c562a4a9943515a5396.zip | |
tests: Fixup lit config, which got garbled somehow...
llvm-svn: 113931
| -rw-r--r-- | libcxx/test/lit.cfg | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libcxx/test/lit.cfg b/libcxx/test/lit.cfg index 11de5ada902..52192a82733 100644 --- a/libcxx/test/lit.cfg +++ b/libcxx/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, |

