summaryrefslogtreecommitdiffstats
path: root/test/lit.cfg.py
diff options
context:
space:
mode:
authorDon Hinton <hintonda@gmail.com>2017-12-14 22:12:46 +0000
committerDon Hinton <hintonda@gmail.com>2017-12-14 22:12:46 +0000
commit3711ab3a6867d75332d35919783e0d98a628f1ab (patch)
tree97fee580363ef07b5ce694fb5b9f529d24094342 /test/lit.cfg.py
parentc0bbfc6da1c653acfd2c047bb1f334cef3a14ad5 (diff)
[debuginfo] Remove temporary FIXME.
Summary: Now that r320495, "[debuginfo-tests] Support moving debuginfo-tests to llvm/projects," has landed, remove temporary FIXME that supported the old mechanism. Reviewers: zturner, aprantl Reviewed By: aprantl Subscribers: JDevlieghere, cfe-commits Differential Revision: https://reviews.llvm.org/D41259 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@320751 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/lit.cfg.py')
-rw-r--r--test/lit.cfg.py12
1 files changed, 1 insertions, 11 deletions
diff --git a/test/lit.cfg.py b/test/lit.cfg.py
index 8467eaa82c..5323cfe735 100644
--- a/test/lit.cfg.py
+++ b/test/lit.cfg.py
@@ -31,7 +31,7 @@ config.suffixes = ['.c', '.cpp', '.cppm', '.m', '.mm', '.cu',
# excludes: A list of directories to exclude from the testsuite. The 'Inputs'
# subdirectories contain auxiliary inputs for various tests in their parent
# directories.
-config.excludes = ['Inputs', 'CMakeLists.txt', 'README.txt', 'LICENSE.txt']
+config.excludes = ['Inputs', 'CMakeLists.txt', 'README.txt', 'LICENSE.txt', 'debuginfo-tests']
# test_source_root: The root path where tests are located.
config.test_source_root = os.path.dirname(__file__)
@@ -62,16 +62,6 @@ tools = [
'clang-func-mapping'), unresolved='ignore'),
]
-# FIXME: This logic can be removed once all buildbots have moved
-# debuginfo-test from clang/test to llvm/projects or monorepo.
-if os.path.exists(os.path.join(config.test_source_root, 'debuginfo-tests')):
- if os.path.isfile(
- os.path.join(config.test_source_root, 'debuginfo-tests', 'lit.cfg.py')):
- config.excludes.append('debuginfo-tests')
- else:
- tools.append(ToolSubst('%test_debuginfo', command=os.path.join(
- config.llvm_src_root, 'utils', 'test_debuginfo.pl')))
-
if config.clang_examples:
tools.append('clang-interpreter')