-
Notifications
You must be signed in to change notification settings - Fork 27
/
test_common.h
44 lines (31 loc) · 1.34 KB
/
test_common.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#ifndef __TEST_COMMON_H__
#define __TEST_COMMON_H__
#include "wdt.h"
/********************************************************************************
* enums and definitions
*********************************************************************************/
/* preprocessor tweaks to convert "__LINE__" from int to a char string... */
#define STRINGIFY(x) #x
#define TOSTRING(x) STRINGIFY(x)
#define AT __FILE__ ":" TOSTRING(__LINE__)
#define PASS() test_Pass()
#if defined ( __ICCARM__ ) /* IAR-specific pragmas */
/* suppress MISRA rule about using multiple "##" preprocessor directives */
#pragma diag_suppress=Pm086
#endif /* __ICCARM__ */
// Original Fail Preprocessor Directive.
/* #define FAIL(s) test_Fail(AT##": "##s) */
#define FAIL(s) test_Fail(AT": "s)
#define PERF(s) test_Perf(s)
#if defined ( __ICCARM__ ) /* IAR-specific pragmas */
/* restore MISRA rule about using multiple "##" preprocessor directives */
#pragma diag_default=Pm086
#endif /* __ICCARM__ */
/********************************************************************************
* API function prototypes
*********************************************************************************/
void test_Init(void);
void test_Pass(void);
void test_Fail(char *FailureReason);
void test_Perf(char *InfoString);
#endif /* __TEST_COMMON_H__ */