blob: e7188fd040033d8ba7a4ba2168a5dd37884d6da3 [file] [log] [blame]
Raef Coles54940f02022-01-07 12:38:49 +00001/*
2 * Copyright (c) 2017-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
12#include "mcuboot_integration_tests.h"
13
14static struct test_suite_t test_suites[] = {
15 {&register_testsuite_mcuboot_integration, 0, 0, 0},
16
17 /* End of test suites */
18 {0, 0, 0, 0}
19};
20
21enum test_suite_err_t run_mcuboot_testsuite(void)
22{
23 return integ_test("MCUBOOT", test_suites);
24}