mirror of
https://git.yoctoproject.org/meta-arm
synced 2026-06-01 13:10:04 +00:00
2d22a1f7ae
Inherit fvpboot so that the FVP binary is fetched and configuration generated. Configure the FVP to forward host port 8022 to port 22 locally, and tell testimage to SSH to localhost:8022. This has the limitation that only one testimage can run per machine, but this will be removed shortly. Disable the parselogs test case, as there are some harmless warnings in the dmesg which cause it to fail. Currently meta-arm can't extend the whitelist of ignorable warnings. The FVP binaries are x86-64 only, so tag the job appropriately. Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Jon Mason <jon.mason@arm.com>
17 lines
490 B
YAML
17 lines
490 B
YAML
header:
|
|
version: 9
|
|
includes:
|
|
- base.yml
|
|
|
|
machine: fvp-base
|
|
|
|
local_conf_header:
|
|
testimagefvp: |
|
|
INHERIT = "fvpboot"
|
|
# This fails but we can't add to the ignorelist from meta-arm yet
|
|
# https://bugzilla.yoctoproject.org/show_bug.cgi?id=14604
|
|
TEST_SUITES:remove = "parselogs"
|
|
# Tell testimage to connect to localhost:8022, and forward that to SSH in the FVP.
|
|
TEST_TARGET_IP = "localhost:8022"
|
|
FVP_CONFIG[bp.virtio_net.hostbridge.userNetPorts] ?= "8022=22"
|