Primary Git Repository for the Zephyr Project. Zephyr is a new generation, scalable, optimized, secure RTOS for multiple hardware architectures.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Sadik Ozer 8b987d9e02 samples: tfm_integration: Update regression test dependencies 6 months ago
..
boards boards: st: nucleo_l552ze_q: Populate ns flash partitions 1 year ago
src samples, tests, boards: Switch main return type from void to int 2 years ago
CMakeLists.txt tfm: Provide properties for selected TF-M toolchain for NS application 1 year ago
README.rst samples: tfm_integration: use zephyr:code-sample directive 10 months ago
prj.conf tfm: Remove TFM_BUILD_NS and update TFM_USE_NS_APP for NS build folder 1 year ago
sample.yaml samples: tfm_integration: Update regression test dependencies 6 months ago

README.rst

.. _tfm_regression_test:

TF-M Regression Test Sample
###########################

Overview
********

Run both the Secure and Non-secure TF-M Regression tests using the Zephyr build system.

The build system will replace the Zephyr application with the Non-Secure TF-M test application,
while the Secure tests will be included in the TF-M build itself.

The TF-M regression tests are implemented in the tf-m-tests repo: https://git.trustedfirmware.org/TF-M/tf-m-tests.git/

This sample is available for platforms that are supported in the trusted-firmware-m repo: https://git.trustedfirmware.org/TF-M/trusted-firmware-m.git/
See sample.yaml for a list of supported platforms.

Building and Running
********************

Tests for both the secure and non-secure domain are enabled by default, controlled via the CONFIG_TFM_REGRESSION_S and CONFIG_TFM_REGRESSION_NS configs.

On Target
=========

Refer to :zephyr:code-sample:`tfm_ipc` for detailed instructions.

On QEMU:
========

Refer to :zephyr:code-sample:`tfm_ipc` for detailed instructions.
Following is an example based on ``west build``

.. code-block:: bash

$ west build samples/tfm_integration/tfm_regression_test/ -p -b mps2/an521/cpu0/ns -t run

Sample Output
=============

.. code-block:: console

Non-Secure system starting...

#### Execute test suites for the Secure area ####

[...]

Running Test Suite PS reliability tests (TFM_PS_TEST_3XXX)...
> Executing 'TFM_PS_TEST_3001'
Description: 'repetitive sets and gets in/from an asset'
> Iteration 15 of 15
TEST: TFM_PS_TEST_3001 - PASSED!
> Executing 'TFM_PS_TEST_3002'
Description: 'repetitive sets, gets and removes'
> Iteration 15 of 15
TEST: TFM_PS_TEST_3002 - PASSED!
TESTSUITE PASSED!

[...]

*** Secure test suites summary ***
Test suite 'PSA protected storage S interface tests (TFM_PS_TEST_2XXX)' has PASSED
Test suite 'PS reliability tests (TFM_PS_TEST_3XXX)' has PASSED
Test suite 'PS rollback protection tests (TFM_PS_TEST_4XXX)' has PASSED
Test suite 'PSA internal trusted storage S interface tests (TFM_ITS_TEST_2XXX)' has PASSED
Test suite 'ITS reliability tests (TFM_ITS_TEST_3XXX)' has PASSED
Test suite 'Crypto secure interface tests (TFM_CRYPTO_TEST_5XXX)' has PASSED
Test suite 'Initial Attestation Service secure interface tests(TFM_ATTEST_TEST_1XXX)' has PASSED
Test suite 'Platform Service Secure interface tests(TFM_PLATFORM_TEST_1XXX)' has PASSED
Test suite 'IPC secure interface test (TFM_IPC_TEST_1XXX)' has PASSED

*** End of Secure test suites ***

#### Execute test suites for the Non-secure area ####

[...]

Running Test Suite Core non-secure positive tests (TFM_CORE_TEST_1XXX)...
> Executing 'TFM_CORE_TEST_1001'
Description: 'Test service request from NS thread mode'
TEST: TFM_CORE_TEST_1001 - PASSED!
> Executing 'TFM_CORE_TEST_1003'
Description: 'Test the success of service init'
TEST: TFM_CORE_TEST_1003 - PASSED!
> Executing 'TFM_CORE_TEST_1007'
Description: 'Test secure service buffer accesses'
TEST: TFM_CORE_TEST_1007 - PASSED!
> Executing 'TFM_CORE_TEST_1008'
Description: 'Test secure service to service call'
TEST: TFM_CORE_TEST_1008 - PASSED!
> Executing 'TFM_CORE_TEST_1010'
Description: 'Test secure service to service call with buffer handling'
TEST: TFM_CORE_TEST_1010 - PASSED!
> Executing 'TFM_CORE_TEST_1015'
Description: 'Test service parameter sanitization'
TEST: TFM_CORE_TEST_1015 - PASSED!
> Executing 'TFM_CORE_TEST_1016'
Description: 'Test outvec write'
TEST: TFM_CORE_TEST_1016 - PASSED!
TESTSUITE PASSED!

[...]

*** Non-secure test suites summary ***
Test suite 'PSA protected storage NS interface tests (TFM_PS_TEST_1XXX)' has PASSED
Test suite 'PSA internal trusted storage NS interface tests (TFM_ITS_TEST_1XXX)' has PASSED
Test suite 'Crypto non-secure interface test (TFM_CRYPTO_TEST_6XXX)' has PASSED
Test suite 'Platform Service Non-Secure interface tests(TFM_PLATFORM_TEST_2XXX)' has PASSED
Test suite 'Initial Attestation Service non-secure interface tests(TFM_ATTEST_TEST_2XXX)' has PASSED
Test suite 'QCBOR regression test(TFM_QCBOR_TEST_7XXX)' has PASSED
Test suite 'T_COSE regression test(TFM_T_COSE_TEST_8XXX)' has PASSED
Test suite 'Core non-secure positive tests (TFM_CORE_TEST_1XXX)' has PASSED
Test suite 'IPC non-secure interface test (TFM_IPC_TEST_1XXX)' has PASSED

*** End of Non-secure test suites ***