Raef Coles | 54940f0 | 2022-01-07 12:38:49 +0000 | [diff] [blame^] | 1 | /* |
2 | * Copyright (c) 2022, Arm Limited. All rights reserved. | ||||
3 | * | ||||
4 | * SPDX-License-Identifier: BSD-3-Clause | ||||
5 | * | ||||
6 | */ | ||||
7 | |||||
8 | #ifndef MCUBOOT_SUITES_H | ||||
9 | #define MCUBOOT_SUITES_H | ||||
10 | |||||
11 | #ifdef __cplusplus | ||||
12 | extern "C" { | ||||
13 | #endif | ||||
14 | |||||
15 | #include "test_framework_error_codes.h" | ||||
16 | |||||
17 | enum test_suite_err_t run_mcuboot_testsuite(void); | ||||
18 | |||||
19 | #ifdef __cplusplus | ||||
20 | } | ||||
21 | #endif | ||||
22 | |||||
23 | #endif /* MCUBOOT_SUITES_H */ |