aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2016-03-24 00:18:43 -0700
committerGravatar Craig Tiller <ctiller@google.com>2016-03-24 00:18:43 -0700
commitec0d95ae380b1e630533e35d4ffbd380fd264af9 (patch)
tree318479a4bb9b9b5bc14f06c5db57da52c5f7b63b /test
parent59e49a28e7895cff3abd234931849680d39068b9 (diff)
clang-format
Diffstat (limited to 'test')
-rw-r--r--test/core/http/parser_test.c21
1 files changed, 13 insertions, 8 deletions
diff --git a/test/core/http/parser_test.c b/test/core/http/parser_test.c
index e46b8ebb69..e673f8ebfc 100644
--- a/test/core/http/parser_test.c
+++ b/test/core/http/parser_test.c
@@ -179,26 +179,31 @@ static void test_fails(grpc_slice_split_mode split_mode, char *response) {
}
static const uint8_t failed_test1[] = {
-0x9e,0x48,0x54,0x54,0x50,0x2f,0x31,0x2e,0x30,0x4a,0x48,0x54,0x54,0x30,0x32,0x16,0xa,0x2f,0x48,0x20,0x31,0x2e,0x31,0x20,0x32,0x30,0x31,0x54,0x54,0xb9,0x32,0x31,0x2e,0x20,0x32,0x30,0x20,
+ 0x9e, 0x48, 0x54, 0x54, 0x50, 0x2f, 0x31, 0x2e, 0x30, 0x4a,
+ 0x48, 0x54, 0x54, 0x30, 0x32, 0x16, 0xa, 0x2f, 0x48, 0x20,
+ 0x31, 0x2e, 0x31, 0x20, 0x32, 0x30, 0x31, 0x54, 0x54, 0xb9,
+ 0x32, 0x31, 0x2e, 0x20, 0x32, 0x30, 0x20,
};
typedef struct {
const char *name;
- const uint8_t * data;
+ const uint8_t *data;
size_t length;
} failed_test;
-#define FAILED_TEST(name) {#name, name, sizeof(name)}
+#define FAILED_TEST(name) \
+ { #name, name, sizeof(name) }
failed_test failed_tests[] = {
- FAILED_TEST(failed_test1),
+ FAILED_TEST(failed_test1),
};
static void test_doesnt_crash(failed_test t) {
gpr_log(GPR_DEBUG, "Run previously failed test: %s", t.name);
grpc_http_parser p;
grpc_http_parser_init(&p);
- gpr_slice slice = gpr_slice_from_copied_buffer((const char*)t.data,t.length);
+ gpr_slice slice =
+ gpr_slice_from_copied_buffer((const char *)t.data, t.length);
grpc_http_parser_parse(&p, slice);
gpr_slice_unref(slice);
grpc_http_parser_destroy(&p);
@@ -212,9 +217,9 @@ int main(int argc, char **argv) {
grpc_test_init(argc, argv);
-for (i=0; i<GPR_ARRAY_SIZE(failed_tests); i++) {
-test_doesnt_crash(failed_tests[i]);
-}
+ for (i = 0; i < GPR_ARRAY_SIZE(failed_tests); i++) {
+ test_doesnt_crash(failed_tests[i]);
+ }
for (i = 0; i < GPR_ARRAY_SIZE(split_modes); i++) {
test_succeeds(split_modes[i],