1 /* 2 * Copyright (c) 2001-2019, Arm Limited and Contributors. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #ifndef _RUN_INTEGRATION_TEST_H_ 8 #define _RUN_INTEGRATION_TEST_H_ 9 10 /************************************************************ 11 * 12 * type decelerations 13 * 14 ************************************************************/ 15 /** 16 * Error Codes 17 */ 18 typedef enum RunItError_t 19 { 20 RUNIT_ERROR__OK = 0, 21 RUNIT_ERROR__FAIL = 0x0000FFFF, 22 }RunItError_t; 23 24 /************************************************************ 25 * 26 * externs 27 * 28 ************************************************************/ 29 30 /************************************************************ 31 * 32 * function prototypes 33 * 34 ************************************************************/ 35 36 /** 37 * @brief Call to perform all tests 38 * Performs: 39 * 40 * @return RUNIT_ERROR__OK on success, RUNIT_ERROR__FAIL otherwise 41 */ 42 RunItError_t runIt_all(void); 43 44 #endif //_RUN_INTEGRATION_TEST_H_ 45