From 156305f2eb3e18cf85e5ec2b8c8f61572f74aaba Mon Sep 17 00:00:00 2001 From: Piotr Golyzniak Date: Wed, 15 Dec 2021 18:33:42 +0100 Subject: [PATCH 01/10] tests: subsys: rename not existing platform Rename platform name from nrf52840_pca10056 to nrf52840dk_nrf52840. Signed-off-by: Piotr Golyzniak --- tests/subsys/storage/stream/stream_flash/testcase.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/subsys/storage/stream/stream_flash/testcase.yaml b/tests/subsys/storage/stream/stream_flash/testcase.yaml index ffdb9b319a73a..cb9e1ee45473e 100644 --- a/tests/subsys/storage/stream/stream_flash/testcase.yaml +++ b/tests/subsys/storage/stream/stream_flash/testcase.yaml @@ -12,5 +12,5 @@ tests: tags: stream_flash storage.stream_flash.mpu_allow_flash_write: extra_args: OVERLAY_CONFIG=mpu_allow_flash_write.overlay - platform_allow: nrf52840_pca10056 + platform_allow: nrf52840dk_nrf52840 tags: stream_flash From f86709a7e3b6b56a34d82207b2e13de1de01bffa Mon Sep 17 00:00:00 2001 From: Piotr Golyzniak Date: Wed, 15 Dec 2021 18:35:53 +0100 Subject: [PATCH 02/10] tests: drivers: fix typo in platform name Fix typo in cc1352_sensortag to cc1352r_sensortag. Signed-off-by: Piotr Golyzniak --- tests/drivers/build_all/ieee802154/testcase.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/drivers/build_all/ieee802154/testcase.yaml b/tests/drivers/build_all/ieee802154/testcase.yaml index 555ae3e3b4fac..d33690cdb714c 100644 --- a/tests/drivers/build_all/ieee802154/testcase.yaml +++ b/tests/drivers/build_all/ieee802154/testcase.yaml @@ -6,7 +6,7 @@ tests: platform_allow: native_posix extra_args: OVERLAY_CONFIG=external.conf ieee802154.build.cc12xx_cc2520: - platform_allow: cc1352_sensortag + platform_allow: cc1352r_sensortag extra_configs: - CONFIG_IEEE802154_CC13XX_CC26XX=y - CONFIG_IEEE802154_CC13XX_CC26XX_SUB_GHZ=y From 2992c8122986efc4634e468849af8ed2f44ab024 Mon Sep 17 00:00:00 2001 From: Piotr Golyzniak Date: Wed, 15 Dec 2021 18:47:58 +0100 Subject: [PATCH 03/10] tests: remove not existing platform Remove nsim_em_mpu_stack_guard platform which no longer exists from platform_exclude and platfrom_allow lists. Signed-off-by: Piotr Golyzniak --- tests/kernel/workq/critical/testcase.yaml | 4 ++-- tests/posix/common/testcase.yaml | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/tests/kernel/workq/critical/testcase.yaml b/tests/kernel/workq/critical/testcase.yaml index bbcb241bd5502..de5e9b65c7482 100644 --- a/tests/kernel/workq/critical/testcase.yaml +++ b/tests/kernel/workq/critical/testcase.yaml @@ -3,14 +3,14 @@ common: tests: kernel.workqueue: - platform_exclude: nsim_sem_mpu_stack_guard nsim_em_mpu_stack_guard + platform_exclude: nsim_sem_mpu_stack_guard filter: not CONFIG_WDT_SAM kernel.workqueue.sam: filter: CONFIG_WDT_SAM extra_configs: - CONFIG_WDT_DISABLE_AT_BOOT=y kernel.workqueue.nsim: - platform_allow: nsim_sem_mpu_stack_guard nsim_em_mpu_stack_guard + platform_allow: nsim_sem_mpu_stack_guard extra_configs: - CONFIG_TEST_HW_STACK_PROTECTION=n kernel.workqueue.linker_generator: diff --git a/tests/posix/common/testcase.yaml b/tests/posix/common/testcase.yaml index 4e105f4306b82..d6c0448bd08a8 100644 --- a/tests/posix/common/testcase.yaml +++ b/tests/posix/common/testcase.yaml @@ -6,11 +6,11 @@ common: tests: portability.posix.common: - platform_exclude: nsim_sem_mpu_stack_guard nsim_em_mpu_stack_guard ehl_crb + platform_exclude: nsim_sem_mpu_stack_guard ehl_crb extra_configs: - CONFIG_NEWLIB_LIBC=n portability.posix.common.newlib: - platform_exclude: nsim_sem_mpu_stack_guard nsim_em_mpu_stack_guard ehl_crb + platform_exclude: nsim_sem_mpu_stack_guard ehl_crb filter: TOOLCHAIN_HAS_NEWLIB == 1 extra_configs: - CONFIG_NEWLIB_LIBC=y @@ -19,26 +19,26 @@ tests: extra_configs: - CONFIG_ARCMWDT_LIBC=y portability.posix.common.tls: - platform_exclude: nsim_sem_mpu_stack_guard nsim_em_mpu_stack_guard ehl_crb + platform_exclude: nsim_sem_mpu_stack_guard ehl_crb filter: CONFIG_ARCH_HAS_THREAD_LOCAL_STORAGE and CONFIG_TOOLCHAIN_SUPPORTS_THREAD_LOCAL_STORAGE extra_configs: - CONFIG_NEWLIB_LIBC=n - CONFIG_THREAD_LOCAL_STORAGE=y - CONFIG_MAIN_STACK_SIZE=1152 portability.posix.common.tls.newlib: - platform_exclude: nsim_sem_mpu_stack_guard nsim_em_mpu_stack_guard ehl_crb + platform_exclude: nsim_sem_mpu_stack_guard ehl_crb filter: TOOLCHAIN_HAS_NEWLIB == 1 and CONFIG_ARCH_HAS_THREAD_LOCAL_STORAGE and CONFIG_TOOLCHAIN_SUPPORTS_THREAD_LOCAL_STORAGE extra_configs: - CONFIG_NEWLIB_LIBC=y - CONFIG_THREAD_LOCAL_STORAGE=y - CONFIG_MAIN_STACK_SIZE=1152 portability.posix.common.nsim: - platform_allow: nsim_sem_mpu_stack_guard nsim_em_mpu_stack_guard + platform_allow: nsim_sem_mpu_stack_guard extra_configs: - CONFIG_NEWLIB_LIBC=n - CONFIG_TEST_HW_STACK_PROTECTION=n portability.posix.common.newlib.nsim: - platform_allow: nsim_sem_mpu_stack_guard nsim_em_mpu_stack_guard + platform_allow: nsim_sem_mpu_stack_guard filter: TOOLCHAIN_HAS_NEWLIB == 1 extra_configs: - CONFIG_NEWLIB_LIBC=y From 041686bf0237aafbf7cfb75ae0ad7ef3e0b88851 Mon Sep 17 00:00:00 2001 From: Piotr Golyzniak Date: Wed, 15 Dec 2021 18:50:22 +0100 Subject: [PATCH 04/10] samples: subsys: ipc: remove not existing platform Remove v2m_musca platform which no longer exists from platfrom_allow lists. Signed-off-by: Piotr Golyzniak --- samples/subsys/ipc/openamp/sample.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/subsys/ipc/openamp/sample.yaml b/samples/subsys/ipc/openamp/sample.yaml index b209f0bcf75e0..df871bca0d5a3 100644 --- a/samples/subsys/ipc/openamp/sample.yaml +++ b/samples/subsys/ipc/openamp/sample.yaml @@ -4,7 +4,7 @@ sample: name: OpenAMP example integration tests: sample.ipc.openamp: - platform_allow: lpcxpresso54114_m4 lpcxpresso55s69_cpu0 mps2_an521 v2m_musca v2m_musca_b1 + platform_allow: lpcxpresso54114_m4 lpcxpresso55s69_cpu0 mps2_an521 v2m_musca_b1 tags: ipm harness: console harness_config: From a3d04fd54f061a9c4dd658adffe34096ecc0f02d Mon Sep 17 00:00:00 2001 From: Piotr Golyzniak Date: Wed, 15 Dec 2021 18:52:14 +0100 Subject: [PATCH 05/10] samples: drivers: rename not-existing platform Rename platform name from nrf51_pca10028 to nrf51dk_nrf51422. Signed-off-by: Piotr Golyzniak --- samples/drivers/counter/maxim_ds3231/sample.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/drivers/counter/maxim_ds3231/sample.yaml b/samples/drivers/counter/maxim_ds3231/sample.yaml index 685f6df8449b7..c58085d968d4a 100644 --- a/samples/drivers/counter/maxim_ds3231/sample.yaml +++ b/samples/drivers/counter/maxim_ds3231/sample.yaml @@ -5,4 +5,4 @@ sample: tests: sample.basic.maxim_ds3231: build_only: true - platform_allow: efr32mg_sltb004a frdm_k64f nrf51_pca10028 nucleo_l476rg particle_xenon + platform_allow: efr32mg_sltb004a frdm_k64f nrf51dk_nrf51422 nucleo_l476rg particle_xenon From cdff6241c37c548d705c70b7b21c33d031e4d8a3 Mon Sep 17 00:00:00 2001 From: Piotr Golyzniak Date: Wed, 15 Dec 2021 18:55:29 +0100 Subject: [PATCH 06/10] samples: boards: fix typo in platform name Fix typo in em_starterkit_em7d_secure platform name to em_starterkit_em7d Signed-off-by: Piotr Golyzniak --- samples/boards/arc_secure_services/sample.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/boards/arc_secure_services/sample.yaml b/samples/boards/arc_secure_services/sample.yaml index 6a49cae066d45..74c14429911e4 100644 --- a/samples/boards/arc_secure_services/sample.yaml +++ b/samples/boards/arc_secure_services/sample.yaml @@ -6,7 +6,7 @@ tests: sample.board.arc_secure_services: # Requires multiple kernels in an AMP config. See README.rst build_only: true - platform_allow: nsim_sem em_starterkit_em7d_secure + platform_allow: nsim_sem em_starterkit_em7d tags: secure harness: console harness_config: From ea14fddb71f9f90a2e7bc01fbe8d2f365eee70b6 Mon Sep 17 00:00:00 2001 From: Piotr Golyzniak Date: Wed, 15 Dec 2021 18:57:22 +0100 Subject: [PATCH 07/10] samples: rename not-existing platforms Rename not existing platforms: mps2_an521_nonsecure to mps2_an521_ns v2m_musca_s1_nonsecure to v2m_musca_s1_ns nrf5340dk_nrf5340_cpuappns to nrf5340dk_nrf5340_cpuapp_ns nrf9160dk_nrf9160ns to nrf9160dk_nrf9160_ns Signed-off-by: Piotr Golyzniak --- samples/tfm_integration/tfm_secure_partition/sample.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/tfm_integration/tfm_secure_partition/sample.yaml b/samples/tfm_integration/tfm_secure_partition/sample.yaml index 8161d81e5b2de..0bb876607f14f 100644 --- a/samples/tfm_integration/tfm_secure_partition/sample.yaml +++ b/samples/tfm_integration/tfm_secure_partition/sample.yaml @@ -1,7 +1,7 @@ common: tags: tfm - platform_allow: mps2_an521_nonsecure v2m_musca_s1_nonsecure - nrf5340dk_nrf5340_cpuappns nrf9160dk_nrf9160ns + platform_allow: mps2_an521_ns v2m_musca_s1_ns + nrf5340dk_nrf5340_cpuapp_ns nrf9160dk_nrf9160_ns harness: console harness_config: type: multi_line From 903dc32491f98f66a279dc9988e536ce86ec8a9f Mon Sep 17 00:00:00 2001 From: Piotr Golyzniak Date: Wed, 15 Dec 2021 19:00:27 +0100 Subject: [PATCH 08/10] tests: subsys: fix typo in platform name Fix typo in frdm_k64 to frdm_k64f. Signed-off-by: Piotr Golyzniak --- tests/subsys/jwt/testcase.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/subsys/jwt/testcase.yaml b/tests/subsys/jwt/testcase.yaml index 580ef5d05fe67..a09a34a898c13 100644 --- a/tests/subsys/jwt/testcase.yaml +++ b/tests/subsys/jwt/testcase.yaml @@ -8,4 +8,4 @@ tests: tags: jwt filter: CONFIG_ENTROPY_HAS_DRIVER integration_platforms: - - frdm_k64 + - frdm_k64f From 7116e9e5d053bbb10468b15d5d165294f93c11dd Mon Sep 17 00:00:00 2001 From: Piotr Golyzniak Date: Wed, 15 Dec 2021 19:02:24 +0100 Subject: [PATCH 09/10] tests: drivers: fix typo in platform name Fix typo in nucleo_f103rc to nucleo_f103rb. Signed-off-by: Piotr Golyzniak --- tests/drivers/flash/testcase.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/drivers/flash/testcase.yaml b/tests/drivers/flash/testcase.yaml index 5085af957cc56..54b4252a6ea13 100644 --- a/tests/drivers/flash/testcase.yaml +++ b/tests/drivers/flash/testcase.yaml @@ -19,7 +19,7 @@ tests: drivers.flash.stm32: integration_platforms: - nucleo_f091rc - - nucleo_f103rc + - nucleo_f103rb - nucleo_f207zg - stm32f3_disco - nucleo_f429zi From 9f405470fc2a292f38d46294492163eef3673c3a Mon Sep 17 00:00:00 2001 From: Piotr Golyzniak Date: Wed, 15 Dec 2021 19:04:22 +0100 Subject: [PATCH 10/10] samples: subsys: fix bug in platform list Convert integration_platforms list into list of dashes. Signed-off-by: Piotr Golyzniak --- samples/subsys/ipc/ipc_service/static_vrings_mi/sample.yaml | 3 ++- samples/subsys/ipc/rpmsg_service/sample.yaml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/samples/subsys/ipc/ipc_service/static_vrings_mi/sample.yaml b/samples/subsys/ipc/ipc_service/static_vrings_mi/sample.yaml index ad82954ea3a03..5ae96e995c681 100644 --- a/samples/subsys/ipc/ipc_service/static_vrings_mi/sample.yaml +++ b/samples/subsys/ipc/ipc_service/static_vrings_mi/sample.yaml @@ -6,6 +6,7 @@ tests: sample.ipc.static_vrings_mi.nrf: platform_allow: nrf5340dk_nrf5340_cpuapp bl5340_dvk_cpuapp integration_platforms: - - nrf5340dk_nrf5340_cpuapp bl5340_dvk_cpuapp + - nrf5340dk_nrf5340_cpuapp + - bl5340_dvk_cpuapp tags: ipc build_only: true diff --git a/samples/subsys/ipc/rpmsg_service/sample.yaml b/samples/subsys/ipc/rpmsg_service/sample.yaml index 94b50b048f72e..6b3ffbbe72aaa 100644 --- a/samples/subsys/ipc/rpmsg_service/sample.yaml +++ b/samples/subsys/ipc/rpmsg_service/sample.yaml @@ -16,6 +16,7 @@ tests: sample.ipc.rpmsg_service.nrf: platform_allow: nrf5340dk_nrf5340_cpuapp bl5340_dvk_cpuapp integration_platforms: - - nrf5340dk_nrf5340_cpuapp bl5340_dvk_cpuapp + - nrf5340dk_nrf5340_cpuapp + - bl5340_dvk_cpuapp tags: ipm build_only: true