diff options
author | Simon Glass | 2017-08-04 16:20:16 -0600 |
---|---|---|
committer | Tom Rini | 2017-08-13 15:17:35 -0400 |
commit | 010ad8c34a03ca610eb247acd931facf61d158db (patch) | |
tree | 8e913a1422f4cfcee87c3dc50734f1650e1acab2 | |
parent | ffdec3000a616b7a79bb720073c8ee075639af40 (diff) |
test: Fix FIT test to pass again
A recent change adjusted a test string so that the test no-longer passes.
Fix it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reported-by: Heiko Schocher <hs@denx.de>
Fixes: b28c5fcc (test-fit.py: Minor grammar/spelling/clarification tweaks)
-rwxr-xr-x | test/image/test-fit.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/image/test-fit.py b/test/image/test-fit.py index b0d05389197..ca38f71a15f 100755 --- a/test/image/test-fit.py +++ b/test/image/test-fit.py @@ -392,7 +392,7 @@ def run_fit_test(mkimage, u_boot): fail('Ramdisk loaded but should not be', stdout) # Find out the offset in the FIT where U-Boot has found the FDT - line = find_matching(stdout, 'Booting using the FDT blob at ') + line = find_matching(stdout, 'Booting using the fdt blob at ') fit_offset = int(line, 16) - params['fit_addr'] fdt_magic = struct.pack('>L', 0xd00dfeed) data = read_file(fit) |