| /Zephyr-latest/scripts/west_commands/tests/ | 
| D | test_mdb.py | 136 def adjust_runner_config(runner_config, tmpdir, dotconfig):  argument 141     zephyr = tmpdir / 'zephyr' 146     print("" + fspath(tmpdir)) 147     return runner_config._replace(build_dir=fspath(tmpdir)) 153 def mdb(runner_config, tmpdir, mdb_runner):  argument 161         tmpdir.ensure(RC_KERNEL_ELF) 162         tmpdir.chdir() 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 [all …] 
 | 
| D | test_bossac.py | 140 def adjust_runner_config(runner_config, tmpdir, dotconfig):  argument 145     zephyr = tmpdir / 'zephyr' 149     return runner_config._replace(build_dir=os.fspath(tmpdir)) 168 def test_bossac_init(cc, req, get_cod_par, sup, runner_config, tmpdir):  argument 187     runner_config = adjust_runner_config(runner_config, tmpdir, DOTCONFIG_STD) 201 def test_bossac_create(cc, req, get_cod_par, sup, runner_config, tmpdir):  argument 224     runner_config = adjust_runner_config(runner_config, tmpdir, DOTCONFIG_STD) 238 def test_bossac_create_with_speed(cc, req, get_cod_par, sup, runner_config, tmpdir):  argument 262     runner_config = adjust_runner_config(runner_config, tmpdir, DOTCONFIG_STD) 276 def test_bossac_create_with_erase(cc, req, get_cod_par, sup, runner_config, tmpdir):  argument [all …] 
 | 
| D | test_nrf.py | 354 def fix_up_runner_config(test_case, runner_config, tmpdir):  argument 362     zephyr = tmpdir / 'zephyr' 374     to_replace['build_dir'] = tmpdir 378 def check_expected(tool, test_case, check_fn, get_snr, tmpdir, runner_config):  argument 398                 [call(x) for x in cmds(tmpdir, runner_config.hex_file)]) 415               runner_config, tmpdir):  argument 419     runner_config = fix_up_runner_config(test_case, runner_config, tmpdir) 437     check_expected(tool, test_case, CHECK_FN_MAP[tool], get_snr, tmpdir, 448                 runner_config, tmpdir):  argument 452     runner_config = fix_up_runner_config(test_case, runner_config, tmpdir) [all …] 
 | 
| D | test_dfu_util.py | 111 def test_dfu_util_create(cc, req, gfa, find_device, tc, runner_config, tmpdir):  argument 126     (tmpdir / 'zephyr').mkdir() 127     with open(os.fspath(tmpdir / 'zephyr' / '.config'), 'w') as f: 129     runner_config = runner_config._replace(build_dir=os.fspath(tmpdir))
  | 
| D | test_pyocd.py | 129 def pyocd(runner_config, tmpdir):  argument 137         tmpdir.ensure(RC_KERNEL_HEX) 138         tmpdir.ensure(RC_KERNEL_ELF) 139         tmpdir.chdir()
  | 
| /Zephyr-latest/scripts/tests/build/ | 
| D | test_subfolder_list.py | 38 def test_subfolder_list(tmpdir):  argument 40     tmpdir.chdir() 42     iut_dir_names = iut.get_subfolder_list((str(tmpdir))) 46 def test_links(tmpdir):  argument 48     tmpdir.chdir() 49     links_dir = str(tmpdir) 63     tmpdir.mkdir(dirs_dir) 69     tmpdir.chdir() 77 def test_gen_out_file(tmpdir):  argument 79     tmpdir.chdir() [all …] 
 | 
| /Zephyr-latest/scripts/kconfig/ | 
| D | lint.py | 222     tmpdir = tempfile.mkdtemp() 224          "--kconfig-out", os.path.join(tmpdir, "Kconfig.modules"))) 225     return tmpdir
  | 
| /Zephyr-latest/scripts/west_commands/runners/ | 
| D | nxp_s32dbg.py | 316         with tempfile.TemporaryDirectory(suffix='nxp_s32dbg') as tmpdir: 317             gdb_cmds = Path(tmpdir) / 'runner.nxp_s32dbg'
  | 
| /Zephyr-latest/scripts/release/ | 
| D | list_devicetree_bindings_changes.py | 375     with tempfile.TemporaryDirectory(prefix='dt_bindings_worktree') as tmpdir: 376         with git_worktree(tmpdir, commit): 377             tmpdir_bindings = Path(tmpdir) / 'dts' / 'bindings'
  | 
| /Zephyr-latest/scripts/dts/python-devicetree/tests/ | 
| D | test_dtlib.py | 2506     with tempfile.TemporaryDirectory() as tmpdir: 2507         included_file = os.path.join(tmpdir, 'included.dtsi') 2517         main_file = os.path.join(tmpdir, 'test_with_include.dts') 2535         dt = dtlib.DT(main_file, include_path=[tmpdir])
  | 
| /Zephyr-latest/scripts/tests/twister/ | 
| D | test_runner.py | 1705     tmpdir,  argument 1720     twister_dir = tmpdir.mkdir('twister') 1724     dummy_dir = tmpdir.mkdir('dummy_dir') 1728     zephyr = tmpdir.mkdir('zephyr') 1732     dummy_link_dir = tmpdir.join('dummy_link_dir') 1735     addition_al = tmpdir.join('addition.al') 1739     instance_mock.build_dir = tmpdir 1747     files_left = [p.name for p in list(pathlib.Path(tmpdir).glob('**/*'))]
  |