aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp
Commit message (Collapse)AuthorAge
* Merge pull request #9522 from ctiller/bm_perfGravatar Craig Tiller2017-02-08
|\ | | | | Update latency profiler to use (more appropriate) microbenchmarks
* \ Merge pull request #9194 from dgquintas/lb_secure_naming_3Gravatar David G. Quintas2017-02-07
|\ \ | | | | | | Secure naming support for gRPCLB.
| * | Secure naming support for gRPCLBGravatar David Garcia Quintas2017-02-07
| | |
* | | Merge pull request #9619 from ctiller/bm_countersGravatar Craig Tiller2017-02-07
|\ \ \ | |/ / |/| | Add counters for important metrics to bm_fullstack
* | | Fix read from uninitialized memory bug in GrpcBufferWriter.Gravatar Harvey Tuch2017-02-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit fixes an issue in which the following sequence of operations leads to use of uninitialized memory: 1. Caller invokes GrpcBufferWriter::Next(), and then makes use of 8191 bytes in the returned buffer (which is 8192 bytes in size). 2. Caller then returns the unused single byte via GrpcBufferWriter::BackUp(). This method invokes g_core_codegen_interface->grpc_slice_split_tail(), which causes backup_slice_ to be a grpc_slice with one byte. 3. At the next invocation of GrpcBufferWriter::Next(), a reference to the single byte grpc_slice is returned to the caller. The problem here is that the returned reference is to the inlined buffer in the grpc_slice, which is resident in slice_, not the location of the buffer inside slice_buffer_ after g_core_codegen_interface->grpc_slice_buffer_add() in GrpcBufferWriter::Next(). As a result, any data the caller writes to the returned void* data is lost. The solution is to avoid inlined backup slices.
| | * Merge github.com:grpc/grpc into bm_perfGravatar Craig Tiller2017-02-07
| | |\ | |_|/ |/| |
* | | Merge pull request #9590 from sreecha/micro_bmGravatar Sree Kuchibhotla2017-02-07
|\ \ \ | | | | | | | | Add Streaming ping-pong micro-benchmarks
| | * | Add allocations/iteration counters to bm_fullstackGravatar Craig Tiller2017-02-07
| | | |
| | * | Add counters for mutex acquisitions, expose in bm_fullstackGravatar Craig Tiller2017-02-07
| |/ / |/| |
* | | Merge pull request #9419 from danzh2010/shutdowntestGravatar Yang Gao2017-02-06
|\ \ \ | | | | | | | | Change shutdown_test.cc to use credential provider API to test against different credential types
| | * | Address code review commentsGravatar Sree Kuchibhotla2017-02-03
| | | |
| | * | cr commentsGravatar Sree Kuchibhotla2017-02-03
| | | |
| | * | Add commentGravatar Sree Kuchibhotla2017-02-03
| | | |
| | * | New microbenchmarks for Streaming Ping pong calls and messagesGravatar Sree Kuchibhotla2017-02-03
| | | |
* | | | Merge branch 'bwest' into assert_writesGravatar Craig Tiller2017-02-03
|\ \ \ \
| * \ \ \ Merge github.com:grpc/grpc into bwestGravatar Craig Tiller2017-02-03
| |\ \ \ \ | | | |/ / | | |/| |
| | * | | Merge pull request #9572 from dgquintas/interop_server_mac_slice_crashGravatar David G. Quintas2017-02-03
| | |\ \ \ | | | | | | | | | | | | Fixed invalid handling of slice data in interop_server
| | * \ \ \ Merge pull request #9487 from ctiller/bm_streamGravatar Sree Kuchibhotla2017-02-02
| | |\ \ \ \ | | | | | | | | | | | | | | One-way streaming microbenchmarks
| | | | * | | Fixed invalid handling of slice data in interop_serverGravatar David Garcia Quintas2017-02-02
| | | |/ / / | | |/| | |
| | | | | * Merge branch 'bm_stream' into bm_perfGravatar Craig Tiller2017-02-02
| | | | | |\ | | | | |_|/ | | | |/| |
| * | | | | Merge github.com:grpc/grpc into bwestGravatar Craig Tiller2017-02-02
| |\| | | |
| | * | | | Merge pull request #9456 from jtattermusch/cmake_convenience_targetsGravatar Jan Tattermusch2017-02-02
| | |\ \ \ \ | | | | | | | | | | | | | | Big improvements to CMake build
| | * \ \ \ \ Merge pull request #9545 from yang-g/fixGravatar Yang Gao2017-02-01
| | |\ \ \ \ \ | | | | | | | | | | | | | | | | Minor fixes
| * | | | | | | Improve sync streaming benchmark, fix deadlock that can occur sometimesGravatar Craig Tiller2017-02-01
| | | | | | | |
| * | | | | | | Merge github.com:grpc/grpc into bwestGravatar Craig Tiller2017-02-01
| |\| | | | | |
| | | | | * | | Merge github.com:grpc/grpc into bm_streamGravatar Craig Tiller2017-02-01
| | | | | |\ \ \ | | | |_|_|/ / / | | |/| | | | |
| | | | * | | | windows compilation fixesGravatar Jan Tattermusch2017-02-02
| | | |/ / / / | | |/| | | |
| | | * | | | Minor fixesGravatar yang-g2017-02-01
| | | | | | |
| * | | | | | Merge github.com:grpc/grpc into bwestGravatar Craig Tiller2017-02-01
| |\ \ \ \ \ \ | | | |/ / / / | | |/| | | |
| | | * | | | Merge branch 'master' into poll-cv-disableGravatar Sree Kuchibhotla2017-02-01
| | | |\ \ \ \ | | | |/ / / / | | |/| | | |
| | * | | | | Merge pull request #9364 from rjshade/sanitizer_slowdownGravatar Yang Gao2017-01-31
| | |\ \ \ \ \ | | | | | | | | | | | | | | | | Replaces macros with methods for test timeout scaling
| * | | | | | | Merge github.com:grpc/grpc into bwestGravatar Craig Tiller2017-01-31
| |\| | | | | |
| | | | | * | | Merge github.com:grpc/grpc into bm_streamGravatar Craig Tiller2017-01-31
| | | | | |\ \ \ | | | |_|_|/ / / | | |/| | | | |
| | | | * | | | Merge branch 'master' into poll-cv-disableGravatar Sree Kuchibhotla2017-01-31
| | | | |\ \ \ \ | | | |_|/ / / / | | |/| | | | |
| | | | | | | * Update latency profiler to use (more appropriate) microbenchmarksGravatar Craig Tiller2017-01-31
| | | | | | |/ | | | | | |/|
| | | * | | | Replace timeout/scaling macros with functions.Gravatar Robbie Shade2017-01-31
| | | | | | |
| | | | | | * Change shutdown_test.cc to use credential provider API to test againstGravatar Dan Zhang2017-01-31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | different credential types.
| | * | | | | Merge pull request #8066 from y-zeng/cli_main_forkGravatar Yuchen Zeng2017-01-31
| | |\ \ \ \ \ | | | |/ / / / | | |/| | | | gRPC CLI stream RPC support
| | | * | | | Support bidirectional stream RPCGravatar Yuchen Zeng2017-01-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add bidistream test Add bad request tests Replace deprecated DynamicMessageFactory constructor
* | | | | | | Add a test verifying number of writes per RPC is reasonableGravatar Craig Tiller2017-01-30
| |_|_|_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | Mostly this is code copied from bm_fullstack and rephrased as a test. I'm resisting the urge to unify it however, as I expect this code will evolve differently over time.
| | | | * | Merge branch 'master' into poll-cv-disableGravatar Sree Kuchibhotla2017-01-30
| | | | |\|
* | | | | | Add other fixtures to pump testsGravatar Craig Tiller2017-01-27
| | | | | |
* | | | | | Add server->client long-lived streamingGravatar Craig Tiller2017-01-27
| | | | | |
* | | | | | Add client->server long-lived streamingGravatar Craig Tiller2017-01-27
|/ / / / /
* | | | | Merge branch 'bm_msgsz' into bm_countwritesGravatar Craig Tiller2017-01-27
|\| | | |
| * | | | Merge github.com:grpc/grpc into bm_msgszGravatar Craig Tiller2017-01-27
| |\ \ \ \ | | | |_|/ | | |/| |
| | | | * Excluded async_client_sync_server_* tests for poll-cv engine since itGravatar Sree Kuchibhotla2017-01-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | sometimes get stuck (or extremely slow). (https://github.com/grpc/grpc/issues/8545) created to debug poll-cv issues with async_client_sync_server perf tests
| | * | | Merge github.com:grpc/grpc into rollfwdGravatar Craig Tiller2017-01-27
| | |\ \ \ | | | | |/ | | | |/|
* | | / | Track writes/RPC in microbenchmarkGravatar Craig Tiller2017-01-26
|/ / / /
* | | | Merge branch 'maxmsgsz' into bm_msgszGravatar Craig Tiller2017-01-26
|\ \ \ \ | | |/ / | |/| |