Lines Matching full:path
15 # test_source_root: The root path where tests are located.
16 # test_exec_root: The root path where tests should be run.
19 config.test_exec_root = os.path.join(llvm_obj_root, 'unittests')
33 # Propagate path to symbolizer for ASan/MSan.
38 # Win32 seeks DLLs along %PATH%.
39 if sys.platform in ['win32', 'cygwin'] and os.path.isdir(config.shlibdir):
40 config.environment['PATH'] = os.path.pathsep.join((
41 config.shlibdir, config.environment['PATH']))
54 if site_cfg and os.path.exists(site_cfg):
66 llvm_config = lit.util.which('llvm-config', config.environment['PATH'])
75 this_src_root = os.path.join(os.path.dirname(__file__),'..','..')
76 if os.path.realpath(llvm_src_root) != os.path.realpath(this_src_root):
80 site_cfg = os.path.join(llvm_obj_root, 'test', 'Unit', 'lit.site.cfg')
81 if not os.path.exists(site_cfg):