diff options
author | Sree Kuchibhotla <sreek@google.com> | 2017-05-05 10:10:26 -0700 |
---|---|---|
committer | Sree Kuchibhotla <sreek@google.com> | 2017-05-05 10:10:26 -0700 |
commit | 9739a2a54dad8cd7f88566ca2819a74d2def81ec (patch) | |
tree | 683f170b1b5d44a2c8c787a69698289653259c01 /test | |
parent | c0a9d1f4252763fe0a37ad9cb6046918ce94a034 (diff) | |
parent | 6815e414a4dbca4d0d4dd62b5ec3c6faa60c9bb9 (diff) |
Merge branch 'master' into epoll_thread_pool
Diffstat (limited to 'test')
-rw-r--r-- | test/cpp/codegen/compiler_test_golden | 6 | ||||
-rw-r--r-- | test/cpp/end2end/grpclb_end2end_test.cc | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/test/cpp/codegen/compiler_test_golden b/test/cpp/codegen/compiler_test_golden index 8e3ae32a49..eb12d371ea 100644 --- a/test/cpp/codegen/compiler_test_golden +++ b/test/cpp/codegen/compiler_test_golden @@ -69,6 +69,9 @@ namespace testing { // ServiceA leading comment 1 class ServiceA final { public: + static constexpr char const* service_full_name() { + return "grpc.testing.ServiceA"; + } class StubInterface { public: virtual ~StubInterface() {} @@ -373,6 +376,9 @@ class ServiceA final { // ServiceB leading comment 1 class ServiceB final { public: + static constexpr char const* service_full_name() { + return "grpc.testing.ServiceB"; + } class StubInterface { public: virtual ~StubInterface() {} diff --git a/test/cpp/end2end/grpclb_end2end_test.cc b/test/cpp/end2end/grpclb_end2end_test.cc index 30e1a1e0c9..8417f1a99c 100644 --- a/test/cpp/end2end/grpclb_end2end_test.cc +++ b/test/cpp/end2end/grpclb_end2end_test.cc @@ -469,6 +469,8 @@ class SingleBalancerTest : public GrpclbEnd2endTest { TEST_F(SingleBalancerTest, Vanilla) { ScheduleResponseForBalancer( 0, BalancerServiceImpl::BuildResponseForBackends(GetBackendPorts()), 0); + // Make sure that trying to connect works without a call. + channel_->GetState(true /* try_to_connect */); // Start servers and send 100 RPCs per server. const auto& statuses_and_responses = SendRpc(kMessage_, 100 * num_backends_); |