blob: 79f3de6a2cb6b6c98f050c94a074c625b76b08e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#define ABC abc
#undef ABC
#define DEF def
#undef DEF
#define DEF xyz
#define NYDEF ydef
/*
* check-name: dump-macros
* check-command: sparse -E -dD -DIJK=ijk -UNDEF -UNYDEF $file
*
* check-output-ignore
check-output-pattern-1-times: #define __CHECKER__ 1
check-output-contains: #define IJK ijk
check-output-contains: #define DEF xyz
check-output-contains: #define NYDEF ydef
*/
|