mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-10-18 11:01:26 +02:00
binman: Avoid unwanted output in testFitFirmwareLoadables()
This prints a message about the missing tee-os generated by the test. This is confusing, so suppress it. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
47dd6b4d7d
commit
7c4027af48
@ -6353,10 +6353,11 @@ fdt fdtmap Extract the devicetree blob from the fdtmap
|
|||||||
'tee-os-path': 'missing.bin',
|
'tee-os-path': 'missing.bin',
|
||||||
}
|
}
|
||||||
test_subdir = os.path.join(self._indir, TEST_FDT_SUBDIR)
|
test_subdir = os.path.join(self._indir, TEST_FDT_SUBDIR)
|
||||||
data = self._DoReadFileDtb(
|
with test_util.capture_sys_output() as (stdout, stderr):
|
||||||
'276_fit_firmware_loadables.dts',
|
data = self._DoReadFileDtb(
|
||||||
entry_args=entry_args,
|
'276_fit_firmware_loadables.dts',
|
||||||
extra_indirs=[test_subdir])[0]
|
entry_args=entry_args,
|
||||||
|
extra_indirs=[test_subdir])[0]
|
||||||
|
|
||||||
dtb = fdt.Fdt.FromData(data)
|
dtb = fdt.Fdt.FromData(data)
|
||||||
dtb.Scan()
|
dtb.Scan()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user