projects
/
platform
/
kernel
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
da76ed2
)
test: vboot: Reduce fake kernel size to 500 bytes
author
Simon Glass
<sjg@chromium.org>
Wed, 18 Mar 2020 17:44:08 +0000
(11:44 -0600)
committer
Simon Glass
<sjg@chromium.org>
Wed, 1 Apr 2020 13:45:09 +0000
(07:45 -0600)
We don't need 5KB to test things out. A smaller size makes it easier to
look at the FIT with fdtdump.
Signed-off-by: Simon Glass <sjg@chromium.org>
test/py/tests/test_vboot.py
patch
|
blob
|
history
diff --git
a/test/py/tests/test_vboot.py
b/test/py/tests/test_vboot.py
index
91305a4
..
e67f2b3
100644
(file)
--- a/
test/py/tests/test_vboot.py
+++ b/
test/py/tests/test_vboot.py
@@
-289,7
+289,7
@@
def test_vboot(u_boot_console, sha_algo, padding, required):
# Create a number kernel image with zeroes
with open('%stest-kernel.bin' % tmpdir, 'w') as fd:
- fd.write(500
0
* chr(0))
+ fd.write(500 * chr(0))
try:
# We need to use our own device tree file. Remember to restore it