aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/interop
Commit message (Collapse)AuthorAge
* Update the Status APIGravatar Yang Gao2015-06-16
|
* Expose gpr_asprintf and gpr_strdupGravatar Masood Malekghassemi2015-06-03
|
* Correct the test request/response size, to be consistent with the test ↵Gravatar Xudong Ma2015-05-26
| | | | spec:https://github.com/grpc/grpc/blob/master/doc/interop-test-descriptions.md
* support per call credentials in c++Gravatar Yang Gao2015-05-14
|
* Merge pull request #1367 from yang-g/interopGravatar Craig Tiller2015-04-28
|\ | | | | Add two scenarios in interop test
| * Add two scenarios in interop testGravatar Yang Gao2015-04-24
| |
* | Merge branch 'master' of github.com:grpc/grpc into the-purge-2Gravatar Nicolas "Pixel" Noble2015-04-24
|\ \ | | | | | | | | | | | | Conflicts: include/grpc++/completion_queue.h
| * | Add a GrpcLibrary class to wrap grpc_init and grpc_shutdown and convert all ↵Gravatar Yang Gao2015-04-24
| |/ | | | | | | the tests to init/shutdown free.
* | Merge branch 'master' of github.com:grpc/grpc into the-purge-2Gravatar Nicolas "Pixel" Noble2015-04-24
|\| | | | | | | | | | | | | Conflicts: src/cpp/client/channel.cc vsprojects/vs2010/grpc++.vcxproj vsprojects/vs2013/grpc++.vcxproj.filters
| * Move .proto files up for reuseGravatar Abhishek Kumar2015-04-16
| |
| * Moving test.proto to an outer directory so others can depend on it.Gravatar Abhishek Kumar2015-04-16
| |
| * Merge pull request #1291 from yang-g/headersGravatar Nicolas Noble2015-04-16
| |\ | | | | | | Wrap ParseCommandLineFlags in InitTest
| | * Wrap ParseCommandLineFlags in InitTestGravatar Yang Gao2015-04-15
| | |
| * | Return 1 when test_case is not supported in interop testGravatar Yang Gao2015-04-15
| |/
* | Merge branch 'master' of https://github.com/grpc/grpc into the-purge-2Gravatar Nicolas "Pixel" Noble2015-04-11
|\| | | | | | | | | | | | | Conflicts: test/cpp/end2end/async_end2end_test.cc test/cpp/end2end/end2end_test.cc test/cpp/interop/client.cc
| * Split interop client and server into componentsGravatar Yang Gao2015-04-09
| |
| * Splitting gRPC service class codegen into its own set of files.Gravatar Nicolas "Pixel" Noble2015-04-09
| |
* | Removing a few more references to #include <chrono>Gravatar Nicolas "Pixel" Noble2015-04-08
| |
* | Refactoring std::chrono out.Gravatar Nicolas Noble2015-04-08
|/
* Work around a compiler limitation caused by inability to properly handleGravatar vjpai2015-03-26
| | | | vectors created from initializer list
* Merge pull request #1093 from nicolasnoble/windowsGravatar Jan Tattermusch2015-03-19
|\ | | | | Various Windows fixes.
* \ sync to head and run clang-format againGravatar Yang Gao2015-03-19
|\ \
| | * Various Windows fixes.Gravatar Nicolas Noble2015-03-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | -) using dupenv_s instead of getenv_s and calling strdup ourselves. -) few impossible-to-obtain if checks. -) various signed/unsigned casting. -) using time_t instead of time32_t -) checking output of FormatMessage for failures. -) don't redefine _WIN32_WINNT without undefining it first. -) fixed msvc's interlocked casting. -) renamed AddPort to AddListeningPort. -) added protobuf's third_party includes to search path. -) added a missing definition for inet_ntop in mingw32. -) removed useless declarations.
| * | Print out status when it is not ok in interop testsGravatar Yang Gao2015-03-17
| |/
* / clang-format c++ codeGravatar Yang Gao2015-03-17
|/
* add a jwt test case for interop testGravatar Yang Gao2015-03-11
|
* Merge branch 'master' into jwtGravatar Yang Gao2015-03-11
|\
| * Merge github.com:grpc/grpc into creditGravatar Craig Tiller2015-03-02
| |\
* | | add jwt token creds test_caseGravatar Yang Gao2015-02-27
| |/ |/|
* | Make it possible to compile with gcc4.6Gravatar Craig Tiller2015-02-26
| |
| * Merge github.com:grpc/grpc into creditGravatar Craig Tiller2015-02-26
| |\ | |/ |/|
* | Verifying the peer name on the X509 Certs correctly.Gravatar Julien Boeuf2015-02-23
| | | | | | | | | | | | | | - The SANs take precedence over the CN. - The CN is only checked if there are no SANs. - Fixing the tests as the test cert did not list *.test.google.com in the SANs. Will fix the test cert another time...
| * Update C++ server with new core APIGravatar Craig Tiller2015-02-23
| | | | | | | | And reflects the C++ API in ServerBuilder.
| * Credentials prototypingGravatar Craig Tiller2015-02-23
|/ | | | | | - Remove CredentialsFactory as it's unnecessary - Effectively make Credentials a channel factory, allowing different credential types to create different channel types - this gives us a hook so that InsecureCredentials can at runtime instantiate a different kind of channel as required - giving us a way of generating an openssl free version of grpc++. - Server credentials not touched yet, but they'll need to be updated.
* 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 #669 from yang-g/commentsGravatar Michael Lumish2015-02-20
|\ | | | | clean up some internal path and names
* | 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
|/
* 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.
* Making the usage of gflags uniform across distributions.Gravatar Nicolas "Pixel" Noble2015-02-20
|
* Fixing gflags' include path.Gravatar Nicolas "Pixel" Noble2015-02-20
|
* 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 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
| | * Merge github.com:grpc/grpc into c++apiGravatar Craig Tiller2015-02-17
| | |\ | | |/ | |/|
* | | Add proto copyrightsGravatar Craig Tiller2015-02-16
| | |
| * | The Python interoperability testing server.Gravatar Nathaniel Manista2015-02-15
|/ /
| * Compile fixesGravatar Craig Tiller2015-02-13
| |