Prerequisite
Please make sure you have all required software installed as explained in the software requirements.
Porting steps
Refer to the PSA Developer APIs Test Suite Porting Guide document for porting steps.
Build steps
To build test suite for a given platform, execute the following commands:
cd api-tests
./tools/scripts/setup.sh --target <platform_name> --cpu_arch <cpu_architecture_version> --suite <suite_name> --build <build_dir> --include <include_path>
where:
- <platform_name> is the same as the name of the target specific directory created in the platform/targets/ directory.
- <cpu_architecture_version> is the Arm Architecture version name for which test binaries should be compiled. For example, Armv7M, Armv8M-Baseline and Armv8M-Mainline Architecture.
- <suite_name> is the suite name and it is same as the suite name available in test_suites/ directory.
- <include_path> is an additional directory to be included into compiler search path. Note- You must provide Developer APIs header file implementation to Test Suite build system using this option. For example - To compiler Crypto tests, include path must point to path where "psa/crypto.h" is located in your build system.
- <build_dir> is an output directory to keep build files.
Refer ./tools/scripts/setup.sh --help to know more about options.
To compile crypto tests for tgt_dev_apis_mbedos_fvp_mps2_m4 platform
cd api-tests
./tools/scripts/setup.sh --target tgt_dev_apis_mbedos_fvp_mps2_m4 --cpu_arch armv7m --suite crypto --build BUILD_CRYPTO --include <include_path>
Build output
Test suite build generates following binaries:
NSPE libraries:
- <build_dir>/BUILD/val/val_nspe.a
- <build_dir>/BUILD/platform/pal_nspe.a
- <build_dir>/BUILD/dev_apis/<suite_name>/test_elf_combine.bin
Binaries integration into your platform
- Integrate val_nspe.a and pal_nspe.a libraries with your non-secure OS so that these libraries get access to PSA Developer APIs. For example, Crypto tests would require to get access to PSA Crypto APIs. This will form a NSPE binary.
- Load NSPE binary and test_elf_combine.bin to NS memory
- Build your SPE binary and load into S memory
Test Suite Execution
The following steps describe the execution flow prior to the start of test execution:
- The target platform must load above binaries into appropriate memory.
- Upon booting firmware and non-secure OS, the SUT - boot software would give control to the test suite entry point- void val_entry(void); as an non-secure application entry point.
- The tests are executed sequentially in a loop in the test_dispatcher function.
License
Arm PSA test suite is distributed under Apache v2.0 License.
Feedback, contributions, and support
- For feedback, use the GitHub Issue Tracker that is associated with this repository.
- For support, send an email to support-psa-arch-tests@arm.com with details.
- Arm licensees can contact Arm directly through their partner managers.
- Arm welcomes code contributions through GitHub pull requests.
Copyright (c) 2018-2019, Arm Limited and Contributors. All rights reserved.