Searched refs:dotest_cmd (Results 1 – 2 of 2) sorted by relevance
/external/llvm-project/lldb/test/API/ |
D | lit.cfg.py | 173 dotest_cmd = [os.path.join(config.lldb_src_root, 'test', 'API', 'dotest.py')] variable 176 dotest_cmd.extend(config.dotest_args_str.split(';')) 180 dotest_cmd += ['--env', 'LLVM_LIBS_DIR=' + config.llvm_libs_dir] 186 dotest_cmd += ['--inferior-env', env_var + '=' + config.environment[env_var]] 189 dotest_cmd += ['--arch', config.test_arch] 192 dotest_cmd += ['--build-dir', config.lldb_build_directory] 196 dotest_cmd += ['--lldb-module-cache-dir', config.lldb_module_cache] 200 dotest_cmd += ['--clang-module-cache-dir', config.clang_module_cache] 203 dotest_cmd += ['--executable', config.lldb_executable] 206 dotest_cmd += ['--compiler', config.test_compiler] [all …]
|
D | lldbtest.py | 15 def __init__(self, dotest_cmd): argument 16 self.dotest_cmd = dotest_cmd 56 cmd = [executable] + self.dotest_cmd + [testPath, '-p', testFile]
|