Skip to content

Commit b3758a7

Browse files
firscitykartben
authored andcommitted
tests: kernel: exclude xenvm with GICv3 from device tests
The issue with mentioned test for GICv3 version of xenvm virtual board is the same as for regular xenvm - device tree overlay for this test overrides #address-cells and #size-cells property for original device tree file (from 0x2 to 0x1), which leads to incorrect DT parsing by actual Xen drivers. This causes build errors, so test should be skipped for GICv3 platform too. Same issue for regular xenvm was fixed by commit 40fe366 ("tests: kernel: exclude xenvm from device tests"). Issue for GICv3 appeared after migrating to HWMv2. Signed-off-by: Dmytro Firsov <[email protected]>
1 parent c57771e commit b3758a7

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

tests/kernel/device/testcase.yaml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ tests:
77
kernel.device:
88
integration_platforms:
99
- native_sim
10-
platform_exclude: xenvm
10+
platform_exclude:
11+
- xenvm
12+
- xenvm/xenvm/gicv3
1113
kernel.device.metadata:
1214
platform_allow:
1315
- qemu_x86
@@ -21,13 +23,16 @@ tests:
2123
- libc
2224
extra_configs:
2325
- CONFIG_MINIMAL_LIBC=y
24-
platform_exclude: xenvm
26+
platform_exclude:
27+
- xenvm
28+
- xenvm/xenvm/gicv3
2529
kernel.device.pm:
2630
integration_platforms:
2731
- native_sim
2832
platform_exclude:
2933
- mec15xxevb_assy6853
3034
- xenvm
35+
- xenvm/xenvm/gicv3
3136
extra_configs:
3237
- CONFIG_PM_DEVICE=y
3338
kernel.device.linker_generator:

0 commit comments

Comments
 (0)