Home
last modified time | relevance | path

Searched refs:runner_config (Results 1 – 13 of 13) sorted by relevance

/Zephyr-Core-3.5.0/scripts/west_commands/tests/
Dtest_bossac.py133 def adjust_runner_config(runner_config, tmpdir, dotconfig): argument
142 return runner_config._replace(build_dir=os.fspath(tmpdir))
161 def test_bossac_init(cc, req, get_cod_par, sup, runner_config, tmpdir): argument
179 runner_config = adjust_runner_config(runner_config, tmpdir, DOTCONFIG_STD)
180 runner = BossacBinaryRunner(runner_config, port=TEST_BOSSAC_PORT)
193 def test_bossac_create(cc, req, get_cod_par, sup, runner_config, tmpdir): argument
215 runner_config = adjust_runner_config(runner_config, tmpdir, DOTCONFIG_STD)
216 runner = BossacBinaryRunner.create(runner_config, arg_namespace)
229 def test_bossac_create_with_speed(cc, req, get_cod_par, sup, runner_config, tmpdir): argument
253 runner_config = adjust_runner_config(runner_config, tmpdir, DOTCONFIG_STD)
[all …]
Dtest_mdb.py136 def adjust_runner_config(runner_config, tmpdir, dotconfig): argument
147 return runner_config._replace(build_dir=fspath(tmpdir))
153 def mdb(runner_config, tmpdir, mdb_runner): argument
165 return mdb_runner(runner_config, TEST_TARGET, **args)
170 return mdb_runner.create(runner_config, arg_namespace)
175 def mdb_nsim(runner_config, tmpdir): argument
176 return mdb(runner_config, tmpdir, MdbNsimBinaryRunner)
179 def mdb_hw_no_hl(runner_config, tmpdir): argument
180 runner_config = adjust_runner_config(runner_config, tmpdir, DOTCONFIG_NO_HOSTLINK)
181 return mdb(runner_config, tmpdir, MdbHwBinaryRunner)
[all …]
Dtest_dediprog.py51 def test_dediprog_init(cc, req, tc, runner_config): argument
54 runner = DediProgBinaryRunner(runner_config, spi_image=spi_image,
66 def test_dediprog_create(cc, req, tc, runner_config): argument
75 runner = DediProgBinaryRunner.create(runner_config, arg_namespace)
Dtest_gd32isp.py50 def test_gd32isp_init(cc, req, runner_config): argument
51 runner = Gd32ispBinaryRunner(runner_config, TEST_GD32ISP_DEV)
59 def test_gd32isp_create(cc, req, runner_config): argument
68 runner = Gd32ispBinaryRunner.create(runner_config, arg_namespace)
Dtest_dfu_util.py81 def test_dfu_util_init(cc, req, find_device, tc, runner_config): argument
84 runner = DfuUtilBinaryRunner(runner_config, TEST_PID, alt, img, exe=exe,
111 def test_dfu_util_create(cc, req, gfa, find_device, tc, runner_config, tmpdir): argument
129 runner_config = runner_config._replace(build_dir=os.fspath(tmpdir))
134 runner = DfuUtilBinaryRunner.create(runner_config, arg_namespace)
Dtest_nrf.py480 def fix_up_runner_config(test_case, runner_config, tmpdir): argument
498 return runner_config._replace(**to_replace)
513 return runner_config._replace(**to_replace)
515 def check_expected(tool, test_case, check_fn, get_snr, tmpdir, runner_config): argument
531 [call(x) for x in cmds(tmpdir, runner_config.hex_file)])
548 runner_config, tmpdir): argument
551 runner_config = fix_up_runner_config(test_case, runner_config, tmpdir)
555 runner = cls(runner_config,
569 runner_config)
579 runner_config, tmpdir): argument
[all …]
Dtest_stm32flash.py78 def test_stm32flash_init(cc, req, action, runner_config): argument
84 runner = Stm32flashBinaryRunner(runner_config, device=TEST_DEVICE,
97 def test_stm32flash_create(cc, req, action, runner_config): argument
108 runner = Stm32flashBinaryRunner.create(runner_config, arg_namespace)
Dtest_blackmagicprobe.py62 def test_blackmagicprobe_init(cc, req, command, runner_config): argument
64 runner = BlackMagicProbeRunner(runner_config, TEST_GDB_SERIAL)
71 def test_blackmagicprobe_create(cc, req, command, runner_config): argument
77 runner = BlackMagicProbeRunner.create(runner_config, arg_namespace)
84 def test_blackmagicprobe_connect_rst(cc, req, command, runner_config): argument
90 runner = BlackMagicProbeRunner.create(runner_config, arg_namespace)
Dtest_stm32cubeprogrammer.py341 check_call, require, path_exists, path_home, system, tc, runner_config argument
350 cfg=runner_config,
375 check_call, require, path_exists, path_home, system, tc, runner_config argument
403 runner = STM32CubeProgrammerBinaryRunner.create(runner_config, arg_namespace)
Dconftest.py23 def runner_config(): function
Dtest_pyocd.py129 def pyocd(runner_config, tmpdir): argument
142 return PyOcdBinaryRunner(runner_config, TEST_TARGET, **args)
147 return PyOcdBinaryRunner.create(runner_config, arg_namespace)
Dtest_canopen_program.py45 def test_canopen_program_create(cpd, test_case, runner_config): argument
75 runner = CANopenBinaryRunner.create(runner_config, arg_namespace)
/Zephyr-Core-3.5.0/scripts/west_commands/
Drun_common.py243 runner_config = get_runner_config(build_dir, yaml_path, runners_yaml, args)
249 runner = runner_cls.create(runner_config, args)
563 runner_config = get_runner_config(build_dir, yaml_path, runners_yaml)
564 for field, value in zip(runner_config._fields, runner_config):