mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-15 00:54:22 +00:00

Changes all occurrences of "RSS" and "rss" in the code and build files to "RSE" and "rse". Signed-off-by: Tamas Ban <tamas.ban@arm.com> Change-Id: Idec0bf7a90ae381f5bc968e1bb167daace24a11f
25 lines
No EOL
956 B
C
25 lines
No EOL
956 B
C
/*
|
|
* Copyright (c) 2022, Arm Ltd. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
/*
|
|
* `delegated_attest_ns_interface_testsuite.c` and
|
|
* `measured_boot_ns_interface_testsuite.c` are not added to the build directly.
|
|
* but are included in this file, and this file is added to the build. This is
|
|
* necessary because both files define the function `extra_tests_init`, so a
|
|
* linker error occurs when both are linked to BL31. This file defines a macro
|
|
* that renames the colliding function names to something unique.
|
|
* `plat/arm/board/tc/rse_ap_tests.c` can call the test init functions with
|
|
* their new name.
|
|
*/
|
|
|
|
#define register_testsuite_extra_ns_interface \
|
|
register_testsuite_delegated_attest
|
|
#include <delegated_attest_ns_interface_testsuite.c>
|
|
|
|
#undef register_testsuite_extra_ns_interface
|
|
#define register_testsuite_extra_ns_interface \
|
|
register_testsuite_measured_boot
|
|
#include <measured_boot_ns_interface_testsuite.c> |