verify.h 677 B

1234567891011121314151617181920212223242526272829
  1. #ifdef VERIFY_Z7
  2. # ifndef TEST_Z7
  3. # error "TEST_Z7 incorrectly not defined by debug format selection"
  4. # endif
  5. #else
  6. # ifdef TEST_Z7
  7. # error "TEST_Z7 incorrectly defined by non-debug format selection"
  8. # endif
  9. #endif
  10. #ifdef VERIFY_Zi
  11. # ifndef TEST_Zi
  12. # error "TEST_Zi incorrectly not defined by debug format selection"
  13. # endif
  14. #else
  15. # ifdef TEST_Zi
  16. # error "TEST_Zi incorrectly defined by non-debug format selection"
  17. # endif
  18. #endif
  19. #ifdef VERIFY_ZI
  20. # ifndef TEST_ZI
  21. # error "TEST_ZI incorrectly not defined by debug format selection"
  22. # endif
  23. #else
  24. # ifdef TEST_ZI
  25. # error "TEST_ZI incorrectly defined by non-debug format selection"
  26. # endif
  27. #endif