| /* |
| * Copyright (c) 2021-2022, Arm Limited. All rights reserved. |
| * |
| * SPDX-License-Identifier: BSD-3-Clause |
| * |
| */ |
| |
| #include "test_framework_integ_test.h" |
| #include "test_framework_integ_test_helper.h" |
| #include "test_framework.h" |
| |
| #include "bl1_1_crypto_tests.h" |
| #include "bl1_1_trng_tests.h" |
| #include "bl1_1_integration_tests.h" |
| |
| static struct test_suite_t test_suites[] = { |
| |
| {®ister_testsuite_bl1_crypto_interface, 0, 0, 0}, |
| {®ister_testsuite_bl1_trng_interface, 0, 0, 0}, |
| {®ister_testsuite_bl1_1_integration, 0, 0, 0}, |
| |
| /* End of test suites */ |
| {0, 0, 0, 0} |
| }; |
| |
| enum test_suite_err_t run_bl1_1_testsuite(void) |
| { |
| return integ_test("BL1_1", test_suites); |
| } |