mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 07:16:07 +00:00

Summary: As a corrollary, these tests are now run as part of the check-flang target. Reviewers: sscalpone Subscribers: mgorny, delcypher, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D83946
17 lines
459 B
Python
17 lines
459 B
Python
import os
|
|
|
|
import lit.Test
|
|
|
|
config.name = 'flang-OldUnit'
|
|
|
|
config.suffixes = [".test"]
|
|
|
|
config.test_source_root = os.path.join(config.flang_obj_root, 'unittests')
|
|
config.test_exec_root = config.test_source_root
|
|
|
|
config.test_format = lit.formats.ExecutableTest()
|
|
|
|
path = os.path.pathsep.join((config.flang_libs_dir, config.llvm_libs_dir,
|
|
config.environment.get('LD_LIBRARY_PATH','')))
|
|
config.environment['LD_LIBRARY_PATH'] = path
|