From 7e0c57b20372b7a3fb6b995f726afcd3cdd76d80 Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Wed, 15 Sep 2010 04:11:29 +0000 Subject: [PATCH] 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 --- test/lit.cfg | 5 +++-- 1 file 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,