Lines Matching refs:ctx

19 fn should_not_run_task_only_riscv64_on_x86_64(ctx: &DadkExecuteContextTestBuildX86_64V1) {
20 let config_file = ctx
24 let task = Parser::new(ctx.base_context().config_v2_dir()).parse_config_file(&config_file);
39 ctx.execute_context().self_ref().unwrap(),
40 ctx.base_context().fake_dragonos_sysroot(),
41 *ctx.execute_context().action(),
60 fn should_not_run_task_only_x86_64_on_riscv64(ctx: &DadkExecuteContextTestBuildRiscV64V1) {
61 let config_file = ctx
65 let task = Parser::new(ctx.base_context().config_v2_dir()).parse_config_file(&config_file);
80 ctx.execute_context().self_ref().unwrap(),
81 ctx.base_context().fake_dragonos_sysroot(),
82 *ctx.execute_context().action(),
101 fn should_run_task_include_x86_64_on_x86_64(ctx: &DadkExecuteContextTestBuildX86_64V1) {
102 let config_file = ctx
106 let task = Parser::new(ctx.base_context().config_v2_dir()).parse_config_file(&config_file);
117 ctx.execute_context().self_ref().unwrap(),
118 ctx.base_context().fake_dragonos_sysroot(),
119 *ctx.execute_context().action(),
134 fn should_run_task_include_riscv64_on_riscv64(ctx: &DadkExecuteContextTestBuildRiscV64V1) {
135 let config_file = ctx
139 let task = Parser::new(ctx.base_context().config_v2_dir()).parse_config_file(&config_file);
150 ctx.execute_context().self_ref().unwrap(),
151 ctx.base_context().fake_dragonos_sysroot(),
152 *ctx.execute_context().action(),
167 fn ensure_all_target_arch_testcase_v1(ctx: &BaseGlobalTestContext) {
168 let config_file = ctx.config_v2_dir().join("app_all_target_arch_0_2_0.toml");
169 let task = Parser::new(ctx.config_v2_dir()).parse_config_file(&config_file);