blob: 4bd6529ead3196fbd396b39ffffc40330ccc4d5b (
plain)
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
|
#ifdef VERIFY_Z7
# ifndef TEST_Z7
# error "TEST_Z7 incorrectly not defined by debug format selection"
# endif
#else
# ifdef TEST_Z7
# error "TEST_Z7 incorrectly defined by non-debug format selection"
# endif
#endif
#ifdef VERIFY_Zi
# ifndef TEST_Zi
# error "TEST_Zi incorrectly not defined by debug format selection"
# endif
#else
# ifdef TEST_Zi
# error "TEST_Zi incorrectly defined by non-debug format selection"
# endif
#endif
#ifdef VERIFY_ZI
# ifndef TEST_ZI
# error "TEST_ZI incorrectly not defined by debug format selection"
# endif
#else
# ifdef TEST_ZI
# error "TEST_ZI incorrectly defined by non-debug format selection"
# endif
#endif
|