parent
1e7aea65e6
commit
38a6582145
5 changed files with 99 additions and 6 deletions
@ -0,0 +1,18 @@ |
||||
#include <string.h> |
||||
#include <config9a.h> |
||||
#include <config9b.h> |
||||
|
||||
#if defined(A_UNDEFINED) || defined(B_UNDEFINED) |
||||
#error "Should not be defined" |
||||
#endif |
||||
|
||||
#if !defined(A_DEFINED) || !defined(B_DEFINED) |
||||
#error "Should be defined" |
||||
#endif |
||||
|
||||
int main(int argc, char **argv) { |
||||
return strcmp(A_STRING, "foo") |
||||
|| strcmp(B_STRING, "foo") |
||||
|| A_INT != 42 |
||||
|| B_INT != 42; |
||||
} |
Loading…
Reference in new issue