Home | History | Annotate | Download | only in Unit

Lines Matching full:path

17 # test_source_root: The root path where tests are located.
18 # test_exec_root: The root path where tests should be run.
21 config.test_exec_root = os.path.join(clang_obj_root, 'unittests')
35 # Propagate path to symbolizer for ASan/MSan.
51 if site_cfg and os.path.exists(site_cfg):
63 llvm_config = lit.util.which('llvm-config', config.environment['PATH'])
70 clang_src_root = os.path.join(llvm_src_root, "tools", "clang")
71 clang_obj_root = os.path.join(llvm_obj_root, "tools", "clang")
75 this_src_root = os.path.join(os.path.dirname(__file__),'..','..')
76 if os.path.realpath(clang_src_root) != os.path.realpath(this_src_root):
80 site_cfg = os.path.join(clang_obj_root, 'test', 'Unit', 'lit.site.cfg')
81 if not os.path.exists(site_cfg):
95 shlibpath_var = 'PATH'
101 shlibpath = os.path.pathsep.join((llvm_libs_dir,
104 # Win32 seeks DLLs along %PATH%.
105 if sys.platform in ['win32', 'cygwin'] and os.path.isdir(config.shlibdir):
106 shlibpath = os.path.pathsep.join((config.shlibdir, shlibpath))