diff options
| -rw-r--r-- | clang/test/lit.cfg.py | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/clang/test/lit.cfg.py b/clang/test/lit.cfg.py index 8467eaa82ca..5323cfe7355 100644 --- a/clang/test/lit.cfg.py +++ b/clang/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') |

