summaryrefslogtreecommitdiffstats
path: root/newlib/testsuite/include/check.h
blob: df7f0cfa2e2d3c67e0eff67fcc36b01916bccaa3 (plain)
1
2
3
4
5
6
7
#define CHECK(a) { \
  if (!(a)) \
    { \
      printf ("Failed " #a " in <%s> at line %d\n", __FILE__, __LINE__); \
      abort(); \
    } \
}