/Zephyr-Core-3.5.0/scripts/west_commands/tests/ |
D | test_bossac.py | 133 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 …]
|
D | test_mdb.py | 136 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 …]
|
D | test_dediprog.py | 51 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)
|
D | test_gd32isp.py | 50 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)
|
D | test_dfu_util.py | 81 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)
|
D | test_nrf.py | 480 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 …]
|
D | test_stm32flash.py | 78 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)
|
D | test_blackmagicprobe.py | 62 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)
|
D | test_stm32cubeprogrammer.py | 341 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)
|
D | conftest.py | 23 def runner_config(): function
|
D | test_pyocd.py | 129 def pyocd(runner_config, tmpdir): argument 142 return PyOcdBinaryRunner(runner_config, TEST_TARGET, **args) 147 return PyOcdBinaryRunner.create(runner_config, arg_namespace)
|
D | test_canopen_program.py | 45 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/ |
D | run_common.py | 243 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):
|