aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
Commit message (Collapse)AuthorAge
...
| | | * Move to unique_ptr for all GRPC returned objectsGravatar Craig Tiller2015-02-23
| |_|/ |/| |
| * | Addressing security concerns.Gravatar Nicolas Noble2015-02-23
|/ / | | | | | | | | -) 0x7f (Backspace) isn't a printable character. -) use sizeof(var) instead of sizeof(type).
| * Added support for default credentials.Gravatar Julien Boeuf2015-02-21
| | | | | | | | | | | | | | | | | | - Tested with new tool (print_default_creds_token) on: - workstation for env var and well known place. - GCE for compute engine default creds. - I'd prefer the grpc_default_credentials_create() API to remain synchronous even though there may be an async call for gce detection on which we block.
* | Rename interop_test.c --> interop_test.ccGravatar Craig Tiller2015-02-21
|/ | | | We have many assumptions about languages baked into the test system, and we want this test harness to trigger when testing C++ stuff, so it needs to be written in C++.
* Merge pull request #641 from jboeuf/jwt_id_tokenGravatar Yang Gao2015-02-21
|\ | | | | Implementing JWT credentials (a.k.a JWT ID Tokens).
* | Added compiler plugin test for Python.Gravatar Masood Malekghassemi2015-02-20
| |
* | Merge pull request #669 from yang-g/commentsGravatar Michael Lumish2015-02-20
|\ \ | | | | | | clean up some internal path and names
* \ \ Merge pull request #663 from vjpai/pythonGravatar Nicolas Noble2015-02-20
|\ \ \ | | | | | | | | Minor changes for compatibility across different compilers
* \ \ \ Merge pull request #592 from ctiller/chex2Gravatar Nicolas Noble2015-02-20
|\ \ \ \ | | | | | | | | | | Fix TSAN reported error in fd_posix.c
* | | | | Make interop server respond to sigintGravatar Craig Tiller2015-02-20
| | | | | | | | | | | | | | | | | | | | This will allow the test to shut down cleanly, and avoid failing.
| | | * | clean up some internal path and namesGravatar Yang Gao2015-02-20
| |_|/ / |/| | |
| | * | Some compilers not happy with <:: and need < :: insteadGravatar vjpai2015-02-20
| |/ / |/| |
* | | Merge pull request #606 from yang-g/rootsGravatar Craig Tiller2015-02-20
|\ \ \ | | | | | | | | remove prod_roots_certs.c
* \ \ \ Merge pull request #652 from ctiller/interop2Gravatar Yang Gao2015-02-20
|\ \ \ \ | | | | | | | | | | Ensure interop tests are run as part of run_tests
| * | | | Ensure interop tests are run as part of run_testsGravatar Craig Tiller2015-02-20
| | | | | | | | | | | | | | | | | | | | I'm honestly a little shocked this wasn't done previously.
* | | | | 32 bit compilation fixes for coreGravatar Craig Tiller2015-02-19
|/ / / /
| | | * Adding tool for generating JWTs on the command line.Gravatar Julien Boeuf2015-02-19
| | | |
* | | | Making the usage of gflags uniform across distributions.Gravatar Nicolas "Pixel" Noble2015-02-20
| | | |
* | | | Fixing gflags' include path.Gravatar Nicolas "Pixel" Noble2015-02-20
| | | |
| | | * Implementing JWT credentials (a.k.a JWT ID Tokens).Gravatar Julien Boeuf2015-02-19
| |_|/ |/| | | | | | | | - Not tested end to end yet
* | | Merge pull request #605 from vjpai/macGravatar Nicolas Noble2015-02-19
|\ \ \ | | | | | | | | Mac build is now ready
| | * | remove prod_roots_certs.c since it is not used anywhereGravatar Yang Gao2015-02-18
| | | |
| * | | More typecasts to avoid sign-comparison problems on EXPECT_EQGravatar vjpai2015-02-18
| | | |
| * | | Include typecasts so that int and size_t are not compared (since theirGravatar vjpai2015-02-18
| | | | | | | | | | | | | | | | signs don't match)
* | | | Fixing sprintf and a few other things.Gravatar Julien Boeuf2015-02-18
| |/ / |/| |
* | | Merge github.com:grpc/grpc into an-update-on-c++Gravatar Craig Tiller2015-02-18
|\| |
| | * Fix a TSAN reported errorGravatar Craig Tiller2015-02-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We now pass down pointers to closures instead of (callback, arg) pair elements separately. This allows us to store one word atomically, fixing a race condition. All call sites have been updated to the new API. No new allocations are incurred. grpc_fd_state is deleted to avoid any temptation to ever add anything there again.
| * | Merge pull request #588 from yang-g/c++apiGravatar Craig Tiller2015-02-18
| |\ \ | | |/ | |/| Async client api change. Add a ClientAsyncResponseReader.
| | * Async client api change. Add a ClientAsyncResponseReader. Make the api ↵Gravatar Yang Gao2015-02-18
| | | | | | | | | | | | similar to streaming and symmetric to server side.
| * | Fix use-after-free.Gravatar Craig Tiller2015-02-18
| | | | | | | | | | | | | | | | | | | | | Transport and channel have different lifetimes, but share a metadata context. Make the metadata context ref counted, and have transport take a ref.
| * | Spam cleanup, test speedupGravatar Craig Tiller2015-02-18
| | |
* | | Merge github.com:grpc/grpc into an-update-on-c++Gravatar Craig Tiller2015-02-18
|\| |
* | | Server side cancellation receive supportGravatar Craig Tiller2015-02-18
| |/ |/|
| * Add missing new-lines at end of fileGravatar Craig Tiller2015-02-18
| |
| * Add missing new-lines at end of fileGravatar Craig Tiller2015-02-18
| |
| * Update copyright to 2015Gravatar Craig Tiller2015-02-18
| |
| * Merge github.com:grpc/grpc into copyrightGravatar Craig Tiller2015-02-18
| |\ | |/ |/|
* | Merge pull request #573 from yang-g/c++apiGravatar Craig Tiller2015-02-18
|\ \ | | | | | | Changes to support server metadata.
| * | do not leak reader or writerGravatar Yang Gao2015-02-18
| | |
| * | Add metadata test with rpc. Adding/fixing things to make it workGravatar Yang Gao2015-02-18
| | |
* | | Merge github.com:grpc/grpc into c++apiGravatar Craig Tiller2015-02-17
|\ \ \ | |/ / |/| | | | | | | | Conflicts: src/core/surface/server.c
| | * Merge github.com:grpc/grpc into copyrightGravatar Craig Tiller2015-02-17
| | |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/python/src/__init__.py src/python/src/_adapter/__init__.py src/python/src/_framework/__init__.py src/python/src/_framework/base/__init__.py src/python/src/_framework/base/packets/__init__.py src/python/src/_framework/common/__init__.py src/python/src/_framework/face/__init__.py src/python/src/_framework/face/testing/__init__.py src/python/src/_framework/foundation/__init__.py src/python/src/_junkdrawer/__init__.py
| * | | Fix shutdown semantics.Gravatar Craig Tiller2015-02-17
| | |/ | |/| | | | | | | Document what they should be, ensure they're triggered, and fix what was broken.
* | | Merge github.com:grpc/grpc into c++apiGravatar Craig Tiller2015-02-17
|\| |
| * | Merge pull request #551 from ctiller/shutdownGravatar Yang Gao2015-02-17
| |\ \ | | | | | | | | Allow grpc_init to be called multiple times
| | * | Add mixed shutdown/init testGravatar Craig Tiller2015-02-17
| | | |
| * | | Merge pull request #530 from nathanielmanistaatgoogle/python-interop-serverGravatar soltanmm2015-02-17
| |\ \ \ | | | | | | | | | | Python interop server.
| | | * | Allow grpc_init to be called multiple timesGravatar Craig Tiller2015-02-17
| | |/ / | |/| |
* | | | Merge github.com:grpc/grpc into c++apiGravatar Craig Tiller2015-02-17
|\| | |
| * | | Fix fling test leaksGravatar Craig Tiller2015-02-17
| | | |