aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
...
* | | | | | | | | | | | | | | | | | | Merge pull request #7162 from dgquintas/interop-cred-flag-fixGravatar David G. Quintas2016-07-01
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Removed invalid sentence from interop flag description
| | | | | | | | | | | | | * | | | | | | Check Python ByteBuffer reader init statusGravatar Masood Malekghassemi2016-07-01
| |_|_|_|_|_|_|_|_|_|_|_|/ / / / / / / |/| | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | | | | * Add grpc module pointer file for Node health check testsGravatar murgatroid992016-07-01
| | | | | | | | | | | | | | | | | | |
| | | | * | | | | | | | | | | | | | | Expunge all references to zookeeperGravatar Craig Tiller2016-07-01
| |_|_|/ / / / / / / / / / / / / / / |/| | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | * | | | | Fix examples to work with local gRPC-CoreGravatar Jorge Canizales2016-07-01
| | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | * | | | | Fix runtest.py breakageGravatar Jorge Canizales2016-07-01
| | | | | | | | | | | | | | | | | |
| | | | | | | | | | | * | | | | | | pr commentsGravatar David Garcia Quintas2016-07-01
| | | | | | | | | | | | | | | | | |
| | | | | | | | | | | | | * | | | | Merge commit '20caeb182cbc152e7e038306a9b01f438f79ca41' into ↵Gravatar Jorge Canizales2016-07-01
| | | | | | | | | | | | | |\ \ \ \ \ | |_|_|_|_|_|_|_|_|_|_|_|_|/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | merge-0.14-into-master
| | | | | | | | | * | | | | | | | | Fix TSAN failure in tcp_server (shown via qps_openloop_test)Gravatar Craig Tiller2016-07-01
| |_|_|_|_|_|_|_|/ / / / / / / / / |/| | | | | | | | | | | | | | | |
| | | | | | | | | | | | * | | | | Fix example Podfiles, and document betterGravatar Jorge Canizales2016-07-01
| | | | | | | | | | | | | | | | |
| | | | | * | | | | | | | | | | | Regenerate project filesGravatar Masood Malekghassemi2016-07-01
| | | | | | | | | | | | | | | | |
| | | | | * | | | | | | | | | | | Fix job_spec invocation for Python run_testsGravatar Masood Malekghassemi2016-07-01
| | | | | | | | | | | | | | | | |
| | | | | * | | | | | | | | | | | Remove gcov special-casing for Python testsGravatar Masood Malekghassemi2016-07-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We'll need to fix coverage testing in the future anyway (see #6894).
| | | | | * | | | | | | | | | | | Fall back to default python for test virtualenvsGravatar Masood Malekghassemi2016-07-01
| | | | | | | | | | | | | | | | |
| | | | | * | | | | | | | | | | | Sanitize grpcio-tools command argumentsGravatar Masood Malekghassemi2016-07-01
| | | | | | | | | | | | | | | | |
| | | | | * | | | | | | | | | | | Remove toxGravatar Masood Malekghassemi2016-07-01
| | | | | | | | | | | | | | | | |
| | | | | * | | | | | | | | | | | Make running individual Python tests less painfulGravatar Masood Malekghassemi2016-07-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before this change, running Python tests individually required building a tox environment via the run_tests script and then specifying long environment variables to filter out just the test we wanted to run (and then we wouldn't be able to get the output on interrupt, nor would we have an easy way of determining the PID of the process for debugger attachment). Now invoking the build_python.sh script creates a workable python virtual environment that includes all necessary libraries and tests (s.t. running a single test is now possible by just knowing the module name). This does not change existing supported means of running tests (e.g. through run_tests.py). An additional way of running individual tests has been introduced. Following invocation of `./tools/run_tests/build_python.sh` (or run_tests.py), one may invoke ./$VENV/bin/python -m $TEST_MODULE_NAME and acquire a single running process that *is* the test process (rather than a parent of the process). $VENV is the virtual environment name specified to `build_python.sh` (defaults to `py27`) and $TEST_MODULE_NAME is what it says on the tin.
| | | | | * | | | | | | | | | | | Organize Python tests to use grpcio-tools directlyGravatar Masood Malekghassemi2016-07-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Moves all tests into a separate package. This does not change existing supported means of running tests (e.g. through run_tests.py).
| | | | | * | | | | | | | | | | | Ignore cython debug informationGravatar Masood Malekghassemi2016-07-01
| | | | | | | | | | | | | | | | |
| | | | | * | | | | | | | | | | | Add programmatic access to protoc in grpcio-toolsGravatar Masood Malekghassemi2016-07-01
| | | | | | | | | | | | | | | | |
| | | | | * | | | | | | | | | | | Build Python3 grpcio-tools on OS XGravatar Masood Malekghassemi2016-07-01
| |_|_|_|/ / / / / / / / / / / / |/| | | | | | | | | | | | | | |
| | | | | | | | | | | * | | | | Merge fixup: version, deployment target & spec nameGravatar Jorge Canizales2016-07-01
| | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | * Add Node health check package.jsonGravatar murgatroid992016-07-01
| | | | | | | | | | | | | | | |
| | | | | | | | | | | | | | | * Split Node health check code into a separate package and make it use static ↵Gravatar murgatroid992016-07-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | codegen
| | | | * | | | | | | | | | | | Change port_server.py to use port 32766Gravatar Ken Payson2016-06-30
| | | | | |_|_|_|_|_|_|_|_|_|/ | | | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 32767 is used by filenet-powsrm
* | | | | | | | | | | | | | | Merge pull request #7176 from ctiller/deflakeGravatar Craig Tiller2016-06-30
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|/ / / / / / / / / / / |/| | | | | | | | | | | | | | Fix memory leak, fix error.c refcount reporting
| | | | * | | | | | | | | | | Merge remote-tracking branch 'upstream/master' into handler_http_responseGravatar Yuchen Zeng2016-06-30
| | | | |\ \ \ \ \ \ \ \ \ \ \ | |_|_|_|/ / / / / / / / / / / |/| | | | | | | | | | | | | |
| | | | | | | | | | | * | | | Regenerate list of gRPC-Core filesGravatar Jorge Canizales2016-06-30
| | | | | | | | | | | | | | |
| | | | | | | | | * | | | | | Added comment for obj-cGravatar David Garcia Quintas2016-06-30
| | | | | | | | | | | | | | |
| | | | | | | | | * | | | | | regenerated projectsGravatar David Garcia Quintas2016-06-30
| | | | | | | | | | | | | | |
| | | | | | | | | * | | | | | updated copyrightGravatar David Garcia Quintas2016-06-30
| | | | | | | | | | | | | | |
| | | | | | | | | * | | | | | Added TODO for php.Gravatar David Garcia Quintas2016-06-30
| | | | | | | | | | | | | | |
| | | | | | | | | * | | | | | Return success status of grpc_byte_buffer_readerGravatar David Garcia Quintas2016-06-30
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | Merge pull request #6992 from y-zeng/auto-build-exampleGravatar makdharma2016-06-30
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|_|_|/ / / / / / |/| | | | | | | | | | | | | | Build objective-c examples as part of automatic tests
| | | | | | | | | | | * | | | Merge master into merge-0.14-into-masterGravatar Jorge Canizales2016-06-30
| | | | | | | | | | | |\ \ \ \ | |_|_|_|_|_|_|_|_|_|_|/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: - gRPC.podspec - Only had non-trivial changes in the core file list, which will need to be regenerated (in gRPC-Core.podspec). - src/objective-c/BoringSSL.podspec - Had trivial conflicts in the version. - src/objective-c/examples/RemoteTestClient/RemoteTest.podspec - Trivial conflicts in quoting. - src/objective-c/examples/Sample/Sample.xcodeproj/project.pbxproj and src/objective-c/examples/SwiftSample/SwiftSample.xcodeproj/project.pbxproj - The master version is used, pending testing. The 0.14 version had emoji and some unneeded entries. - src/objective-c/tests/Podfile - Added CronetFramework pod, and warning silencing from master. - templates/gRPC.podspec.template - Deleted. - third_party/protobuf - Using master commit, but need to verify if it works for frameworks.
| | | | | | | | | | | | | * | Merge branch 'master' into stress_test_metrics_fixGravatar Sree Kuchibhotla2016-06-30
| | | | | | | | | | | | | |\ \ | |_|_|_|_|_|_|_|_|_|_|_|_|/ / |/| | | | | | | | | | | | | |
| | | | | | | | * | | | | | | Added a comment about Ruby queue destructionGravatar murgatroid992016-06-30
| | | | | | | | | | | | | | |
| | | | | | | | * | | | | | | Simplified Ruby completion queue destruction codeGravatar murgatroid992016-06-30
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | Merge pull request #6378 from jcanizales/let-invalidate-channelsGravatar Jan Tattermusch2016-06-30
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add a maybe-temporary way for apps to clear the channel cache
* \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Merge pull request #7120 from makdharma/issue6746Gravatar Jan Tattermusch2016-06-30
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fix for working with compressed data. Fixes #6746.
* \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Merge pull request #7109 from soltanmm/toolismGravatar Jan Tattermusch2016-06-30
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use open-source defaults to propagate Python plugin configuration
* \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Merge pull request #7093 from murgatroid99/run_interop_override_server_fixGravatar Jan Tattermusch2016-06-30
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix bug with override_server flag in run_interop_tests.py
* \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Merge pull request #7092 from ctiller/dont_create_redundant_errorsGravatar Jan Tattermusch2016-06-30
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Dont create errors redundently in chttp2_transport.c
* \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Merge pull request #7151 from dgquintas/eventfdGravatar Jan Tattermusch2016-06-30
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | implemented eventfd_check_availability
* \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Merge pull request #7152 from nathanielmanistaatgoogle/interopGravatar Jan Tattermusch2016-06-30
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix Python server interop spec noncompliance
* \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Merge pull request #7155 from stanley-cheung/php-fix-call-destroyGravatar Jan Tattermusch2016-06-30
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PHP: fix shutdown hang issue
* \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Merge pull request #7161 from dgquintas/use_releaseGravatar Jan Tattermusch2016-06-30
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Updated git clone URL
* \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Merge pull request #7164 from dgquintas/fix_import_zuGravatar Jan Tattermusch2016-06-30
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fixed size_t format string
* \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ Merge pull request #7091 from kpayson64/python_str_stuffGravatar Nicolas Noble2016-06-30
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changed default string type to be str
| | | | | | | | | | | | | | | | | | | | | | | | | * Updated example codegen to use grpcio-toolsGravatar Ken Payson2016-06-30
| | | | | | | | | | | | | | | | | | | | | | | | | |