Skip to content

Commit d15d76e

Browse files
committedDec 14, 2017
[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 llvm-svn: 320751
1 parent 260fe3e commit d15d76e

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed
 

‎clang/test/lit.cfg.py

+1-11
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
# excludes: A list of directories to exclude from the testsuite. The 'Inputs'
3232
# subdirectories contain auxiliary inputs for various tests in their parent
3333
# directories.
34-
config.excludes = ['Inputs', 'CMakeLists.txt', 'README.txt', 'LICENSE.txt']
34+
config.excludes = ['Inputs', 'CMakeLists.txt', 'README.txt', 'LICENSE.txt', 'debuginfo-tests']
3535

3636
# test_source_root: The root path where tests are located.
3737
config.test_source_root = os.path.dirname(__file__)
@@ -62,16 +62,6 @@
6262
'clang-func-mapping'), unresolved='ignore'),
6363
]
6464

65-
# FIXME: This logic can be removed once all buildbots have moved
66-
# debuginfo-test from clang/test to llvm/projects or monorepo.
67-
if os.path.exists(os.path.join(config.test_source_root, 'debuginfo-tests')):
68-
if os.path.isfile(
69-
os.path.join(config.test_source_root, 'debuginfo-tests', 'lit.cfg.py')):
70-
config.excludes.append('debuginfo-tests')
71-
else:
72-
tools.append(ToolSubst('%test_debuginfo', command=os.path.join(
73-
config.llvm_src_root, 'utils', 'test_debuginfo.pl')))
74-
7565
if config.clang_examples:
7666
tools.append('clang-interpreter')
7767

0 commit comments

Comments
 (0)
Please sign in to comment.