aboutsummaryrefslogtreecommitdiff
path: root/tests/common/unittests.h
blob: c2b470aded7541e7b2614880a21dcf95814c250f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdio.h>

#define COMMENT(x) printf("\n----" x "----\n");
#define STR(x) #x
#define STR2(x) STR(x)
#define TEST(x) \
    if (!(x)) { \
        fprintf(stderr, "\033[31;1mFAILED:\033[22;39m " __FILE__ ":" STR2(__LINE__) " " #x "\n"); \
        status = 1; \
    } else { \
        printf("\033[32;1mOK:\033[22;39m " #x "\n"); \
    }