|
|
|
@ -39,6 +39,7 @@ |
|
|
|
|
int main(int argc, char **argv) { |
|
|
|
|
int four[4]; |
|
|
|
|
int five[5]; |
|
|
|
|
gpr_uint32 bitset = 0; |
|
|
|
|
grpc_test_init(argc, argv); |
|
|
|
|
|
|
|
|
|
GPR_ASSERT(GPR_MIN(1, 2) == 1); |
|
|
|
@ -55,5 +56,18 @@ int main(int argc, char **argv) { |
|
|
|
|
GPR_ASSERT(GPR_ARRAY_SIZE(four) == 4); |
|
|
|
|
GPR_ASSERT(GPR_ARRAY_SIZE(five) == 5); |
|
|
|
|
|
|
|
|
|
GPR_ASSERT(GPR_BITCOUNT((1u << 31) - 1) == 31); |
|
|
|
|
GPR_ASSERT(GPR_BITCOUNT(1u << 3) == 1); |
|
|
|
|
GPR_ASSERT(GPR_BITCOUNT(0) == 0); |
|
|
|
|
|
|
|
|
|
GPR_ASSERT(GPR_BITSET(&bitset, 3) == 8); |
|
|
|
|
GPR_ASSERT(GPR_BITCOUNT(bitset) == 1); |
|
|
|
|
GPR_ASSERT(GPR_BITGET(bitset, 3) == 1); |
|
|
|
|
GPR_ASSERT(GPR_BITSET(&bitset, 1) == 10); |
|
|
|
|
GPR_ASSERT(GPR_BITCOUNT(bitset) == 2); |
|
|
|
|
GPR_ASSERT(GPR_BITCLEAR(&bitset, 3) == 2); |
|
|
|
|
GPR_ASSERT(GPR_BITCOUNT(bitset) == 1); |
|
|
|
|
GPR_ASSERT(GPR_BITGET(bitset, 3) == 0); |
|
|
|
|
|
|
|
|
|
return 0; |
|
|
|
|
} |
|
|
|
|