test/py: Shorten u_boot_console
authorSimon Glass <sjg@chromium.org>
Sun, 9 Feb 2025 16:07:14 +0000 (09:07 -0700)
committerSimon Glass <sjg@chromium.org>
Sat, 15 Mar 2025 10:38:38 +0000 (10:38 +0000)
commit752c3769874596d012cd8325099d2ae20123f989
treeb50b3025ff2d124a96793b64d83b8a7d1cb2326c
parent00dfb7038ea4dfe9d9667143bfecd11c05cab6fa
test/py: Shorten u_boot_console

This fixture name is quite long and results in lots of verbose code.
We know this is U-Boot so the 'u_boot_' part is not necessary.

But it is also a bit of a misnomer, since it provides access to all the
information available to tests. It is not just the console.

It would be too confusing to use con as it would be confused with
config and it is probably too short.

So shorten it to 'ubman'.

Signed-off-by: Simon Glass <sjg@chromium.org>
Link: https://lore.kernel.org/u-boot/CAFLszTgPa4aT_J9h9pqeTtLCVn4x2JvLWRcWRD8NaN3uoSAtyA@mail.gmail.com/
105 files changed:
README
doc/develop/py_testing.rst
doc/develop/tests_writing.rst
test/py/conftest.py
test/py/tests/fit_util.py
test/py/tests/test_000_version.py
test/py/tests/test_android/test_ab.py
test/py/tests/test_android/test_abootimg.py
test/py/tests/test_android/test_avb.py
test/py/tests/test_bind.py
test/py/tests/test_bootmenu.py
test/py/tests/test_bootstage.py
test/py/tests/test_button.py
test/py/tests/test_cat/test_cat.py
test/py/tests/test_dfu.py
test/py/tests/test_dm.py
test/py/tests/test_efi_bootmgr/test_efi_bootmgr.py
test/py/tests/test_efi_capsule/capsule_common.py
test/py/tests/test_efi_capsule/test_capsule_firmware_fit.py
test/py/tests/test_efi_capsule/test_capsule_firmware_raw.py
test/py/tests/test_efi_capsule/test_capsule_firmware_signed_fit.py
test/py/tests/test_efi_capsule/test_capsule_firmware_signed_raw.py
test/py/tests/test_efi_fit.py
test/py/tests/test_efi_loader.py
test/py/tests/test_efi_secboot/test_authvar.py
test/py/tests/test_efi_secboot/test_signed.py
test/py/tests/test_efi_secboot/test_signed_intca.py
test/py/tests/test_efi_secboot/test_unsigned.py
test/py/tests/test_efi_selftest.py
test/py/tests/test_eficonfig/test_eficonfig.py
test/py/tests/test_env.py
test/py/tests/test_event_dump.py
test/py/tests/test_extension.py
test/py/tests/test_fit.py
test/py/tests/test_fit_auto_signed.py
test/py/tests/test_fit_ecdsa.py
test/py/tests/test_fit_hashes.py
test/py/tests/test_fpga.py
test/py/tests/test_fs/test_basic.py
test/py/tests/test_fs/test_erofs.py
test/py/tests/test_fs/test_ext.py
test/py/tests/test_fs/test_fs_cmd.py
test/py/tests/test_fs/test_fs_fat.py
test/py/tests/test_fs/test_mkdir.py
test/py/tests/test_fs/test_rename.py
test/py/tests/test_fs/test_squashfs/test_sqfs_load.py
test/py/tests/test_fs/test_squashfs/test_sqfs_ls.py
test/py/tests/test_fs/test_symlink.py
test/py/tests/test_fs/test_unlink.py
test/py/tests/test_gpio.py
test/py/tests/test_gpt.py
test/py/tests/test_handoff.py
test/py/tests/test_help.py
test/py/tests/test_i2c.py
test/py/tests/test_kconfig.py
test/py/tests/test_log.py
test/py/tests/test_lsblk.py
test/py/tests/test_md.py
test/py/tests/test_mdio.py
test/py/tests/test_memtest.py
test/py/tests/test_mii.py
test/py/tests/test_mmc.py
test/py/tests/test_mmc_rd.py
test/py/tests/test_mmc_wr.py
test/py/tests/test_net.py
test/py/tests/test_net_boot.py
test/py/tests/test_of_migrate.py
test/py/tests/test_ofplatdata.py
test/py/tests/test_optee_rpmb.py
test/py/tests/test_part.py
test/py/tests/test_pinmux.py
test/py/tests/test_pstore.py
test/py/tests/test_qfw.py
test/py/tests/test_reset.py
test/py/tests/test_sandbox_exit.py
test/py/tests/test_sandbox_opts.py
test/py/tests/test_saveenv.py
test/py/tests/test_scp03.py
test/py/tests/test_scsi.py
test/py/tests/test_semihosting/test_hostfs.py
test/py/tests/test_sf.py
test/py/tests/test_shell_basics.py
test/py/tests/test_sleep.py
test/py/tests/test_smbios.py
test/py/tests/test_source.py
test/py/tests/test_spi.py
test/py/tests/test_spl.py
test/py/tests/test_stackprotector.py
test/py/tests/test_suite.py
test/py/tests/test_tpm2.py
test/py/tests/test_trace.py
test/py/tests/test_ums.py
test/py/tests/test_unknown_cmd.py
test/py/tests/test_upl.py
test/py/tests/test_usb.py
test/py/tests/test_ut.py
test/py/tests/test_vbe.py
test/py/tests/test_vbe_vpl.py
test/py/tests/test_vboot.py
test/py/tests/test_vpl.py
test/py/tests/test_xxd/test_xxd.py
test/py/tests/test_zynq_secure.py
test/py/tests/test_zynqmp_rpu.py
test/py/tests/test_zynqmp_secure.py
test/py/u_boot_utils.py