From fb824d00afe67ac7578c0fa81f5b79409242c526 Mon Sep 17 00:00:00 2001 From: Chris Friedt Date: Tue, 4 Mar 2025 18:27:42 +0000 Subject: [PATCH] tests: posix: add one integration platform per suite Add one integration platform per testsuite to reduce the number of issues reported by the qa log level introduced in #86571. Signed-off-by: Chris Friedt --- tests/posix/barriers/testcase.yaml | 2 ++ tests/posix/c_lib_ext/testcase.yaml | 2 ++ tests/posix/common/testcase.yaml | 2 ++ tests/posix/eventfd/testcase.yaml | 2 ++ tests/posix/fs/testcase.yaml | 2 ++ tests/posix/headers/testcase.yaml | 2 ++ tests/posix/rwlocks/testcase.yaml | 2 ++ tests/posix/semaphores/testcase.yaml | 2 ++ tests/posix/signals/testcase.yaml | 2 ++ tests/posix/single_process/testcase.yaml | 2 ++ tests/posix/spinlocks/testcase.yaml | 2 ++ tests/posix/threads_ext/testcase.yaml | 2 ++ tests/posix/timers/testcase.yaml | 2 ++ tests/posix/xsi_realtime/testcase.yaml | 2 ++ tests/posix/xsi_streams/testcase.yaml | 2 ++ tests/posix/xsi_system_logging/testcase.yaml | 2 ++ tests/posix/xsi_threads_ext/testcase.yaml | 2 ++ 17 files changed, 34 insertions(+) diff --git a/tests/posix/barriers/testcase.yaml b/tests/posix/barriers/testcase.yaml index a00bd02322f0..4a60c25741ab 100644 --- a/tests/posix/barriers/testcase.yaml +++ b/tests/posix/barriers/testcase.yaml @@ -7,6 +7,8 @@ common: platform_key: - arch - simulation + integration_platforms: + - qemu_cortex_a53/qemu_cortex_a53/smp min_flash: 64 min_ram: 32 tests: diff --git a/tests/posix/c_lib_ext/testcase.yaml b/tests/posix/c_lib_ext/testcase.yaml index 8c6859289e8c..3b558f38b2dc 100644 --- a/tests/posix/c_lib_ext/testcase.yaml +++ b/tests/posix/c_lib_ext/testcase.yaml @@ -8,6 +8,8 @@ common: platform_key: - arch - simulation + integration_platforms: + - qemu_cortex_m0 min_flash: 64 min_ram: 32 tests: diff --git a/tests/posix/common/testcase.yaml b/tests/posix/common/testcase.yaml index 0b3ab9db4198..c36e2b1ad8ea 100644 --- a/tests/posix/common/testcase.yaml +++ b/tests/posix/common/testcase.yaml @@ -6,6 +6,8 @@ common: platform_key: - arch - simulation + integration_platforms: + - qemu_x86 platform_exclude: - native_posix - native_posix/native/64 diff --git a/tests/posix/eventfd/testcase.yaml b/tests/posix/eventfd/testcase.yaml index b21c02bb907c..6646036067c4 100644 --- a/tests/posix/eventfd/testcase.yaml +++ b/tests/posix/eventfd/testcase.yaml @@ -7,6 +7,8 @@ common: platform_key: - arch - simulation + integration_platforms: + - qemu_riscv64 tests: portability.posix.eventfd: {} portability.posix.eventfd.minimal: diff --git a/tests/posix/fs/testcase.yaml b/tests/posix/fs/testcase.yaml index 359ff70dae17..d69a6e3590f6 100644 --- a/tests/posix/fs/testcase.yaml +++ b/tests/posix/fs/testcase.yaml @@ -16,6 +16,8 @@ common: platform_key: - arch - simulation + integration_platforms: + - qemu_x86 tests: portability.posix.fs: {} portability.posix.fs.minimal: diff --git a/tests/posix/headers/testcase.yaml b/tests/posix/headers/testcase.yaml index 7a15e49ea90c..746ca007ca22 100644 --- a/tests/posix/headers/testcase.yaml +++ b/tests/posix/headers/testcase.yaml @@ -7,6 +7,8 @@ common: platform_key: - arch - simulation + integration_platforms: + - qemu_x86_64 tests: portability.posix.headers.with_posix_api: extra_configs: diff --git a/tests/posix/rwlocks/testcase.yaml b/tests/posix/rwlocks/testcase.yaml index 84a151e60b5d..9e31cbc07d07 100644 --- a/tests/posix/rwlocks/testcase.yaml +++ b/tests/posix/rwlocks/testcase.yaml @@ -7,6 +7,8 @@ common: platform_key: - arch - simulation + integration_platforms: + - qemu_riscv64 min_flash: 64 min_ram: 32 tests: diff --git a/tests/posix/semaphores/testcase.yaml b/tests/posix/semaphores/testcase.yaml index 92fdebbd9922..5201ad902839 100644 --- a/tests/posix/semaphores/testcase.yaml +++ b/tests/posix/semaphores/testcase.yaml @@ -7,6 +7,8 @@ common: platform_key: - arch - simulation + integration_platforms: + - qemu_x86_64 min_flash: 64 min_ram: 32 tests: diff --git a/tests/posix/signals/testcase.yaml b/tests/posix/signals/testcase.yaml index 7d475ee19cf9..de3d7166e223 100644 --- a/tests/posix/signals/testcase.yaml +++ b/tests/posix/signals/testcase.yaml @@ -7,6 +7,8 @@ common: platform_key: - arch - simulation + integration_platforms: + - qemu_riscv64 min_flash: 64 min_ram: 32 tests: diff --git a/tests/posix/single_process/testcase.yaml b/tests/posix/single_process/testcase.yaml index 70abb822269e..e4d31eaa3e3c 100644 --- a/tests/posix/single_process/testcase.yaml +++ b/tests/posix/single_process/testcase.yaml @@ -7,6 +7,8 @@ common: platform_key: - arch - simulation + integration_platforms: + - qemu_riscv64 min_flash: 64 min_ram: 32 tests: diff --git a/tests/posix/spinlocks/testcase.yaml b/tests/posix/spinlocks/testcase.yaml index c11e0092efce..4729a0c7a6e8 100644 --- a/tests/posix/spinlocks/testcase.yaml +++ b/tests/posix/spinlocks/testcase.yaml @@ -7,6 +7,8 @@ common: platform_key: - arch - simulation + integration_platforms: + - qemu_x86_64 min_flash: 64 min_ram: 32 tests: diff --git a/tests/posix/threads_ext/testcase.yaml b/tests/posix/threads_ext/testcase.yaml index c1387f17840b..318fd133ad1f 100644 --- a/tests/posix/threads_ext/testcase.yaml +++ b/tests/posix/threads_ext/testcase.yaml @@ -7,6 +7,8 @@ common: platform_key: - arch - simulation + integration_platforms: + - qemu_riscv64 min_flash: 64 min_ram: 32 tests: diff --git a/tests/posix/timers/testcase.yaml b/tests/posix/timers/testcase.yaml index a84873b508b6..402857590f87 100644 --- a/tests/posix/timers/testcase.yaml +++ b/tests/posix/timers/testcase.yaml @@ -7,6 +7,8 @@ common: platform_key: - arch - simulation + integration_platforms: + - qemu_riscv64 min_flash: 64 min_ram: 32 tests: diff --git a/tests/posix/xsi_realtime/testcase.yaml b/tests/posix/xsi_realtime/testcase.yaml index f084983c38b3..6ab3fff5bb16 100644 --- a/tests/posix/xsi_realtime/testcase.yaml +++ b/tests/posix/xsi_realtime/testcase.yaml @@ -7,6 +7,8 @@ common: platform_key: - arch - simulation + integration_platforms: + - qemu_x86 min_flash: 64 min_ram: 32 timeout: 240 diff --git a/tests/posix/xsi_streams/testcase.yaml b/tests/posix/xsi_streams/testcase.yaml index c03959608270..06b40f1c2e8d 100644 --- a/tests/posix/xsi_streams/testcase.yaml +++ b/tests/posix/xsi_streams/testcase.yaml @@ -7,6 +7,8 @@ common: platform_key: - arch - simulation + integration_platforms: + - qemu_riscv64 min_flash: 64 min_ram: 32 tests: diff --git a/tests/posix/xsi_system_logging/testcase.yaml b/tests/posix/xsi_system_logging/testcase.yaml index 352cfffce42c..54d6790ae75b 100644 --- a/tests/posix/xsi_system_logging/testcase.yaml +++ b/tests/posix/xsi_system_logging/testcase.yaml @@ -6,6 +6,8 @@ common: platform_key: - arch - simulation + integration_platforms: + - qemu_riscv64 min_flash: 64 min_ram: 32 tests: diff --git a/tests/posix/xsi_threads_ext/testcase.yaml b/tests/posix/xsi_threads_ext/testcase.yaml index 7849b1580d82..2fbc1515d04a 100644 --- a/tests/posix/xsi_threads_ext/testcase.yaml +++ b/tests/posix/xsi_threads_ext/testcase.yaml @@ -7,6 +7,8 @@ common: platform_key: - arch - simulation + integration_platforms: + - qemu_x86 min_flash: 64 min_ram: 32 tests: