blob: 1bead69b5073e7e6ca7294db97f38e662fba8673 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# SPDX-License-Identifier: GPL-2.0+
""" Unit test for semihosting
"""
import pytest
@pytest.mark.buildconfigspec('semihosting')
def test_semihosting_hostfs(ubman, semihosting_data):
""" Unit test for semihosting
Args:
ubman -- U-Boot console
semihosting_data -- Path to the disk image used for testing.
"""
response = ubman.run_command(
f'load hostfs - $loadaddr {semihosting_data}')
assert '11 bytes read' in response
response = ubman.run_command(
'crc32 $loadaddr $filesize')
assert '==> 60cfccfc' in response
ubman.run_command(
f'save hostfs - $loadaddr {semihosting_data} 11 11')
response = ubman.run_command(
f'load hostfs - $loadaddr {semihosting_data} 4 13')
assert '4 bytes read' in response
response = ubman.run_command(
'crc32 $loadaddr $filesize')
assert '==> e29063ea' in response
|