summaryrefslogtreecommitdiffstats
path: root/test/lit.cfg
diff options
context:
space:
mode:
authorDominic Chen <d.c.ddcc@gmail.com>2017-02-27 03:29:25 +0000
committerDominic Chen <d.c.ddcc@gmail.com>2017-02-27 03:29:25 +0000
commiteb259b6acbd32e6cbf5a7de97af998356649deb7 (patch)
treeabc38a255a3b83d1f107b1d24ce53f5000f1f05f /test/lit.cfg
parent8e7780b9e59ddaad1800baf533058d2c064d4787 (diff)
Revert "[analyzer] NFC: Update test infrastructure to support multiple constraint managers"
This reverts commit 8e7780b9e59ddaad1800baf533058d2c064d4787. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@296317 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/lit.cfg')
-rw-r--r--test/lit.cfg7
1 files changed, 1 insertions, 6 deletions
diff --git a/test/lit.cfg b/test/lit.cfg
index 2b494c4910..65b07749c2 100644
--- a/test/lit.cfg
+++ b/test/lit.cfg
@@ -253,14 +253,12 @@ def makeMSABITriple(triple):
if os == 'win32':
# If the OS is win32, we're done.
return triple
- if isa.startswith('x86') or isa == 'amd64' or re.match(r'i\d86', isa):
+ if isa.startswith('x86') or isa == 'amd64' or re.match(r'i\d86', isa):
# For x86 ISAs, adjust the OS.
return isa + '-' + vendor + '-win32'
# -win32 is not supported for non-x86 targets; use a default.
return 'i686-pc-win32'
-config.substitutions.append( ('%clang_analyze_cc1',
- '%clang_cc1 -analyze %analyze') )
config.substitutions.append( ('%clang_cc1',
'%s -cc1 -internal-isystem %s -nostdsysteminc'
% (config.clang,
@@ -293,9 +291,6 @@ config.substitutions.append(
(' clang-cc ',
"""*** Do not use 'clang-cc' in tests, use '%clang_cc1'. ***""") )
config.substitutions.append(
- (' clang -cc1 -analyze ',
- """*** Do not use 'clang -cc1 -analyze' in tests, use '%clang_analyze_cc1'. ***""") )
-config.substitutions.append(
(' clang -cc1 ',
"""*** Do not use 'clang -cc1' in tests, use '%clang_cc1'. ***""") )
config.substitutions.append(