forked from OSchip/llvm-project
[lit] Delete the now-unused SyntaxCheckTest format.
- Also, kill the pointless LitFormats module. llvm-svn: 174070
This commit is contained in:
parent
92d999b3f1
commit
69db719f86
|
@ -12,7 +12,7 @@ class LitConfig:
|
|||
import Test
|
||||
|
||||
# Provide access to built-in formats.
|
||||
import LitFormats as formats
|
||||
import TestFormats as formats
|
||||
|
||||
# Provide access to built-in utility functions.
|
||||
import Util as util
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
from TestFormats import FileBasedTest
|
||||
from TestFormats import GoogleTest, ShTest
|
||||
from TestFormats import SyntaxCheckTest, OneCommandPerFileTest
|
|
@ -221,12 +221,3 @@ class OneCommandPerFileTest:
|
|||
report += """Output:\n--\n%s--""" % diags
|
||||
|
||||
return Test.FAIL, report
|
||||
|
||||
class SyntaxCheckTest(OneCommandPerFileTest):
|
||||
def __init__(self, compiler, dir, extra_cxx_args=[], *args, **kwargs):
|
||||
cmd = [compiler, '-x', 'c++', '-fsyntax-only'] + extra_cxx_args
|
||||
OneCommandPerFileTest.__init__(self, cmd, dir,
|
||||
useTempInput=1, *args, **kwargs)
|
||||
|
||||
def createTempInput(self, tmp, test):
|
||||
print >>tmp, '#include "%s"' % test.source_path
|
||||
|
|
Loading…
Reference in New Issue