mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
345 B
15 lines
345 B
8 years ago
|
#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"); \
|
||
|
}
|
||
|
|
||
|
|