blob: 5330224ae335b0599ff497c5e99d0146cfc7af8f [file] [log] [blame]
Raef Colesdf3f6ce2021-05-26 14:21:07 +01001/*
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 Coles689fee42021-06-10 14:19:07 +010012#include "bl1_2_integration_tests.h"
13
Raef Colesdf3f6ce2021-05-26 14:21:07 +010014static struct test_suite_t test_suites[] = {
15
Raef Coles689fee42021-06-10 14:19:07 +010016 {&register_testsuite_bl1_2_integration, 0, 0, 0},
17
Raef Colesdf3f6ce2021-05-26 14:21:07 +010018 /* End of test suites */
19 {0, 0, 0, 0}
20};
21
22enum test_suite_err_t run_bl1_2_testsuite(void)
23{
24 return integ_test("BL1_2", test_suites);
25}