aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp
Commit message (Collapse)AuthorAge
* Addressed Vijay's code review commentsGravatar Moiz Haidry2018-10-10
|
* Benchmark test for callback unary gRPCGravatar Moiz Haidry2018-10-08
| | | | Every thread intitiates multiple RPCs. The Callback of the unary RPC then issues a new RPC and this goes until the benchmark shuts down. For shutdown the main thread waits on a conditional variable. After shutdown the callbacks increment a rpcs done variable and once the the rpcs done equate the the total number of outstanding rpcs, the last callback performing the increment operation also issues a signal to wake up the main thread. The mainthread process to join the other threads and perform cleanup
* Merge branch 'master' of https://github.com/grpc/grpc into channel-trace-sizeGravatar ncteisen2018-10-04
|\
| * Split grpc_cli target into two targetsGravatar Spencer Fang2018-10-04
| | | | | | | | | | | | Let's have a util target that contains everything except for the CLI front end. This way, users can depend on the util classes without any risk of CLI flag collisions.
| * Merge pull request #16742 from Capstan/cli-call-credsGravatar Yang Gao2018-10-03
| |\ | | | | | | Fix inverted logic for --call_creds=none.
| * \ Merge pull request #16716 from yashykt/interceptors_initialGravatar Yash Tibrewal2018-10-03
| |\ \ | | | | | | | | Create interfaces and initial plumbing for interception API
* | | | Channel trace is limited by memoryGravatar ncteisen2018-10-02
|/ / /
| * | Merge branch 'master' into interceptors_initialGravatar Yash Tibrewal2018-10-02
| |\ \
* | | | Fix the unused result error in client_channel_stress_test.cc.Gravatar Guantao Liu2018-10-01
| |/ / |/| |
| | * Fix inverted logic for --call_creds=none.Gravatar Nathan Herring2018-10-01
| | | | | | | | | | | | Fixes #16622. Follow up to change 6e3938c. Thanks to @bluecmd for pointing it out.
* | | Add documentation for running microbenchmarks with other toolingGravatar Hope Casey-Allen2018-09-28
| |/ |/|
* | Channelz C++ Socket supportGravatar ncteisen2018-09-27
| |
* | reviewer feedbackGravatar ncteisen2018-09-27
| |
* | reviewer feedbackGravatar ncteisen2018-09-27
| |
* | Simplifiy transport querying functionGravatar ncteisen2018-09-27
| |
| * Create interfaces and initial plumbing for interception APIGravatar Yash Tibrewal2018-09-26
|/
* Warn on non-virtual destructor if class has virtual functionsGravatar Vijay Pai2018-09-20
|
* Merge pull request #16646 from vjpai/callback_codegen_client_unaryGravatar Vijay Pai2018-09-20
|\ | | | | EXPERIMENTAL: Codegen for callback client unary calls
* \ Merge pull request #16629 from hcaseyal/fix_hpack_microbenchmarksGravatar hcaseyal2018-09-20
|\ \ | | | | | | Add benchmarks for on_initial_header
| | * Add a virtual destructor to the new class with virtual methodsGravatar Vijay Pai2018-09-20
| | |
| * | Destroy metadata buffer at end of benchmark loopGravatar Hope Casey-Allen2018-09-20
| | |
| * | Reassign arena pointer instead of stomping on memoryGravatar Hope Casey-Allen2018-09-20
| | |
| * | Destroy arena at end of benchmark to not leak memoryGravatar Hope Casey-Allen2018-09-19
| | |
| * | Increase initial arena size to be more representative of real workload ↵Gravatar Hope Casey-Allen2018-09-19
| | | | | | | | | | | | scenario and increase frequency of recreating the arena to avoid oom
| * | Move arena create outside of benchmark, format, and typo fixGravatar Hope Casey-Allen2018-09-19
| | |
* | | Fix tag variableGravatar Juanli Shen2018-09-19
| | |
| | * Merge branch 'master' into callback_codegen_client_unaryGravatar Vijay Pai2018-09-19
| | |\ | |_|/ |/| |
* | | Merge pull request #16655 from vjpai/callback_tidyGravatar Vijay Pai2018-09-19
|\ \ \ | | | | | | | | Callback API: Fix clang-tidy concerns
* \ \ \ Merge pull request #16651 from AspirinSJL/improve_force_creationGravatar Juanli Shen2018-09-19
|\ \ \ \ | | | | | | | | | | Change force_creation from atm to bool
* \ \ \ \ Merge pull request #16624 from vjpai/callback_alarmsGravatar Vijay Pai2018-09-19
|\ \ \ \ \ | | | | | | | | | | | | EXPERIMENTAL: Add callback-based alarms
| | | * | | Fix clang-tidy concernsGravatar Vijay Pai2018-09-19
| |_|/ / / |/| | | |
| | * | | Change force_creation from atm to boolGravatar Juanli Shen2018-09-19
| | | | |
| | | | * Add more test casesGravatar Vijay Pai2018-09-18
| | | | |
| | | | * Fix conflictGravatar Vijay Pai2018-09-18
| | | | |
| | | | * Merge branch 'master' into callback_codegen_client_unaryGravatar Vijay Pai2018-09-18
| | | | |\ | |_|_|_|/ |/| | | |
| | | | * Add a testGravatar Vijay Pai2018-09-18
| | | | |
* | | | | Merge pull request #16638 from vjpai/callback_exceptionsGravatar Vijay Pai2018-09-18
|\ \ \ \ \ | | | | | | | | | | | | EXPERIMENTAL: Catch exceptions in user callbacks
| | | | | * fix golden fileGravatar Vijay Pai2018-09-18
| | | | |/ | | | |/|
* | | / | Only output stats if they were collectedGravatar Noah Eisen2018-09-17
| |_|/ / |/| | |
| * | | Catch exceptions in user callbacksGravatar Vijay Pai2018-09-14
|/ / /
| | * Fixing benchmark name and adding a new oneGravatar Hope Casey-Allen2018-09-13
| |/ |/|
| * Add callback-based alarmsGravatar Vijay Pai2018-09-13
|/
* Merge pull request #16299 from Capstan/cli-client-certGravatar Yang Gao2018-09-13
|\ | | | | Add flags to use client certs for cli.
* \ Merge pull request #16611 from adelez/long_connGravatar adelez2018-09-12
|\ \ | | | | | | Added long_connection test.
| * | Change the test name to long_lived_channelGravatar Adele Zhou2018-09-12
| | |
| * | Added long_connection test.Gravatar Adele Zhou2018-09-12
| | |
* | | Merge pull request #16492 from vjpai/client_callbackGravatar Vijay Pai2018-09-12
|\ \ \ | |/ / |/| | EXPERIMENTAL: C++ generic client-side unary callback API
* | | Merge pull request #16420 from apolcyn/localhost_windows_hackGravatar apolcyn2018-09-11
|\ \ \ | | | | | | | | When using c-ares, resolve ip literals and Windows localhost on our own
| * | | Resolve ip literals and Windows localhost manually when using c-aresGravatar Alexander Polcyn2018-09-11
| | | |
* | | | Merge pull request #16360 from ncteisen/channelz-cpp-serverGravatar Noah Eisen2018-09-11
|\ \ \ \ | |/ / / |/| | | Channelz++ Part 3: GetServers Support