aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* Minor formatting, commenting and clang format for C to C++ conversionGravatar Yash Tibrewal2017-09-18
|
* initializing checker_mu in timer_list to be safeGravatar Yash Tibrewal2017-09-18
|
* Timer generic correctionGravatar Yash Tibrewal2017-09-18
|
* static metadata and clang formatGravatar Yash Tibrewal2017-09-18
|
* Removing designated initializers, implicit string literal to char *Gravatar Yash Tibrewal2017-09-18
| | | | conversions and solving crosses initialization due to jump warnings
* Redefine GRPC_SLICE_MALLOC to use grpc_slice_malloc function instead ofGravatar Yash Tibrewal2017-09-18
| | | | designated initializers
* Merge pull request #12564 from sreecha/exp-cq-fixGravatar Sree Kuchibhotla2017-09-18
|\ | | | | Fix TSAN failure in completion queue
* \ Merge pull request #12610 from yashykt/ctocc5Gravatar Yash Tibrewal2017-09-18
|\ \ | | | | | | Removing deprecated string to char * conversions
* \ \ Merge pull request #12495 from ZhouyihaiDing/build_phpGravatar ZhouyihaiDing2017-09-18
|\ \ \ | | | | | | | | run_tests.py: embed openssl during building c-core before running build_php.sh
| | * | Running generate_projects.shGravatar Yash Tibrewal2017-09-18
| | | |
* | | | Merge pull request #12616 from jtattermusch/fix_test_filteringGravatar Jan Tattermusch2017-09-18
|\ \ \ \ | | | | | | | | | | Test everything if internal_ci scripts change
| | | | * Restore no_barrier operations to some places where it is safeGravatar Sree Kuchibhotla2017-09-18
| | | | |
| | | | * Merge branch 'master' into exp-cq-fixGravatar Sree Kuchibhotla2017-09-18
| | | | |\ | |_|_|_|/ |/| | | |
* | | | | Merge pull request #12615 from nathanielmanistaatgoogle/fix_with_metaclass_usageGravatar Nathaniel Manista2017-09-18
|\ \ \ \ \ | | | | | | | | | | | | Fix a six.with_metaclass usage mistake.
| | | * | | EMBED_OPENSSL before build phpGravatar ZhouyihaiDing2017-09-18
| |_|/ / / |/| | | |
| | * | | test everything if internal_ci scripts changeGravatar Jan Tattermusch2017-09-18
| |/ / / |/| | |
* | | | Merge pull request #12477 from jtattermusch/reveal_hangsGravatar Jan Tattermusch2017-09-18
|\ \ \ \ | | | | | | | | | | Reveal processes left by our test suite.
| | * | | Fix a six.with_metaclass usage mistakeGravatar Nathaniel Manista2017-09-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I made this mistake in 2010985ab269c8df0443e4f3782cbdffb083e9d4 but only with yesterday's release of six 1.11.0 has it started failing ("TypeError: metaclass conflict: the metaclassof a derived class must be a (non-strict) subclass of the metaclasses of all its bases").
| | | * | Removing deprecated string to char * conversionsGravatar Yash Tibrewal2017-09-17
| |_|/ / |/| | |
* | | | Merge pull request #12602 from nathanielmanistaatgoogle/grpc_1_0_flagGravatar Nathaniel Manista2017-09-17
|\ \ \ \ | | | | | | | | | | Overhaul protoc_plugins._split_definitions_test.
| * | | | Overhaul protoc_plugins._split_definitions_testGravatar Nathaniel Manista2017-09-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We were mistaken before when we were testing _pb2.py files being generated in one directory and _pb2_grpc.py files being generated in another directory. Sure, that was a thing our code generator could do, but because of the way paths and packages work in Python it wasn't a realistic use case for actual users. This test now tests _pb2.py files and _pb2_grpc.py files being generated either together or independently of one another, and if independently, in either order. Looking forward to an eventual py_grpc_library Bazel rule, that's what actually matters.
* | | | | Merge pull request #12603 from nathanielmanistaatgoogle/python_sanity_testGravatar Nathaniel Manista2017-09-16
|\ \ \ \ \ | | | | | | | | | | | | Tweak Python sanity test.
* \ \ \ \ \ Merge pull request #12339 from muxi/add-objc-call-deadlineGravatar Muxi Yan2017-09-16
|\ \ \ \ \ \ | | | | | | | | | | | | | | Surface call deadline to Objective C API
| | * | | | | Tweak Python sanity testGravatar Nathaniel Manista2017-09-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Move it out of the "unit" package, as it's not itself a unit test. - Suffix the test class with "Test" as we do with every other subclass of unittest.TestCase. - Add a larger-than-we'll-need-any-time-soon maxDiff so that failures are fully described. - Relax the assertion from assertListEqual to assertSequenceEqual since we don't actually care whether or not the sequences being compared are list instances. - Change the order of the assertions arguments to match the "<expected>, <actual>" convention used in our assert*Equal calls elsewhere throughout the test corpus. - Internal implementation simplifications.
| * | | | | | Fix timeout testGravatar Muxi Yan2017-09-16
| | | | | | |
* | | | | | | Merge pull request #12562 from matt-kwong/kokoro_perfpr1Gravatar Matt Kwong2017-09-15
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Add Kokoro perf PR jobs
* \ \ \ \ \ \ \ Merge pull request #12269 from vjpai/race_issuesGravatar Nicolas Noble2017-09-15
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Allow construction of async stream objects without triggering async operations
* \ \ \ \ \ \ \ \ Merge pull request #12515 from matt-kwong/fix-perf2Gravatar Matt Kwong2017-09-15
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Revert "Revert "Merge pull request #12513 from grpc/revert-12289-sig_hand""
| | | | | | | | | * Address some review commentsGravatar Sree Kuchibhotla2017-09-15
| | | | | | | | | |
* | | | | | | | | | Merge pull request #12598 from muxi/fix-test-outputGravatar Muxi Yan2017-09-15
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | Polish ObjC Test Output
| | | | * | | | | | | Add Kokoro perf PR jobsGravatar Matt Kwong2017-09-15
| | | | | | | | | | |
| | | | | | | | | | * Merge branch 'master' into exp-cq-fixGravatar Sree Kuchibhotla2017-09-15
| | | | | | | | | | |\
* | | | | | | | | | | \ Merge pull request #12592 from nathanielmanistaatgoogle/grpc_1_0_flagGravatar Nathaniel Manista2017-09-15
|\ \ \ \ \ \ \ \ \ \ \ \ | | |_|_|_|_|/ / / / / / | |/| | | | | | | | | | Clean up a few more uses of gRPC code elements in _pb2.py files.
* | | | | | | | | | | | Merge pull request #12210 from apolcyn/local_dns_serverGravatar apolcyn2017-09-15
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | Run a local DNS server in run_tests and add c-ares tests with it
| | | * | | | | | | | | | Polish output moreGravatar Muxi Yan2017-09-15
| |_|/ / / / / / / / / / |/| | | | | | | | | | |
* | | | | | | | | | | | Merge pull request #12553 from jiangtaoli2016/tsi_exec_ctxGravatar David G. Quintas2017-09-15
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | Update TSI grpc interface to pass exec_ctx
* \ \ \ \ \ \ \ \ \ \ \ \ Merge pull request #12545 from yashykt/type_renameGravatar Yash Tibrewal2017-09-15
|\ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|_|_|_|_|_|/ |/| | | | | | | | | | | | Removing _t type suffix and changing field names instead
| | | | * | | | | | | | | Clean up a few more uses of gRPC in _pb2.py filesGravatar Nathaniel Manista2017-09-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Were this not done these would break when the default behavior of gRPC Python Protoc Plug-In is changed to be the put-gRPC-code-elements-only- in-_pb2_grpc.py-files behavior that currently happens only when the grpc_2_0 flag is passed.
| | | | | | | | | | * | | reveal leftover processesGravatar Jan Tattermusch2017-09-15
| | | | | | | | | | | | |
| | | | | | * | | | | | | Construction of streams shouldn't require triggering async opsGravatar Vijay Pai2017-09-14
| |_|_|_|_|/ / / / / / / |/| | | | | | | | | | |
| | * | | | | | | | | | Merge branch 'master' of https://github.com/grpc/grpc into tsi_exec_ctxGravatar jiangtaoli20162017-09-14
| | |\ \ \ \ \ \ \ \ \ \ | |_|/ / / / / / / / / / |/| | | | | | | | | | |
| | | | | | | * | | | | Polish commentGravatar Muxi Yan2017-09-14
| | | | | | | | | | | |
* | | | | | | | | | | | Merge pull request #12542 from ctiller/rtstatGravatar Craig Tiller2017-09-14
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | Really use measured CPU costs (with a small delta) for run_tests
| | * | | | | | | | | | | %s/current_pollable/current_pollable_objGravatar Yash Tibrewal2017-09-14
| | | | | | | | | | | | |
| | * | | | | | | | | | | Reverting suffixes and changing field names insteadGravatar Yash Tibrewal2017-09-14
| | | | | | | | | | | | |
| | | | * | | | | | | | | Add tests for c-ares wrapper using a local DNS server.Gravatar Alexander Polcyn2017-09-14
| | | | |/ / / / / / / /
* | | | | | | | | | | | Merge pull request #12550 from nathanielmanistaatgoogle/commandsGravatar Nathaniel Manista2017-09-14
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | Kill (grpcio_tests/)commands.BuildProtoModules.
* \ \ \ \ \ \ \ \ \ \ \ \ Merge pull request #12551 from nathanielmanistaatgoogle/grpc_1_0_flagGravatar Nathaniel Manista2017-09-14
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | |_|_|_|_|_|_|_|/ / / / | |/| | | | | | | | | | | grpc_1_0 flag for gRPC Python Protoc Plug-In.
* | | | | | | | | | | | | Merge pull request #12565 from kpayson64/revert_lb_stuffGravatar kpayson642017-09-14
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Revert "Add fallback (use backends from resolver if can't reach balan…
* \ \ \ \ \ \ \ \ \ \ \ \ \ Merge pull request #12496 from ZhouyihaiDing/ruby_php_extensionGravatar ZhouyihaiDing2017-09-14
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | qps performance: add php extension to ruby_proxy