| /* SPDX-License-Identifier: GPL-2.0 */ |
| /* |
| * Copyright (c) 2014, STMicroelectronics International N.V. |
| */ |
| |
| #ifndef __ADBG_INT_H |
| #define __ADBG_INT_H |
| #include <adbg.h> |
| #include <stdarg.h> |
| #include <stdio.h> |
| #include <stdlib.h> |
| #include <string.h> |
| #include <sys/param.h> |
| #include <sys/queue.h> |
| |
| #include "security_utils_hex.h" |
| |
| typedef struct ADBG_Result { |
| int NumTests; |
| int NumFailedTests; |
| int NumSubTests; |
| int NumFailedSubTests; |
| int NumSubCases; |
| int NumFailedSubCases; |
| int FirstFailedRow; |
| char const *FirstFailedFile_p; |
| bool AbortTestSuite; |
| } ADBG_Result_t; |
| |
| TAILQ_HEAD(ADBG_SubCaseHead, ADBG_SubCase); |
| typedef struct ADBG_SubCaseHead ADBG_SubCaseHead_t; |
| |
| typedef struct ADBG_SubCase ADBG_SubCase_t; |
| struct ADBG_SubCase { |
| char *TestID_p; |
| char *Title_p; |
| ADBG_Result_t Result; |
| ADBG_SubCase_t *Parent_p; /* The SubCase where this SubCase was added */ |
| ADBG_SubCaseHead_t SubCasesList; /* SubCases created in this SubCase*/ |
| TAILQ_ENTRY(ADBG_SubCase) Link; |
| }; |
| |
| /* Typedefed in t_adbg.h */ |
| struct ADBG_Case { |
| const struct adbg_case_def *case_def; |
| |
| ADBG_SubCase_t *CurrentSubCase_p; |
| ADBG_SubCase_t *FirstSubCase_p; |
| |
| ADBG_Result_t Result; |
| TAILQ_ENTRY(ADBG_Case) Link; |
| }; |
| |
| typedef struct { |
| ADBG_Case_t *Case_p; |
| ADBG_SubCase_t *CurrentSubCase_p; |
| } ADBG_SubCase_Iterator_t; |
| |
| bool ADBG_Case_SubCaseIsMain(const ADBG_Case_t *const Case_p, |
| const ADBG_SubCase_t *const SubCase_p); |
| |
| void ADBG_Case_IterateSubCase(ADBG_Case_t *Case_p, |
| ADBG_SubCase_Iterator_t *Iterator_p); |
| |
| ADBG_SubCase_t *ADBG_Case_NextSubCase(ADBG_SubCase_Iterator_t *Iterator_p); |
| |
| ADBG_Case_t *ADBG_Case_New(const struct adbg_case_def *case_def); |
| |
| void ADBG_Case_Delete(ADBG_Case_t *Case_p); |
| |
| bool ADBG_TestIDMatches(const char *const TestID_p, |
| const char *const Argument_p); |
| |
| #define IDENTIFIER_NOT_USED(x) { if (sizeof(&x)) {} } |
| |
| #endif /* __ADBG_INT_H */ |