Skip to content

Commit f1b0ef7

Browse files
author
Nicolas Pitre
committed
tests: Exclude FVP SMP from problematic tests
FVP SMP configurations have unresolved early boot issues that prevent threading and POSIX tests from running. Exclude all FVP SMP variants until these issues are resolved. Excluded platforms: - fvp_base_revc_2xaem/v8a/smp - fvp_base_revc_2xaem/v8a/smp/ns - fvp_base_revc_2xaem/v9a/smp - fvp_base_revc_2xaem/v9a/smp/ns Signed-off-by: Nicolas Pitre <[email protected]>
1 parent 3f8d662 commit f1b0ef7

File tree

19 files changed

+112
-1
lines changed

19 files changed

+112
-1
lines changed

tests/benchmarks/ipi_metric/testcase.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,15 @@ common:
99
# time does not pass while the CPU executes. So the benchmark just appears as if hung.
1010
arch_exclude:
1111
- posix
12-
# some slow qemu_* excluded
1312
platform_exclude:
13+
# some slow qemu_* excluded
1414
- qemu_malta/qemu_malta
1515
- qemu_malta/qemu_malta/be
16+
# FVP is also very slow
17+
- fvp_base_revc_2xaem/v8a/smp
18+
- fvp_base_revc_2xaem/v8a/smp/ns
19+
- fvp_base_revc_2xaem/v9a/smp
20+
- fvp_base_revc_2xaem/v9a/smp/ns
1621
integration_platforms:
1722
- qemu_x86_64
1823
- qemu_cortex_a53/qemu_cortex_a53/smp

tests/lib/c_lib/thrd/testcase.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ common:
99
platform_key:
1010
- arch
1111
- simulation
12+
# FVP SMP has unresolved issues
13+
platform_exclude:
14+
- fvp_base_revc_2xaem/v8a/smp
15+
- fvp_base_revc_2xaem/v8a/smp/ns
16+
- fvp_base_revc_2xaem/v9a/smp
17+
- fvp_base_revc_2xaem/v9a/smp/ns
1218
tests:
1319
libraries.libc.c11_threads.minimal:
1420
tags: minimal_libc

tests/posix/barriers/testcase.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ common:
1111
- qemu_cortex_a53
1212
min_flash: 64
1313
min_ram: 32
14+
# FVP SMP has unresolved issues
15+
platform_exclude:
16+
- fvp_base_revc_2xaem/v8a/smp
17+
- fvp_base_revc_2xaem/v8a/smp/ns
18+
- fvp_base_revc_2xaem/v9a/smp
19+
- fvp_base_revc_2xaem/v9a/smp/ns
1420
tests:
1521
portability.posix.barriers: {}
1622
portability.posix.barriers.minimal:

tests/posix/clock_selection/testcase.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ common:
1111
- qemu_riscv64
1212
min_flash: 64
1313
min_ram: 32
14+
# FVP SMP has unresolved issues
15+
platform_exclude:
16+
- fvp_base_revc_2xaem/v8a/smp
17+
- fvp_base_revc_2xaem/v8a/smp/ns
18+
- fvp_base_revc_2xaem/v9a/smp
19+
- fvp_base_revc_2xaem/v9a/smp/ns
1420
tests:
1521
portability.posix.clock_selection: {}
1622
portability.posix.clock_selection.minimal:

tests/posix/common/testcase.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ common:
77
- arch
88
- simulation
99
filter: not CONFIG_NATIVE_LIBC
10+
# FVP SMP has unresolved issues
11+
platform_exclude:
12+
- fvp_base_revc_2xaem/v8a/smp
13+
- fvp_base_revc_2xaem/v8a/smp/ns
14+
- fvp_base_revc_2xaem/v9a/smp
15+
- fvp_base_revc_2xaem/v9a/smp/ns
1016
tests:
1117
portability.posix.common: {}
1218
portability.posix.common.minimal:

tests/posix/eventfd/testcase.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ common:
99
- simulation
1010
integration_platforms:
1111
- qemu_riscv64
12+
# FVP SMP has unresolved issues
13+
platform_exclude:
14+
- fvp_base_revc_2xaem/v8a/smp
15+
- fvp_base_revc_2xaem/v8a/smp/ns
16+
- fvp_base_revc_2xaem/v9a/smp
17+
- fvp_base_revc_2xaem/v9a/smp/ns
1218
tests:
1319
portability.posix.eventfd: {}
1420
portability.posix.eventfd.minimal:

tests/posix/fs/testcase.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@ common:
1414
integration_platforms:
1515
- qemu_x86
1616
- qemu_riscv64
17+
# FVP SMP has unresolved issues
18+
platform_exclude:
19+
- fvp_base_revc_2xaem/v8a/smp
20+
- fvp_base_revc_2xaem/v8a/smp/ns
21+
- fvp_base_revc_2xaem/v9a/smp
22+
- fvp_base_revc_2xaem/v9a/smp/ns
1723
tests:
1824
portability.posix.fs: {}
1925
portability.posix.fs.minimal:

tests/posix/headers/testcase.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ common:
99
- simulation
1010
integration_platforms:
1111
- qemu_x86_64
12+
# FVP SMP has unresolved issues
13+
platform_exclude:
14+
- fvp_base_revc_2xaem/v8a/smp
15+
- fvp_base_revc_2xaem/v8a/smp/ns
16+
- fvp_base_revc_2xaem/v9a/smp
17+
- fvp_base_revc_2xaem/v9a/smp/ns
1218
tests:
1319
portability.posix.headers.with_posix_api:
1420
extra_configs:

tests/posix/rwlocks/testcase.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ common:
1111
- qemu_riscv64
1212
min_flash: 64
1313
min_ram: 32
14+
# FVP SMP has unresolved issues
15+
platform_exclude:
16+
- fvp_base_revc_2xaem/v8a/smp
17+
- fvp_base_revc_2xaem/v8a/smp/ns
18+
- fvp_base_revc_2xaem/v9a/smp
19+
- fvp_base_revc_2xaem/v9a/smp/ns
1420
tests:
1521
portability.posix.rwlocks: {}
1622
portability.posix.rwlocks.minimal:

tests/posix/semaphores/testcase.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ common:
1111
- qemu_x86_64
1212
min_flash: 64
1313
min_ram: 32
14+
# FVP SMP has unresolved issues
15+
platform_exclude:
16+
- fvp_base_revc_2xaem/v8a/smp
17+
- fvp_base_revc_2xaem/v8a/smp/ns
18+
- fvp_base_revc_2xaem/v9a/smp
19+
- fvp_base_revc_2xaem/v9a/smp/ns
1420
tests:
1521
portability.posix.semaphores: {}
1622
portability.posix.semaphores.minimal:

0 commit comments

Comments
 (0)