Raef Coles | df3f6ce | 2021-05-26 14:21:07 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2021-2022, Arm Limited. All rights reserved. |
| 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | * |
| 6 | */ |
| 7 | |
| 8 | #include "test_framework_integ_test.h" |
| 9 | #include "test_framework_integ_test_helper.h" |
| 10 | #include "test_framework.h" |
| 11 | |
Raef Coles | 689fee4 | 2021-06-10 14:19:07 +0100 | [diff] [blame] | 12 | #include "bl1_2_integration_tests.h" |
| 13 | |
Raef Coles | df3f6ce | 2021-05-26 14:21:07 +0100 | [diff] [blame] | 14 | static struct test_suite_t test_suites[] = { |
| 15 | |
Raef Coles | 689fee4 | 2021-06-10 14:19:07 +0100 | [diff] [blame] | 16 | {®ister_testsuite_bl1_2_integration, 0, 0, 0}, |
| 17 | |
Raef Coles | df3f6ce | 2021-05-26 14:21:07 +0100 | [diff] [blame] | 18 | /* End of test suites */ |
| 19 | {0, 0, 0, 0} |
| 20 | }; |
| 21 | |
| 22 | enum test_suite_err_t run_bl1_2_testsuite(void) |
| 23 | { |
| 24 | return integ_test("BL1_2", test_suites); |
| 25 | } |