diff options
author | David Garcia Quintas <dgq@google.com> | 2016-05-05 18:25:34 -0700 |
---|---|---|
committer | David Garcia Quintas <dgq@google.com> | 2016-05-05 18:26:13 -0700 |
commit | 303d3082a07363c29dc747e986658fd6c8dc4053 (patch) | |
tree | b4def2842e1c764354e1c190218c8b02bfe1a26f /test/cpp/interop | |
parent | 900ed58732c139f66fa93e06ba0b136dc5067868 (diff) |
Fixed compression interop and re-enable for C++.
Also added some defense in depth for compression algorithms in the
receive path.
Diffstat (limited to 'test/cpp/interop')
-rw-r--r-- | test/cpp/interop/interop_client.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cpp/interop/interop_client.cc b/test/cpp/interop/interop_client.cc index 22293d211f..314d6c8eae 100644 --- a/test/cpp/interop/interop_client.cc +++ b/test/cpp/interop/interop_client.cc @@ -60,7 +60,7 @@ static const char* kRandomFile = "test/cpp/interop/rnd.dat"; namespace { // The same value is defined by the Java client. const std::vector<int> request_stream_sizes = {27182, 8, 1828, 45904}; -const std::vector<int> response_stream_sizes = {31415, 9, 2653, 58979}; +const std::vector<int> response_stream_sizes = {31415, 59, 2653, 58979}; const int kNumResponseMessages = 2000; const int kResponseMessageSize = 1030; const int kReceiveDelayMilliSeconds = 20; |