diff options
author | yang-g <yangg@google.com> | 2015-07-24 14:38:26 -0700 |
---|---|---|
committer | yang-g <yangg@google.com> | 2015-07-24 14:38:26 -0700 |
commit | c9c69e27dad583249f7178dae9a7d949ff7e4246 (patch) | |
tree | 3c881f8a6f25a29c1e199e2d53b2b1a7d70c71a6 /tools | |
parent | 60b653bf35fad97f9b0187922ccea9cfb04f635d (diff) |
Add reconnect interop test client and server
Diffstat (limited to 'tools')
-rw-r--r-- | tools/run_tests/sources_and_headers.json | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/tools/run_tests/sources_and_headers.json b/tools/run_tests/sources_and_headers.json index c13df0dbf8..eebaf1c45d 100644 --- a/tools/run_tests/sources_and_headers.json +++ b/tools/run_tests/sources_and_headers.json @@ -1512,6 +1512,55 @@ { "deps": [ "gpr", + "gpr_test_util", + "grpc", + "grpc++", + "grpc++_test_config", + "grpc++_test_util", + "grpc_test_util" + ], + "headers": [ + "test/proto/empty.grpc.pb.h", + "test/proto/empty.pb.h", + "test/proto/messages.grpc.pb.h", + "test/proto/messages.pb.h", + "test/proto/test.grpc.pb.h", + "test/proto/test.pb.h" + ], + "language": "c++", + "name": "reconnect_interop_client", + "src": [ + "test/cpp/interop/reconnect_interop_client.cc" + ] + }, + { + "deps": [ + "gpr", + "gpr_test_util", + "grpc", + "grpc++", + "grpc++_test_config", + "grpc++_test_util", + "grpc_test_util", + "reconnect_server" + ], + "headers": [ + "test/proto/empty.grpc.pb.h", + "test/proto/empty.pb.h", + "test/proto/messages.grpc.pb.h", + "test/proto/messages.pb.h", + "test/proto/test.grpc.pb.h", + "test/proto/test.pb.h" + ], + "language": "c++", + "name": "reconnect_interop_server", + "src": [ + "test/cpp/interop/reconnect_interop_server.cc" + ] + }, + { + "deps": [ + "gpr", "grpc", "grpc++" ], @@ -11554,6 +11603,23 @@ { "deps": [ "gpr", + "gpr_test_util", + "grpc", + "grpc_test_util" + ], + "headers": [ + "test/core/util/reconnect_server.h" + ], + "language": "c", + "name": "reconnect_server", + "src": [ + "test/core/util/reconnect_server.c", + "test/core/util/reconnect_server.h" + ] + }, + { + "deps": [ + "gpr", "grpc" ], "headers": [ |