summaryrefslogtreecommitdiffstats
path: root/newlib/testsuite/include/check.h
blob: 70a71a1b95a9530e5e90b32b48b3fab3b3f36111 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>
#include <stdlib.h>

#define CHECK(a) { \
  if (!(a)) \
    { \
      printf ("Failed " #a " in <%s> at line %d\n", __FILE__, __LINE__); \
      fflush(stdout); \
      abort(); \
    } \
}