Lines Matching defs:dotest_cmd

195 dotest_cmd = [os.path.join(config.lldb_src_root, "test", "API", "dotest.py")]
198 dotest_cmd.extend(config.dotest_common_args_str.split(";"))
202 dotest_cmd += ["--env", "LLVM_LIBS_DIR=" + config.llvm_libs_dir]
206 dotest_cmd += ["--env", "LLVM_INCLUDE_DIR=" + config.llvm_include_dir]
210 dotest_cmd += ["--env", "LLVM_TOOLS_DIR=" + config.llvm_tools_dir]
216 dotest_cmd += ["--libcxx-include-dir", config.libcxx_include_dir]
218 dotest_cmd += [
222 dotest_cmd += ["--libcxx-library-dir", config.libcxx_libs_dir]
228 dotest_cmd += ["--inferior-env", env_var + "=" + config.environment[env_var]]
231 dotest_cmd += ["--arch", config.test_arch]
234 dotest_cmd += ["--build-dir", config.lldb_build_directory]
238 dotest_cmd += ["--lldb-module-cache-dir", config.lldb_module_cache]
242 dotest_cmd += ["--clang-module-cache-dir", config.clang_module_cache]
245 dotest_cmd += ["--executable", config.lldb_executable]
248 dotest_cmd += ["--compiler", config.test_compiler]
251 dotest_cmd += ["--dsymutil", config.dsymutil]
254 dotest_cmd += ["--make", config.make]
257 dotest_cmd += ["--llvm-tools-dir", config.llvm_tools_dir]
260 dotest_cmd += ["--server", config.server]
263 dotest_cmd += ["--lldb-obj-root", config.lldb_obj_root]
266 dotest_cmd += ["--lldb-libs-dir", config.lldb_libs_dir]
269 dotest_cmd += ["--framework", config.lldb_framework_dir]
272 dotest_cmd += ["--apple-sdk", "iphonesimulator", "--platform-name", "ios-simulator"]
274 dotest_cmd += [
281 dotest_cmd += [
290 dotest_cmd += ["--enable-plugin", plugin]
304 dotest_cmd += ["--platform-url", config.lldb_platform_url]
306 dotest_cmd += ["--platform-working-dir", config.lldb_platform_working_dir]
308 dotest_cmd += ["--sysroot", config.cmake_sysroot]
311 dotest_cmd.extend(config.dotest_user_args_str.split(";"))
318 dotest_cmd.extend(shlex.split(config.dotest_lit_args_str))
325 config.test_format = lldbtest.LLDBTest(dotest_cmd)