aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
Commit message (Collapse)AuthorAge
* Add a test that measures flow control stalls in a deterministic wayGravatar Craig Tiller2017-02-13
|
* Merge pull request #7047 from daniel-j-born/server_expand_addrsGravatar Dan Born2017-02-10
|\ | | | | Add a flag that causes wildcard IP addresses on servers to be expanded
| * API changesGravatar Dan Born2017-02-09
| |
| * Expand wildcard IP addresses on servers.Gravatar Dan Born2017-02-09
| |
* | Add debug macrosGravatar Craig Tiller2017-02-09
| |
* | Make combiners refcounted, to facilitate sharingGravatar Craig Tiller2017-02-09
|/
* Add lots of castsGravatar Craig Tiller2017-02-09
|
* Use atomics for memory countersGravatar Craig Tiller2017-02-08
| | | | | Avoids two mutex acquisitions per allocation in bm_fullstack (where we also count memory allocations)
* 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 #9617 from rjshade/add_exec_ctx_to_orphan_callbackGravatar Robbie Shade2017-02-07
|\ \ \ | | | | | | | | Adds an exec_ctx argument to orphan_cb in udp_server
* \ \ \ Merge pull request #9588 from ctiller/fuzzing-memoryGravatar Craig Tiller2017-02-07
|\ \ \ \ | | | | | | | | | | Add examples from fuzzer server
* \ \ \ \ Merge pull request #9619 from ctiller/bm_countersGravatar Craig Tiller2017-02-07
|\ \ \ \ \ | | | | | | | | | | | | Add counters for important metrics to bm_fullstack
* \ \ \ \ \ Merge pull request #9054 from sreecha/pollset_set_testGravatar Sree Kuchibhotla2017-02-07
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | | Tests for pollset_set.
* | | | | | 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 pull request #9539 from markdroth/canonicalize_server_uriGravatar Mark D. Roth2017-02-07
|\ \ \ \ \ \ | | | | | | | | | | | | | | Canonify server URI when setting the channel arg.
| | | | | | * 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
* \ \ \ \ \ \ \ Merge pull request #9596 from muxi/cronet-tests-in-jenkinsGravatar Muxi Yan2017-02-07
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Add Cronet core tests to Jenkins
| | | | | * | | | 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 remote-tracking branch 'upstream/master' into canonicalize_server_uriGravatar Mark D. Roth2017-02-07
| | | |\ \ \ \ \ | |_|_|/ / / / / |/| | | | | | |
| | | | | | * | Adds an exec_ctx argument to orphan_cb in udp_serverGravatar Robbie Shade2017-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
| | * | | | | | Add Cronet core tests to JenkinsGravatar Muxi Yan2017-02-06
| | | | | | | |
| | | | | | * | Merge github.com:grpc/grpc into fuzzing-memoryGravatar Craig Tiller2017-02-06
| | | | | | |\ \ | |_|_|_|_|_|/ / |/| | | | | | |
| | | | * | | | Merge remote-tracking branch 'upstream/master' into canonicalize_server_uriGravatar Mark D. Roth2017-02-06
| | | | |\ \ \ \ | |_|_|_|/ / / / |/| | | | | | |
* | | | | | | | Merge pull request #9511 from ctiller/assert_writesGravatar Craig Tiller2017-02-04
|\ \ \ \ \ \ \ \ | |_|/ / / / / / |/| | | | | | | Add a test verifying number of writes per RPC is reasonable
| | | * | | | | Address code review commentsGravatar Sree Kuchibhotla2017-02-03
| | | | | | | |
| | | * | | | | cr commentsGravatar Sree Kuchibhotla2017-02-03
| | | | | | | |
* | | | | | | | Merge pull request #9582 from ctiller/debug_helpersGravatar Craig Tiller2017-02-03
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Add some debug utilities
| | | | * | | | | Add commentGravatar Sree Kuchibhotla2017-02-03
| | | | | | | | |
| | | | * | | | | New microbenchmarks for Streaming Ping pong calls and messagesGravatar Sree Kuchibhotla2017-02-03
| | | | | | | | |
| | | | | | | * | Add examples from fuzzer serverGravatar Craig Tiller2017-02-03
| |_|_|_|_|_|/ / |/| | | | | | |
| | * | | | | | Merge branch 'bwest' into assert_writesGravatar Craig Tiller2017-02-03
| | |\ \ \ \ \ \
| | | * | | | | | Test fixesGravatar Craig Tiller2017-02-03
| | | | | | | | |
| | | * | | | | | Fix WindowsGravatar Craig Tiller2017-02-03
| | | | | | | | |
| * | | | | | | | Fix BazelGravatar Craig Tiller2017-02-03
| | | | | | | | |
| * | | | | | | | Fix include guardsGravatar Craig Tiller2017-02-03
| | | | | | | | |
| * | | | | | | | Merge branch 'debug_helpers' of github.com:ctiller/grpc into debug_helpersGravatar Craig Tiller2017-02-03
| |\ \ \ \ \ \ \ \
| * | | | | | | | | Put files in a better placeGravatar Craig Tiller2017-02-03
| |/ / / / / / / /
* | | | | | | | | Merge pull request #9558 from rjshade/add_on_write_to_udp_serverGravatar Robbie Shade2017-02-03
|\ \ \ \ \ \ \ \ \ | |_|_|_|_|/ / / / |/| | | | | | | | Add an on_write callback to the UDP server.
| | | * | | | | | Merge branch 'bwest' into assert_writesGravatar Craig Tiller2017-02-03
| | | |\| | | | |
| | * | | | | | | Add some debug utilitiesGravatar Craig Tiller2017-02-03
| |/ / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This PR adds a set of debug helpers that are intended for calling only from gdb. They cross abstraction boundaries and allow quickly accessing one thing from another thing. I expect to grow this library significantly over time to aid debugging tricky problems.
| | | | | * | | Merge remote-tracking branch 'upstream/master' into canonicalize_server_uriGravatar Mark D. Roth2017-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
| |/ / / / / / / / |/| | | | | | | |