aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
Commit message (Collapse)AuthorAge
...
* | | | Merge github.com:grpc/grpc into c++apiGravatar Craig Tiller2015-02-17
|\| | | | | | | | | | | | | | | | | | | Conflicts: Makefile
| | | * Add proto copyrightsGravatar Craig Tiller2015-02-16
| | | |
| | | * Add copyrights to Python codeGravatar Craig Tiller2015-02-16
| | | |
| | | * Copyright checkerGravatar Craig Tiller2015-02-16
| | | | | | | | | | | | | | | | | | | | | | | | Update LICENSE text to 2015, implement a checker that validates whether a 2014 or 2015 version of the license is on each {.c,.cc,.h} file. Fix the ones that are missing it.
* | | | Merge github.com:grpc/grpc into c++apiGravatar Craig Tiller2015-02-16
|\ \ \ \ | | |_|/ | |/| |
| | * | Merge github.com:grpc/grpc into udsGravatar Craig Tiller2015-02-16
| | |\ \ | | |/ / | |/| |
| | | * The Python interoperability testing server.Gravatar Nathaniel Manista2015-02-15
| | |/ | |/|
| | * Accidental change fixedGravatar Craig Tiller2015-02-13
| | |
| | * clang-formatGravatar Craig Tiller2015-02-13
| | |
| | * Unix domain socket supportGravatar Craig Tiller2015-02-13
| | |
* | | Merge pull request #18 from yang-g/c++apiGravatar Craig Tiller2015-02-13
|\ \ \ | | | | | | | | Add missing APIs and a first metadata test, and test passes
| * | | Add missing APIs and a first metadata test, and test passesGravatar Yang Gao2015-02-13
| | | |
* | | | Compile fixesGravatar Craig Tiller2015-02-13
|/ / /
* | | add a simple server streaming e2e test, which passesGravatar Yang Gao2015-02-13
| | |
| * | Merge pull request #515 from a11r/new_flingGravatar Craig Tiller2015-02-13
| |\ \ | | |/ | |/| Switching the fling benchmarks to the new API.
| | * Addressed review commentsGravatar Abhishek Kumar2015-02-13
| | |
* | | change ServerAsyncReader API and add a simple clientstreaming test, it passesGravatar Yang Gao2015-02-13
| | |
| | * clang formattingGravatar Abhishek Kumar2015-02-13
| | |
| | * Btach handling of unaryGravatar Abhishek Kumar2015-02-13
| | |
| | * Initial draft of server using new async APIGravatar Abhishek Kumar2015-02-13
| | |
* | | add a bidi test and simplify the test a bit, test passesGravatar Yang Gao2015-02-13
| | |
* | | let the client/server use their own cq and pretty the testGravatar Yang Gao2015-02-12
| | |
* | | Add end2end async unary single threaded test (compiles)Gravatar Craig Tiller2015-02-12
| | |
* | | Merge github.com:google/grpc into c++apiGravatar Craig Tiller2015-02-12
|\| | | | | | | | | | | | | | Conflicts: Makefile
| * | Merge pull request #508 from nicolasnoble/make-protobufGravatar Craig Tiller2015-02-12
| |\ \ | | | | | | | | Compiling protobuf from the Makefile if we don't have it on the system.
| | * | Forgot to add the test file.Gravatar Nicolas Noble2015-02-12
| | | |
* | | | Fix end2end leaksGravatar Craig Tiller2015-02-12
| | | |
* | | | Merge github.com:grpc/grpc into c++apiGravatar Craig Tiller2015-02-12
|\| | |
| * | | Added useful behavior for empty batchGravatar murgatroid992015-02-12
| |/ /
* | | Multi-completion-queue-serverGravatar Craig Tiller2015-02-12
| | | | | | | | | | | | | | | | | | Allow binding a different completion queue to each registered method. This will allow multiplexing for the C++ server between sync & async methods more easily.
* | | Fix up C testsGravatar Craig Tiller2015-02-11
| | |
* | | Merge github.com:grpc/grpc into c++apiGravatar Craig Tiller2015-02-11
|\| |
| * | Merge pull request #475 from dklempner/epollGravatar Craig Tiller2015-02-11
| |\ \ | | | | | | | | Epoll based multipoller
* | | | Make end2end_test use fewer threadsGravatar Craig Tiller2015-02-11
| | | | | | | | | | | | | | | | Helps finding interesting threads in gdb much easier
| * | | Merge pull request #471 from jboeuf/call_host_name_checkGravatar Nicolas Noble2015-02-11
| |\ \ \ | | | | | | | | | | Adding call host (:authority header) check in the secure channel.
| | | * \ Merge branch 'master' into epollGravatar David Klempner2015-02-11
| | | |\ \ | | |_|/ / | |/| | |
| | | | * Updated rest of client to new APIGravatar Abhishek Kumar2015-02-11
| | | | |
* | | | | Merge github.com:grpc/grpc into c++apiGravatar Craig Tiller2015-02-11
|\| | | |
| * | | | Merge pull request #448 from nicolasnoble/grpc-win32Gravatar Craig Tiller2015-02-11
| |\ \ \ \ | | | | | | | | | | | | Windows port of iomgr.
* | | | | | Merge github.com:grpc/grpc into c++apiGravatar Craig Tiller2015-02-11
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: test/cpp/qps/server.cc
| | | | * | Epoll based multipollerGravatar David Klempner2015-02-10
| | |_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a multipoller based on epoll rather than poll. Note that this implementation is aimed at correctness rather than performance, although it should immediately have better scalability to large numbers of FDs, both due to epoll's O(1) sized API and due to not needing to wake up polling threads to do interest set changes. One notable difference here is that we directly attach a wakeup fd rather than using the freelisting kick mechanism that the poll() based implementations use, because modifying the epoll set to use a different kick fd each time isn't free.
* | | | | Allow two completion queues on request callGravatar Craig Tiller2015-02-10
| | | | | | | | | | | | | | | | | | | | | | | | | One for the new rpc notification, the other is bound to the new call. This will make async c++ soooo much easier.
| | | | * Updated ping_pong_request to new APIGravatar Abhishek Kumar2015-02-10
| | | | |
| | | * | Adding call host (:authority header) check in the secure channel.Gravatar Julien Boeuf2015-02-10
| | |/ / | |/| | | | | | | | | | | | | | | | | | | | | | - Fixes #405. - This change is not tested as it should (only end to end and no negative testing). Will do better when we have testing framework for filters.
| * | | Merge pull request #469 from ctiller/fix6Gravatar jboeuf2015-02-10
| |\ \ \ | | | | | | | | | | Fix some tests
* | \ \ \ Merge branch 'fix6' of github.com:ctiller/grpc into c++apiGravatar Craig Tiller2015-02-10
|\ \ \ \ \ | | |/ / / | |/| | |
| * | | | Fix some testsGravatar Craig Tiller2015-02-10
| | |_|/ | |/| |
| | * | Change pointer formatGravatar Vijay Pai2015-02-10
| | | |
| | * | Allow varying number of server threads via command line flagGravatar Vijay Pai2015-02-10
| |/ /
* | | Fixup callers with new apiGravatar Craig Tiller2015-02-09
| | |