aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/end2end/end2end_test.cc
Commit message (Collapse)AuthorAge
* Removed "<:" bigram confusing gcc 4.4Gravatar David G. Quintas2015-08-11
| | | | | | | | Resulted in error: ```test/cpp/end2end/end2end_test.cc:120: error: ‘<::’ cannot begin a template-argument list test/cpp/end2end/end2end_test.cc:120: note: ‘<:’ is an alternate spelling for ‘[’. Insert whitespace between ‘<’ and ‘::’ test/cpp/end2end/end2end_test.cc:120: note: (if you use ‘-fpermissive’ G++ will accept your code) make: *** [objs/opt/test/cpp/end2end/end2end_test.o] Error 1```
* Fix buildGravatar yang-g2015-08-06
|
* merge with headGravatar yang-g2015-08-06
|\
* | Resolve commentsGravatar yang-g2015-08-06
| |
| * Add tests for C++ propagationGravatar Craig Tiller2015-08-05
| |
* | Add WaitForStateGravatar yang-g2015-08-05
| |
* | clean up and add a testGravatar yang-g2015-08-05
|/
* Merge branch 'primary-goat-whisperer' into the-test-be-sleepyGravatar Craig Tiller2015-08-04
|\
* | Re-enable all the testsGravatar Craig Tiller2015-08-03
| |
* | Line up starting timesGravatar Craig Tiller2015-07-31
| |
* | add a test where a read and a writesdone happen at the same timeGravatar yang-g2015-07-31
| |
| * merge with headGravatar yang-g2015-07-30
| |\ | |/ |/|
| * Add a testGravatar yang-g2015-07-30
| |
* | Merge github.com:grpc/grpc into ↵Gravatar Craig Tiller2015-07-26
|\| | | | | | | | | | | | | sometimes-its-good-just-to-check-in-with-each-other Conflicts: src/core/iomgr/tcp_server_windows.c
| * Merge pull request #2647 from vjpai/deependGravatar Yang Gao2015-07-24
| |\ | | | | | | Dynamic-sized thread pool
| * \ Merge pull request #2655 from vjpai/expecteqGravatar Yang Gao2015-07-24
| |\ \ | | | | | | | | Switch an int to size_t or else it fails on Mac
| * \ \ Merge pull request #2605 from yang-g/fake_transport_security_to_privateGravatar jboeuf2015-07-24
| |\ \ \ | | | | | | | | | | Fake transport security to private
| | | * | Switch an int to size_t or else it fails on MacGravatar vjpai2015-07-24
| | |/ / | |/| |
| | | * Merge branch 'master' into deependGravatar Vijay Pai2015-07-24
| | | |\ | | |_|/ | |/| |
| | | * Start switching everything to dynamic poolGravatar Vijay Pai2015-07-23
| | | |
* | | | Merge github.com:grpc/grpc into ↵Gravatar Craig Tiller2015-07-23
|\ \ \ \ | |_|_|/ |/| | | | | | | sometimes-its-good-just-to-check-in-with-each-other
| | * | Flow control fixGravatar yang-g2015-07-22
| |/ /
| * | Merge pull request #2571 from vjpai/cent6-issuesGravatar Yang Gao2015-07-22
|/| | | | | | | | Remove one range-based for and do appropriate static casts on nullptr
| | * merge head and resolve conflictGravatar yang-g2015-07-22
| | |\ | |_|/ |/| |
| | * move fake_transport_security_credentials to private APIGravatar yang-g2015-07-21
| | |
| * | Remove one range-based for and do appropriate static casts on nullptrGravatar Vijay Pai2015-07-21
| |/
* | Merge github.com:grpc/grpc into now-i-get-to-show-it-to-EVERYBODYGravatar Craig Tiller2015-07-20
|\| | | | | | | | | Conflicts: src/cpp/client/channel_arguments.cc
| * Remove experimental prefixGravatar Craig Tiller2015-07-19
| |
* | Merge github.com:grpc/grpc into now-i-get-to-show-it-to-EVERYBODYGravatar Craig Tiller2015-07-19
|\| | | | | | | | | Conflicts: src/cpp/client/channel_arguments.cc
| * Merge branch 'decompression' of https://github.com/dgquintas/grpc into ↵Gravatar Craig Tiller2015-07-19
| |\ | | | | | | | | | | | | | | | | | | | | | dgquintas-decompression Conflicts: Makefile vsprojects/Grpc.mak
* | | User agent string supportGravatar Craig Tiller2015-07-18
|/ /
| * Removed compression levels from clients and _experimental_'d signature of ↵Gravatar David Garcia Quintas2015-07-17
| | | | | | | | methods manipulating compression algorithms
* | Merge github.com:grpc/grpc into no-worries-i-can-waitGravatar Craig Tiller2015-07-17
|\ \
| | * Merge branch 'master' of github.com:grpc/grpc into decompressionGravatar David Garcia Quintas2015-07-16
| | |\ | | |/ | |/|
| * | Change name of thread_pool files to fixed_size_thread_pool whenGravatar vjpai2015-07-15
| | | | | | | | | | | | appropriate
| | * Merge branch 'master' of github.com:grpc/grpc into decompressionGravatar David Garcia Quintas2015-07-15
| | |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # Conflicts: # Makefile # include/grpc++/client_context.h # include/grpc++/server_context.h # src/cpp/client/client_context.cc # src/cpp/server/server_context.cc # vsprojects/Grpc.mak
| * | | Make thread_pool.h a public headerGravatar Vijay Pai2015-07-15
| | |/ | |/| | | | | | | | | | Rename ThreadPool -> FixedSizeThreadPool to allow for later introduction of DynamicSizeThreadPool
| * | Addressing outstanding typos and commentsGravatar Vijay Pai2015-07-14
| | | | | | | | | | | | Clang-format of changed files
| * | Remove reference to nullptr to avoid compiler seeing ambiguity in gcc-4.4Gravatar vjpai2015-07-14
| | | | | | | | | | | | | | | | | | | | | build. The issue is that gcc below 4.6 require us to explicitly define nullptr, and our explicit definition allows a potential confusion between nullptr->unique_ptr<string> and nullptr->char *->grpc::string->unique_ptr<string>
* | | Update C++ implGravatar Craig Tiller2015-07-13
| | |
* | | Updating wrapped languages to new time functionsGravatar Craig Tiller2015-07-13
| | |
| * | Merge pull request #2289 from ctiller/footprints-on-the-sands-of-timeGravatar Vijay Pai2015-07-10
| |\ \ | | | | | | | | Introduce multiple clocks to GPR
* | \ \ Merge branch 'footprints-on-the-sands-of-time' into no-worries-i-can-waitGravatar Craig Tiller2015-07-10
|\ \ \ \ | |/ / / |/| / / | |/ /
| * | Merge github.com:grpc/grpc into footprints-on-the-sands-of-timeGravatar Craig Tiller2015-07-10
| |\ \
* | | | Compile fix for MacGravatar Craig Tiller2015-07-10
| |/ / |/| |
| | * Merge branch 'master' of github.com:grpc/grpc into decompressionGravatar David Garcia Quintas2015-07-09
| | |\
* | | \ Merge remote-tracking branch 'upstream/master' into security_context2Gravatar yang-g2015-07-09
|\ \ \ \ | | |_|/ | |/| |
| | * | Merge github.com:grpc/grpc into footprints-on-the-sands-of-timeGravatar Craig Tiller2015-07-09
| | |\ \ | | |/ / | |/| |
* | | | resolve commentsGravatar yang-g2015-07-07
| | | |
| * | | Support registering services against specific hostsGravatar Craig Tiller2015-07-07
| | | |